pipeline

pipeline is a command for Claude Code from MarioEpkOne/PipelineIQ. It costs 0 tokens per session (4,526 once invoked), scanned A, original, MIT.

An automated development workflow that moves a feature request through specification, planning, implementation, review, repair, and summary.

In plain words
What is it for?
Use it to turn a feature description into a plan, implement it, audit the result, fix listed errors, and optionally merge the changes.
Why use it?
It organizes the full path from an idea to checked code and can repeat repairs when the review finds problems.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

Part of the pipelineiq plugin — 10 commands, 6 agents shipped together

Good fit Use it to turn a feature description into a plan, implement it, audit the result, fix listed errors, and optionally merge the changes.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/marioepkone/pipelineiq/pipeline
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/MarioEpkOne/PipelineIQ

Made for: Claude Code.

Or install pipelineiq, the plugin that ships this one along with the rest of its 10 commands, 6 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pipeline

README.md
[![agentmods](https://agentmods.dev/badge/commands/marioepkone/pipelineiq/pipeline/github.svg)](https://agentmods.dev/commands/marioepkone/pipelineiq/pipeline)
Your own site
<a href="https://agentmods.dev/commands/marioepkone/pipelineiq/pipeline"><img src="https://agentmods.dev/badge/commands/marioepkone/pipelineiq/pipeline/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pipeline

Your own site · 80×15
<a href="https://agentmods.dev/commands/marioepkone/pipelineiq/pipeline"><img src="https://agentmods.dev/badge/commands/marioepkone/pipelineiq/pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,526 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.04526
Opus 5 $0.00000 $0.02263
Sonnet 5 $0.00000 $0.00905
Haiku 4.5 $0.00000 $0.00453

Measured 9d ago against content hash 8b5c3f56894c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

pipeline scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/pipeline.md · 374 lines

How it starts

The opening of the file, as written. The whole thing — 374 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLOSED-LOOP PIPELINE -- runs the complete spec -> impl-plan -> impl -> audit -> fix loop -> summary workflow. The spec phase is interactive (inline). Each subsequent phase runs as an isolated subagent with clean context. If errors are found during audit, a fix->re-audit loop runs automatically (max 2 cycles).

The user's request/feature description is: $ARGUMENTS


Argument Parsing

Parse $ARGUMENTS for the SKIP_MERGE=true sentinel:

  • Match SKIP_MERGE=true only as a whitespace-delimited token (not as a substring of a filename or path). In practice this means: split arguments on whitespace, check if any token is exactly SKIP_MERGE=true, remove that token, rejoin the rest.
  • If found: set SKIP_MERGE = true; the remaining text is the user's request / spec path.
  • If not found: SKIP_MERGE = false (default).

SKIP_MERGE is used in Phase 6 to control whether the merge workflow runs. When /pipeline is invoked standalone by a user, SKIP_MERGE is never present.

SKIP_MERGE contract (do not change without updating pipeline-team.md):

  • When SKIP_MERGE=true, Phase 6 MUST output: PIPELINE_COMPLETE spec=<path> worktree=<path> branch=<name> working_log=<path> audit=<path> remaining_errors=<N>
  • pipeline-team.md depends on this exact output format for teammate coordination.

Resolve COMMANDS_PATH

Determine the absolute path to this plugin's commands/ directory.

Discovery order:

  1. Read ~/.claude/plugins/installed_plugins.json. Parse as JSON. Find any key matching pipelineiq@* (match plugin name prefix, ignore marketplace suffix). If multiple matches: collect all entries across all matching keys, sort by lastUpdated descending, take the first. Set COMMANDS_PATH = /commands.
  2. If the registry file does not exist, is unreadable, or contains no pipelineiq@* key: walk up from CWD looking for .claude-plugin/plugin.json where the adjacent commands/ directory contains pipeline.md. If found: COMMANDS_PATH = <that commands/ directory>
  3. If neither found: STOP with "Cannot locate PipelineIQ plugin. Ensure the plugin is installed via the plugin marketplace, or you are in the PipelineIQ repo."

Read the full file on GitHub · 374 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 374 lines · 0 tokens per session scan A 8b5c3f56894c

Subscribe to this mod's changes

pipeline is a command published in the GitHub repository MarioEpkOne/PipelineIQ (2 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 4,526 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.