You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As AI coding assistants (such as GitHub Copilot, Cursor, etc.) become more common in development workflows, many teams want to include AI prompt guide/rules markdown files in their Angular projects. However, each assistant expects these files in different locations and formats (e.g., .github/COPILOT_GUIDE.md for Copilot, .cursor/rules.md for Cursor).
Currently, adding these files is a manual process and can be inconsistent across teams and projects.
Feature Request:
Add a schematic or CLI command that allows users to generate an AI prompt guide markdown file in the correct location and format for their chosen assistant. For example:
Code
ng generate prompt-guide --assistant copilot # Generates .github/COPILOT_GUIDE.md
ng generate prompt-guide --assistant cursor # Generates .cursor/rules.md
ng generate prompt-guide --assistant generic # Generates PROMPT_GUIDE.md in project root
This would:
Help teams adopt AI assistant best practices quickly.
Ensure prompt guides are in the correct and expected locations.
Allow easy expansion as new assistants and conventions emerge.
Keep Angular projects clean by not including these files by default.
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
The text was updated successfully, but these errors were encountered:
The Angular CLI isn't currently optimized for generating AI prompt guides, but this gap presents a valuable opportunity for the community to extend CLI schematics and introduce this functionality.
Command
generate
Description
As AI coding assistants (such as GitHub Copilot, Cursor, etc.) become more common in development workflows, many teams want to include AI prompt guide/rules markdown files in their Angular projects. However, each assistant expects these files in different locations and formats (e.g., .github/COPILOT_GUIDE.md for Copilot, .cursor/rules.md for Cursor).
Currently, adding these files is a manual process and can be inconsistent across teams and projects.
Feature Request:
Add a schematic or CLI command that allows users to generate an AI prompt guide markdown file in the correct location and format for their chosen assistant. For example:
Code
ng generate prompt-guide --assistant copilot # Generates .github/COPILOT_GUIDE.md
ng generate prompt-guide --assistant cursor # Generates .cursor/rules.md
ng generate prompt-guide --assistant generic # Generates PROMPT_GUIDE.md in project root
This would:
Help teams adopt AI assistant best practices quickly.
Ensure prompt guides are in the correct and expected locations.
Allow easy expansion as new assistants and conventions emerge.
Keep Angular projects clean by not including these files by default.
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
The text was updated successfully, but these errors were encountered: