/manage-agent-config
Manage agent configuration files in agents/{agent}/config.yml.
Usage
code
/manage-agent-config <action> <agent> [options]
Actions:
- •
validate— Check config against schema and completeness - •
create— Create new agent config interactively - •
audit— Deep audit: which rules apply, which should be excluded/overridden - •
sync— Update config based on audit findings
Examples:
code
/manage-agent-config validate claude /manage-agent-config create cursor /manage-agent-config audit claude /manage-agent-config sync copilot
Process
Validate
- •Load
agents/{agent}/config.yml - •Check against
schemas/agent.schema.yml - •Verify universal variables exist
- •Report issues
Create
- •Prompt for agent details (name, prefix, file patterns)
- •Determine feature support (rules dir, skills, etc.)
- •Generate config with appropriate excludes
- •Validate and save
Audit
- •Load agent config
- •For each core rule, check if agent supports the feature
- •Compare against current excludes/overrides
- •Generate recommendations
Sync
- •Run audit
- •Apply recommended changes
- •Validate result
Reference Files
- •validation-checks.md — Schema and completeness checks
- •audit-process.md — How to audit systematically
- •feature-matrix.md — Agent feature support reference