process-backlog

An internal backlog worker that finds stalled issues, pull requests, or local tasks and advances a limited number of them. A backlog is the collection of pending work; this worker does not merge changes.

In plain words
What is it for?
Use it to find triaged bugs or tasks without linked pull requests, recover incomplete work, and move selected items toward a review-ready change.
Why use it?
It helps recover work that stopped because of rate limits, timeouts, or missed events, without processing an unbounded queue.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/tessaryai/plugins/process-backlog
Any agent
npx skills add tessaryai/plugins --skill process-backlog
Clone the repo
git clone --depth 1 https://github.com/tessaryai/plugins

Made for: Claude Code, Codex.

Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 750 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00065 $0.00750
Opus 5 $0.00032 $0.00375
Sonnet 5 $0.00013 $0.00150
Haiku 4.5 $0.00006 $0.00075

Measured 2d ago against content hash 0c03cd84babc, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

process-backlog scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/crew/skills/process-backlog/SKILL.md · 73 lines

How it starts

The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.

process-backlog

Internal crew primitive — dispatched by /crew:run. You are running because the orchestrator selected this as one step of a larger workflow; carry out the work below. This skill is not meant to be invoked on its own — user requests go to /crew:run.

You recover work that stalled (rate limits, timeouts, missed events). You find stuck items and advance a bounded number of them, then stop. Your ceiling is a review-ready PR — never merge.

0. Load config and mode

python3 "${CLAUDE_PLUGIN_ROOT}/lib/load_config.py"

Use labels.{bug,task,triaged,agent_pr}, ledger.dir, and orchestrator.max_items (the per-run cap; default 5 if unset). Split the budget across the backlogs below.

Then read ${CLAUDE_PLUGIN_ROOT}/reference/work-model.md and resolve the mode before any gh call. In github mode use steps 1–2; in local mode use step 1L.

1. (GitHub) Find triaged issues with no PR

gh issue list --state open --label "<labels.triaged>" --json number,title,labels

Keep those that also carry labels.bug or labels.task. For each, check there is no linked PR (search PRs/branches for Fixes #N / crew/issue-N). These need implementation.

2. (GitHub) Find crew PRs with unaddressed reviews

gh pr list --state open --label "<labels.agent_pr>" --json number,reviewDecision,title

Keep those whose latest review state is CHANGES_REQUESTED (or that have unresolved review comments). These need a review response.

1L. (Local) Scan the ledger for stalled tasks

Read every <ledger.dir>/*/task.md and group by status (skip terminal done and needs_human):

  • new → needs triage (triage-bug/triage-task by kind).
  • triaged → needs implementation (implement-issue).
  • changes_requested → needs a review response (respond-to-review).
  • implemented → needs review (review-pr).

3. Advance, up to the cap

Process at most orchestrator.max_items items total, one at a time, dispatching the primitive each item's state calls for (above).

Read the full file on GitHub · 73 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 73 lines · 65 tokens per session scan A 0c03cd84babc

Subscribe to this mod's changes

process-backlog is a skill published in the GitHub repository tessaryai/plugins (3 stars, last pushed 14d ago), licensed MIT. It adds 65 tokens to every session and 750 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

ambient-project

Quietly maintain a useful project view from meaningful work in the current Codex session. Use when work creates a task, bug, decision, idea, risk, milestone, plan, progress update, or explicit completion.

Bene-2020/plane-codex-mcp · 46 tokens

triage

Apply a formal state machine to issues — assign category (bug/enhancement/question/spike) and state (needs-triage → needs-info → ready-for-agent → ready-for-human → wontfix). Issues marked ready-for-agent become inputs to supergraph:plan. Use when processing a backlog, reviewing new issues, or preparing work for…

datit309/supergraph · 73 tokens

html-visual

Generate an interactive single-file HTML visualization — mockup, wireframe, ERD, flowchart, chart, slides, architecture diagram, dashboard, timeline, mindmap, kanban, or table. Use when the user wants something rendered rather than described: a UI mockup or wireframe, a database schema as an ERD, business logic as a…

2ykwang/agent-skills · 111 tokens

regression-suite

Map test coverage to GDD critical paths, identify fixed bugs without regression tests, flag coverage drift from new features, and maintain tests/regression-suite.md. Run after implementing a bug fix or before a release gate.

frabcd/codex-ai-game-studio · 47 tokens

day-one-patch

Prepare a day-one patch for a game launch. Scopes, prioritises, implements, and QA-gates a focused patch addressing known issues discovered after gold master but before or immediately after public launch. Treats the patch as a mini-sprint with its own QA gate and rollback plan.

frabcd/codex-ai-game-studio · 63 tokens

hotfix

Emergency fix workflow that bypasses normal sprint processes with a full audit trail. Creates hotfix branch, tracks approvals, and ensures the fix is backported correctly.

frabcd/codex-ai-game-studio · 35 tokens