·
45 commits
to development
since this release
Fixed
coldbox ai doctorandcoldbox ai uninstallchecking wrong directory- Both commands were checking for a
.aidirectory instead of.agents, causing them to always report "not installed" even after a successfulcoldbox ai install AIService.diagnose()now uses thestatic.AI_DIRconstant (.agents) instead of the hardcoded/.aipathcoldbox ai uninstallnow correctly checks, removes, and references the.agentsdirectory
- Both commands were checking for a
coldbox ai skills add slug --listwas not working.coldbox ai skills removereinstalling removed skills during refresh- When a skill was removed via
coldbox ai skills remove, the subsequent agent config regeneration step (refresh()) would detect the skill as "missing" (because its module dependency was still present inbox.json) and immediately reinstall it - Removed skills are now tracked in a new
manifest.excludes[]array so thatrefresh()will never auto-reinstall them - Explicitly re-installing a previously excluded skill via
coldbox ai skills installlifts the exclusion and restores normal auto-management
- When a skill was removed via
Added
- VSCode Copilot MCP Mirroring
- When Copilot is a configured agent, MCP server configuration is now mirrored to
.vscode/mcp.jsonusing the VSCode-specific schema ("servers"+"inputs": []) - Ensures GitHub Copilot agents in VSCode can discover MCP servers registered via
coldbox ai mcpcommands .vscode/mcp.jsonis written alongside the root.mcp.jsonwhenevergenerateMCPJson()runs (install, refresh, MCP add/remove)
- When Copilot is a configured agent, MCP server configuration is now mirrored to
coldbox ai skills list --jsonflag to output the skills manifest in JSON format for easier parsing in scripts and CI pipelinescoldbox ai skills updatecommand to re-download and overwrite all installed registry skills with per-skill feedback and progress updatescoldbox ai skills update <name>command to re-download and overwrite a single installed registry skill by local name
Improvements
- New progress bar when doing
coldbox ai skills list --outdatedto check for updates in the registry, providing better feedback during potentially long-running integrity checks