ccw-chain

Route natural-language requests to chain workflows and execute Skill pipelines with state propagation.

1|Updated May 12, 2026
One-click install
npx skills add https://github.com/tcytan/tecton --skill ccw-chain
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ccw-chain
Source: https://github.com/tcytan/tecton/tree/main/.claude/skills/ccw-chain
Command: npx skills add https://github.com/tcytan/tecton --skill ccw-chain

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The ccw-chain Skill solves the problem of reliably converting user intent into the right multi-step workflow and executing the corresponding Skill pipeline without manual coordination.

Core Features & Use Cases

  • Intent-to-chain routing: Matches user task types and keywords to the correct chain triggers to choose the best workflow path.
  • Progressive chain execution: Uses chain_loader to progressively load nodes/entries, inspect the workflow graph, and execute steps in order.
  • Skill orchestration and argument assembly: Reads loaded step docs, assembles Skill calls with correct session handling, and supports auto-confirm propagation.
  • Delegation and variable propagation: Continues execution across delegated chain depth while passing/receiving variables to maintain state.

Quick Start

Run the chain orchestrator on a request like add authentication, and let it route through the appropriate CCW chain steps automatically.

Frequently Asked Questions about ccw-chain

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate multi-step workflow orchestration from natural language requests?

Multi-step workflow orchestration is automated by routing natural-language requests to the correct chain pipeline, loading required nodes, and executing tasks end-to-end with state propagation. It matches task types and keywords to choose the best workflow path automatically.

How does intent routing work for bugfix and exploration task workflows?

Intent routing works by matching user task types like bugfix, hotfix, exploration, and issue workflows to specific chain triggers. The system reads loaded step docs and assembles Skill calls with correct session handling to execute the appropriate pipeline.

Can I execute a Skill pipeline without manual confirmation prompts?

Yes, you can execute a Skill pipeline without manual confirmation by using the -y auto-mode confirmation injection. This feature propagates auto-confirm across the chain execution to ensure coherent multi-step outcomes without interruption.

What is progressive chain loading in workflow execution?

Progressive chain loading is a mechanism that progressively loads nodes and inspects the workflow graph to execute steps in order. It ensures chain_loader-driven orchestration maintains session-aware argument assembly throughout the pipeline.

How do I pass variables between parent and child tasks in a delegated workflow?

Variables are passed between parent and child tasks through delegation and variable propagation. The system continues execution across delegated chain depth while passing and receiving variables to maintain state for coherent multi-step outcomes.

Does chain-based task routing support file-based analyze and debug flows?

Yes, chain-based task routing supports file-based analyze and debug flows. It implements intent-driven task types that route these specific flows through progressive chain loading to execute the required analysis pipeline.