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
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
use async_trait::async_trait;
use serde::Deserialize;
use serde_json::json;
use std::sync::Arc;

use crate::handlers::agent::schedules::ScheduleView;
use crate::schedules::{
    ScheduleManager, ScheduleRunConfig, ScheduleRunJob, ScheduleStore, ScheduleTrigger,
};
use bamboo_agent_core::storage::Storage;
use bamboo_agent_core::tools::{Tool, ToolError, ToolExecutionContext, ToolResult};
use bamboo_agent_core::{Session, SessionKind};
use bamboo_infrastructure::SessionStoreV2;

/// One tool for schedule CRUD + actions.
///
/// We intentionally keep schedule operations as a server-only tool that calls internal
/// Rust methods (NOT http_request) to avoid SSRF issues and to keep latency low.
pub struct ScheduleTasksTool {
    schedule_store: Arc<ScheduleStore>,
    schedule_manager: Arc<ScheduleManager>,
    session_store: Arc<SessionStoreV2>,
    storage: Arc<dyn Storage>,
}

impl ScheduleTasksTool {
    pub fn new(
        schedule_store: Arc<ScheduleStore>,
        schedule_manager: Arc<ScheduleManager>,
        session_store: Arc<SessionStoreV2>,
        storage: Arc<dyn Storage>,
    ) -> Self {
        Self {
            schedule_store,
            schedule_manager,
            session_store,
            storage,
        }
    }

    async fn load_caller_session(&self, session_id: &str) -> Result<Session, ToolError> {
        match self.storage.load_session(session_id).await {
            Ok(Some(session)) => Ok(session),
            Ok(None) => Err(ToolError::Execution(format!(
                "session not found: {session_id}"
            ))),
            Err(e) => Err(ToolError::Execution(format!(
                "failed to load session {session_id}: {e}"
            ))),
        }
    }
}

#[derive(Debug, Deserialize)]
#[serde(tag = "action", rename_all = "snake_case")]
enum ScheduleTasksArgs {
    List {},
    Create {
        name: String,
        trigger: ScheduleTrigger,
        #[serde(default)]
        timezone: Option<String>,
        #[serde(default)]
        start_at: Option<chrono::DateTime<chrono::Utc>>,
        #[serde(default)]
        end_at: Option<chrono::DateTime<chrono::Utc>>,
        #[serde(default)]
        misfire_policy: Option<crate::schedules::MisFirePolicy>,
        #[serde(default)]
        overlap_policy: Option<crate::schedules::OverlapPolicy>,
        #[serde(default)]
        enabled: Option<bool>,
        #[serde(default)]
        run_config: Option<ScheduleRunConfig>,
    },
    Patch {
        schedule_id: String,
        #[serde(default)]
        name: Option<String>,
        #[serde(default)]
        enabled: Option<bool>,
        #[serde(default)]
        trigger: Option<ScheduleTrigger>,
        #[serde(default)]
        timezone: Option<String>,
        #[serde(default)]
        start_at: Option<chrono::DateTime<chrono::Utc>>,
        #[serde(default)]
        end_at: Option<chrono::DateTime<chrono::Utc>>,
        #[serde(default)]
        misfire_policy: Option<crate::schedules::MisFirePolicy>,
        #[serde(default)]
        overlap_policy: Option<crate::schedules::OverlapPolicy>,
        #[serde(default)]
        run_config: Option<ScheduleRunConfig>,
    },
    Delete {
        schedule_id: String,
    },
    RunNow {
        schedule_id: String,
    },
    ListSessions {
        schedule_id: String,
    },
}

#[async_trait]
impl Tool for ScheduleTasksTool {
    fn name(&self) -> &str {
        "scheduler"
    }

    fn description(&self) -> &str {
        "Manage Bamboo scheduled automation jobs (list/create/patch/delete/run_now/list_sessions). Server-only tool that calls the internal scheduler directly instead of HTTP. Child sessions cannot use this."
    }

