SKILL.md
/manage-agent-config
Manage agent configuration files. Config paths resolved from backbone.agents.{agent}.config.
Usage
/manage-agent-config <action> <agent> [options]
Actions:
validate— Check config against schemacreate— Create new agent config interactivelyaudit— Audit: which vars are defined, which are missingsync— Update config based on audit findings
Examples:
/manage-agent-config validate claude
/manage-agent-config create cursor
/manage-agent-config audit claude
/manage-agent-config sync copilot
Process
Validate
- Load agent config from
backbone.agents.{agent}.config - Check against schema from
backbone.schemas.agent - Verify required vars exist (maininstructionfile, instruction_files)
- Report issues
Create
- Prompt for agent details (name, file patterns)
- Determine feature support (rules dir, skills, etc.)
- Generate config with appropriate vars and excludes
- Validate and save
Audit
- Load agent config
- Check all vars resolve to existing paths
- Verify excludes patterns are valid
- Generate recommendations
Sync
- Run audit
- Apply recommended changes
- Validate result
Path Resolution
Resolve agent config and schema paths from .reporails/backbone.yml:
- Agent config:
backbone.agents.{agent}.config - Agent schema:
backbone.schemas.agent