From orchestration
Designs custom workflow syntax elements like operators, checkpoints, actions, conditions, and loops with reuse-first approach. Use when core syntax lacks needed patterns.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-1 --plugin mbruhler-claude-orchestrationThis skill uses the workspace's default tool permissions.
I design custom syntax elements following a reuse-first approach. Only create new syntax when existing patterns don't fit.
Creates multi-agent orchestration workflows from natural language using Socratic questioning, pattern detection for sequential/parallel/conditional flows, syntax generation, and visualization.
Guides design of composable agentic primitives like Classify, Plan, Build for SDLC workflows. Maps problem classes (chore, bug, feature) to reusable compositions with validation gates.
Guides designing workflow-based Claude Code skills with numbered phases, decision trees, subagent delegation, and progressive disclosure. For sequential pipelines, routing patterns, safety gates, task tracking, phased execution, or refactoring skills.
Share bugs, ideas, or general feedback.
I design custom syntax elements following a reuse-first approach. Only create new syntax when existing patterns don't fit.
I activate when you:
Before creating new syntax, I check:
->, ||, ~>, @, [...]library/syntax/Only create new if no match exists.
Custom flow control operators.
Example: => (merge with dedup)
---
symbol: =>
description: Merge with deduplication
---
Executes left then right, removes duplicates from combined output.
Reusable sub-workflows.
Example: @deep-review
---
name: @deep-review
type: action
---
Expansion: [code-reviewer:"security" || code-reviewer:"style"] -> merge
Manual approval gates with prompts.
Example: @security-gate
---
name: @security-gate
type: checkpoint
---
Prompt: Review security findings. Verify no critical vulnerabilities.
Custom conditional logic.
Example: if security-critical
---
name: if security-critical
description: Check if changes affect security code
evaluation: Modified files in: auth/, crypto/, permissions/
---
Reusable loop patterns.
Example: retry-with-backoff(n)
---
name: retry-with-backoff
type: loop
params: [attempts]
---
Pattern: @try -> operation -> (if failed)~> wait -> @try
✅ DO:
@security-gate not @check)❌ DON'T:
library/syntax/
├── operators/ # Flow control operators
├── actions/ # Reusable sub-workflows
├── checkpoints/ # Approval gates
├── conditions/ # Custom conditionals
├── loops/ # Loop patterns
├── aggregators/ # Result combination
└── guards/ # Pre-execution checks
Need custom syntax? Describe the pattern you keep repeating!