    fn parameters_schema(&self) -> serde_json::Value {
        // Keep schema permissive; the Rust parser enforces the action-specific requirements.
        json!({
            "type": "object",
            "properties": {
                "action": {
                    "type": "string",
                    "enum": ["list", "create", "patch", "delete", "run_now", "list_sessions"],
                    "description": "Which schedule operation to perform."
                },
                "schedule_id": { "type": "string", "description": "Schedule id for patch/delete/run_now/list_sessions." },
                "name": { "type": "string", "description": "Schedule name (create/patch)." },
                "enabled": { "type": "boolean", "description": "Enable/disable schedule (create/patch)." },
                "trigger": {
                    "type": "object",
                    "description": "Canonical schedule trigger definition for create/patch. Required for create."
                },
                "timezone": { "type": "string", "description": "Optional IANA timezone for calendar-based triggers." },
                "start_at": { "type": "string", "description": "Optional RFC3339 inclusive schedule window start." },
                "end_at": { "type": "string", "description": "Optional RFC3339 exclusive schedule window end." },
                "misfire_policy": { "type": "object", "description": "Optional misfire handling policy." },
                "overlap_policy": { "type": "string", "enum": ["allow", "skip", "queue_one"], "description": "Optional overlap policy." },
                "run_config": {
                    "type": "object",
                    "description": "Schedule run configuration (create/patch).",
                    "properties": {
                        "system_prompt": { "type": "string" },
                        "task_message": { "type": "string" },
                        "model": { "type": "string" },
                        "reasoning_effort": {
                            "type": "string",
                            "enum": ["low", "medium", "high", "xhigh", "max"]
                        },
                        "workspace_path": { "type": "string" },
                        "enhance_prompt": { "type": "string" },
                        "auto_execute": { "type": "boolean" }
                    }
                }
            },
            "required": ["action"]
        })
    }

    async fn execute(&self, args: serde_json::Value) -> Result<ToolResult, ToolError> {
        self.execute_with_context(args, ToolExecutionContext::none("tool_call"))
            .await
    }

