$npx skillfedfor your agent

ccw-chain

CCW Chain orchestrates multi-step workflows by analyzing user intent, routing to the appropriate chain, and executing skill pipelines through progressive step loading. It supports auto mode for hands-off execution, delegation between chains, and variable propagation across the entire workflow.

CCW Chain routes user intent to workflow chains and executes skill pipeline steps progressively.

AI-generated summary based on this skill's SKILL.md

★ 2,142  165 MITupdated by catlog22

Decision gist · record as of 2026-06-18

CCW Chain routes user intent to workflow chains and executes skill pipeline steps progressively. CCW Chain orchestrates multi-step workflows by analyzing user intent, routing to the appropriate chain, and executing skill pipelines through progressive step loading. It supports auto mode for hands-off execution, delegation between chains, and variable propagation across the entire workflow.

manual: git clone https://github.com/catlog22/Claude-Code-Workflow → cp -r Claude-Code-Workflow/.claude/skills/ccw-chain ~/.claude/skills/ccw-chain
.claude/skills/ccw-chain/SKILL.md · version aecac4a9

Use it when

  • CCW Chain workflow routing analyzes your intent and directs you to the correct workflow chain and entry point.
  • Yes.

Verify before relying

Read SKILL.md below before installing (10 files). Open directory: indexed for reading, not audited.

Same gist for agents: .md · .json

Install

catlog22/Claude-Code-Workflow/ccw-chain · repository language: TypeScript

Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How do I orchestrate a workflow chain with ccw-chain?

CCW Chain orchestrates multi-step workflows by analyzing your intent and routing you to the appropriate chain. Once routed, it executes skill pipelines through progressive step loading, meaning each phase loads and completes before the next begins. You can enable auto mode to bypass confirmation prompts and let the chain run hands-off, or manually step through each phase. Variables and context propagate across the entire workflow so downstream steps have access to upstream results.

What is ccw-chain workflow routing and how does it work?

CCW Chain workflow routing analyzes your intent and directs you to the correct workflow chain and entry point. The skill examines what you're trying to accomplish, matches it against available chains, and selects the best starting node. This routing ensures you enter the right pipeline for your task. Once routed, the chain executes its steps sequentially, with each phase completing before the next begins, and context flowing through the entire workflow.

Can ccw-chain automate skill pipeline execution with auto mode?

Yes. CCW Chain supports auto mode, which automates skill pipeline execution by bypassing confirmation prompts at each step. When auto mode is enabled, the chain runs hands-off from start to finish without waiting for your approval between phases. Context and variables propagate automatically across all steps, allowing downstream skills to use upstream results. This is ideal for complex multi-step workflows where you want uninterrupted execution.

How do I discover available chains and select entry points?

CCW Chain provides list and inspect commands to discover available chains and preview their node graphs. Use the list command to see all chains, then inspect a specific chain to view its structure, phases, and available entry points. This lets you understand the workflow before execution and choose where to start. You can also preview how variables flow through the chain before committing to execution.

What is chain delegation and how does ccw-chain handle it?

CCW Chain supports delegation between chains, allowing one workflow to hand off execution to another. When a chain delegates, it passes its current context and variables to the target chain, which then continues the work. This enables complex multi-phase skill pipelines where different chains specialize in different tasks. Delegation depth and variable propagation are managed automatically, so context flows seamlessly across chain boundaries.

How does ccw-chain execute phase content inline within skill chains?

CCW Chain executes phase content inline by loading and running each phase's steps directly within the skill-level chain. As each phase completes, it produces artifacts—results or outputs—that are handed off to the next phase. This progressive execution model ensures phases run in sequence with full context awareness. Inline execution keeps everything within the chain's scope, avoiding unnecessary context switching between separate tools or systems.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

CCW Chain Orchestrator

Chain-based workflow orchestrator using chain_loader for progressive step loading and LLM-driven decision routing.

Discovery

  1. chain_loader list — list all chains with triggers, entries, and descriptions
  2. Match user intent to chain triggers.task_types / triggers.keywords
  3. chain_loader inspect — preview chain node graph and available entries
  4. chain_loader start — begin from default entry, named entry (entry_name), or any node (node)

