auto-devflow

Solid

Use when starting an issue, bugfix, feature, or refactor that should be driven by multiple coordinated subagents: explore → plan → code → review, with the main agent acting as controller and subagents exchanging handoff files.

AI & Automation 131 stars 26 forks Updated yesterday Apache-2.0

Install

View on GitHub

Quality Score: 87/100

Stars 20%
71
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Start Devflow Run a controlled **devflow**: the main agent stays the controller, each subagent owns one phase, and phase outputs are written to temporary handoff files before the next phase starts. Use this when the user says things like "开始解决这个 issue", "start this issue", "fix this bug end-to-end", "实现这个功能", or asks for a multi-agent workflow rather than a single-agent edit. ## Non-Negotiables - The main agent owns scope, approvals, TodoWrite, git safety, and final reporting. - Subagents do focused work only. Do not let a subagent silently broaden scope. - Use handoff files as the shared memory. Do not rely on hidden subagent context. - Run writable phases sequentially. Never run two coding subagents against the same checkout at the same time. - Ask the user before destructive operations, branch changes, commits, or scope expansion. ## Operating Modes Pick a mode during Intake and record it in `00-context.md`. ### Relaxed Mode Default for simple, low-risk tasks. Use relaxed mode when: - the request is small and localized - the likely change touches a few files with obvious ownership - failure impact is low and rollback is straightforward - the agent has not already made repeated mistakes on this task Relaxed flow: ```text Intake → Explore → Plan → Code → Review → Verify → Report ``` Plan review is optional. The main agent may self-check `02-plan.md` instead of dispatching a separate reviewer. ### Cautious Mode Use cautious mode when the user says the task is ...

Details

Author
KonghaYao
Repository
KonghaYao/peri
Created
4 months ago
Last Updated
yesterday
Language
Rust
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

subagent-driven-development

Use when a written implementation plan exists and the user wants to execute it — "execute this plan", "implement the plan", "run the plan", "build it", "subagent-driven development". Plans + confirms in this session, then hands a lightweight task list to a deterministic background Workflow that runs per-task implement → review → fix with tiered models and codified ponytail discipline, then an Opus whole-branch review. Skip for ad-hoc edits with no plan.

2 Updated 2 days ago
jasonm4130
AI & Automation Listed

workflow

当任务需要拆分为多个独立工作流时使用,包括跨大量文件/模块的搜索、审计、迁移评估、多角度审查、外部文档或 GitHub 验证。优先只读并行,写入由主 agent 串行完成

2 Updated today
beixiyo
AI & Automation Solid

taskflow

Orchestrate multi-phase subagent workflows with pi-taskflow. Use whenever a request spans a whole project or many items — deeply exploring / 探索 / auditing / 审计 / analyzing a codebase, reviewing or migrating many files or modules in parallel, cross-checked/adversarial review, codebase-wide research, or any repeatable orchestration you want to save and rerun. Prefer this over ad-hoc parallel subagents when the work has multiple phases or dynamic fan-out over a discovered list. Also supports subagent-style shorthand (single / parallel / chain) for simple non-DAG delegations you want tracked, resumable, or saveable.

43 Updated today
heggria