diff --git a/.github/scripts/generate_metadata.py b/.github/scripts/generate_metadata.py index 7753799..bfe6fa9 100644 --- a/.github/scripts/generate_metadata.py +++ b/.github/scripts/generate_metadata.py @@ -78,16 +78,16 @@ def generate_metadata(prompt_content): def should_update_metadata(prompt_file, metadata_file): """Check if metadata should be updated based on content hash or force flag.""" force_regenerate = os.environ.get('FORCE_REGENERATE', 'false').lower() == 'true' - - if force_regenerate: - logger.info("Forcing metadata regeneration due to system prompt changes.") - return True, None # Generate hash of the prompt file content with open(prompt_file, 'rb') as f: prompt_content = f.read() prompt_hash = hashlib.md5(prompt_content).hexdigest() + if force_regenerate: + logger.info("Forcing metadata regeneration due to system prompt changes.") + return True, prompt_hash + # If metadata file doesn't exist, update is needed if not os.path.exists(metadata_file): logger.info(f"Metadata file {metadata_file} does not exist. Update needed.") @@ -214,6 +214,12 @@ def update_prompt_metadata(): with open(metadata_path, 'w') as f: yaml.dump(metadata, f, sort_keys=False) + # Ensure we have a valid hash + if new_hash is None: + with open(prompt_file, 'rb') as f: + prompt_content = f.read() + new_hash = hashlib.md5(prompt_content).hexdigest() + # Update content hash update_metadata_hash(metadata_path, new_hash) else: diff --git a/.github/templates/readme_template.md b/.github/templates/readme_template.md index 3cb54c7..dffe510 100644 --- a/.github/templates/readme_template.md +++ b/.github/templates/readme_template.md @@ -9,10 +9,8 @@ Welcome to the **Prompt Library**. This repository contains a collection of AI p ### {{ format_category(category) }} {% for prompt in prompts %} - - [{{ prompt.title }}]({{ prompt.path }}) - {{ prompt.description }} {% endfor %} - {% endfor %} ## 🚀 Getting Started diff --git a/.github/templates/view_template.md b/.github/templates/view_template.md index d0addb3..371e533 100644 --- a/.github/templates/view_template.md +++ b/.github/templates/view_template.md @@ -11,7 +11,6 @@ ### 🔧 Variables {% for variable in metadata.variables %} - - `{{ variable }}` {% endfor %} @@ -24,7 +23,6 @@ ### 🔖 Tags {% for tag in metadata.tags %} - - {{ tag }} {% endfor %} @@ -35,7 +33,6 @@ Primary Category: {{ metadata.primary_category }} {% if metadata.subcategories %} Subcategories: {% for subcategory in metadata.subcategories %} - - {{ subcategory }} {% endfor %} {% endif %} diff --git a/README.md b/README.md index 46665a3..e6bf9b4 100644 --- a/README.md +++ b/README.md @@ -9,66 +9,51 @@ Welcome to the **Prompt Library**. This repository contains a collection of AI p ### Artificial Intelligence - - [God Tier Assistant Generator](prompts/god_tier_assistant_generator/view.md) - Generates innovative ideas for specialized AI assistants based on given topics - - [AI Topic Idea Generator](prompts/ai_topic_idea_generator/view.md) - Generates diverse and innovative AI application ideas for specific domains - ### Documentation - -- [AI Code Repository Documentation Generator](prompts/ai_code_repository_documentation_generator/view.md) - Generates comprehensive documentation for code repositories using AI analysis - +- [AI-Powered Code Repository Documentation Generator](prompts/ai_code_repository_documentation_generator/view.md) - Analyzes code repositories and generates comprehensive documentation autonomously ### Full Stack Development - -- [Advanced Software Development Assistant](prompts/advanced_software_development_assistant/view.md) - Provides comprehensive software development assistance throughout the entire lifecycle - +- [Advanced Software Development AI Assistant](prompts/advanced_software_development_ai_assistant/view.md) - Provides expert guidance and support throughout the entire software development lifecycle ### Project Management +- [Software Specification Generator](prompts/software_specification_generator/view.md) - Creates comprehensive software specifications based on user requirements -- [Software Specification Generator](prompts/software_specification_generator/view.md) - Generates comprehensive software specifications based on user requirements - - -- [GitHub Issue Creator Assistant](prompts/github_issue_creator_assistant/view.md) - Creates well-structured GitHub Issues from various inputs - +- [GitHub Issue Creator Assistant](prompts/github_issue_creator_assistant/view.md) - Creates well-structured GitHub Issues from various types of input ### Refactoring - -- [Code Refactoring and Analysis Assistant](prompts/code_refactoring_analysis_assistant/view.md) - Analyzes, refactors, and tests code to improve quality, readability, and performance - +- [Code Refactoring AI Assistant](prompts/code_refactoring_ai_assistant/view.md) - Analyzes, refactors, and tests code to improve quality, readability, and performance ### Version Control - - [Git Commit Message Writer](prompts/git_commit_message_writer/view.md) - Generates concise, informative git commit messages following Conventional Commits with emojis - - [GitHub Pull Request Generator](prompts/github_pull_request_generator/view.md) - Generates comprehensive and well-structured GitHub pull requests - ## 🚀 Getting Started This repository is designed to be easily forked and customized for your own use. Follow these steps to get started: diff --git a/prompts/advanced_software_development_ai_assistant/metadata.yml b/prompts/advanced_software_development_ai_assistant/metadata.yml new file mode 100644 index 0000000..e55dada --- /dev/null +++ b/prompts/advanced_software_development_ai_assistant/metadata.yml @@ -0,0 +1,22 @@ +title: Advanced Software Development AI Assistant +primary_category: full_stack_development +subcategories: +- software_engineering +- development_lifecycle +directory: advanced_software_development_ai_assistant +tags: +- software_development +- expert_guidance +- code_optimization +- best_practices +- lifecycle_support +one_line_description: Provides expert guidance and support throughout the entire software + development lifecycle +description: This AI assistant offers comprehensive support for software developers + across the entire development process. It provides expert guidance, code suggestions, + and workflow optimization for various programming languages, frameworks, and development + stages, covering frontend, backend, database, DevOps, and more. +variables: +- '{{USER_REQUEST}}' +- '{{CONTEXT}}' +content_hash: d60c3752432e5ddcb95793648cb4394a diff --git a/prompts/advanced_software_development_assistant/prompt.md b/prompts/advanced_software_development_ai_assistant/prompt.md similarity index 100% rename from prompts/advanced_software_development_assistant/prompt.md rename to prompts/advanced_software_development_ai_assistant/prompt.md diff --git a/prompts/advanced_software_development_assistant/view.md b/prompts/advanced_software_development_ai_assistant/view.md similarity index 88% rename from prompts/advanced_software_development_assistant/view.md rename to prompts/advanced_software_development_ai_assistant/view.md index 57b7245..f664869 100644 --- a/prompts/advanced_software_development_assistant/view.md +++ b/prompts/advanced_software_development_ai_assistant/view.md @@ -1,20 +1,18 @@ -# Advanced Software Development Assistant +# Advanced Software Development AI Assistant ### ✏️ One-line Description -**Provides comprehensive software development assistance throughout the entire lifecycle** +**Provides expert guidance and support throughout the entire software development lifecycle** ### 📄 Description -This AI assistant offers expert guidance and support for all stages of software development. It provides code suggestions, optimization tips, and best practices across multiple programming languages and frameworks, covering frontend, backend, database, and DevOps aspects. +This AI assistant offers comprehensive support for software developers across the entire development process. It provides expert guidance, code suggestions, and workflow optimization for various programming languages, frameworks, and development stages, covering frontend, backend, database, DevOps, and more. ### 🔧 Variables - - `{{USER_REQUEST}}` - - `{{CONTEXT}}` @@ -102,20 +100,15 @@ Remember, your goal is to provide the most helpful and accurate assistance possi ### 🔖 Tags - - software_development +- expert_guidance -- code_generation - +- code_optimization - best_practices - -- debugging - - -- documentation +- lifecycle_support ### 📚 Category @@ -125,9 +118,7 @@ Primary Category: full_stack_development Subcategories: +- software_engineering -- software_lifecycle_support - - -- development_optimization +- development_lifecycle diff --git a/prompts/advanced_software_development_assistant/metadata.yml b/prompts/advanced_software_development_assistant/metadata.yml deleted file mode 100644 index e7d1825..0000000 --- a/prompts/advanced_software_development_assistant/metadata.yml +++ /dev/null @@ -1,22 +0,0 @@ -title: Advanced Software Development Assistant -primary_category: full_stack_development -subcategories: -- software_lifecycle_support -- development_optimization -directory: advanced_software_development_assistant -tags: -- software_development -- code_generation -- best_practices -- debugging -- documentation -one_line_description: Provides comprehensive software development assistance throughout - the entire lifecycle -description: This AI assistant offers expert guidance and support for all stages of - software development. It provides code suggestions, optimization tips, and best - practices across multiple programming languages and frameworks, covering frontend, - backend, database, and DevOps aspects. -variables: -- '{{USER_REQUEST}}' -- '{{CONTEXT}}' -content_hash: None diff --git a/prompts/ai_code_repository_documentation_generator/metadata.yml b/prompts/ai_code_repository_documentation_generator/metadata.yml index 793ac93..96f6b1b 100644 --- a/prompts/ai_code_repository_documentation_generator/metadata.yml +++ b/prompts/ai_code_repository_documentation_generator/metadata.yml @@ -1,4 +1,4 @@ -title: AI Code Repository Documentation Generator +title: AI-Powered Code Repository Documentation Generator primary_category: documentation subcategories: - code_analysis @@ -10,13 +10,13 @@ tags: - repository_management - technical_writing - ai_assistant -one_line_description: Generates comprehensive documentation for code repositories - using AI analysis -description: This AI assistant analyzes code repositories to autonomously generate - and maintain various types of documentation. It interprets codebases, creates README - files, API documentation, usage guides, and architectural overviews while providing - insights on best practices and suggesting improvements. +one_line_description: Analyzes code repositories and generates comprehensive documentation + autonomously +description: This AI assistant specializes in analyzing code repositories to create + and maintain various types of documentation. It interprets codebases, generates + README files, API documentation, usage guides, and architectural overviews. The + assistant also provides insights on best practices and suggests improvements. variables: - '{{REPOSITORY_DATA}}' - '{{DOCUMENTATION_REQUEST}}' -content_hash: None +content_hash: fcf5f67b516647ab2380cdfc8ff3fbf1 diff --git a/prompts/ai_code_repository_documentation_generator/view.md b/prompts/ai_code_repository_documentation_generator/view.md index 5c3f0a3..0a5b63e 100644 --- a/prompts/ai_code_repository_documentation_generator/view.md +++ b/prompts/ai_code_repository_documentation_generator/view.md @@ -1,20 +1,18 @@ -# AI Code Repository Documentation Generator +# AI-Powered Code Repository Documentation Generator ### ✏️ One-line Description -**Generates comprehensive documentation for code repositories using AI analysis** +**Analyzes code repositories and generates comprehensive documentation autonomously** ### 📄 Description -This AI assistant analyzes code repositories to autonomously generate and maintain various types of documentation. It interprets codebases, creates README files, API documentation, usage guides, and architectural overviews while providing insights on best practices and suggesting improvements. +This AI assistant specializes in analyzing code repositories to create and maintain various types of documentation. It interprets codebases, generates README files, API documentation, usage guides, and architectural overviews. The assistant also provides insights on best practices and suggests improvements. ### 🔧 Variables - - `{{REPOSITORY_DATA}}` - - `{{DOCUMENTATION_REQUEST}}` @@ -98,19 +96,14 @@ Remember to tailor your output to the specific documentation_request while ensur ### 🔖 Tags - - documentation - - code_analysis - - repository_management - - technical_writing - - ai_assistant @@ -121,9 +114,7 @@ Primary Category: documentation Subcategories: - - code_analysis - - technical_writing diff --git a/prompts/ai_topic_idea_generator/metadata.yml b/prompts/ai_topic_idea_generator/metadata.yml index ebd997f..d3308f9 100644 --- a/prompts/ai_topic_idea_generator/metadata.yml +++ b/prompts/ai_topic_idea_generator/metadata.yml @@ -7,16 +7,16 @@ directory: ai_topic_idea_generator tags: - brainstorming - innovation -- idea_generation -- ai_applications - domain_specific +- ai_applications +- creative_thinking one_line_description: Generates diverse and innovative AI application ideas for specific domains description: This prompt creates an AI assistant specialized in generating creative and relevant AI application ideas across various domains. It analyzes core elements of a given area, identifies unique opportunities, and produces a range of innovative - ideas that push the boundaries of AI capabilities while considering specific constraints. + ideas that push the boundaries of AI possibilities while considering specific constraints. variables: - '{{DOMAIN}}' - '{{CONSTRAINTS}}' -content_hash: None +content_hash: 45dbd58307ef062d6983d0cc911cb536 diff --git a/prompts/ai_topic_idea_generator/view.md b/prompts/ai_topic_idea_generator/view.md index 6fdad83..40de10d 100644 --- a/prompts/ai_topic_idea_generator/view.md +++ b/prompts/ai_topic_idea_generator/view.md @@ -6,15 +6,13 @@ ### 📄 Description -This prompt creates an AI assistant specialized in generating creative and relevant AI application ideas across various domains. It analyzes core elements of a given area, identifies unique opportunities, and produces a range of innovative ideas that push the boundaries of AI capabilities while considering specific constraints. +This prompt creates an AI assistant specialized in generating creative and relevant AI application ideas across various domains. It analyzes core elements of a given area, identifies unique opportunities, and produces a range of innovative ideas that push the boundaries of AI possibilities while considering specific constraints. ### 🔧 Variables - - `{{DOMAIN}}` - - `{{CONSTRAINTS}}` @@ -82,20 +80,15 @@ Remember to always stay within the bounds of the given domain and constraints wh ### 🔖 Tags - - brainstorming - - innovation - -- idea_generation - +- domain_specific - ai_applications - -- domain_specific +- creative_thinking ### 📚 Category @@ -105,9 +98,7 @@ Primary Category: artificial_intelligence Subcategories: - - idea_generation - - prompt_engineering diff --git a/prompts/code_refactoring_ai_assistant/metadata.yml b/prompts/code_refactoring_ai_assistant/metadata.yml new file mode 100644 index 0000000..c96e711 --- /dev/null +++ b/prompts/code_refactoring_ai_assistant/metadata.yml @@ -0,0 +1,22 @@ +title: Code Refactoring AI Assistant +primary_category: refactoring +subcategories: +- code_quality +- performance_optimization +directory: code_refactoring_ai_assistant +tags: +- refactoring +- code_analysis +- testing +- optimization +- best_practices +one_line_description: Analyzes, refactors, and tests code to improve quality, readability, + and performance +description: This AI assistant specializes in code refactoring, analyzing codebases + to identify areas for improvement. It implements various refactoring techniques, + ensures functionality through testing, and provides a summary of changes and improvements + made. +variables: +- '{{CODEBASE}}' +- '{{REFACTOR_SCOPE}}' +content_hash: ecb5178d18e599c8b7010455224bfbbc diff --git a/prompts/code_refactoring_analysis_assistant/prompt.md b/prompts/code_refactoring_ai_assistant/prompt.md similarity index 100% rename from prompts/code_refactoring_analysis_assistant/prompt.md rename to prompts/code_refactoring_ai_assistant/prompt.md diff --git a/prompts/code_refactoring_analysis_assistant/view.md b/prompts/code_refactoring_ai_assistant/view.md similarity index 88% rename from prompts/code_refactoring_analysis_assistant/view.md rename to prompts/code_refactoring_ai_assistant/view.md index 8c764e2..ffb79fd 100644 --- a/prompts/code_refactoring_analysis_assistant/view.md +++ b/prompts/code_refactoring_ai_assistant/view.md @@ -1,4 +1,4 @@ -# Code Refactoring and Analysis Assistant +# Code Refactoring AI Assistant ### ✏️ One-line Description @@ -6,15 +6,13 @@ ### 📄 Description -This AI assistant specializes in code refactoring and analysis. It examines provided code, identifies areas for improvement, implements refactoring techniques, and ensures functionality through testing. The assistant focuses on enhancing code quality, readability, and performance while adhering to best practices. +This AI assistant specializes in code refactoring, analyzing codebases to identify areas for improvement. It implements various refactoring techniques, ensures functionality through testing, and provides a summary of changes and improvements made. ### 🔧 Variables - - `{{CODEBASE}}` - - `{{REFACTOR_SCOPE}}` @@ -81,19 +79,14 @@ Remember to think critically about each refactoring decision and its impact on t ### 🔖 Tags - - refactoring - - code_analysis - - testing - - optimization - - best_practices @@ -104,9 +97,7 @@ Primary Category: refactoring Subcategories: - - code_quality - - performance_optimization diff --git a/prompts/code_refactoring_analysis_assistant/metadata.yml b/prompts/code_refactoring_analysis_assistant/metadata.yml deleted file mode 100644 index 03e2c32..0000000 --- a/prompts/code_refactoring_analysis_assistant/metadata.yml +++ /dev/null @@ -1,22 +0,0 @@ -title: Code Refactoring and Analysis Assistant -primary_category: refactoring -subcategories: -- code_quality -- performance_optimization -directory: code_refactoring_analysis_assistant -tags: -- refactoring -- code_analysis -- testing -- optimization -- best_practices -one_line_description: Analyzes, refactors, and tests code to improve quality, readability, - and performance -description: This AI assistant specializes in code refactoring and analysis. It examines - provided code, identifies areas for improvement, implements refactoring techniques, - and ensures functionality through testing. The assistant focuses on enhancing code - quality, readability, and performance while adhering to best practices. -variables: -- '{{CODEBASE}}' -- '{{REFACTOR_SCOPE}}' -content_hash: None diff --git a/prompts/git_commit_message_writer/metadata.yml b/prompts/git_commit_message_writer/metadata.yml index f8954dc..04162f4 100644 --- a/prompts/git_commit_message_writer/metadata.yml +++ b/prompts/git_commit_message_writer/metadata.yml @@ -1,7 +1,7 @@ title: Git Commit Message Writer primary_category: version_control subcategories: -- commit_messages +- commit_message_generation - conventional_commits directory: git_commit_message_writer tags: @@ -12,11 +12,11 @@ tags: - best_practices one_line_description: Generates concise, informative git commit messages following Conventional Commits with emojis -description: This prompt creates an AI assistant that writes git commit messages adhering - to the Conventional Commits specification and includes appropriate emojis. It provides - guidelines for creating clear, informative messages that effectively summarize code - changes while following best practices for version control documentation. +description: Creates git commit messages adhering to the Conventional Commits specification, + starting with an appropriate emoji. The assistant analyzes the task description + and code changes to generate a concise, informative message that effectively summarizes + the commit while following best practices for commit message writing. variables: - '{{TASK_DESCRIPTION}}' - '{{CODE_CHANGES}}' -content_hash: None +content_hash: d75f5a23d8baf9506f8af20bc1324bf7 diff --git a/prompts/git_commit_message_writer/view.md b/prompts/git_commit_message_writer/view.md index d2fa4ab..34689fd 100644 --- a/prompts/git_commit_message_writer/view.md +++ b/prompts/git_commit_message_writer/view.md @@ -6,15 +6,13 @@ ### 📄 Description -This prompt creates an AI assistant that writes git commit messages adhering to the Conventional Commits specification and includes appropriate emojis. It provides guidelines for creating clear, informative messages that effectively summarize code changes while following best practices for version control documentation. +Creates git commit messages adhering to the Conventional Commits specification, starting with an appropriate emoji. The assistant analyzes the task description and code changes to generate a concise, informative message that effectively summarizes the commit while following best practices for commit message writing. ### 🔧 Variables - - `{{TASK_DESCRIPTION}}` - - `{{CODE_CHANGES}}` @@ -145,19 +143,14 @@ Output your commit message within tags. The message should be o ### 🔖 Tags - - git - - commit_messages - - conventional_commits - - emoji - - best_practices @@ -168,9 +161,7 @@ Primary Category: version_control Subcategories: - -- commit_messages - +- commit_message_generation - conventional_commits diff --git a/prompts/github_issue_creator_assistant/metadata.yml b/prompts/github_issue_creator_assistant/metadata.yml index f2dda6a..4917211 100644 --- a/prompts/github_issue_creator_assistant/metadata.yml +++ b/prompts/github_issue_creator_assistant/metadata.yml @@ -6,16 +6,17 @@ subcategories: directory: github_issue_creator_assistant tags: - github -- issues -- formatting -- best_practices +- issue_tracking - project_management -one_line_description: Creates well-structured GitHub Issues from various inputs -description: This prompt creates an AI assistant that specializes in generating perfectly - formatted GitHub Issues. It takes user input and project context to create comprehensive - issues following best practices, including proper categorization, labeling, and - assignment suggestions. +- documentation +- collaboration +one_line_description: Creates well-structured GitHub Issues from various types of + input +description: This prompt generates a specialized assistant that transforms user input + and project context into perfectly formatted GitHub Issues. It analyzes the provided + information, structures the issue following best practices, and suggests appropriate + labels, milestones, and assignees based on the project context. variables: - '{{USER_INPUT}}' - '{{PROJECT_CONTEXT}}' -content_hash: None +content_hash: 3a86770d0b006541908b4f944b15e7b5 diff --git a/prompts/github_issue_creator_assistant/view.md b/prompts/github_issue_creator_assistant/view.md index b173da0..93457d7 100644 --- a/prompts/github_issue_creator_assistant/view.md +++ b/prompts/github_issue_creator_assistant/view.md @@ -2,19 +2,17 @@ ### ✏️ One-line Description -**Creates well-structured GitHub Issues from various inputs** +**Creates well-structured GitHub Issues from various types of input** ### 📄 Description -This prompt creates an AI assistant that specializes in generating perfectly formatted GitHub Issues. It takes user input and project context to create comprehensive issues following best practices, including proper categorization, labeling, and assignment suggestions. +This prompt generates a specialized assistant that transforms user input and project context into perfectly formatted GitHub Issues. It analyzes the provided information, structures the issue following best practices, and suggests appropriate labels, milestones, and assignees based on the project context. ### 🔧 Variables - - `{{USER_INPUT}}` - - `{{PROJECT_CONTEXT}}` @@ -120,20 +118,15 @@ Remember to use your best judgment when creating the issue, and ensure that all ### 🔖 Tags - - github +- issue_tracking -- issues - - -- formatting - - -- best_practices +- project_management +- documentation -- project_management +- collaboration ### 📚 Category @@ -143,9 +136,7 @@ Primary Category: project_management Subcategories: - - issue_tracking - - collaboration diff --git a/prompts/github_pull_request_generator/metadata.yml b/prompts/github_pull_request_generator/metadata.yml index 8352f47..b12274c 100644 --- a/prompts/github_pull_request_generator/metadata.yml +++ b/prompts/github_pull_request_generator/metadata.yml @@ -8,14 +8,14 @@ tags: - github - pull_request - code_review +- collaboration - best_practices -- documentation one_line_description: Generates comprehensive and well-structured GitHub pull requests description: This prompt creates perfect pull requests for GitHub projects. It generates - a detailed PR description including title, changes, documentation updates, and additional - notes, adhering to best practices and project standards. The output is formatted - in GitHub-flavored markdown for easy copy-pasting. + a comprehensive description, lists changes, includes documentation updates, and + suggests labels and reviewers. The output adheres to best practices and is formatted + in GitHub-flavored markdown. variables: - '{{CHANGE_DETAILS}}' - '{{PROJECT_CONTEXT}}' -content_hash: None +content_hash: b6ad0e1be1aa1be5150cdfc15b876e7a diff --git a/prompts/github_pull_request_generator/view.md b/prompts/github_pull_request_generator/view.md index 6d617c3..c8e040b 100644 --- a/prompts/github_pull_request_generator/view.md +++ b/prompts/github_pull_request_generator/view.md @@ -6,15 +6,13 @@ ### 📄 Description -This prompt creates perfect pull requests for GitHub projects. It generates a detailed PR description including title, changes, documentation updates, and additional notes, adhering to best practices and project standards. The output is formatted in GitHub-flavored markdown for easy copy-pasting. +This prompt creates perfect pull requests for GitHub projects. It generates a comprehensive description, lists changes, includes documentation updates, and suggests labels and reviewers. The output adheres to best practices and is formatted in GitHub-flavored markdown. ### 🔧 Variables - - `{{CHANGE_DETAILS}}` - - `{{PROJECT_CONTEXT}}` @@ -93,22 +91,17 @@ Your goal is to create a pull request that is easy to review, understand, and me ### 🔖 Tags - - github - - pull_request - - code_review +- collaboration - best_practices -- documentation - - ### 📚 Category Primary Category: version_control @@ -116,9 +109,7 @@ Primary Category: version_control Subcategories: - - code_review - - collaboration diff --git a/prompts/god_tier_assistant_generator/metadata.yml b/prompts/god_tier_assistant_generator/metadata.yml index e9b8ffb..5e23883 100644 --- a/prompts/god_tier_assistant_generator/metadata.yml +++ b/prompts/god_tier_assistant_generator/metadata.yml @@ -1,20 +1,21 @@ title: God Tier Assistant Generator primary_category: artificial_intelligence subcategories: +- prompt_engineering - specialized_ai_agents -- creative_ideation directory: god_tier_assistant_generator tags: -- ai_assistants -- creative_thinking +- ai_assistant +- creative_ideation - specialized_agents -- idea_generation -- topic_specific +- innovation +- prompt_engineering one_line_description: Generates innovative ideas for specialized AI assistants based on given topics -description: Creates concepts for highly capable AI assistants tailored to specific - topics or roles. Focuses on unique capabilities, core competencies, and effective - user interactions to maximize value and outcomes. +description: Creates concepts for highly specialized "god tier" AI assistants tailored + to specific topics or roles. The prompt guides the AI to generate creative, powerful, + and valuable assistant ideas with unique capabilities and effective interaction + styles. variables: - '{{TOPIC}}' -content_hash: None +content_hash: 21fc0c6a4790ef6f8b9e082eec146da7 diff --git a/prompts/god_tier_assistant_generator/view.md b/prompts/god_tier_assistant_generator/view.md index 3f12a82..d600cae 100644 --- a/prompts/god_tier_assistant_generator/view.md +++ b/prompts/god_tier_assistant_generator/view.md @@ -6,12 +6,11 @@ ### 📄 Description -Creates concepts for highly capable AI assistants tailored to specific topics or roles. Focuses on unique capabilities, core competencies, and effective user interactions to maximize value and outcomes. +Creates concepts for highly specialized "god tier" AI assistants tailored to specific topics or roles. The prompt guides the AI to generate creative, powerful, and valuable assistant ideas with unique capabilities and effective interaction styles. ### 🔧 Variables - - `{{TOPIC}}` @@ -54,20 +53,15 @@ Remember to tailor your idea specifically to the given topic and focus on creati ### 🔖 Tags +- ai_assistant -- ai_assistants - - -- creative_thinking - +- creative_ideation - specialized_agents +- innovation -- idea_generation - - -- topic_specific +- prompt_engineering ### 📚 Category @@ -77,9 +71,7 @@ Primary Category: artificial_intelligence Subcategories: +- prompt_engineering - specialized_ai_agents - -- creative_ideation - diff --git a/prompts/software_specification_generator/metadata.yml b/prompts/software_specification_generator/metadata.yml index 93e9e64..6f04952 100644 --- a/prompts/software_specification_generator/metadata.yml +++ b/prompts/software_specification_generator/metadata.yml @@ -1,21 +1,21 @@ title: Software Specification Generator primary_category: project_management subcategories: -- requirements_gathering -- documentation +- software_requirements +- product_management directory: software_specification_generator tags: -- product_management - software_specs - requirements_analysis -- documentation +- product_management - user_interaction -one_line_description: Generates comprehensive software specifications based on user +- documentation +one_line_description: Creates comprehensive software specifications based on user requirements -description: This prompt creates an AI assistant that acts as a software product manager - to define clear and precise software specifications. It conducts an interactive - review process with the user, analyzes requirements, and produces a detailed specification - document covering all aspects of the software project. +description: Generates detailed software specification documents through an interactive + process with users. Analyzes user requirements, asks clarifying questions, and produces + a structured spec document covering all aspects of software development, from project + overview to future considerations. variables: - '{{USER_REQUIREMENTS}}' -content_hash: None +content_hash: 0453cfb878dfeafebd5a8e9bbd45d44c diff --git a/prompts/software_specification_generator/view.md b/prompts/software_specification_generator/view.md index 541a926..3e58c5c 100644 --- a/prompts/software_specification_generator/view.md +++ b/prompts/software_specification_generator/view.md @@ -2,16 +2,15 @@ ### ✏️ One-line Description -**Generates comprehensive software specifications based on user requirements** +**Creates comprehensive software specifications based on user requirements** ### 📄 Description -This prompt creates an AI assistant that acts as a software product manager to define clear and precise software specifications. It conducts an interactive review process with the user, analyzes requirements, and produces a detailed specification document covering all aspects of the software project. +Generates detailed software specification documents through an interactive process with users. Analyzes user requirements, asks clarifying questions, and produces a structured spec document covering all aspects of software development, from project overview to future considerations. ### 🔧 Variables - - `{{USER_REQUIREMENTS}}` @@ -98,21 +97,16 @@ Remember to maintain a professional and thorough approach throughout the process ### 🔖 Tags - -- product_management - - - software_specs - - requirements_analysis - -- documentation - +- product_management - user_interaction +- documentation + ### 📚 Category @@ -121,9 +115,7 @@ Primary Category: project_management Subcategories: +- software_requirements -- requirements_gathering - - -- documentation +- product_management