From codagent
Initializes Agent Skills by verifying agent-validator CLI (>=0.15), config.yml, then lists skills and commits boilerplate.
npx claudepluginhub codagent-ai/agent-skills --plugin codagentThis skill uses the workspace's default tool permissions.
Set up Agent Skills in the current project. This skill is idempotent — safe to re-run.
Scans project structure (monorepo, split, single) and tooling to configure or reconfigure Agent Validator checks and reviews. Use for 'set up validator' or repo init.
Bootstraps agentic dev environment from agent.toml: validates required env vars/commands/runtimes, configures Claude Code plugins/MCP servers. Use for new repos, misconfigs, or new machines.
Validates AI agent configuration files including SKILL.md, CLAUDE.md, AGENTS.md, hooks, MCP, Cursor, and Copilot instructions against 385 rules using agnix CLI. Supports lint, auto-fix, watch modes; installs tool if needed.
Share bugs, ideas, or general feedback.
Set up Agent Skills in the current project. This skill is idempotent — safe to re-run.
Announce at start: "Initializing Agent Skills in this project."
Check that the Agent Validator CLI is installed. If missing, tell the user what to install and stop.
agent-validator — run agent-validator --version.
npm install -g agent-validator, then run agent-validator init in your project, then re-run /codagent:init."npm install -g agent-validator@latest, then re-run /codagent:init."Use this shell snippet to compare versions:
version_gte() { [ "$(printf '%s\n' "$2" "$1" | sort -V | head -1)" = "$2" ]; }
Example: version_gte "$installed_version" "0.15" returns true if $installed_version ≥ 0.15.
If the CLI is missing or out of date, stop. The user must resolve it first, then resume /codagent:init.
Validator config (check after CLI passes):
.validator/config.yml must exist. If not found: "Validator config not found. Run agent-validator init in your project first, then re-run /codagent:init." Stop.Print a summary:
Agent Skills initialized successfully.
Available skills:
- /codagent:propose — evaluate an idea and write a proposal
- /codagent:spec — interview-driven requirement discovery
- /codagent:design — brainstorm architecture and write a design doc
- /codagent:plan-tasks — break a change into scoped task files
- /codagent:implement-and-validate — implement a single task and verify with the validator
- /codagent:finalize-pr — push PR, wait for CI, fix failures
Invoke /agent-validator:validator-commit skip to commit any scaffolding changes. Checks are skipped because init only writes boilerplate.
/codagent:init.validator/config.yml — only add/update entry points and reviews