.claude/skills/aget-review-project/SKILL.md
Mid-flight review of active project plans. Assesses gate progress, V-test completion, blockers, and recommendations. Use to evaluate project health.
npx skillsauth add aget-framework/template-advisor-aget aget-review-projectInstall 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.
Perform mid-flight review of an active project plan. Evaluates progress, identifies blockers, and generates recommendations.
Enable AGETs to self-assess project health. Provides structured evaluation against success criteria and V-tests, supporting proactive course correction.
$ARGUMENTS - Path to PROJECT_PLAN file (optional, defaults to current project context)
# If path provided
test -f "$ARGUMENTS" && echo "found"
# If no path, search for active projects
ls planning/PROJECT_PLAN_*.md 2>/dev/null
If multiple projects found, prompt user to select.
Extract from project plan:
For each gate, check V-test status:
Status indicators in plan:
- "✅" or "PASS" or "Complete" → Passed
- "❌" or "FAIL" → Failed
- "Pending" or unmarked → Not started
- "IN_PROGRESS" → Active
Calculate:
Scan for:
Based on evaluation:
=== /aget-review-project ===
Project: <project name>
POC: <POC-XXX if applicable>
Status: <overall status>
Gate Progress:
G-0: [x] Complete (X/X V-tests)
G-1: [~] In Progress (X/Y V-tests)
G-2: [ ] Pending
...
G-F: [ ] Pending
Summary:
Total V-tests: <count>
Passed: <count> (<percentage>%)
Failed: <count>
Pending: <count>
Blockers:
[list or "None identified"]
Recommendations:
1. <specific action>
2. <specific action>
...
Overall Assessment:
<brief assessment of project health>
Health Status: [OK | WARN | CRITICAL]
IF failed_vtests > 0 AND no_progress:
CRITICAL
ELIF completion < 25% AND started > 7_days_ago:
WARN
ELIF blockers_count > 3:
WARN
ELSE:
OK
/aget-create-project - Create new project plans/aget-check-evolution - Check L-doc health/aget-record-lesson - Capture lessons during review| Link | Reference | |------|-----------| | POC | POC-017 | | Project | PROJECT_PLAN_AGET_UNIVERSAL_SKILLS.md | | Proposal | PROPOSAL_aget-review-project.md | | Source | Fleet Skill Deployment Report (supervisor) |
aget-review-project v1.0.0 Category: Planning POC-017 Phase 6
testing
End AGET session with state capture and sanity checks
tools
Initialize AGET session with status briefing
development
Research a topic across the knowledge base before implementation. Searches L-docs, patterns, PROJECT_PLANs, SOPs, and governance for relevant context.
development
Save workflow state for resume/recovery. Use at natural breakpoints before context-intensive operations, major refactors, or session interruptions.