From 43a6b66ab80833699799a6216fafae9804fe595e Mon Sep 17 00:00:00 2001 From: mdsaad31 Date: Tue, 22 Jul 2025 00:06:05 +0530 Subject: [PATCH] ## Description This PR adds several new prompts to the README.md to further expand Jules' utility for developers. The new prompts cover a variety of categories, including: - **Everyday Dev Tasks:** For automating workflows with shell scripts. - **Debugging:** For adding error handling to functions. - **Documentation:** For generating changelog entries and code examples. - **AI-Native Tasks:** For summarizing codebase architecture. All prompts are concise, actionable, and formatted to match the existing style. --- ## Checklist - [x] I've added the prompts in the correct section. - [x] The prompts are helpful, concise, and clear. - [x] I've double-checked the markdown --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index c983c6a..bcb4840 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,9 @@ - `// Implement a data class for this dictionary structure...` Useful for Python projects moving towards more structured data handling with `dataclasses` or Pydantic. +- `// Generate a shell script to automate {a specific} workflow...` + For automating repetitive tasks in any project. + ## Debugging @@ -76,6 +79,9 @@ - `// Add print statements to trace the execution flow of this Python script...` For debugging complex Python scripts or understanding unexpected behavior. +- `// Add error handling to {a specific} function` + Improves reliability by catching and reporting exceptions. + ## Documentation @@ -91,6 +97,12 @@ - `// Generate Sphinx-style docstrings for this Python module/class/function...` Ideal for Python projects using Sphinx for documentation generation. +- `// Generate a changelog entry for {a specific} feature` + Keeps project history clear and up to date. + +- `// Create a code example for {a specific} API method` + Makes documentation more actionable for users. + ## Testing @@ -160,6 +172,9 @@ - `// Refactor this Python function to be more amenable to parallel processing (e.g., using multiprocessing or threading)...` For optimizing performance in computationally intensive Python applications. +- `// Generate a summary of this codebase's architecture` + Helps new contributors understand the project structure. + ## Context