ワンクリックで
pipe
Chain multiple AI agent skills into sequential pipelines. Output of each skill feeds as context into the next.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Chain multiple AI agent skills into sequential pipelines. Output of each skill feeds as context into the next.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | pipe |
| description | Chain multiple AI agent skills into sequential pipelines. Output of each skill feeds as context into the next. |
| trigger | /pipe |
| platforms | claude, codex, claw, opencode, aider, cursor, gemini |
Chain any skills together into a pipeline. Each skill's output becomes context for the next skill in the chain.
/pipe review -> security-review -> caveman-commit
/pipe analyze -> refactor -> test
/pipe explain -> document -> summarize
/pipe <skill1> -> <skill2> -> <skill3>
Without pipe, skills are isolated — /review has no idea /security-review exists. You manually copy context between them.
With pipe:
skill1 fullyskill2 as prior context-> (with spaces)Parse the pipeline from the arguments. The format is:
/pipe <skill1> -> <skill2> -> ... -> <skillN>
Step 1 — Parse
Extract skill names by splitting on ->. Trim whitespace. Minimum 2 skills. If fewer, tell user: "pipe needs at least 2 skills: /pipe skill1 -> skill2"
Step 2 — Announce Tell user the pipeline you're about to run:
Pipeline: skill1 → skill2 → skill3
Running step 1/3: skill1
Step 3 — Execute step 1 Look up what skill1 does from your knowledge of available skills or CLAUDE.md/AGENTS.md. Execute it fully as if the user invoked it directly. Capture the complete output.
Step 4 — Transition
Announce: Step 1/3 complete. Running step 2/3: skill2
Inject prior step's output as context prefix: "Prior step (skill1) produced: [output summary]"
Step 5 — Execute step 2..N Repeat for each skill in chain. Each step receives:
Step 6 — Final summary After all steps complete:
Pipeline complete: skill1 → skill2 → skill3
[Final output from last skill]
/pipe works with any agent that supports skill/slash-command invocation:
/pipe)Code review pipeline:
/pipe review -> security-review -> caveman-commit
Full review → security audit → compressed commit message, all in one command.
Understand before change:
/pipe explain -> refactor
Explains current code first, then refactors with that understanding as context.
Document everything:
/pipe review -> document -> summarize
Review code, generate docs, then summarize changes for PR description.