Workflow Skill Launcher banner
zhao-wuyan zhao-wuyan

Workflow Skill Launcher

Productivity community intermediate

Description

Direct entry point to invoke any workflow skill by name. Bypasses CCW intent analysis and routing — execute exactly the skill the user specifies.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for zhao-wuyan/ccw-command-explorer, shared by 5 entries in this directory. It describes the repository, not this entry specifically.


name: workflow-skill description: Direct workflow skill launcher - invoke any registered skill by name with arguments argument-hint: " [arguments]" allowed-tools: Skill(*), AskUserQuestion(*), Read(*), Glob(*)

Workflow Skill Launcher

Direct entry point to invoke any workflow skill by name. Bypasses CCW intent analysis and routing — execute exactly the skill the user specifies.

Usage

/workflow-skill  [arguments]

Execution

  1. Parse $ARGUMENTS → extract skill_name (first token) and args (remaining)
  2. Validate skill exists (check skill list below)
  3. Invoke Skill(skill_name, args)
const [skillName, ...rest] = $ARGUMENTS.trim().split(/\s+/);
const args = rest.join(' ');

// Validate
if (!skillName) {
  // Show skill catalog (see below)
  return;
}

// Execute
Skill(skillName, args);

Skill Catalog

If no arguments provided, show this catalog for user selection.

Planning Skills

Skill Description
workflow-lite-plan Lightweight planning — explore → plan → confirm → handoff
workflow-plan Full planning — session → context → convention → gen → verify
workflow-tdd-plan TDD planning — 6-phase TDD plan → verify
workflow-multi-cli-plan Multi-CLI collaborative planning with codebase context

Execution Skills

Skill Description
workflow-lite-execute Lightweight execution — task grouping → batch → review → sync
workflow-execute Full execution — session discovery → task processing → commit
team-executor Resume existing team session and execute remaining tasks
team-planex Plan-and-execute wave pipeline (planner + executor)

Review & Test Skills

Skill Description
workflow-test-fix Test generation + fix cycle
workflow-lite-test-review Post-execution test review and fix
review-cycle Multi-dimensional code review with automated fix
review-code Code review with structured report (read-only)

Exploration Skills

Skill Description
brainstorm Multi-perspective brainstorming
spec-generator Specification generator — 7-phase document chain
investigate Systematic debugging with Iron Law methodology

Workflow Commands (slash-style)

Skill Description
workflow:analyze-with-file Collaborative analysis with documented discussions
workflow:brainstorm-with-file Interactive brainstorming with multi-CLI collaboration
workflow:collaborative-plan-with-file Multi-agent collaborative planning
workflow:debug-with-file Hypothesis-driven debugging
workflow:roadmap-with-file Strategic requirement roadmap
workflow:unified-execute-with-file Universal execution engine for any planning output
workflow:integration-test-cycle Self-iterating integration test workflow