Skip to content

Commit 17405df

Browse files
Update documentation and prompts for consistency and clarity
- Standardized description formatting in various markdown files to use single quotes. - Added error handling utility in update-readme.js for safer file operations. - Improved title extraction logic in update-readme.js to handle frontmatter more robustly. - Updated chat modes section in README to reflect new emoji and sorted chat mode links. - Cleaned up various instruction files for better readability and consistency. - Ensured all markdown files end with a newline for better compatibility with version control.
1 parent a0754dd commit 17405df

39 files changed

+340
-204
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ This Code of Conduct is adapted from the [Contributor Covenant][homepage], versi
7171
available at [http://contributor-covenant.org/version/1/4][version]
7272

7373
[homepage]: http://contributor-covenant.org
74-
[version]: http://contributor-covenant.org/version/1/4/
74+
[version]: http://contributor-covenant.org/version/1/4/

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ Please note that this project is released with a [Contributor Code of Conduct](C
8282

8383
## License
8484

85-
By contributing to this repository, you agree that your contributions will be licensed under the MIT License.
85+
By contributing to this repository, you agree that your contributions will be licensed under the MIT License.

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,18 +68,15 @@ Ready-to-use prompt templates for specific development scenarios and tasks, defi
6868

6969
> 💡 **Usage**: Use `/prompt-name` in VS Code chat, run `Chat: Run Prompt` command, or hit the run button while you have a prompt open.
7070
71-
## 🧩 Custom Chat Modes
71+
## 🎭 Custom Chat Modes
7272

7373
Custom chat modes define specific behaviors and tools for GitHub Copilot Chat, enabling enhanced context-aware assistance for particular tasks or workflows.
7474

75-
- [4.1 Beast Mode](chatmodes/4.1-beast.chatmode.md) - A custom prompt to get GPT 4.1 to behave like a top-notch coding agent.
76-
- [Database Administrator Chat Mode](chatmodes/postgresql-dba.chatmode.md) - Work with PostgreSQL databases using the PostgreSQL extension.
77-
- [Debug Mode Instructions](chatmodes/debug.chatmode.md) - Debug your application to find and fix a bug
78-
- [Planning mode instructions](chatmodes/planner.chatmode.md) - Generate an implementation plan for new features or refactoring existing code.
79-
- [Refine Requirement or Issue Chat Mode](chatmodes/refine-issue.chatmode.md) - Refine the requirement or issue with Acceptance Criteria, Technical Considerations, Edge Cases, and NFRs
80-
81-
82-
> 💡 **Usage**: Create new chat modes using the command `Chat: Configure Chat Modes...`, then switch your chat mode in the Chat input from _Agent_ or _Ask_ to your own mode.
75+
- [4.1 Beast Mode](chatmodes/4.1-beast.chatmode.md)
76+
- [Debug Mode Instructions](chatmodes/debug.chatmode.md)
77+
- [Planning mode instructions](chatmodes/planner.chatmode.md)
78+
- [Database Administrator Chat Mode](chatmodes/postgresql-dba.chatmode.md)
79+
- [Refine Requirement or Issue Chat Mode](chatmodes/refine-issue.chatmode.md)
8380

8481
## 📚 Additional Resources
8582

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ This information will help us triage your report more quickly.
2828

2929
## Policy
3030

31-
See [GitHub's Safe Harbor Policy](https://docs.github.com/en/site-policy/security-policies/github-bug-bounty-program-legal-safe-harbor#1-safe-harbor-terms)
31+
See [GitHub's Safe Harbor Policy](https://docs.github.com/en/site-policy/security-policies/github-bug-bounty-program-legal-safe-harbor#1-safe-harbor-terms)

SUPPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ Please include one of the following statements file:
1212
-
1313
## GitHub Support Policy
1414

15-
Support for this project is limited to the resources listed above.
15+
Support for this project is limited to the resources listed above.

chatmodes/4.1-Beast.chatmode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,4 @@ I'm now checking to ensure that these changes will correctly update the UI when
133133
4. Reuse previous context unless something has changed.
134134
5. If redoing work, explain briefly *why* it’s necessary and proceed.
135135

136-
IMPORTANT: Do **not** return control the user until you have **fully completed the user's entire request**. All items in your todo list MUST be checked off. Failure to do so will result in a bad rating for you.
136+
IMPORTANT: Do **not** return control the user until you have **fully completed the user's entire request**. All items in your todo list MUST be checked off. Failure to do so will result in a bad rating for you.

chatmodes/debug.chatmode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Debug your application to find and fix a bug
2+
description: 'Debug your application to find and fix a bug'
33
tools: ['codebase', 'readFiles', 'editFiles', 'githubRepo', 'runCommands', 'fetch', 'search', 'usages', 'findTestFiles', 'get_errors', 'test_failure', 'run_in_terminal', 'get_terminal_output']
44
---
55

chatmodes/planner.chatmode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Generate an implementation plan for new features or refactoring existing code.
2+
description: 'Generate an implementation plan for new features or refactoring existing code.'
33
tools: ['codebase', 'fetch', 'findTestFiles', 'githubRepo', 'search', 'usages']
44
---
55
# Planning mode instructions
@@ -11,4 +11,4 @@ The plan consists of a Markdown document that describes the implementation plan,
1111
* Overview: A brief description of the feature or refactoring task.
1212
* Requirements: A list of requirements for the feature or refactoring task.
1313
* Implementation Steps: A detailed list of steps to implement the feature or refactoring task.
14-
* Testing: A list of tests that need to be implemented to verify the feature or refactoring task.
14+
* Testing: A list of tests that need to be implemented to verify the feature or refactoring task.

instructions/angular.instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: Angular-specific coding standards and best practices
3-
applyTo: "**/*.ts, **/*.html, **/*.scss, **/*.css"
2+
description: 'Angular-specific coding standards and best practices'
3+
applyTo: '**/*.ts, **/*.html, **/*.scss, **/*.css'
44
---
55

66
# Angular Development Instructions

instructions/aspnet-rest-apis.instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: Guidelines for building REST APIs with ASP.NET
3-
applyTo: "**/*.cs, **/*.json"
2+
description: 'Guidelines for building REST APIs with ASP.NET'
3+
applyTo: '**/*.cs, **/*.json'
44
---
55

66
# ASP.NET REST API Development

0 commit comments

Comments
 (0)