Loading...
Loading...
Validate project space structure, boilerplate docs, and consistency with ideas/
npx skill4agent add taylorhuston/local-life-manager validate-space/validate-space leaf-nextjs-convex # Validate specific space
/validate-space coordinatr # Another project
/validate-space # Prompt for project name| File | Purpose | Check |
|---|---|---|
| CLAUDE.md | AI instructions for codebase | Must exist |
| README.md | Entry point for developers | Must exist |
| package.json (JS/TS) | Project config | Stack-dependent |
| Directory | Purpose | Check |
|---|---|---|
| docs/ | Documentation root | Must exist |
| docs/specs/ | Protocol/feature specs | Must exist |
| docs/adrs/ | Architecture Decision Records | Must exist |
| File | Purpose |
|---|---|
| architecture-overview.md | System architecture |
| api-overview.md | API documentation |
| data-model.md | Data structures |
| deployment.md | Deployment guide |
| security.md | Security considerations |
| testing-overview.md | Testing strategy |
| ui-guide.md | UI patterns and components |
shared/templates/docs/| Check | Description |
|---|---|
| Version sync | package.json versions match docs (e.g., "Next.js 16" in CLAUDE.md matches |
| Stack accuracy | Listed technologies actually exist in dependencies |
| Structure accuracy | Documented directories actually exist |
| Ideas link | Referenced ideas/[project]/ exists and has matching info |
| Check | Description |
|---|---|
| README.md | Stack listed in ideas/ matches spaces/ |
| project-brief.md | Technical decisions match actual implementation |
| Issues | Current phase/status is accurate |
ls spaces/[project-name]/Read: spaces/[project]/CLAUDE.md
Read: spaces/[project]/README.md
Read: spaces/[project]/package.json (if JS/TS)ls -la spaces/[project]/docs/
ls -la spaces/[project]/docs/specs/
ls -la spaces/[project]/docs/adrs/ls spaces/[project]/docs/*.md
# Should have: architecture-overview.md, api-overview.md, data-model.md,
# deployment.md, security.md, testing-overview.md, ui-guide.mdls -la spaces/[project]/
ls -la spaces/[project]/src/ (if documented)Read: ideas/[project]/README.md
Read: ideas/[project]/project-brief.md# Space Validation: [Project Name]
## Status
- Space location: spaces/[project]/
- Ideas location: ideas/[project]/ (exists/missing)
## Required Files
✅ CLAUDE.md - Present
✅ README.md - Present
✅ package.json - Present
## Required Directories
✅ docs/ - Present
✅ docs/specs/ - Present
✅ docs/adrs/ - Present
## Overview Docs (in docs/)
✅ architecture-overview.md - Present
✅ api-overview.md - Present
✅ data-model.md - Present
✅ deployment.md - Present
✅ security.md - Present
✅ testing-overview.md - Present
✅ ui-guide.md - Present
## CLAUDE.md Sections
✅ Overview/Stack - Complete
✅ Project Structure - Complete
⚠️ Commands - Missing deploy command
✅ Environment Variables - Complete
## Version Consistency
✅ Next.js: 16.1.3 (package.json) matches "Next.js 16" (docs)
❌ React: 19.0.0 (package.json) but docs say "React 18"
## Ideas Cross-Reference
✅ ideas/leaf-nextjs-convex/ exists
✅ Stack matches between spaces/ and ideas/
⚠️ project-brief.md says "Next.js 15" - outdated
## Issues Found
1. React version mismatch in documentation
2. project-brief.md has outdated version
## Recommendations
1. Update React version in CLAUDE.md
2. Update project-brief.md to say Next.js 16
3. Fill in overview doc templates with project-specific contentmkdir -p spaces/[project]/docs/specs
mkdir -p spaces/[project]/docs/adrs
cp shared/templates/docs/*.md spaces/[project]/docs//validate-space → Fix issues → /validate-space again → /implementnext.config.jsnext.config.tssrc/app/public/convex/convex/schema.tsconvex/_generated/tsconfig.json.env.example.gitignore