dev-pipeline

Orchestrate a five-phase audit, plan, code, review, and fix workflow.

3|1|Updated May 21, 2026
One-click install
npx skills add https://github.com/qwwiwi/agentos-skills-public --skill dev-pipeline-qwwiwi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dev-pipeline
Source: https://github.com/qwwiwi/agentos-skills-public/tree/main/skills/dev-pipeline
Command: npx skills add https://github.com/qwwiwi/agentos-skills-public --skill dev-pipeline-qwwiwi

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The Dev Pipeline skill turns a vague “please make changes” coding request into a controlled end-to-end development workflow with auditing, planning, implementation, cross-review, and (if needed) fixes.

Core Features & Use Cases

  • Audited starting point (mandatory): runs a Codex audit of the target repository or code input and summarizes 3–5 key findings for the user.
  • Explicit implementation plan (with approval): generates a concrete plan (files, changes, tests, risks) based on the audit and asks the user to approve or correct it.
  • Pipeline execution with clear roles: coordinates Codex for audit/plan, a coder subagent for implementation, and two reviewers (Claude + Codex) for cross-review against the plan.
  • User-visible progress states: shows the user statuses across [1/5] to [5/5] so they see what is happening.
  • Safe “micro-fix” exception: skips the full pipeline for micro changes (<5 lines) to avoid unnecessary overhead.

Quick Start

Tell the AI: “Run dev-pipeline for my coding task, starting from <git-repo-dir>, and follow the 5-phase audit → plan → code → cross-review → fix workflow, showing me each phase status and asking for approval after the plan.”

Frequently Asked Questions about dev-pipeline

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

FAQPage Schema
How do I run an audited code pipeline for feature implementation and bugfixes?

An audited code pipeline orchestrates repository auditing, implementation planning, subagent coding, and cross-review to safely ship code changes. It requires a Codex audit, an approved plan, and a coder subagent phase before applying fixes.

What is the best way to plan code changes after a repository audit?

The best way to plan code changes after a repository audit is to generate an explicit implementation plan detailing files, tests, and risks, then gate execution on user approval. This ensures the coding subagent follows a controlled, reviewed workflow.

Can I use a cross-review workflow for small code patches under 5 lines?

Small code patches under 5 lines bypass the full cross-review workflow. The pipeline includes a safe micro-fix exception that skips the mandatory audit, plan, and cross-review phases to avoid unnecessary overhead for trivial changes.

How does cross-review work when coordinating Codex and Claude for code generation?

Cross-review works by having Claude and Codex act as two independent reviewers checking the subagent implementation against the original plan. This dual-reviewer mechanism ensures code changes meet requirements before any fixes are applied.

Do I need to approve the implementation plan before the coding subagent starts?

Yes, approval gating requires you to explicitly approve or correct the generated implementation plan before the coding subagent begins. The pipeline pauses after generating the plan to ensure user control over the proposed file changes and tests.

Why does my code pipeline require an audit before making any changes?

Your code pipeline requires an audit before changes to establish a controlled starting point by summarizing key repository findings. This mandatory Codex audit prevents blind modifications by ensuring the implementation plan addresses existing codebase conditions.