Loading...
Loading...
AI-agent readiness auditing for project documentation and workflows. Evaluates whether future Claude Code sessions can understand docs, execute workflows literally, and resume work effectively. Use when onboarding AI agents to a project or ensuring context continuity. Includes three specialized agents: context-auditor (AI-readability), workflow-validator (process executability), handoff-checker (session continuity). Use PROACTIVELY before handing off projects to other AI sessions or team members.
npx skill4agent add jezweb/claude-skills project-health| Situation | Use Agent | Why |
|---|---|---|
| "Will another Claude session understand this?" | context-auditor | Checks for ambiguous references, implicit knowledge, incomplete examples |
| "Will this workflow actually execute?" | workflow-validator | Verifies steps are discrete, ordered, and include verification |
| "Can a new session pick up where I left off?" | handoff-checker | Validates SESSION.md, phase tracking, context preservation |
| Full project health audit | All three | Comprehensive AI-readiness assessment |
"Update the config file with your settings"
"Editand setwrangler.jsoncto your Cloudflare account ID (find it at dash.cloudflare.com → Overview → Account ID)"account_id
templates/AI_READABLE_DOC.mdtemplates/HANDOFF_CHECKLIST.md# Bad
As mentioned above, configure the database.
# Good
Configure the database by running:
`npx wrangler d1 create my-db`# Bad
Update the config with your API key.
# Good
Add your API key to `.dev.vars`:undefined# Bad
Run the migration.
# Good
Run the migration:
`npx wrangler d1 migrations apply my-db --local`
Verify with:
`npx wrangler d1 execute my-db --local --command "SELECT name FROM sqlite_master WHERE type='table'"`
Expected output: Should show your table names.# Bad
Now deploy (you know the drill).
# Good
Deploy to production:
`npx wrangler deploy`
Verify deployment at: https://your-worker.your-subdomain.workers.dev| Tool | Focus | Audience |
|---|---|---|
| Traditional doc quality (links, freshness, structure) | Human readers |
| AI-agent readiness (executability, clarity, handoff) | Claude sessions |
| Creating/managing specific doc files | Both |