.memstack/skills/project-health/SKILL.md
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 skillsauth add s1366560/agi-demos project-healthInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Status: Active Updated: 2026-01-30 Focus: Ensuring documentation and workflows are executable by AI agents
This skill evaluates project health from an AI-agent perspective - not just whether docs are well-written for humans, but whether future Claude Code sessions can:
| 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 |
AI agents follow instructions literally. Documentation that works for humans (who fill in gaps) may fail for agents.
Human-friendly (ambiguous):
"Update the config file with your settings"
AI-friendly (explicit):
"Edit
wrangler.jsoncand setaccount_idto your Cloudflare account ID (find it at dash.cloudflare.com → Overview → Account ID)"
Never assume the agent knows:
Agents can't tell if something "feels right". Include verification:
Purpose: Evaluate AI-readability of documentation
Checks:
Output: AI-Readability Score (0-100) with specific issues
Purpose: Verify processes are executable when followed literally
Checks:
Output: Executability Score (0-100) with step-by-step analysis
Purpose: Ensure session continuity for multi-session work
Checks:
Output: Handoff Quality Score (0-100) with continuity gaps
See templates/AI_READABLE_DOC.md for a template that ensures AI-readability.
Key sections:
See templates/HANDOFF_CHECKLIST.md for ensuring clean session handoffs.
# 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`:
API_KEY=your-key-here
# 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 |
|------|-------|----------|
| project-docs-auditor | Traditional doc quality (links, freshness, structure) | Human readers |
| project-health skill | AI-agent readiness (executability, clarity, handoff) | Claude sessions |
| docs-workflow skill | Creating/managing specific doc files | Both |
A healthy project scores:
Projects below these thresholds have documentation debt that will slow future AI sessions.
tools
Sandbox MCP Server 是一个隔离的代码执行环境,提供完整的文件系统操作、命令执行、 代码分析、测试运行和远程桌面能力。当你需要执行代码、操作文件、运行测试、 分析代码结构、或需要图形界面操作时使用此技能。支持 Python、Node.js、Java 等多语言环境。
tools
Replace with description of the skill and when Claude should use it.
development
Generate high-quality images using ModelScope's Z-Image API. Use this skill when the user wants to generate images using the specific Z-Image model or ModelScope API they provided. Trigger words: 'Zimage', 'ModelScope', 'generate zimage'.
tools
No-code automation democratizes workflow building. Zapier and Make (formerly Integromat) let non-developers automate business processes without writing code. But no-code doesn't mean no-complexity ...