Skip to content
Draft
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions skills/rig/references/claude-workflow-conversion.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ workflow patterns — use them as starting points when converting a script:
| [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 |
| [360-parallel-branch-analysis-workflow.md](../samples/360-parallel-branch-analysis-workflow.md) | `const [a, b] = await parallel([...])` destructuring — the common Claude pattern for a fixed set of concurrent calls |

## Related references

Expand Down
3 changes: 3 additions & 0 deletions skills/rig/samples/360-parallel-branch-analysis-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ dynamic workflows. `parallel` respects the shared concurrency limiter and
converts failures to `null` holes. Use it instead of `Promise.all` when porting
a Claude dynamic workflow.

See [claude-workflow-conversion.md](../references/claude-workflow-conversion.md)
for the full primitive mapping.

```rig
import { agent, p, s, workflow } from "rig";

Expand Down