- 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
30 lines
591 B
YAML
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"
|