Execution Protocol

When chain_loader delivers a step node with a skill/command doc:

  1. Read the loaded doc content to understand the skill's purpose and interface
  2. Assemble the Skill call: Skill(skill_name, args)
  3. First step: args = "${analysis.goal}"
  4. Subsequent steps: args = "" (auto-receives session context)
  5. Special args noted in step name

(truncated - see the full file via the links below)

File tree — 10 files
.claude/skills/ccw-chain/SKILL.md
.claude/skills/ccw-chain/chains/ccw-cycle.json
.claude/skills/ccw-chain/chains/ccw-exploration.json
.claude/skills/ccw-chain/chains/ccw-issue.json
.claude/skills/ccw-chain/chains/ccw-lightweight.json
.claude/skills/ccw-chain/chains/ccw-main.json
.claude/skills/ccw-chain/chains/ccw-standard.json
.claude/skills/ccw-chain/chains/ccw-team.json
.claude/skills/ccw-chain/chains/ccw-with-file.json
.claude/skills/ccw-chain/specs/auto-mode.md

Let your AI agent find skills like this

Example. Real query, live index.

You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.

wish › “Route user intent to the correct workflow chain and execute skill pipeline steps”

Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →

Related skills

investigate
by catlog22 · catlog22/Claude-Code-Workflow

Investigate guides you through structured debugging in five phases, from evidence collection to verified fix. It enforces the Iron Law principle—never fix without a confirmed root cause—using pattern analysis, hypothesis testing with a 3-strike escalation rule, and regression coverage. Output includes a machine-readable debug report with the full evidence chain.

MITfor claude-codeupdated Jun 2026
★ 2,142repo stars
issue-manage
by catlog22 · catlog22/Claude-Code-Workflow

Issue Management provides a menu-driven interface for tracking and organizing issues through the `ccw issue` CLI. Create, view, edit, delete, and bulk-update issues while filtering by status, priority, or other criteria—with automatic archiving of completed items.

MITfor claude-codeupdated Jun 2026
★ 2,142repo stars
Designing Workflow Skills
by trailofbits · trailofbits/skills

Master the architecture of workflow-based skills through essential principles covering phased execution, tool alignment, progressive disclosure, and scalable patterns. This guide teaches you how to structure multi-step processes with numbered phases, entry/exit criteria, and appropriate freedom levels for each task type.

CC-BY-SA-4.0updated Jul 2026
★ 6,292repo stars
ccw-help
by catlog22 · catlog22/Claude-Code-Workflow

CCW-Help is a command discovery and guidance system for Claude Code Workflow. It offers command search by name or category, smart next-step recommendations, contextual documentation, beginner onboarding, and browsing of workflow skills and team collaboration tools. The skill also handles issue reporting and auto-selects appropriate workflow levels based on task intent.

MITfor claude-codeupdated Jun 2026
★ 2,142repo stars
skill-generator
by catlog22 · catlog22/Claude-Code-Workflow

Skill Generator is a meta-skill that scaffolds new Claude Code skills with your choice of execution model. Select sequential mode for linear pipelines with fixed dependencies, or autonomous mode for dynamic, context-aware routing. It generates a complete skill package including directory structure, phase files, and specification templates.

MITfor claude-codeupdated Jun 2026
★ 2,142repo stars
Worktree Pr
by alfredolopez80 · alfredolopez80/multi-agent-ralph-loop

Worktree Pr orchestrates isolated feature development by creating dedicated git worktrees where multiple subagents collaborate on the same codebase before submitting to multi-agent review. The skill handles worktree creation, PR generation with Claude and Codex reviews, merge coordination, and cleanup—enabling safer, more reversible changes with built-in rollback.

no license declared → metadata onlyfor claude-codeupdated Jul 2026
★ 143repo stars

More skills Skill Generator (unlicensed) · dynamic-workflows (MIT)

Tags
workflow-automationintent-routingpipeline-orchestrationchain-delegationstep-progressioncontext-propagationphase-executionauto-mode-execution