Claude Code Workflow Creator banner
ray-amjad ray-amjad

Claude Code Workflow Creator

Productivity community

Description

A Claude Code skill for authoring Workflow tool scripts: deterministic multi-agent orchestration. Preview of an unreleased feature.

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/.

README

claude-code-workflow-creator

A Claude Code **skill** that teaches Claude to author **workflows**: deterministic multi-agent orchestration scripts that fan work out to fresh-context subagents under plain JavaScript control flow.

A workflow is a JavaScript file. The loops, the conditionals, the fan-out are ordinary code that you control. Only the leaf `agent()` calls spend model tokens, and each one runs in its own clean context window. The result is multi-agent work that behaves the same way every run and can be resumed if it stops partway.

This skill carries the file format, the judgement calls, and a tested authoring procedure, so you can just ask Claude to "create a workflow for X" and get a correct, runnable file back.

Heads up: the Workflow tool is not released yet

This skill writes files for Claude Code's **Workflow tool**. As of right now that tool is **unreleased and unannounced**.

It ships inside the Claude Code binary, but it stays hidden behind an environment variable, and Anthropic has not officially documented or announced it. That can change at any time, including how it is enabled and how it behaves.

**What this means for you:**

  • You can install this skill today and read through it to understand workflows.
  • The workflows it writes will only actually run once the Workflow tool is switched on in a released version of Claude Code.
  • The right move is to wait for Anthropic to officially announce and release the feature, then come back and use this skill once it is live.

Treat this repo as a preview until then. When the feature ships, everything here is ready to go.

What is in this repo

The repo root is the skill itself. Drop it into your Claude Code skills folder and Claude picks it up automatically.

Path What it is
SKILL.md The skill entry point: the procedure Claude follows to design and write a workflow.
references/api-reference.md The complete manual: every global, every option, ever