Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
7e8fd9e
Fix wait_agent/research supervisor coordination and TUI sub-agent mon…
wangtsiao Jul 1, 2026
36105d5
chore: try to fix /research supervisor stuck but still in working
wangtsiao Jul 1, 2026
ceac1eb
fix: resolve session actor deadlocks and turn cancellation hangs
wangtsiao Jul 2, 2026
f730cc0
fix: validate inbound client messages at the transport layer
wangtsiao Jul 3, 2026
24183bd
Consolidate per-connection outbound pipeline and bound inbound handle…
wangtsiao Jul 3, 2026
142b606
docs: document singleton server and internal proxy lifecycle
wangtsiao Jul 3, 2026
883c1b6
fix: Extract shared client protocol layer and remove TUI session/prom…
wangtsiao Jul 3, 2026
665c3f6
fix: Show code_search input while running and hint on first index build.
wangtsiao Jul 3, 2026
7c66714
fix: gracefully handle already-installed tracing subscriber in loggin…
wangtsiao Jul 4, 2026
394ff33
feat: add optional tokio-console instrumentation behind a feature flag
wangtsiao Jul 4, 2026
6a6fac0
feat: add optional wire-level protocol tracing via DEVO_PROTOCOL_TRACE
wangtsiao Jul 4, 2026
bfe773f
fix: preserve streamed runtime events under backpressure and track su…
wangtsiao Jul 4, 2026
5a9ccb2
fix: prevent event-stream deadlock cascade with non-blocking outbound…
wangtsiao Jul 4, 2026
32226c2
fix: register inline stream for research turns and suppress auto-git-…
wangtsiao Jul 4, 2026
50af3d1
fix: align interrupt, turn queue, and title generation with inline
wangtsiao Jul 4, 2026
4b8d4ed
refactor: extract active turn lifecycle handling into dedicated modules
wangtsiao Jul 5, 2026
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
3 changes: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[env]
RUST_MIN_STACK = "16777216"

[target.x86_64-unknown-linux-musl]
rustflags = ["-C", "target-feature=+crt-static", "-C", "strip=symbols"]

Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ This repository is a Rust-based coding agent, currently called `devo`.
- Tests that involve filesystem paths or other platform-dependent behavior MUST be platform-aware:
- Use `#[cfg(windows)]` and `#[cfg(unix)]` to define platform-specific test cases when behavior differs.
- Never rely on Windows-style paths being interpreted correctly on Unix, or Unix-style paths on Windows.
- Always use platform-native path formats in tests so they align with `std::path::Path` semantics.
- Always use platform-native path formats in tests so they align with `std::path::Path` semantics.
Loading
Loading