Workflow Builder
Design and write deterministic multi-agent workflow scripts (.js files in .claude/workflows/) for Claude Code's Workflow tool.
Before & after
Same prompt, same agent — the only difference is the skill.
You can orchestrate multiple agents in a workflow. Each agent would handle its own task, and you'd need to pass the results from one to the next. You'd typically set up an initial prompt, have the first agent run, capture its output, then feed that to the second agent, and so on. A workflow file would let you script this, but you'd need to define the agents, their instructions, and how data flows between them. It's a bit complex to set up initially.
WORKFLOW SCRIPT (.claude/workflows/competitor-strategy.js)
module.exports = {
name: 'Competitor Strategy Pipeline',
steps: [
{
name: 'research-agent',
type: 'agent',
subagent_type: 'general-purpose',
prompt: 'Research our top 3 competitors. For each: pricing model, target market, product features, recent launches, funding/valuation, customer sentiment. Return structured JSON.',
timeout: 300000
},
{
name: 'analyze-agent',
type: 'agent',
subagent_type: 'general-purpose',
prompt: 'Compare this competitor research against our positioning. Identify 5 strategic gaps and 3 opportunities. Output: ranked list with confidence scores.',
input: { competitor_data: '{{ steps.research-agent.output }}' },
timeout: 240000
},
{
name: 'memo-agent',
type: 'agent',
subagent_type: 'general-purpose',
prompt: 'Draft a strategy memo (C-level brief) based on competitor gaps and our opportunities. Include: executive summary, market analysis, 3 strategic recommendations with resource estimates, next 90-day roadmap.',
input: { analysis: '{{ steps.analyze-agent.output }}' },
timeout: 180000
}
],
fan_out: false,
timeout: 900000,
output_format: 'final_step'
};
RUN: workflow competitor-strategy
OUTPUT: Structured memo with research + analysis embedded as appendixAbout this skill
name: workflow-builder description: Use when Design and write deterministic multi-agent workflow scripts (.js files in .claude/workflows/) for Claude Code's Workflow tool.
Workflow Builder
Design and write deterministic multi-agent workflow scripts (.js files in .claude/workflows/) for Claude Code's Workflow tool. Use when a user wants to build, create, author, scaffold, or run a custom Claude Code workflow, orchestrate sub-agents (fan-out, pipeline, loop, judge-panel), or automate a repeatable multi-step task across fresh-context agents.
What you get
- Public GitHub repo (alirezarezvani/claude-skills)
- the workflow-builder skill folder with SKILL.md. Part of a 337-skill / 30-agent / 70-command install.
Customize your output
- Fork the repo and adapt the skill's instructions and references to your workflow.
Example output
Activates automatically when your request matches Workflow Builder; chains with the other skills, agents, and commands in the collection.
Best for
Creators, builders, and teams using Claude Code.
SKILL.md preview
---
name: workflow-builder
description: Use this skill when a user wants to build, author, or run a custom Claude Code workflow script that orchestrates multiple sub-agents deterministically.
version: 1.0.0
category: Development / Engineering
author: AgentVolt
license: proprietary
tags:
- development
- engineering
---
# Workflow Builder
Designs and writes deterministic multi-agent workflow scripts for Claude Code's Workflow tool, orchestrating sub-agents across patterns like fan-out, pipeline, loop, and judge-panel.
## When to use
… (sign up to view the full skill)More development skills
View all Development skills →Generate
Scaffold code, tests, and boilerplate from a short spec.
Performance Profiler
Systematic performance profiling for Node.js, Python, and Go applications.
Threat Detection
Use when hunting for threats in an environment, analyzing IOCs, or detecting behavioral anomalies in telemetry.
Agent Harness
Turns a domain folder of skills into a bounded agentic loop: compile a goal into a task plan, execute with the domain's tools, verify every task, retry within a budget.