creating-workflows

Automate multi-phase development workflows with claude-flow orchestration.

14|1|Updated Oct 22, 2025
One-click install
npx skills add https://github.com/delorenj/skills --skill creating-workflows-delorenj
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: creating-workflows
Source: https://github.com/delorenj/skills/tree/main/creating-workflows
Command: npx skills add https://github.com/delorenj/skills --skill creating-workflows-delorenj

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and assets (resource) components.

What problem does it solve?

This skill provides patterns and templates for building automated multi-phase development workflows using claude-flow, multi-agent coordination, and intelligent verification.

Core Features & Use Cases

  • Multi-phase workflow design (kickoff, verification, retry)
  • Claude-flow orchestration patterns for parallel agents
  • Documentation patterns and templates
  • Dry-run and testing strategies for workflows

Quick Start

Copy a workflow template, customize phases, and run a dry-run before execution.

Frequently Asked Questions about creating-workflows

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

FAQPage Schema
How do I automate multi-phase development workflows with Claude?

Multi-phase workflows orchestrate sequential or parallel agent tasks using claude-flow. Design phases for kickoff, verification, and retry logic; claude-flow coordinates agents, injects context between phases, and handles failures intelligently. This pattern automates CI/CD pipelines, feature implementation, refactoring, and deployments.

What's the best way to handle failures and retries in automated workflows?

Implement context-aware retry loops that preserve state from failed phases and re-inject it into subsequent attempts. Detect silent failures through verification phases, log outcomes, and use dry-run capabilities to test recovery paths before executing workflows in production.

Can I run workflows without shell dependencies using claude-flow?

Yes. Use jelmore to achieve shell-context independence, decoupling workflow logic from environment-specific commands. This enables workflows to run across different systems and CI/CD platforms without rewriting orchestration code for each target environment.

How do I coordinate multiple agents in a single workflow?

Claude-flow provides orchestration patterns for parallel and sequential multi-agent coordination. Define agent roles per phase, route outputs between agents as inputs, and use verification phases to validate agent results before proceeding to dependent phases.

What templates and patterns are included for workflow design?

Standardized templates cover kickoff, verification, retry, and rollback patterns. Copy a template matching your use case—CI/CD, feature implementation, or refactoring—customize phase logic and agent roles, then validate with dry-run before deployment.

When should I use workflow orchestration instead of manual scripts?

Use orchestration when workflows require multi-phase coordination, intelligent retry logic, context injection between phases, failure detection, or reproducible execution across environments. Manual scripts lack built-in verification, context management, and structured failure handling.