Skip to content

Commit 28e20af

Browse files
committed
docs(orchestrator): add 'Extending Handlers' pointers and sample recipe mixing mcp.call with traditional step
1 parent 9849e07 commit 28e20af

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

orchestrator/README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Recipe Format
105105

106106
- Validated by `schemas/recipe.v1.json`.
107107
- Step keys supported:
108-
- `uses`: `odoo | agent | git | github | tm`
108+
- `uses`: `odoo | agent | git | github | tm | mcp`
109109
- Odoo: `tool`, `args`, `timeout_seconds`, `retries`, `on_error`, `stream_logs`
110110
- Agent: `goal`, `mode`, `context`
111111
- Git: `branch`, `commit`
@@ -160,3 +160,19 @@ Testing
160160
See Also
161161

162162
- Configuration cookbook with copy‑paste snippets: `orchestrator/COOKBOOK.md`
163+
- Handlers design & usage: `orchestrator/docs/HANDLERS.md`
164+
165+
Sample: mixing a traditional step with a generic MCP call
166+
167+
```
168+
steps:
169+
- id: tests
170+
uses: odoo
171+
tool: test_addons
172+
args: { modules: ["my_module"], dbname: "devel" }
173+
- id: note
174+
uses: mcp
175+
server: tm
176+
tool: add_evidence
177+
arguments: { id: T1, type: note, ref: "tests:ok" }
178+
```

0 commit comments

Comments
 (0)