feat(orchestration): Phase 7 — docs, integration test (#1242)#1273
Merged
feat(orchestration): Phase 7 — docs, integration test (#1242)#1273
Conversation
…on test (#1242) Add integration test suite for end-to-end orchestration pipeline (plan → execute → aggregate) with 5 tests covering happy path, single task, abort failure, skip failure, and retry exhaustion. Update task-orchestration.md with Limitations section (prompt injection residual risk, max_tasks cap, no dynamic re-planning, no hot-reload, no nested sub-graphs, English-only keyword routing) and fix task_timeout_secs documentation (0 falls back to 600s, not "no timeout"). The orchestration feature is already included in the full feature set (Cargo.toml line 153) and all existing documentation from phases 1-6 was in place. Phase 7 closes out epic #1235.
…pdate README Add reader-oriented opening and --features full build example to task-orchestration.md. Fix feature-flags.md: full feature excludes candle/metal/cuda, not otel. Update README.md orchestration row to note that the feature is included in `full`.
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
Closes #1242. Final phase of task orchestration epic #1235.
docs/src/concepts/task-orchestration.md: add Limitations section (prompt injection residual risk, max_tasks cap, no dynamic re-planning, no hot-reload, no nested sub-graphs, English-only keyword routing), fixtask_timeout_secs = 0documentation (falls back to 600s)The
orchestrationfeature was already in thefullfeature set and documentation for phases 1-6 was already in place.Test plan
cargo +nightly fmt --check— PASScargo clippy --workspace --features full -- -D warnings— PASScargo nextest run --workspace --features full --lib --bins— 4387 passedcargo nextest run -p zeph --features orchestration,mock --test orchestration_integration— 5/5 passed