agentdev-workflow-backlog-auto

Orchestrates the backlog-auto workflow across inspect, promote, and review stages.

Updated Mar 7, 2026
One-click install
npx skills add https://github.com/yogata/agent-dev-flow --skill agentdev-workflow-backlog-auto-yogata
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentdev-workflow-backlog-auto
Source: https://github.com/yogata/agent-dev-flow/tree/main/src/opencode/skills/agentdev-workflow-backlog-auto
Command: npx skills add https://github.com/yogata/agent-dev-flow --skill agentdev-workflow-backlog-auto-yogata

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Running a full backlog maintenance cycle requires coordinating multiple promotion pipelines (learning, intake, inspect) plus docs inspection and backlog review, each with its own state, failure modes, and resume contracts. Doing this manually risks skipped stages, duplicate execution, and lost progress after interruptions. ## Core Features & Use Cases - Three-stage orchestration: Runs inspect-docs serially first, then executes the three promotion pipelines (learning, intake, inspect) concurrently with serialization of conflicting Git operations, shared artifact writes, and user interactions, then runs backlog-review after a fan-in gate. - Fan-in gating and stop propagation: Starts backlog-review only when all three promotion lines finish normally or with no targets; blocked, failed, or incomplete lines halt downstream stages without cascading stops to independent lines. - State-based resume: Reconstructs progress from durable state under .agentdev/ (inbox files, promoted artifacts, RU files, backlog_auto_started_at) so reruns skip completed stages without relying on conversation context. - Use Case: After accumulating learning entries, intake items, and inspect findings, invoke the backlog-auto command once to promote everything, generate requirement units (RUs), and receive a per-stage report with resume commands if anything stops. ## Quick Start Run the /agentdev/backlog-auto command to execute the full backlog maintenance cycle and review the per-stage results report.

Frequently Asked Questions about agentdev-workflow-backlog-auto

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run the full backlog maintenance cycle in agentdev?▼

Invoke the /agentdev/backlog-auto command, which dispatches to this workflow skill. It runs inspect-docs first, then the learning, intake, and inspect promotion pipelines, and finally backlog-review, producing a per-stage results report.

How does backlog-auto resume after an interrupted run?▼

Resume works by reconstructing progress from durable state under .agentdev/, such as inbox files, promoted artifacts, RU files, and the recorded start time. Rerunning /agentdev/backlog-auto skips completed stages and never treats unconfirmable stages as complete.

What happens if one promotion pipeline fails during backlog-auto?▼

A blocked or failed line does not stop the other independent lines. However, if any line ends blocked, failed, or incomplete, the fan-in gate prevents backlog-review from starting and the run reports a stop with resume commands instead of overall completion.

Can I run this workflow skill directly without the command?▼

No. The skill enforces a soft guard requiring invocation through the /agentdev/backlog-auto command, which owns the public interface and guardrails. Direct standalone skill activation is explicitly disallowed.

Does backlog-auto enable automatic inspect promotion?▼

No. The --auto flag for inspect-promote is only enabled when a user explicitly opts in by running inspect-promote standalone. Normal backlog-auto execution never passes --auto to the inspect line.