Skip to content

πŸ“‹ Full Skill Source β€” This is the complete, unedited SKILL.md file. Nothing is hidden or summarized.

← Back to Skills Library

Skill Chain Engine ​

TRIZ #40 Composite Materials β€” Skills compose into pipelines. One command β†’ full workflow β†’ automated step progression.

When to Use ​

ALWAYS trigger for: chain, pipeline, workflow, multi-step, end-to-end, "run the whole thing", "full process", "feature pipeline", "bug fix flow", "from scratch to deploy", "brainstorm to ship", "chuα»—i skill", "pipeline Δ‘αΊ§y Δ‘α»§"

Quick Reference ​

CommandDescription
cody chain listShow all available chains
cody chain info <id>Show chain pipeline details
cody chain auto "task"Auto-detect best chain & start
cody chain start <id> "task"Start specific chain
cody chain status [exec-id]Show progress
cody chain advance <exec-id>Complete current step, move to next
cody chain skip <exec-id>Skip current step
cody chain abort <exec-id>Cancel chain
cody chain historyView past chain runs

Built-in Chains ​

πŸš€ feature-development (6 steps) ​

brainstorm-idea β†’ planning β†’ tdd β†’ execution β†’ quality-gate β†’ safe-deploy

πŸ› bug-fix (3 steps) ​

debugging β†’ tdd β†’ quality-gate

πŸ“ content-launch (3 steps) ​

content-factory β†’ ads-tracker β†’ cro-methodology

πŸ—οΈ new-project (6 steps) ​

project-bootstrap β†’ planning β†’ tdd β†’ execution β†’ quality-gate β†’ safe-deploy

πŸ” code-review (3 steps) ​

code-review β†’ quality-gate β†’ safe-deploy

Workflow ​

  1. Start: Use chain auto for auto-detection or chain start for specific chains
  2. Execute: Work through each skill step, using @[/skill-name] to invoke
  3. Advance: When step is done, run chain advance <id> "summary"
  4. Repeat: Continue until all steps complete
  5. Track: Use chain status to monitor progress anytime

Integration with Other Skills ​

  • cm-judge: Automatically suggests CHAIN_NEXT action for chain-linked tasks
  • cm-continuity: Chain progress persists across sessions via kanban data
  • Dashboard API: Full REST API at /api/chains and /api/chain-executions

For AI Agents ​

When dispatching tasks that match a chain pattern:

1. Check if task matches a chain: suggestChain(taskTitle)
2. If match found, suggest to user: "This task matches the X chain pipeline"
3. If user agrees, start the chain and invoke skills in order
4. After completing each skill, advance the chain

Open Source AI Agent Skills Framework