Forge doctor
Zero-dependency multi-agent build, automation and review system for Claude Code. 18 agents, 23 skills, a live per-project dashboard, and a /setup-forge onboarding wizard. One command: /forge.
npx -y skills add ForgeyClap/claude-forge --skill forge-doctorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 18 days oldThe repository was created 18 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Run Forge's self-test + secret/leak scan — node --check every source, run all test suites, verify the honesty gate still rejects unknown events, confirm the dashboard SPA is intact, and scan git-tracked files for leaked secrets. Use before shipping, after big changes, or when the owner asks "test everything / does it execute / find leaks".
SKILL.md
2.1 KB, as published. Nobody here has run it
forge-doctor — self-test + leak scan
One command that proves the Forge install in this project actually works and leaks nothing.
When to use
- The owner asks to "test everything", "check it all executes", or "find leaks".
- Before a sync/handoff, or after a batch of tooling changes.
- As the Security Boss's evidence step (the leak scan is a real security check).
How to run
node .claude/forge-bin/forge-doctor.cjs # print a green/red summary, exit 0/1
node .claude/forge-bin/forge-doctor.cjs --run <run_id> # also write <run>/doctor.json + log doctor_run
node .claude/forge-bin/forge-doctor.cjs --json # full machine-readable report
What it checks (all real — no fabrication)
- node --check on every
.cjs/.jsunderforge-bin/+forge-dashboard/. - tests — runs every
forge-bin/*.test.cjsand tallies passed/failed. - honesty gate — feeds
log-event.cjsa known type (expect accept) and an unknown type (expect hard-reject / exit 2), then deletes the throwaway run. Proves strict events still reject junk. - dashboard SPA — the render files are all present.
- leak scan — scans git-tracked files with the hardened
SECRET_PATTERNS; reports only{file, pattern}, never the matched secret..env.example+ binaries are skipped.
Writes <run>/doctor.json (read by the dashboard Doctor panel + the Project Registry's test_status).
Exit code 0 = all green, 1 = a check failed — safe to gate a hook/CI on it.
Honesty
Real command output only. A failing check is reported as failing; the leak scan never prints a secret,
only the file + which pattern matched. test_status in the registry mirrors this doctor.json.