manager mcp: expose 'remind' tool sharing storage helper with agent surface
This commit is contained in:
parent
0e6bac8388
commit
1770b51845
6 changed files with 120 additions and 24 deletions
|
|
@ -486,6 +486,17 @@ pub enum ManagerRequest {
|
|||
#[serde(default)]
|
||||
lines: Option<u32>,
|
||||
},
|
||||
/// Mirror of `AgentRequest::Remind` on the manager surface — schedule
|
||||
/// a reminder addressed to the manager itself. Same semantics: body
|
||||
/// soft-caps at 1 KiB, oversize bodies auto-persist to
|
||||
/// `/state/reminders/auto-<ts>.md` (the manager container's own state
|
||||
/// mount) and the inbox sees a pointer.
|
||||
Remind {
|
||||
message: String,
|
||||
timing: ReminderTiming,
|
||||
#[serde(default)]
|
||||
file_path: Option<String>,
|
||||
},
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue