Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions skills/rig/references/claude-workflow-conversion.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,17 @@ export default audit;
human decision should return a structured `needs_human` result and be re-run
with the answer in its input.

## Example programs

These samples in `skills/rig/samples/` are direct ports of common Claude dynamic
workflow patterns — use them as starting points when converting a script:

| Sample | Demonstrates |
| --- | --- |
| [310-workflow-audit-verify.md](../samples/310-workflow-audit-verify.md) | `args`→`input`, `parallel`, `pipeline`, `phase`, `call.json` — mirrors the canonical find-and-verify pattern |
| [320-budget-aware-crawler.md](../samples/320-budget-aware-crawler.md) | `log`, `budget.remaining()`, `until` convergence loop |
| [330-nested-workflow-composition.md](../samples/330-nested-workflow-composition.md) | `call.workflow` (rig equivalent of `workflow(ref, args)`) sharing the parent's limiter and budget |

## Related references

- [Dynamic workflows](dynamic-workflows.md) — full rig workflow API.
Expand Down
Loading