warren-dogfood-pipelin…
Full prioritize → dispatch → shepherd → track pipeline against the live warren instance. Audits the seeds backlog around a focus theme, dispatches the…
File a batch of contributor-ready GitHub issues from the seeds backlog, re-verifying every candidate against HEAD first so no dead issue reaches a contributor. Activate for prompts like "file some good first issues", "open a batch of GFIs", "publish backlog issues to GitHub",
$ npx -y skills add jayminwest/warren --skill good-first-issue-batch --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/good-first-issue-batchContext preview
The summary Claude sees to decide when to auto-load this skill.
File a batch of contributor-ready GitHub issues from the seeds backlog, re-verifying every candidate against HEAD first so no dead issue reaches a contributor. Activate for prompts like "file some good first issues", "open a batch of GFIs", "publish backlog issues to GitHub",
name: good-first-issue-batch description: File a batch of contributor-ready GitHub issues from the seeds backlog, re-verifying every candidate against HEAD first so no dead issue reaches a contributor. Activate for prompts like "file some good first issues", "open a batch of GFIs", "publish backlog issues to GitHub", "find contributor-ready work", or after an audit that surfaced contributor-sized items.
You turn seeds backlog rows into GitHub issues a stranger can actually pick up. The hard part is not writing them. It is proving they are still real.
On 2026-08-07 six issues were bulk-filed straight from seeds rows. Within four hours a contributor commented on #808 that the work was already merged — it had been fixed in PR #774 four days *before* the issue was filed. Two more issues in the same batch (#806, #807) turned out to be half-dead. Nobody noticed because the seeds rows still said `open`, and the seeds rows still said `open` because the PRs that killed them were about something else entirely.
**A tracker row is a lead, not evidence.** Its age, its `open` status, and its description are all things a human wrote once and never revisited. The only evidence that a bug is real is the bug, in the code, at HEAD, today.
seeds row into the GitHub body. Open the file, confirm the defect, and write the body from what you just read.
a trenchcoat. One bullet dying does not kill the others, and one bullet surviving does not vindicate the rest. Grade each separately.
Re-resolve all of them; cite what you actually saw.
on already-merged work may not come back. When verification is ambiguous, leave the row in seeds rather than publishing a maybe.
There is no quota.
Pull open seeds rows that are plausibly contributor-sized and self-contained:
sd list --status open --format compact sd search "<theme>" --format compact
Good raw candidates are bounded in blast radius, need no cluster access or live credentials to reproduce, and have an obvious done condition. Drop anything needing a running k8s deployment, a GitHub App token, or judgement about product direction.
Skip rows that already carry a GitHub back-link — they are filed:
python3 -c "
import json
for line in open('.seeds/issues.jsonl'):
d = json.loads(line)
gh = (d.get('extensions') or {}).get('github')
if gh and d.get('status') == 'open':
print(d['id'], '-> #' + str(gh['issue']))
"Run all four checks on every candidate. Fan these out with subagents when the batch is larger than three or four; each candidate is independent.
Read the code the row names. Not the row's summary of the code — the code. If the row cites a symbol, confirm the symbol is still there and still wrong:
rg -n "<symbol>" src/ git log --diff-filter=A --format="%h %ad %s" --date=short -- <path-it-names>
If the row references a gate (`check:dups`, `check:size`, `check:debt`), run it. A passing gate means the grandfather entry the issue wanted deleted is already gone. That is exactly how #808 died: `resolveTargetDir` had been extracted to `src/cli/commands/target-dir.ts`, and `bun run check:dups` reported all ten allowlist pairs still matched, with nothing stale to remove.
Compare the row's `createdAt` against the history of the files it names.
git log --format="%h %ad %s" --date=short --since=<row createdAt> -- <paths> git log -S'<symbol>' --format="%h %ad %s" --date=short
The killers are almost never PRs that mention the issue. They are sweeps — "single-source truth sweep", "dedup pass", "consolidate X" — that fix a small defect as collateral and close nothing. Read the diff of any sweep-shaped PR touching the same files since the row was written.
An issue asking for better UI on a feature that was later deleted is not a bug, it is an archaeology exhibit. Confirm every state, field, route, and component the row depends on is still live:
rg -n "<state-or-field-name>" src/core/wire.ts src/db/schema/ src/ui/src/
Zero hits across the schema and the UI means the feature is gone. Item 4 of #806 asked for paused-run context on the spectator view; `paused` had already been removed from `RUN_STATES` and its columns dropped by migrations 0034/0028 when the plot pass (pl-3a79) retired the whole pause mechanism.
Multi-bullet rows rot unevenly. Search for the *behaviour* the bullet wants, not the tracker id — the PR that delivered it was filed under a different id and will not mention this row:
rg -n "<config-knob-or-constant-the-bullet-asks-for>" src/ git log --oneline --all -S'<constant>' | head
#807 claimed the event-stream lifetime was unlimited. It had been capped at four hours by default since PR #693, filed under warren-3995, which never touched warren-a676. Only the `idleTimeout` bullet was still true.
| Grade | Meaning | Action | |---|---|---| | **LIVE** | Every bullet reproduced at HEAD | File it | | **PARTIAL** | Some bullets dead | Rewrite to the surviving bullets, then file. Record what died and why | | **DEAD** | No bullet survives | Do not file. Close the seeds row citing the commit or P
Run coding agents like infrastructure, not terminal sessions. Warren manages isolation, lifecycle, spend, recovery, and Git delivery on compute you control.
Repo: jayminwest/warren
Full prioritize → dispatch → shepherd → track pipeline against the live warren instance. Audits the seeds backlog around a focus theme, dispatches the…