docs: document dynamic workflows (budget overload, execute_loop, Workflow facade) + blog#8
Merged
Merged
Conversation
added 2 commits
June 7, 2026 14:55
…cade Update the orchestration reference, examples, and tutorial (en + cn) for the new capabilities: - parallel(specs, budgetTokens?) — a shared token ledger across a fan-out, with the soft-cap caveat and the union/dict return shape. - execute_loop / LoopDecision — bounded loop-until-done with a mandatory max_iterations hard cap. - the Rust Workflow facade — session.workflow(), named resumable phases, WorkflowEvent milestones, and budget_snapshot().
…(en + cn) A technical deep-dive on how A3S Code composes a Claude-Code-style dynamic workflow runtime — fan-out, phases, loops, and a shared token budget — from the existing AgentExecutor, WorkflowCheckpoint, and BudgetGuard seams rather than a new subsystem. Includes the honest soft-cap budget caveat.
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.
Summary
Documentation for the new dynamic-workflow capabilities in
crates/code(companion to AI45Lab/Code#64).parallel(specs, budgetTokens?)shared-budget overload,execute_loop/LoopDecision, and the RustWorkflowfacade (named resumable phases,WorkflowEvent,budget_snapshot()).Only
apps/docsis touched; submodule pointers (crates/code,crates/gateway) are intentionally left unchanged.