smithery.ai

manage-agent-config

Create, update, and validate agent configurations

First seen Mar 22, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,491 B
  • docs SUMMARY.md 76 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

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 schema
  • create — Create new agent config interactively
  • audit — Audit: which vars are defined, which are missing
  • sync — 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

  1. Load agent config from backbone.agents.{agent}.config
  2. Check against schema from backbone.schemas.agent
  3. Verify required vars exist (maininstructionfile, instruction_files)
  4. Report issues

Create

  1. Prompt for agent details (name, file patterns)
  2. Determine feature support (rules dir, skills, etc.)
  3. Generate config with appropriate vars and excludes
  4. Validate and save

Audit

  1. Load agent config
  2. Check all vars resolve to existing paths
  3. Verify excludes patterns are valid
  4. Generate recommendations

Sync

  1. Run audit
  2. Apply recommended changes
  3. 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