chore: promote dev → main#1178
Merged
zbigniewsobiecki merged 5 commits intomainfrom Apr 24, 2026
Merged
Conversation
…mplete (#1172) Co-authored-by: Cascade Bot <bot@cascade.dev>
… as 'own' (#1173) Co-authored-by: Cascade Bot <bot@cascade.dev>
…ntegrated model (#1175) * feat(engine-ux): redesign Engine page with harness-first layout and integrated model * fix(engine-ux): hide model and maxIterations on non-default engine tabs Model and maxIterations are project-level settings that apply only to the default engine. Rendering their inputs on every tab created a data corruption risk: a user editing these fields while viewing a non-default tab would save incompatible engine/model combinations (e.g. agentEngine=claude-code but model=gpt-4o). Both sections are now wrapped in {isDefault && (...)} so they only appear on the default engine's tab. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(engine-ux): fix activeTab state out-of-sync with async defaultsQuery Initialize activeTab as null so it reactively follows effectiveEngineId until the user manually switches tabs. This prevents the mismatch where defaultsQuery loads after initial render and reveals a different system default engine than the one useState initialized with. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Cascade Bot <bot@cascade.dev> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
…apacity slots (#1176) * feat(backlog-manager): maximize throughput by filling all available capacity slots * test(worker-entry): clear JOB_* env vars in beforeEach to prevent CASCADE process inheritance When running inside a CASCADE worker container, JOB_ID, JOB_TYPE, and JOB_DATA are set in the process environment. Tests in `main() - environment variable validation` must clear these before each test so the "all env vars absent" case actually sees an empty environment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Cascade Bot <bot@cascade.dev> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
…t + dual timeouts (#1177) Spec 013. Replaces buffered spawn() runCommand() with execa + tree-kill: streams child output to parent stderr live, emits 30s silence heartbeats, enforces idle + wall-clock timeouts with SIGTERM→SIGKILL process-group kill, preserves captured hook output on success. createPR push/commit pass tighter explicit timeouts. oclif bootstrap warning silenced. 8338/8338 tests pass.
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
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
Rolls up 5 commits from
devintomainso the:latestworker image picks up the subprocess-observability fix and we can test it on the ucho project.What's landing
spawn()withexeca+tree-kill: live stderr streaming, 30s-silence heartbeats, idle + wall-clock timeouts with SIGTERM→SIGKILL + process-group kill, captured hook output preserved on success. Already verified on the:devworker (e.g. llmist PR refactor(router): decompose acknowledgments.ts god module into focused modules #590 successfully returned fullpushOutputcontaining lefthook'svitest runtrace).Why now
Spec 013 was observed working live on the
:devworker an hour ago. Promoting to:latestunblocks testing against ucho's slow pre-push hook (~60s typecheck + test) — the exact scenario spec 013 was built for.🤖 Generated with Claude Code