[rig-claude] Improve Claude dynamic-workflow compatibility for rig - #371
Draft
github-actions[bot] wants to merge 1 commit into
Draft
[rig-claude] Improve Claude dynamic-workflow compatibility for rig#371github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
- Fix call.json schema note: accepts any s.* value (s.object, s.enum, s.array, etc.), not just s.object — removes a common porting mistake - Add 360-parallel-branch-analysis-workflow.md to the example programs table in claude-workflow-conversion.md so parallel fan-in with named agents and non-object schema output has a discoverable sample Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Compatibility gap addressed
The
call.jsonrow in the primitive mapping table statedschema is s.object({ ... }), implying only object schemas are accepted. In practicecall.jsonaccepts anys.*value —s.enum,s.array,s.literal, etc. Anyone porting a Claude dynamic workflow that passes a non-object{ schema }(e.g.{ schema: { type: "string", enum: [...] } }) would incorrectly assume they had to wrap it in an object.Sample
360-parallel-branch-analysis-workflow.md— which demonstrates exactly this pattern (call.jsonreturnings.enum) alongside named agents andparallel(thunks)— was also missing from the example programs table inclaude-workflow-conversion.md, making it undiscoverable.Why this improves transfer
parallelfan-in + named-agent pattern without scanning the full sample directory.Files changed
skills/rig/references/claude-workflow-conversion.mdcall.jsonnote: "anys.*value (s.object,s.enum,s.array, ...)"360-parallel-branch-analysis-workflow.mdto the Example programs tableValidation run
Remaining intentional differences
No API changes; the intentional behavior differences documented in the "Behavior differences to keep in mind" section are unchanged.