@@ -202,10 +202,10 @@ graph LR
202202
203203Additionally, agent configuration files are created for you (paths defined in ` AgentRegistry.cfc ` ):
204204
205- * ` CLAUDE.md ` - Claude Desktop/Code assistant
205+ * ` CLAUDE.md ` - Claude Desktop/Code assistant (points to ` AGENTS.md ` via ` @AGENTS.md ` )
206206* ` .github/copilot-instructions.md ` - GitHub Copilot
207207* ` .cursorrules ` - Cursor IDE
208- * ` AGENTS.md ` - Codex & OpenCode (shared file)
208+ * ` AGENTS.md ` - Codex, OpenCode & Claude (shared file)
209209* ` GEMINI.md ` - Gemini CLI
210210
211211### Keeping Resources Updated
@@ -545,7 +545,7 @@ Override core or module guidelines to customize them for your needs:
545545
546546``` bash
547547# Override a core guideline
548- coldbox ai guidelines install coldbox --override
548+ coldbox ai guidelines override coldbox
549549
550550# Edit the override
551551edit .ai/guidelines/overrides/coldbox.md
@@ -801,7 +801,7 @@ Override built-in skills to adapt them to your conventions:
801801
802802``` bash
803803# Override a core skill
804- coldbox ai skills install creating-handlers --override
804+ coldbox ai skills override creating-handlers
805805
806806# Edit the override
807807edit .ai/skills/overrides/creating-handlers/SKILL.md
@@ -894,7 +894,7 @@ ColdBox AI Integration supports **6 major AI agents** with automatic configurati
894894
895895| Agent | Config File | Description |
896896| ------------------ | --------------------------------- | ------------------------------ |
897- | ** Claude** | ` CLAUDE.md ` | Claude Desktop and Claude Code |
897+ | ** Claude** | ` CLAUDE.md ` → ` AGENTS.md ` | Claude Desktop and Claude Code |
898898| ** GitHub Copilot** | ` .github/copilot-instructions.md ` | VS Code Copilot integration |
899899| ** Cursor** | ` .cursorrules ` | Cursor IDE rules |
900900| ** Codex** | ` AGENTS.md ` (shared) | Codex AI assistant |
@@ -916,7 +916,7 @@ coldbox ai agents add claude copilot cursor
916916coldbox ai agents remove cursor
917917
918918# Regenerate all configurations
919- coldbox ai agents refresh
919+ coldbox ai refresh
920920```
921921
922922Each agent configuration includes:
@@ -1082,15 +1082,7 @@ Custom server configuration in `.ai/manifest.json`:
10821082
10831083### MCP Configuration
10841084
1085- Generate agent-specific MCP configurations:
1086-
1087- ``` bash
1088- # Generate .mcp.json for all agents
1089- coldbox ai mcp config
1090-
1091- # Agent-specific configuration
1092- coldbox ai mcp config --agent=claude
1093- ```
1085+ MCP server configurations are generated automatically as part of ` coldbox ai install ` and ` coldbox ai refresh ` .
10941086
10951087Example generated ` .mcp.json ` :
10961088
@@ -1123,7 +1115,7 @@ ColdBox AI Integration provides comprehensive CLI commands for managing your AI
11231115``` bash
11241116# Initial setup
11251117coldbox ai install # Interactive installation wizard
1126- coldbox ai install --agents= claude # Install for specific agent
1118+ coldbox ai install agent claude # Install for specific agent
11271119
11281120# View configuration
11291121coldbox ai info # Show current configuration
@@ -1141,8 +1133,8 @@ coldbox ai refresh # Sync with installed modules
11411133``` bash
11421134coldbox ai guidelines list # List installed
11431135coldbox ai guidelines list --verbose # With descriptions
1144- coldbox ai guidelines install coldbox qb # Install specific
1145- coldbox ai guidelines uninstall qb # Remove guideline
1136+ coldbox ai guidelines add coldbox qb # Install specific
1137+ coldbox ai guidelines remove qb # Remove guideline
11461138coldbox ai guidelines refresh # Update from modules
11471139```
11481140
@@ -1151,8 +1143,8 @@ coldbox ai guidelines refresh # Update from modules
11511143``` bash
11521144coldbox ai skills list # List installed
11531145coldbox ai skills list --verbose # With descriptions
1154- coldbox ai skills install creating-handlers # Install specific
1155- coldbox ai skills uninstall creating-handlers # Remove skill
1146+ coldbox ai skills add creating-handlers # Install specific
1147+ coldbox ai skills remove creating-handlers # Remove skill
11561148coldbox ai skills refresh # Update from modules
11571149```
11581150
0 commit comments