The CLI toolkit for AI coding assistant configuration.
Scaffold. Init. And more coming soon.
$ npx agent-config init\n\n ◆ agent-config v0.1.0\n │\n ◇ Detected: TypeScript + React + Tailwind\n │\n ◆ Which tools? (select all that apply)
scaffold
Generate config files for any AI assistant. Supports CLAUDE.md, .cursorrules, copilot-instructions.md, AGENTS.md, .windsurfrules
├── --tool claude → CLAUDE.md├── --tool cursor → .cursorrules├── --tool copilot → copilot-instructions.md├── --tool agents → AGENTS.md└── --tool windsurf → .windsurfrulesinit
Interactive setup wizard. Detects your project stack and generates configs for each AI tool you use.
├── detect: framework, language, tooling├── prompt: select AI tools├── generate: config files per tool└── output: ready-to-commit filesaudit
COMING SOONAnalyze existing configs for completeness and conflicts. Health score with actionable recommendations.
├── check: format validity├── check: missing sections├── check: conflicting rules├── check: deprecated patterns└── output: health score 0-100doctor
COMING SOONDiagnose config issues and suggest fixes. Checks for stale rules, missing files, and common mistakes.
├── check: stale/outdated rules├── check: missing config files├── check: common anti-patterns└── output: fix suggestionssync
COMING SOONKeep multiple config formats in sync. Define a source of truth and propagate.
├── strategy: source-of-truth├── strategy: merge├── strategy: override├── watch mode: --watch└── dry run: --dry-runconvert
COMING SOONConvert between formats. cursorrules to CLAUDE.md, CLAUDE.md to cursorrules, any to any.
├── path: .cursorrules → CLAUDE.md├── path: CLAUDE.md → .cursorrules├── path: copilot → AGENTS.md├── path: any → any└── flag: --preserve-comments# Run directly (recommended — no install needed)
npx agent-config init
npx agent-config scaffold claude-code
# Or install globally if you prefer
npm install -g agent-config
agent-config init
Requirements: Node.js ≥ 18.0
Model Context Protocol server that lets AI coding agents query agentconfig.ing data directly. Your agent gets access to every tool, file reference, and comparison — without leaving the editor.
{
"mcpServers": {
"agentconfig": {
"command": "npx",
"args": ["agent-config", "mcp"]
}
}
}
Add the above to your Claude Code MCP config to connect.
list_tools
Browse all AI coding tools, optionally filter by category
get_tool
Get full tool details including config file specs and examples
list_files
Browse all config file format references
get_file
Get full file reference with gotchas and annotated examples
list_agents
Browse all agent frameworks
get_agent
Get full agent framework details
compare_tools
Side-by-side comparison of any two tools
scaffold_config
Generate ready-to-write config files for a tool
find_config_for
Look up which tool uses a given config filename
get_equivalent
Find the equivalent config file in another tool
10 tools available · All read-only · No API key required