-
Notifications
You must be signed in to change notification settings - Fork 2
docs: streamline copilot setup check prompt Phase 1 #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,7 +1,9 @@ | ||||||
| --- | ||||||
| mode: 'agent' | ||||||
| agent: 'agent' | ||||||
| argument-hint: 'none' | ||||||
| name: 'copilot-setup-check' | ||||||
|
Comment on lines
+3
to
+4
|
||||||
| argument-hint: 'none' | |
| name: 'copilot-setup-check' |
Copilot
AI
Nov 28, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent tool naming format. Other prompt files use formats like 'search/codebase', 'edit/editFiles', 'runCommands/terminalSelection', etc., but this change introduces 'search/codebase' alongside plain 'search'. The first item uses a slash format while others don't, creating naming inconsistency. Additionally, 'codebase' as a standalone tool doesn't appear in other prompts—it's always used with the 'search/' prefix.
| tools: ['search/codebase', 'search', 'usages', 'problems', 'changes'] | |
| tools: ['search/codebase', 'usages', 'problems', 'changes'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent frontmatter field name. Other prompt files in this repository use
mode: 'agent'(see write-adr.prompt.md and write-prd.prompt.md), but this change introducesagent: 'agent'. This creates an inconsistency across prompt files and may break tooling that expects themodefield.