agentdev-workflow-intake-promote

Classifies inbox intake items and promotes accepted items into backlog-ready artifacts.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Raw intake items accumulate in an inbox without triage, forcing teams to manually review, classify, and route each item before backlog work can begin. This Skill automates the review-and-promote workflow for intake items stored in .agentdev/intake/inbox/, turning unstructured observations into structured, backlog-ready artifacts. ## Core Features & Use Cases - Six-step resumable workflow: classification, adversarial review, HITL approval, persistence, destructive handling (inbox cleanup and git commit/push), and completion reporting, each with an independent resume point rebuilt from durable file state. - Autonomous classification with HITL boundary: items that can be uniquely determined from available evidence are auto-classified (adopt/hold/reject), while only items requiring user judgment are escalated for explicit approval. - Adversarial review integration: provisional classifications are validated through an adversarial-review pass before confirmation, with unresolved disputes routed to human review instead of irreversible actions. - Use Case: After capturing a week of observations into .agentdev/intake/inbox/, run the intake-promote workflow to classify each item, save adopted items to .agentdev/intake/promoted/ for backlog review, delete rejected items, and commit the changes with an auditable message. ## Quick Start Run the /agentdev/intake-promote command to review and classify all items currently in the intake inbox and promote the adopted ones.

Frequently Asked Questions about agentdev-workflow-intake-promote

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

FAQPage Schema
How do I promote intake inbox items to the backlog?▼

Run the /agentdev/intake-promote command, which dispatches this workflow skill. It reads items from .agentdev/intake/inbox/, classifies them as adopt, hold, or reject, and saves adopted items to .agentdev/intake/promoted/ for backlog-review.

How does autonomous classification versus human approval work?▼

Items whose classification can be uniquely determined from available evidence are auto-confirmed with recorded rationale. Only items requiring user judgment are presented for explicit HITL approval, and both types can be mixed within a single run.

Can the intake-promote workflow resume after interruption?▼

Yes. Each of the six steps is an independent resume point reconstructed from durable file state in inbox and promoted directories, not conversation context. Saved promoted files serve as approval evidence, so completed steps are never repeated.

What happens to rejected and held intake items?▼

Rejected items are deleted immediately with their rejection reasons recorded in the commit message for audit. Held items remain in the inbox untouched, while adopted items have their original inbox files deleted after promotion.

When should I not use this intake promotion workflow?▼

Do not use it to create new inbox items or invoke it standalone; it only runs via the /agentdev/intake-promote command. Destructive changes like bulk inbox deletion still require separate explicit approval and cannot be bypassed by autonomous classification.