lanes-plan
2
总安装量
2
周安装量
#63766
全站排名
安装命令
npx skills add https://github.com/jesseposner/metacraft --skill lanes-plan
Agent 安装分布
opencode
2
gemini-cli
2
claude-code
2
github-copilot
2
codex
2
kimi-cli
2
Skill 文档
Lanes Plan
Read the current workspace state and the work queue, then propose how to allocate lanes.
Process
1. Get current state
Run a lanes status view first (see lanes-status). You need to know what’s available before you can plan.
2. Read the work queue
Check for pending work items. Look at:
- The project’s task list, active items, or session plan
- Any state files or roadmap docs that define what’s next
- Recent conversation context for work that’s been discussed but not started
3. Propose assignments
For straightforward allocations, a per-pane list:
Pane: 0 (left)
Assignment: Meta (us)
Work: Orchestration, review, decisions
ââââââââââââââââââââââââââââââââââââââââ
Pane: 1 (upper-right)
Assignment: Coding Agent A
Work: Auth middleware + tests (item 1)
ââââââââââââââââââââââââââââââââââââââââ
Pane: 2 (lower-right)
Assignment: Coding Agent B
Work: API handlers for items 2-4
For complex layouts with dependencies, a spatial view:
âââââââââââââââââââââââââââââââ¬ââââââââââââââââââââââââââââââ
â â â
â META (me) â AGENT A â
â Upper Left â Upper Right â
â â â
â Coordination, reviews, â Auth middleware + tests â
â architecture decisions â (item 1, the complex one) â
â â â
â Always present. â Long-lived. Spin up now, â
â Light context. â independent, no blockers. â
â â â
âââââââââââââââââââââââââââââââ¼ââââââââââââââââââââââââââââââ¤
â â â
â AGENT B â FLEX â
â Lower Left â Lower Right â
â â â
â API handlers for items â Available for: â
â 2-4 (same pattern) â - Code reviews as PRs â
â â come in â
â Depends on A's middleware â - Ad hoc investigation â
â landing first. â â
â â Spin up when needed, â
â â idle otherwise. â
â â â
âââââââââââââââââââââââââââââââ´ââââââââââââââââââââââââââââââ
4. Sequencing logic
After the layout, explain the sequencing:
- What spins up now (independent, no blockers)
- What waits and for what (dependencies between lanes)
- What’s held in reserve (flex panes, reviews)
- The critical path through the work
5. Present for review
The operator makes the final call. This is a proposal, not an execution plan. Include:
- Which harness is appropriate for each lane
- Whether to start fresh sessions or continue existing ones
- Any stale panes that should be recycled first
Important
- Always run status first. Don’t propose allocations against stale information.
- Match work to lanes, not lanes to work. If you have three items and two panes, batch the smaller items, don’t spin up more panes.
- Name the critical path explicitly. The operator needs to know what’s blocking what.
- Use the spatial view when the layout matters (dependencies, sequencing). Use the simple list when it’s straightforward.