    async fn execute_with_context(
        &self,
        args: serde_json::Value,
        ctx: ToolExecutionContext<'_>,
    ) -> Result<ToolResult, ToolError> {
        let caller_session_id = ctx.session_id.ok_or_else(|| {
            ToolError::Execution("scheduler requires a session_id in tool context".to_string())
        })?;

        let caller = self.load_caller_session(caller_session_id).await?;
        if caller.kind != SessionKind::Root {
            return Err(ToolError::Execution(
                "scheduler is not allowed inside child sessions".to_string(),
            ));
        }

        let parsed: ScheduleTasksArgs = serde_json::from_value(args)
            .map_err(|e| ToolError::InvalidArguments(format!("Invalid scheduler args: {e}")))?;

        match parsed {
            ScheduleTasksArgs::List {} => {
                let items = self
                    .schedule_store
                    .list_schedules()
                    .await
                    .into_iter()
                    .map(ScheduleView::from)
                    .collect::<Vec<_>>();
                Ok(ToolResult {
                    success: true,
                    result: json!({ "schedules": items }).to_string(),
                    display_preference: Some("Collapsible".to_string()),
                })
            }
            ScheduleTasksArgs::Create {
                name,
                trigger,
                timezone,
                start_at,
                end_at,
                misfire_policy,
                overlap_policy,
                enabled,
                run_config,
            } => {
                let name = name.trim().to_string();
                if name.is_empty() {
                    return Err(ToolError::InvalidArguments(
                        "name must be a non-empty string".to_string(),
                    ));
                }
                if matches!(
                    trigger,
                    ScheduleTrigger::Interval {
                        every_seconds: 0,
                        ..
                    }
                ) {
                    return Err(ToolError::InvalidArguments(
                        "trigger.every_seconds must be > 0".to_string(),
                    ));
                }
                let run_config = run_config.unwrap_or_default();
                if run_config.auto_execute {
                    let has_task = run_config
                        .task_message
                        .as_deref()
                        .map(str::trim)
                        .filter(|v| !v.is_empty())
                        .is_some();
                    if !has_task {
                        return Err(ToolError::InvalidArguments(
                            "run_config.task_message is required when auto_execute is true"
                                .to_string(),
                        ));
                    }
                }

                let created = self
                    .schedule_store
                    .create_schedule_with_definition(
                        name,
                        enabled.unwrap_or(false),
                        run_config,
                        crate::schedules::store::ScheduleDefinitionChanges {
                            trigger: Some(trigger),
                            timezone,
                            start_at,
                            end_at,
                            misfire_policy,
                            overlap_policy,
                        },
                    )
                    .await
                    .map_err(|e| ToolError::Execution(format!("Failed to create schedule: {e}")))?;
                Ok(ToolResult {
                    success: true,
                    result: json!({
                        "schedule": ScheduleView::from(created),
                        "note": "If run_config.auto_execute is false, scheduled runs will only create sessions (they will not run the agent loop)."
                    })
                    .to_string(),
                    display_preference: Some("Collapsible".to_string()),
                })
            }
            ScheduleTasksArgs::Patch {
                schedule_id,
                name,
                enabled,
                trigger,
                timezone,
                start_at,
                end_at,
                misfire_policy,
                overlap_policy,
                run_config,
            } => {
                if schedule_id.trim().is_empty() {
                    return Err(ToolError::InvalidArguments(
                        "schedule_id must be a non-empty string".to_string(),
                    ));
                }
                if matches!(
                    trigger,
                    Some(ScheduleTrigger::Interval {
                        every_seconds: 0,
                        ..
                    })
                ) {
                    return Err(ToolError::InvalidArguments(
                        "trigger.every_seconds must be > 0".to_string(),
                    ));
                }

                if let Some(cfg) = run_config.as_ref() {
                    if cfg.auto_execute {
                        let has_task = cfg
                            .task_message
                            .as_deref()
                            .map(str::trim)
                            .filter(|v| !v.is_empty())
                            .is_some();
                        if !has_task {
                            return Err(ToolError::InvalidArguments(
                                "run_config.task_message is required when auto_execute is true"
                                    .to_string(),
                            ));
                        }
                    }
                }

                let updated = self
                    .schedule_store
                    .patch_schedule_with_definition(
                        schedule_id.trim(),
                        name.map(|v| v.trim().to_string()).filter(|v| !v.is_empty()),
                        enabled,
                        run_config,
                        crate::schedules::store::ScheduleDefinitionChanges {
                            trigger,
                            timezone,
                            start_at,
                            end_at,
                            misfire_policy,
                            overlap_policy,
                        },
                    )
                    .await
                    .map_err(|e| ToolError::Execution(format!("Failed to patch schedule: {e}")))?;

                let Some(schedule) = updated else {
                    return Err(ToolError::Execution(format!(
                        "Schedule not found: {}",
                        schedule_id.trim()
                    )));
                };

                Ok(ToolResult {
                    success: true,
                    result: json!({ "schedule": ScheduleView::from(schedule) }).to_string(),
                    display_preference: Some("Collapsible".to_string()),
                })
            }
            ScheduleTasksArgs::Delete { schedule_id } => {
                if schedule_id.trim().is_empty() {
                    return Err(ToolError::InvalidArguments(
                        "schedule_id must be a non-empty string".to_string(),
                    ));
                }
                let deleted = self
                    .schedule_store
                    .delete_schedule(schedule_id.trim())
                    .await
                    .map_err(|e| ToolError::Execution(format!("Failed to delete schedule: {e}")))?;
                if !deleted {
                    return Err(ToolError::Execution(format!(
                        "Schedule not found: {}",
                        schedule_id.trim()
                    )));
                }
                Ok(ToolResult {
                    success: true,
                    result: json!({ "success": true, "schedule_id": schedule_id.trim() })
                        .to_string(),
                    display_preference: Some("Default".to_string()),
                })
            }
            ScheduleTasksArgs::RunNow { schedule_id } => {
                if schedule_id.trim().is_empty() {
                    return Err(ToolError::InvalidArguments(
                        "schedule_id must be a non-empty string".to_string(),
                    ));
                }
                let Some(claimed) = self
                    .schedule_store
                    .create_run_now(schedule_id.trim())
                    .await
                    .map_err(|e| ToolError::Execution(format!("Failed to create run job: {e}")))?
                else {
                    return Err(ToolError::Execution(format!(
                        "Schedule not found: {}",
                        schedule_id.trim()
                    )));
                };

                let enqueued_at = claimed.claimed_at;
                self.schedule_manager
                    .enqueue_run_now(ScheduleRunJob {
                        run_id: claimed.run_id.clone(),
                        schedule_id: claimed.schedule_id.clone(),
                        schedule_name: claimed.schedule_name.clone(),
                        run_config: claimed.run_config.clone(),
                        scheduled_for: claimed.scheduled_for,
                        claimed_at: claimed.claimed_at,
                        was_catch_up: claimed.was_catch_up,
                    })
                    .await
                    .map_err(|e| ToolError::Execution(format!("Failed to enqueue run: {e}")))?;

                Ok(ToolResult {
                    success: true,
                    result: json!({
                        "success": true,
                        "schedule_id": claimed.schedule_id,
                        "run_id": claimed.run_id,
                        "enqueued_at": enqueued_at
                    })
                    .to_string(),
                    display_preference: Some("Default".to_string()),
                })
            }
            ScheduleTasksArgs::ListSessions { schedule_id } => {
                if schedule_id.trim().is_empty() {
                    return Err(ToolError::InvalidArguments(
                        "schedule_id must be a non-empty string".to_string(),
                    ));
                }
                let schedule_id = schedule_id.trim().to_string();
                let sessions = self
                    .session_store
                    .list_index_entries()
                    .await
                    .into_iter()
                    .filter(|e| e.created_by_schedule_id.as_deref() == Some(schedule_id.as_str()))
                    .map(|e| crate::handlers::agent::sessions::SessionSummary::from_entry(e, false))
                    .collect::<Vec<_>>();

                Ok(ToolResult {
                    success: true,
                    result: json!({ "schedule_id": schedule_id, "sessions": sessions }).to_string(),
                    display_preference: Some("Collapsible".to_string()),
                })
            }
        }
    }
}