-
-
Notifications
You must be signed in to change notification settings - Fork 9
Migrate GitHub Copilot agent config from .github/copilot-instructions.md to AGENTS.md
#58
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
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||||
|
|
||||||
| ### Changed | ||||||
|
|
||||||
| - **GitHub Copilot migrated to `AGENTS.md`** | ||||||
| - GitHub Copilot agent configuration now uses `AGENTS.md` (shared with Codex and OpenCode) instead of `.github/copilot-instructions.md` | ||||||
| - Follows the [Agents.md standard](https://github.blog/changelog/2025-08-28-copilot-coding-agent-now-supports-agents-md-custom-instructions/) now supported by GitHub Copilot | ||||||
| - Provides a single source of truth for Copilot, Codex, and OpenCode agents | ||||||
| - Existing `.github/copilot-instructions.md` files are not removed automatically; run `coldbox ai refresh` to write the updated location | ||||||
|
||||||
| - Existing `.github/copilot-instructions.md` files are not removed automatically; run `coldbox ai refresh` to write the updated location | |
| - Running `coldbox ai refresh` writes the new `AGENTS.md` location, but any existing `.github/copilot-instructions.md` files are not removed automatically and must be deleted manually if desired |
Copilot
AI
Apr 27, 2026
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.
The "Supported Agents" list marks Copilot as using AGENTS.md (shared) but leaves Codex/OpenCode as just AGENTS.md. Since all three now share the same file, this line should mark Codex and OpenCode as shared as well (or rephrase to avoid inconsistency).
| - **Supported Agents**: Claude (`CLAUDE.md`), GitHub Copilot (`AGENTS.md`, shared), Cursor (`.cursorrules`), Codex (`AGENTS.md`), Gemini (`GEMINI.md`), OpenCode (`AGENTS.md`) | |
| - **Supported Agents**: Claude (`CLAUDE.md`), GitHub Copilot (`AGENTS.md`, shared), Cursor (`.cursorrules`), Codex (`AGENTS.md`, shared), Gemini (`GEMINI.md`), OpenCode (`AGENTS.md`, shared) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,7 +46,7 @@ component excludeFromHelp=true extends="coldbox-cli.models.BaseCommand" { | |
| .line() | ||
| .yellowLine( "Note: Each agent creates its own configuration file:" ) | ||
| .line( " Claude: CLAUDE.md" ) | ||
| .line( " Copilot: .github/copilot-instructions.md" ) | ||
| .line( " Copilot: AGENTS.md (shared)" ) | ||
| .line( " Cursor: .cursorrules" ) | ||
|
Comment on lines
47
to
50
|
||
| .line() | ||
| } | ||
|
|
||
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.
This supported-agents list marks Copilot as using
AGENTS.md(shared) but does not indicate that Codex and OpenCode also shareAGENTS.md. Update the wording for accuracy/consistency (or phrase it as a single sharedAGENTS.mdused by multiple agents).