一键导入
project
Manage route-agent project: check status, find next tasks, spawn parallel work. Use when starting work, checking progress, or asking "what's next?"
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage route-agent project: check status, find next tasks, spawn parallel work. Use when starting work, checking progress, or asking "what's next?"
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | project |
| description | Manage route-agent project: check status, find next tasks, spawn parallel work. Use when starting work, checking progress, or asking "what's next?" |
| allowed-tools | ["Bash(gh:*)","Bash(git:*)","mcp__github","Task"] |
Assess project status, find ready tasks, and orchestrate parallel work.
PRs merge via squash. Commit subjects on main read Title (#NN), where NN is the PR number.
| 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 |
# 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
Ready = No "Depends On" section, OR all dependencies closed.
Parse from issue body:
## Depends On
- Issue title here
/project work)./worktrees/<N>/ (inside project, sandbox-allowed)See references/worktrees.md for details.
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
Verify against gh api repos/bendrucker/route-agent/milestones before relying on this list.
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.