Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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 app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -915,6 +915,7 @@ vertical_tabs_summary_mode = []
tab_configs = []
agent_harness = []
oz_handoff = []
local_to_cloud_handoff = []
hoa_notifications = []
open_code_notifications = []
transfer_control_tool = []
Expand Down
2 changes: 2 additions & 0 deletions app/src/ai/agent_sdk/ambient.rs
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,8 @@ impl AmbientAgentRunner {
parent_run_id: None,
runtime_skills: vec![],
referenced_attachments: vec![],
fork_from_conversation_id: None,
handoff_prep_token: None,
};

let should_open = args.open;
Expand Down
1 change: 1 addition & 0 deletions app/src/ai/agent_sdk/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ mod snapshot;
pub(crate) mod terminal;

use environment::PrepareEnvironmentError;
pub(crate) use snapshot::upload_snapshot_for_handoff;
use terminal::TerminalDriverEvent;

const MCP_SERVER_STARTUP_TIMEOUT: Duration = Duration::from_secs(60);
Expand Down
Loading