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"
|