agentsclimarketplace

Sprint update

Skill wrfcoin/agent-orchestration/claude/skills/sprint-update

Multi-vendor agentic infrastructure: tmux-grid sprint orchestrator coordinating up to 7 named persona agents (Claude + Codex hybrid lanes) across the 7-repo WRFCoin Rust/TypeScript codebase. Skills, slash commands, hooks.

Install
npx -y skills add wrfcoin/agent-orchestration --skill sprint-update

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Update the current sprint document with new merge results, persona status changes, and velocity stats. Use when the user says "update sprint doc", "sprint update", "update the sprint", or after a batch of merges to bring the sprint document current.

SKILL.md

4.9 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it

Sprint Document Update

Update the sprint doc at docs/plans/<date>_Sprint.md (or the most recent sprint file).

Sprint doc structure

The sprint doc uses per-persona queues (not wave tables). Each persona (Alice, Bob, Cindy, Dan, Elsa) has their own section with three tables:

## <Persona> — <Domain>

### Active
| Status | Issue | Repo | Description | Handoff |

### Queue
| # | Priority | Issue | Repo | Description |

### Completed
| Issue | Repo | PR | SHA | Wave |

What to update

1. Move merged items: Active → Completed

When a PR merges, move its row from the persona's Active table to Completed:

### Completed
| Issue | Repo | PR | SHA | Wave |
|-------|------|----|-----|------|
| ~~#NNN~~ | repo | #PR | sha7 | — |

Get merge SHAs:

gh pr view <num> --repo wrfcoin/<repo> --json mergeCommit --jq '.mergeCommit.oid'

2. Promote next queue item: Queue → Active

After clearing an Active slot, move the top Queue item to Active with status next:

### Active
| Status | Issue | Repo | Description | Handoff |
|--------|-------|------|-------------|---------|
| next | #NNN | core4 | Description | [handoff](path.md) |

Re-number the remaining Queue rows starting from 1.

3. Header counts

Update the top-line counts:

  • Total PRs merged
  • Open PRs (check all repos)
  • Approximate open issues

4. Velocity table

Update the sprint row with new PR count and key milestones.

5. Launch readiness

Update "What's working" and "What's blocking launch" if merges changed the picture.

6. Dispatch Prompt Patterns (always include)

After updating counts and tables, generate themed dispatch prompt patterns for each persona that has queued work. These go into the sprint doc as a new subsection under each persona, right after their Queue table and before Completed:

### Dispatch Prompts
<!-- Auto-generated by sprint-update. Copy-paste to launch agents. -->

**Round 0 — Revisions** (if any Active items are changes-requested):
> fix the N changes-requested Dan PRs on their existing branches: ...

**Round 1 — [Theme]** (N agents, M issues):
> launch N agents on Dan's [theme] [priority]: ...

**Round 2 — [Theme]** (N agents, M issues):
> launch N agents on Dan's [theme] [priority]: ...

Rules for generating prompts

  1. Sizing: 2-3 issues per agent, max 4 agents per round, 8-12 issues per round
  2. Grouping: Group by repo + theme (e.g., "infra Docker", "backend resilience"), NOT by batch number ("infra batch 1")
  3. Priority order: Work top-down by priority — P0 first, then P1, then P2, etc. Don't mix priorities in a single round unless they share a theme.
  4. Revision round first: If any Active items have status changes-req, generate a Round 0 that lists the specific fixes needed per PR (from review comments).
  5. Name each round: Use a descriptive theme name, not a number. E.g.:
    • "backend integration wiring" not "backend round 1"
    • "infra Docker hardening" not "infra P2 batch"
    • "core4 consensus fixes" not "Alice round 2"
  6. Include issue numbers: Every prompt must list the specific issue numbers.
  7. Estimate rounds: Show how many rounds it would take to clear the queue. Only generate detailed prompts for the next 3-4 rounds. Summarize the rest.
  8. All 5 personas: Generate prompts for every persona that has queued work, not just the one the user is currently focused on.

Example output for a persona section

### Dispatch Prompts

**Round 0 — Revisions** (fix 2 changes-requested PRs):
> fix changes-requested PRs: backend#509 (target enhanced_unified_api_optimized.ts),
> infra#301 (add CORS to expose-lan.sh + docker-compose.lan.yml)

**Round 1 — backend integration** (2 agents, 6 issues):
> launch 2 agents on Dan's P2 backend integration issues:
> - backend security/config: #486 dev key fallback, #487 CORS 8080, #493 health→core4
> - backend performance: #367 pg.Pool exhaustion

**Round 2 — infra integration + compose** (2 agents, 6 issues):
> launch 2 agents on Dan's P2 infra items:
> - infra integration: #291 onboarding secrets, #297 missing depends_on, #253 ZFS overrides
> - infra Docker: #259/#261 single-stage, #266 wrf limits, #224 PAYMASTER_CHAIN_ID

When to regenerate

Regenerate dispatch prompts every time sprint-update runs. Old prompts are replaced entirely — they reflect the queue state at update time, not historical plans.

After updating

Update the sprint progress memory file:

/home/tony/.claude/projects/<project-slug>/memory/project_sprint_progress.md

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.