auto-setup
Auto-detect project type and configure quality gates, permissions, and hooks for a new codebase
Diagnose pro-workflow setup and Claude Code configuration
> /plugin marketplace add rohitg00/pro-workflow > /plugin install pro-workflow@pro-workflow
How it fires
How this command gets triggered: by you, by Claude, or both.
/doctorContext preview
What this command does when you run it.
Diagnose pro-workflow setup and Claude Code configuration
description: Diagnose pro-workflow setup and Claude Code configuration
Run a diagnostic on your pro-workflow and Claude Code setup.
ls -la ~/.claude/commands/wrap-up.md 2>/dev/null && echo "Commands: OK" || echo "Commands: MISSING" ls -la ~/.pro-workflow/data.db 2>/dev/null && echo "Database: OK" || echo "Database: MISSING"
Check if hooks.json is loaded and hooks are active. Run:
cat ~/.claude/settings.local.json 2>/dev/null | head -5
If hooks aren't firing, check:
Verify each hook script on both happy and failing inputs:
# commit-validate: valid passes, bad format blocks (exit 2)
echo '{"tool_input":{"command":"git commit -m \"feat: x\""}}' | node "$CLAUDE_PLUGIN_ROOT/scripts/commit-validate.js" && echo "commit-validate pass: OK"
echo '{"tool_input":{"command":"git commit -m \"not conventional\""}}' | node "$CLAUDE_PLUGIN_ROOT/scripts/commit-validate.js" 2>&1; test $? -eq 2 && echo "commit-validate block: OK"
# secret-scan: clean passes, hardcoded key blocks
echo '{"tool_input":{"content":"hello"}}' | node "$CLAUDE_PLUGIN_ROOT/scripts/secret-scan.js" && echo "secret-scan pass: OK"
echo '{"tool_input":{"content":"key=\"AKIAIOSFODNN7EXAMPLE\""}}' | node "$CLAUDE_PLUGIN_ROOT/scripts/secret-scan.js" 2>&1; test $? -eq 2 && echo "secret-scan block: OK"
# git-blast-radius: safe passes, destructive blocks
echo '{"tool_input":{"command":"git status"}}' | node "$CLAUDE_PLUGIN_ROOT/scripts/git-blast-radius.js" && echo "git-blast-radius pass: OK"
echo '{"tool_input":{"command":"git reset --hard"}}' | node "$CLAUDE_PLUGIN_ROOT/scripts/git-blast-radius.js" 2>&1; test $? -eq 2 && echo "git-blast-radius block: OK"Every line should print an `OK`. Missing any means the script is silently broken.
If you need to run a blocked git operation deliberately (e.g. intentional `git reset --hard` during recovery), export `PRO_WORKFLOW_ALLOW_UNSAFE_GIT=1` for the shell that will run it. Never set it globally.
/context
Check active MCPs. Target: <10 servers, <80 tools.
wc -l CLAUDE.md 2>/dev/null || echo "No CLAUDE.md found"
git status --short git stash list
cat .claude/settings.json 2>/dev/null | head -3 cat ~/.claude/settings.json 2>/dev/null | head -3
node $PRO_WORKFLOW_ROOT/skills/wiki-builder/scripts/wiki-cli.js list 2>/dev/null node $PRO_WORKFLOW_ROOT/skills/wiki-research-loop/scripts/research-loop.js status 2>/dev/null ls -1 ~/.pro-workflow/STOP 2>/dev/null && echo "KILL SWITCH ACTIVE — no research runs" tail -5 ~/.pro-workflow/tick.log 2>/dev/null
node $PRO_WORKFLOW_ROOT/skills/llm-council/scripts/council.js providers 2>/dev/null
| Issue | Fix | |-------|-----| | Commands missing | `cp -r /path/to/pro-workflow/commands/* ~/.claude/commands/` | | Database missing | `mkdir -p ~/.pro-workflow && npm run build` (in plugin dir) | | Hooks not firing | Check paths in hooks.json use absolute paths | | Context degraded | Run `/compact` or start fresh session | | Too many MCPs | Disable unused: `disabledMcpjsonServers` in settings | | CLAUDE.md too long | Split into root + package-level files |
After running checks, summarize:
Pro-Workflow Health Check Installation: OK / NEEDS SETUP Hooks: ACTIVE / INACTIVE Context: XX% (healthy/warning/critical) MCPs: X active (OK / TOO MANY) CLAUDE.md: XX lines (OK / SPLIT RECOMMENDED) Git: clean / X uncommitted files
Claude Code learns from your corrections: self-correcting memory that compounds over 50+ sessions. Context engineering, parallel worktrees, agent teams, and 17 battle-tested skills.
Repo: rohitg00/pro-workflow
Auto-detect project type and configure quality gates, permissions, and hooks for a new codebase
Smart context compaction with state preservation — saves critical state before compact and restores after
Track session costs, understand token spend, and get optimization tips