Files
Atomizer/hq/workspaces/shared/workflows/quick-research.yaml
Antoine 3289a76e19 feat: add Atomizer HQ multi-agent cluster infrastructure
- 8-agent OpenClaw cluster (Manager, Tech-Lead, Secretary, Auditor,
  Optimizer, Study-Builder, NX-Expert, Webster)
- Orchestration engine: orchestrate.py (sync delegation + handoffs)
- Workflow engine: YAML-defined multi-step pipelines
- Agent workspaces: SOUL.md, AGENTS.md, MEMORY.md per agent
- Shared skills: delegate, orchestrate, atomizer-protocols
- Capability registry (AGENTS_REGISTRY.json)
- Cluster management: cluster.sh, systemd template
- All secrets replaced with env var references
2026-02-15 21:18:18 +00:00

30 lines
591 B
YAML

name: Quick Research
description: Fast web research with technical validation
trigger: manual
inputs:
query:
type: text
description: "Research question"
steps:
- id: research
agent: webster
task: "{inputs.query}"
timeout: 120
retries: 1
- id: validate
agent: tech-lead
task: |
Verify these research findings are accurate and relevant for engineering use:
{research}
Flag any concerns about accuracy, missing context, or applicability.
depends_on: [research]
timeout: 180
notifications:
on_complete: "Research complete"