Agent skill
project
Manage route-agent project: check status, find next tasks, spawn parallel work. Use when starting work, checking progress, or asking "what's next?"
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/productivity/project
SKILL.md
Project Management
Assess project status, find ready tasks, and orchestrate parallel work.
Commands
| Command | Action |
|---|---|
/project |
Show milestone progress and ready tasks |
/project next |
Recommend single next task |
/project work |
Spawn sub-agents for ready tasks (parallel) |
/project work #N |
Work on specific issue |
/project cleanup |
Remove worktrees for merged PRs |
Quick Start
# Milestone progress
gh api repos/bendrucker/route-agent/milestones --jq '.[] | "\(.title): \(.closed_issues)/\(.open_issues + .closed_issues)"'
# Open issues
gh issue list --repo bendrucker/route-agent --state open --json number,title,milestone,body --limit 100
Finding Ready Tasks
Ready = No "Depends On" section, OR all dependencies closed.
Parse from issue body:
## Depends On
- Issue title here
Parallel Work (/project work)
- Find ready tasks - Parse dependencies, filter unblocked
- Create worktrees - One per issue in
./worktrees/<N>/(inside project, sandbox-allowed) - Spawn sub-agents - Each works in background, creates PR
- Report - List spawned agents for monitoring
See references/worktrees.md for details.
Sub-Agent Prompt
Work on issue #N in worktree at <path>.
Issue: <title>
<body>
1. cd to worktree
2. Read CLAUDE.md and relevant docs
3. Implement requirements
4. Commit with descriptive message
5. Push and create PR with "Closes #N"
6. Return PR URL
Milestone Priority
- Foundation
- Eval Setup (parallel)
- Strava Integration
- GraphHopper Integration
- Route Synthesis
- Place Search, Water Stops, Climb Integration, Weather Integration
- Ride Preparation, Narrative Research
- Research Quality, Route Refinement
- Evaluation Framework
Output
Status:
## Project Status
### Foundation (1/2)
- [x] #2 SDK project structure
- [ ] #3 Checkpoint system - READY
### Ready (2)
- #3 Checkpoint system (Foundation)
- #4 Promptfoo setup (Eval Setup)
Work:
## Parallel Work
Spawning:
- #3 Checkpoint system → worktree created, agent launched
- #4 Promptfoo setup → worktree created, agent launched
Monitor with /tasks. PRs appear for review.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?