From agent-doctor
Run a health check on the AI coding stack — verify the agent CLI, MCP servers, memory system, API keys, and runtimes are actually WORKING (not just installed). Use when the user says "/doctor", "health check", "check my setup", "is X working", "diagnose my environment", "why is memory/MCP not working", or after install/config changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-doctor:doctorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run `agent-doctor` and present the results clearly.
Run agent-doctor and present the results clearly.
Run the deep check (try in this order; first that works wins):
agent-doctor --deep
If agent-doctor is not on PATH:
npx -y agent-doctor --deep
If neither resolves, run the bundled copy:
node "${CLAUDE_PLUGIN_ROOT}/src/cli.js" --deep
Show the user the PASS / WARN / FAIL table verbatim (it's already formatted + colored).
For every FAIL or WARN, restate the one-line fix. Then offer the Remediation flow below (research a real fix, apply with consent). Never auto-apply.
If everything is green, say so in one line.
After showing the report, if there are any FAIL or WARN rows, you MAY help fix them — but only when the user opts in.
id, its detail, and the built-in fix hint; read the relevant config/log if it is quick. Prefer official docs and primary sources, and use a multi-angle research workflow rather than a single search.agent-doctor --only <id> --force and report whether it is now GREEN. The --force is required — it bypasses the throttle cache, so a just-fixed throttled check (API keys, deep probes) reflects the new state instead of the stale cached result. If it still fails, research once more or stop and say so.This flow needs a research-capable agent. A bare agent-doctor run still prints the static fix hint — that is the floor; this is the bonus.
memory:claude-mem-writing — it catches the "logging but writing 0 memories" silent failure by comparing observation count vs prompt count in the SQLite DB.agent-doctor --json. For a CI gate use agent-doctor --fail-on fail.~/.agent-doctor/checks.json or a project checks.json (merged by id).npx claudepluginhub najemwehbe/agent-doctor --plugin agent-doctorGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.