Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
cb684ad
feat(agents): improve activity transcript observability
tellaho Jun 15, 2026
b98df61
chore(agents): add dev-only ACP source labels on transcript rows
tellaho Jun 15, 2026
a99a835
feat(agents): add raw ACP activity view toggle
tellaho Jun 15, 2026
9bcbc05
feat(agents): group ACP turn prompts into a user-first transcript bundle
tellaho Jun 15, 2026
4528a11
feat(agents): show agent avatars in activity transcripts
tellaho Jun 15, 2026
3c9489a
refactor(agents): standardize activity transcript typography to text-xs
tellaho Jun 15, 2026
a675269
refactor(agents): move transcript context toggle styling into shared …
tellaho Jun 15, 2026
faefae6
fix(agents): simplify shell command transcript rows
tellaho Jun 15, 2026
2d7fae0
fix(agents): remove activity transcript now summary
tellaho Jun 15, 2026
934ba9d
fix(agents): add compact summaries for developer MCP tool rows
tellaho Jun 15, 2026
ad86f14
fix(agents): preview view_image tools with inline thumbnails and ligh…
tellaho Jun 15, 2026
63477cd
fix(agents): right-align user transcript messages
tellaho Jun 15, 2026
4ad7b62
fix(agents): hide setup-only activity transcript rows
tellaho Jun 15, 2026
c31eaac
fix(agents): keep live activity styling in the header
tellaho Jun 15, 2026
df72cc9
fix(agents): group activity tools and hide orphan prompt context
tellaho Jun 15, 2026
91b2e4a
refactor(agents): drop transcript compact mode and simplify row spacing
tellaho Jun 15, 2026
51dfa3a
fix(desktop): make compact tool label map type honest
tellaho Jun 15, 2026
a7d6df9
fix(agents): render formatted prompt bubbles
tellaho Jun 15, 2026
c0aa256
fix(agents): style message tool rows as chat bubbles with inset media
tellaho Jun 15, 2026
ab29e2c
test(agents): cover transcript render-decision helpers + sweep dead b…
tellaho Jun 16, 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
1 change: 1 addition & 0 deletions desktop/src-tauri/src/managed_agents/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1356,6 +1356,7 @@ pub fn build_managed_agent_summary(
max_turn_duration_seconds: record.max_turn_duration_seconds,
parallelism: record.parallelism,
system_prompt: effective_prompt,
avatar_url: record.avatar_url.clone(),
model: effective_model,
mcp_toolsets: record.mcp_toolsets.clone(),
env_vars: record.env_vars.clone(),
Expand Down
1 change: 1 addition & 0 deletions desktop/src-tauri/src/managed_agents/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ pub struct ManagedAgentSummary {
pub max_turn_duration_seconds: Option<u64>,
pub parallelism: u32,
pub system_prompt: Option<String>,
pub avatar_url: Option<String>,
pub model: Option<String>,
pub mcp_toolsets: Option<String>,
#[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
Expand Down
Loading