ワンクリックで
using-superpipelines
Route Superpipelines requests to the right command workflow, reusable method skill, or direct codebase answer.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Route Superpipelines requests to the right command workflow, reusable method skill, or direct codebase answer.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Cut a Superpipelines version release (vX.Y.Z) — verify the 5 version targets agree, draft CHANGELOG + RELEASE-NOTES entries, land them via PR (main is branch-protected), then create the GitHub release + tag and verify. Use when the user asks to cut/ship/publish a release, tag a version, do release work, or write release notes for Superpipelines.
Resolves agent `model_tier:` declarations into concrete platform-specific model strings and effort values via a 5-layer precedence chain, returning a serializable `resolved` object for dispatch. Use when `running-a-pipeline` Phase 0.45 needs to determine the concrete model + effort for each pipeline step on the active platform before dispatch.
Resolves the active runtime tier and provides the canonical DISPATCH contract for all pipeline step execution. Use when an orchestrator skill needs to dispatch pipeline steps — performs tier detection, loads the platform profile, and executes the Tier 2 inline loop when no subagent primitive is available.
Cut a Superpipelines version release (vX.Y.Z) — verify the 5 version targets agree, draft CHANGELOG + RELEASE-NOTES entries, land them via PR (main is branch-protected), then create the GitHub release + tag and verify. Use when the user asks to cut/ship/publish a release, tag a version, do release work, or write release notes for Superpipelines.
Run, resume, or list installed Superpipelines workflows from the registry.
Provides canonical engineering standards for authoring agents, skills, hooks, and pipeline orchestration in Claude Code. Use when authoring or modifying agents, skills, hooks, or pipeline-orchestration artifacts — covers model-tier selection, prompt-cache discipline, frontmatter schemas, and progressive-disclosure rules.
| name | using-superpipelines |
| description | Route Superpipelines requests to the right command workflow, reusable method skill, or direct codebase answer. |
<routing_table>
| User Request / Situation | Route | Rationale |
|---|---|---|
/superpipelines:new-pipeline, "design a pipeline", "build a workflow", "plan multi-step feature work" | creating-a-pipeline | End-to-end new pipeline scaffolding. |
/superpipelines:run-pipeline, /superpipelines:{P}, "run/execute/resume pipeline" | running-a-pipeline | Registry-driven launcher and resume flow. |
/superpipelines:new-step, "add/insert a step/capability" | adding-a-pipeline-step | Existing topology mutation. |
/superpipelines:update-step, "update/change a pipeline step" | updating-a-pipeline-step | Contract-aware step modification. |
/superpipelines:delete-step, "remove/delete a pipeline step" | deleting-a-pipeline-step | Safe topology removal and gap analysis. |
/superpipelines:audit-steps, "audit/review pipeline X" | dispatch pipeline-auditor | Pipeline bundle compliance review. |
/superpipelines:change-models, "change/reassign pipeline model tiers" | change-models | Model preference and tier reassignment. |
/superpipelines:optimize-pipeline, "optimize pipeline X" | optimizing-a-pipeline | Cost, latency, and topology optimization. |
/superpipelines:migrate-pipeline, "migrate legacy pipeline" | migrating-a-pipeline | Legacy old-root to data-only conversion. |
| Ambiguous Superpipelines request | Ask one clarifying question or use sk-4d-method | Avoid loading heavy workflows prematurely. |
| Read-only Q&A about the repo or plugin | Answer directly with file reads/searches | Do not invoke a workflow for explanation-only requests. |
| </routing_table> |
The router owns global command selection. Workflow skills should only describe their local workflow and may point back here for global routing. Do not duplicate this full table in workflow bodies.
creating-a-pipeline Phases 0 and 1 are mandatory. Run them before the 4D analysis.<rationalization_table>
| Excuse | Reality |
|---|---|
| "I'll read the skill file directly." | Using Read instead of Skill tool breaks discovery, caching, and body-loading logic. |
| "The user said it's urgent, skip audit." | A 30-second audit prevents silent topology gaps that lead to catastrophic runtime failure. |
| "The state file is too complex." | Standardized state is the only path to reliable resumption and multi-step recovery. |
| "The brief is complete, skip preflight." | Git preflight and scope selection are non-negotiable. A rich brief does not substitute for environment validation or deployment scope confirmation. |
"I'll write state to tmp/." | The canonical state path is <scope-root>/superpipelines/temp/{P}/{runId}/pipeline-state.json. The tmp/ path is a retired pattern. |
| </rationalization_table> |
sk-pipeline-grilling/SKILL.md — Brief-hardening interrogation run during pipeline creation (Phases 2 and 3).sk-pipeline-paths/SKILL.md — Scope and path resolution.sk-pipeline-patterns/SKILL.md — Topology selection.sk-write-review-isolation/SKILL.md — Two-stage review protocol.sk-rationalization-resistance/SKILL.md — Resistance mechanism standards.