By Codagent-AI
Guide an AI agent through a structured software development lifecycle — propose, spec, design, plan, implement, review, and ship — with interactive decision gates and built-in quality checks at every stage.
How to ask users questions interactively: which tool to use, how to batch questions, and when to ask serially. Follow this skill when asking clarifying questions, requesting confirmation, collecting missing requirements, or pausing for user input. Invoked by other skills rather than directly by the user.
Creates design artifacts through collaborative brainstorming of approaches, architecture, and trade-offs. Use when the user says "design this", "create a design", "brainstorm approaches", or "write a design doc".
Orchestrates the full post-implementation loop: push PR → wait for CI → fix failures → repeat until CI passes or termination rules trigger a pause. This skill should be used when the user says "ship it", "finalize pr", "push and fix CI", "push pr and wait for CI", or invokes "codagent:finalize-pr".
Fixes CI failures and review comments on the current branch's pull request by dispatching a fixer subagent, verifying with the validator, and pushing the fix. Use when the user says "fix pr", "fix CI failures", "address review comments", or invokes "codagent:fix-pr".
Summarizes a specific aspect of the current conversation so another agent can resume. Use when the user says "handoff", "summarize for handoff", "write a handoff", or wants to capture context for another agent session. The user MUST specify what aspect to summarize in their prompt (e.g., "handoff the debugging progress", "handoff the design decisions").
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Codagent is a plugin for Claude Code, Codex, and Cursor that provides a set of focused skills for spec driven development — from evaluating an idea to implementing with subagents to shepherding a PR through CI. Inspired by obra/superpowers and OpenSpec.
Claude Code invokes skills with /codagent:<skill-name>. Codex invokes them by name in chat, for example use the codagent:propose skill.
init — Initializes Codagent in your project. Checks that the Agent Validator CLI is installed and configured. Safe to re-run.propose — Evaluates whether an idea is worth building. Researches the codebase and web, delivers a GO / GO WITH CAVEATS / NO-GO verdict, and writes proposal.md.spec — Drives interactive requirement discovery. Walks through each capability from the proposal, asking about behaviors, boundaries, error conditions, and edge cases. Produces spec files with testable WHEN/THEN scenarios.design — Creates a technical design through collaborative brainstorming. Proposes 2-3 approaches with trade-offs, presents the design incrementally for approval, and writes design.md.review-spec — Reviews design artifacts (proposal, specs, design, tasks) for internal consistency, cross-artifact alignment, and gaps. Reports findings with exact citations.plan-tasks — Creates a structured task breakdown from the proposal, design, and specs. Each task file is self-contained with everything a subagent needs to implement it.simple-plan — Lightweight alternative to propose + spec + design + plan-tasks for small, quick changes. One conversation, clarifying questions asked one at a time, then writes the proposal, specs, an optional design doc, and a placeholder tasks.md so the change still slots into OpenSpec.implement-change — Autonomous tech lead that implements a full change end-to-end. Dispatches one implement-and-validate subagent per task (sequentially, never in parallel), runs the validator, archives the change, and finalizes the PR.implement-with-tdd — Enforces test-driven development: write a failing test, watch it fail, write minimal code to pass, refactor. No production code without a failing test first.implement-and-validate — Autonomous implementer that executes a single task end-to-end. Calls implement-with-tdd to build the code, performs self-review, runs the Agent Validator, and commits on success.push-pr — Commits changes, pushes to remote, and creates or updates a pull request. Runs the validator before committing if applicable.wait-ci — Polls CI status for the current branch's PR. Enriches failures with GitHub Actions logs, surfaces blocking reviews and unresolved PR comments.fix-pr — Fixes CI failures and review comments on the current branch's PR. Dispatches a fixer subagent, verifies with the validator, and pushes.finalize-pr — Orchestrates the full post-implementation loop: push PR, wait for CI, fix failures, repeat until green. Stops after 3 fix cycles or when the same failure persists.Codagent requires the Agent Validator CLI for automated quality verification:
npm install -g agent-validator
agent-validator init
claude plugin marketplace add Codagent-AI/agent-skills
claude plugin install codagent
This repo includes a Codex marketplace at .agents/plugins/marketplace.json and a Codex plugin manifest at .codex-plugin/plugin.json.
Add the marketplace to Codex:
codex plugin marketplace add Codagent-AI/agent-skills
Then restart Codex, open the plugin directory with:
/plugins
Select the Codagent marketplace and enable/install the codagent plugin.
cursor plugins install Codagent-AI/agent-skills
npx claudepluginhub codagent-ai/agent-skills --plugin codagentA CLI tool for validating AI coding agents
Persona-driven AI development team: orchestrator, team agents, review agents, skills, slash commands, and advisory hooks for Claude Code
Helder's personal SDLC toolbelt for AI coding agents — from PRD to ship. Bundles the tracer-bullet workflow alongside TDD, code review, audits, and shipping skills.
End-to-end development workflow: design → draft-plan → orchestrate → review → pr-create → pr-review → pr-merge
Implementation planning, execution, and PR creation workflows with multi-agent collaboration
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
AI-powered development tools for code review, research, design, and workflow automation.