bamboo-server 2026.4.25

HTTP server and API layer for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Session management endpoints (V2 index-backed).

mod handlers;
mod types;

pub use handlers::{
    cleanup_sessions, clear_session, create_session, get_attachment, get_session,
    get_system_prompt_snapshot, list_sessions, patch_session, run_project_dream,
};
pub use types::{
    CleanupRequest, CreateSessionRequest, CreateSessionResponse, GetSessionResponse,
    ListSessionsResponse, PatchSessionRequest, SessionSummary, SessionSystemPromptResponse,
};

#[cfg(test)]
mod tests;