Skip to content

8.14.0

Latest

Choose a tag to compare

@github-actions github-actions released this 07 Jul 15:47

Added

  • Agent file conflict detection and resolution
    • coldbox ai install and coldbox ai refresh now detect existing agent configuration files (AGENTS.md, CLAUDE.md, GEMINI.md, .cursorrules) that were not created by ColdBox CLI and prompt the user to choose how to handle them:
    • Overwrite β€” Replace all conflicting files with ColdBox CLI content (also applied automatically when using --force)
    • Merge β€” Prepend the ColdBox CLI managed section at the top, preserving user content below
    • Skip β€” Leave existing files untouched
  • Kilo Code agent support β€” New supported agent in AgentRegistry with AGENTS.md for instructions and .kilo/skills/ for dedicated skills directory; skill symlinks created automatically for Kilo alongside other active agents
  • Pi agent support β€” New supported agent in AgentRegistry with AGENTS.md for instructions and .pi/skills/ for dedicated skills directory; skill symlinks created automatically for Pi alongside other active agents
  • Agent skill-directory symlinks
    • Each supported AI agent now has a dedicated skills directory registered in AgentRegistry (AGENT_SKILLS_DIRS):
    • claude β†’ .claude/skills
    • copilot β†’ .github/instructions
    • cursor β†’ .cursor/rules
    • kilo β†’ .kilo/skills
    • pi β†’ .pi/skills
    • codex, gemini, opencode β†’ no dedicated skills directory (use .agents/skills directly)
    • When a skill is installed via coldbox ai install, coldbox ai skills install, or coldbox ai refresh, the skill directory is created at the canonical .agents/skills/{name}/ location and a relative directory symlink is created inside every active agent's dedicated skills directory (e.g. .claude/skills/{name} β†’ ../../.agents/skills/{name}). This lets each agent discover skills through its own expected path without duplicating content.
    • Symlinks are automatically removed when a skill is removed (coldbox ai skills remove) or pruned during refresh.

Fixed

  • Invalid scope on FUNCTION_PATTERN variable in Agent Registry
  • coldbox ai install now registers the correct MCP server URL (https://boxlang.ortusbooks.com/~gitbook/mcp) for the BoxLang core language documentation entry instead of the BoxLang AI module URL