ultracode

Solid

Multi-agent workflow orchestration. Use when the user says "ultracode", "workflow", "parallel agents", "pipeline", or asks to orchestrate multiple agents for complex tasks. Also use when the user wants to break work into phases or parallel streams.

AI & Automation 131 stars 26 forks Updated yesterday Apache-2.0

Install

View on GitHub

Quality Score: 90/100

Stars 20%
71
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Ultracode: Multi-Agent Workflow Orchestration You have access to the **Workflow** tool (via `SearchExtraTools` → `ExecuteExtraTool`), which lets you orchestrate multiple agents working in parallel or pipeline phases. ## When to Use Use the Workflow tool when: - The task can be decomposed into independent parallel subtasks - The task benefits from a pipeline (phased execution where later phases depend on earlier results) - You need to explore multiple approaches simultaneously - The user explicitly asks for "ultracode", "workflow", or parallel execution Do NOT use workflows for: - Simple single-agent tasks (just do the work directly) - Tasks requiring tight sequential conversation (use normal tool calls) - Tasks that are faster to do inline than to script ## How to Use ### 1. Discover the Workflow tool The Workflow tool is a deferred tool. First search for it: ``` SearchExtraTools("workflow") ``` Then execute it: ``` ExecuteExtraTool("Workflow", { "script": "...your workflow script...", "args": {}, "maxConcurrency": 3 }) ``` ### 2. Write a workflow script Workflow scripts are JavaScript ESM modules using these primitives: - **`agent(prompt, options?)`** — Run a single agent. Returns the agent's output. - **`parallel([...factories])`** — Run multiple agents concurrently. **入参为返回 promise 的零参工厂函数(thunks),不是 promise。** Returns array of results. - **`pipeline(items, ...stages)`** — 数据流水线:对 items 每个元素顺序执行所有 stage,`stage=(prev, item, index) => result`,stage 的返回值为...

Details

Author
KonghaYao
Repository
KonghaYao/peri
Created
4 months ago
Last Updated
yesterday
Language
Rust
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

workflow-composer

Invoke when the user asks to build, generate, repair, or restructure a workflow for Claude Code's Workflow tool ("I want a workflow that…", "turn this process into a workflow", "set up a multi-agent pipeline"), to pick orchestration patterns, or to tune model/effort/agentType routing. Covers writing and debugging the single .js scripts where deterministic JavaScript drives fleets of fresh-context subagents (agent/parallel/pipeline/phase), via the @workflow-toolbox toolkit or the raw single-file path.

1 Updated today
home-dev-lab
AI & Automation Solid

workflows

Create and run reusable multi-agent pipelines. Bundle an orchestrator prompt with optional subagents, skills, and plugins into a named workflow invoked as `agents run <workflow-name>`. Triggers on: 'workflow', 'orchestrator', 'WORKFLOW.md', 'multi-agent pipeline', 'reusable agent task'.

11 Updated today
phnx-labs
AI & Automation Solid

workflow-orchestration

Написание и запуск Claude Code dynamic workflows (детерминированный JS-оркестратор субагентов, research preview 2026-05-28). Use when пишешь или запускаешь workflow, видишь keyword workflow в запросе, нужен fan-out на десятки-сотни агентов, codebase-wide аудит/миграция, cross-checked research, competency-review, batch-обработка списка элементов через стадии. Покрывает: примитивы phase/agent/parallel/pipeline/workflow, pipeline vs parallel, schema, budget, resume, quality-паттерны (adversarial verify, judge panel, loop-until-dry), и наши добавки к платформе (retry-обёртка, error policy, .runs observability, eval-harness, billing-дисциплина). Триггеры: workflow, воркфлоу, оркестратор, fan-out, ultracode, deep-research, 1000 агентов, детерминированный скрипт агентов. Do NOT use to design the agent/Generator-Evaluator architecture itself (use harness-design) or for a single one-shot subagent/review where no deterministic multi-stage script is needed; this writes the JS orchestrator, it is not for ad-hoc one-off a

138 Updated today
AnastasiyaW