templates/.claude/skills/pipeline/SKILL.md
Invoke and resume YAML-defined pipelines by name — /pipeline auto-dev runs the full release pipeline
npx skillsauth add baekenough/oh-my-customcode pipelineInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
/pipeline auto-dev # Run the auto-dev pipeline
/pipeline # List available pipelines
/pipeline resume # Resume a halted pipeline
Execute these steps to display available pipelines:
Glob("workflows/*.yaml") (NOT templates/) to find all pipeline definitionsBash to extract name and description:
for f in workflows/*.yaml; do
name=$(grep -m1 '^name:' "$f" | sed 's/^name: *//' | tr -d '"')
desc=$(grep -m1 '^description:' "$f" | sed 's/^description: *//' | tr -d '"')
echo " $name — $desc"
done
Glob("templates/workflows/*.yaml") for template examplesAvailable pipelines:
{name} — {description}
{name} — {description}
Template pipelines (in templates/workflows/):
{name} — {description}
{filename} — (parse error, skipped)workflows/{name}.yamlname, description, steps[]skill: or prompt: (not both).claude/skills/^[a-z0-9-]+$ (kebab-case only) — reject path traversal attempts[Pipeline] Starting {name} — {step_count} stepsskill: name): Invoke via Skill tool — Skill(skill: "{name}")prompt: text): Execute the described action using appropriate agents/toolsforeach: collection): Iterate over collection from previous step output/tmp/.claude-pipeline-*-{PPID}.json for state filesTrack per-step state:
{
"pipeline": "{name}",
"started": "ISO-8601",
"status": "running|completed|halted",
"current_step": 0,
"steps": [
{"name": "triage", "status": "completed", "duration_ms": 5000},
{"name": "plan", "status": "running"}
]
}
State saved to /tmp/.claude-pipeline-{name}-{PPID}.json on failure.
development
Generate and maintain a persistent codebase wiki — LLM-built interlinked markdown knowledge base (Karpathy LLM Wiki pattern)
development
Use the project wiki as RAG knowledge source — search wiki pages to answer codebase questions before exploring raw files
tools
Analyze task trajectories to propose reusable SKILL.md candidates from successful patterns
data-ai
hada.io RSS feed monitoring for AI agent/harness articles with automated /scout analysis