🤖
Speckit Swarm
Orchestrates complex tasks by detecting keywords, decomposing work into parallel chunks, and coordinating multiple specialized agent personas for full execut...
安全通过
💬Prompt
技能说明
Speckit Swarm - Agent Orchestration System
Overview
Native implementation of oh-my-opencode-style orchestration using OpenClaw's tools.
Architecture
Core Components
- Ultrawork Detector - Detects "ulw"/"ultrawork" keywords and triggers parallel execution
- Agent Personas - Specialized system prompts for different tasks
- Task Planner - Breaks complex tasks into parallel chunks
- Continuation Enforcer - Ensures tasks complete fully
File Structure
skills/speckit-swarm/
├── SKILL.md # This file
├── src/
│ ├── ultrawork.ts # Ultrawork detection & trigger
│ ├── personas/
│ │ ├── mod.ts # Persona exports
│ │ ├── sisyphus.ts # Main orchestrator
│ │ ├── hephaestus.ts # Deep worker
│ │ ├── oracle.ts # Design/debug
│ │ ├── librarian.ts # Research/docs
│ │ └── explore.ts # Fast scout
│ ├── planner.ts # Task decomposition
│ └── index.ts # Main entry
Usage
Manual Mode
# Use personas directly
sessions_spawn task:"..." model:"minimax-m2.5" thinking:"high"
Ultrawork Mode
When user includes "ulw" or "ultrawork":
- Detect keyword
- Decompose task into parallel chunks
- Execute with parallel_spawn
- Aggregate results
Personas
Sisyphus (Main Orchestrator)
- Model: minimax-m2.5
- Thinking: high
- Behavior: Relentless execution, parallel coordination, todo tracking
Hephaestus (Deep Worker)
- Model: minimax-m2.5
- Thinking: high
- Behavior: Autonomous execution, no hand-holding, completes full scope
Oracle (Design/Debug)
- Model: minimax-m2.5
- Thinking: high
- Behavior: Architecture decisions, bug hunting, code review
Librarian (Research)
- Model: minimax-m2.1
- Thinking: medium
- Behavior: Docs lookup, code exploration, pattern finding
Explore (Scout)
- Model: minimax-m2.5-highspeed
- Thinking: low
- Behavior: Fast grep, file finding, quick analysis
How to Use
1. Direct Persona Usage
import { PERSONAS, buildTaskPrompt } from './speckit-swarm';
const persona = PERSONAS.hephaestus;
const task = "Fix the login bug in auth.ts";
sessions_spawn({
task: buildTaskPrompt({ task, persona: 'hephaestus' }),
model: persona.config.model,
thinking: persona.config.thinking
});
2. Ultrawork Mode (auto-detected)
When user includes "ulw" or "ultrawork":
import { planTask, shouldUseUltrawork } from './speckit-swarm';
const task = "ulw refactor the auth module";
if (shouldUseUltrawork(task)) {
const plan = planTask(task);
// Execute plan.chunks with parallel_spawn
}
3. Task Decomposition
import { planTask } from './speckit-swarm';
const plan = planTask("Create a new API endpoint");
// plan.chunks = [{ label: 'spec', ... }, { label: 'setup', ... }, ...]
Ultrawork Handler
O handler detecta "ulw" automaticamente e prepara tarefas para parallel_spawn.
Funções Exportadas
// Verifica se contém keyword ulw
containsUltrawork(task: string): boolean
// Limpa o prefixo ulw da tarefa
cleanUltraworkTask(task: string): string
// Prepara execução ultrawork
prepareUltrawork(task: string): {
shouldExecute: boolean;
chunks: Array<{
label: string;
task: string;
model?: string;
thinking?: string;
}>;
cleanedTask: string;
}
Exemplo de Uso
// Na minha resposta, quando receber mensagem com "ulw":
const ultrawork = prepareUltrawork("ulw create a new API");
if (ultrawork.shouldExecute) {
// Executar com parallel_spawn
parallel_spawn({
tasks: ultrawork.chunks,
wait: "all"
});
}
Como Eu Detecto e Executo
Análise de Segurança de Concorrência
Antes de paralelizar, verifico se não há conflitos:
| Tipo de Tarefa | Estratégia |
|---|---|
| Criar novo projeto/CLI/API | PARALLEL ✓ |
| Múltiplos arquivos novos | PARALLEL ✓ |
| Refatorar módulo | CAUTIOUS (verifica dependências) |
| Corrigir bug | SEQUENTIAL ✗ |
| Editar mesmo arquivo | SEQUENTIAL ✗ |
| Tarefa simples | SINGLE |
Fluxo de Decisão
- Analiso complexidade - É uma tarefa grande?
- Verifico conflitos - Vai mexer no mesmo arquivo?
- Decido estratégia - parallel / sequential / single
Isso evita problemas de concorrência quando múltiplos agentes tentam modificar o mesmo arquivo.
Exemplo de Uso
// Detecção automática
const result = prepareParallelExecution("criar um novo CLI");
// result.shouldExecute = true (detectou complexidade)
if (result.shouldExecute) {
parallel_spawn({
tasks: result.chunks,
wait: "all"
});
}
如何使用「Speckit Swarm」?
- 打开小龙虾AI(Web 或 iOS App)
- 点击上方「立即使用」按钮,或在对话框中输入任务描述
- 小龙虾AI 会自动匹配并调用「Speckit Swarm」技能完成任务
- 结果即时呈现,支持继续对话优化