Legacy cc pipeline
Skill gustavo-meilus/superpipelines/skills/migrating-a-pipeline/fixtures/legacy-cc-pipeline/run-doc-legacy
Loop Engineering for AI coding agents, with real review boundaries. Your AI reviewer cannot edit code. Structurally.
npx -y skills add gustavo-meilus/superpipelines --skill run-doc-legacyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Run the doc-legacy pipeline.
SKILL.md
0.7 KB, as published. Nobody here has run it
Run doc-legacy (LEGACY entry skill — direct Task dispatch, pre-v2)
This is the pre-v2 registered entry skill. It dispatches steps with raw Task(subagent_type=...),
which bypasses state.metadata.resolved_models[step_id] and is forbidden post-v2. Migration
replaces this with a data entry.md routing through sk-platform-dispatch DISPATCH.
# Step 1 — doc-writer
r1 = Task(subagent_type="doc-writer", description="Write doc", prompt="Input: <input>")
if r1.status != "DONE": stop
# Step 2 — doc-reviewer
r2 = Task(subagent_type="doc-reviewer", description="Review doc", prompt="doc: doc.md")
if r2.status != "DONE": stop