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
//! A small, modular Rust framework for one linear agent session.
//!
//! Applications compose an [`agent::Agent`] from explicit model, sandbox, checkpoint, and
//! middleware adapters. Frontends remain separate: they submit [`protocol::Op`] values and
//! render the frontend-neutral [`protocol::Event`] stream.
//!
//! # Embedded composition
//!
//! The caller owns every runtime dependency. Include exactly one message-handling middleware,
//! give new sessions a non-empty [`protocol::SessionContext::bot_id`], and keep draining events
//! while commands are active.
//!
//! ```rust,no_run
//! use std::path::Path;
//! use std::sync::Arc;
//!
//! use mobius::Result;
//! use mobius::agent::{Agent, AgentConfig, create_agent};
//! use mobius::backend::checkpoint::{CheckpointStore, sqlite::SqliteCheckpoint};
//! use mobius::backend::model::{Model, ModelRouter, openai::OpenAi};
//! use mobius::backend::sandbox::{ApprovalPolicy, Sandbox, local::LocalSandbox};
//! use mobius::middleware::{Middleware, MiddlewareStack};
//! use mobius::middleware::{messages::Messages, tools::Tools};
//! use mobius::protocol::SessionContext;
//!
//! async fn build_agent(
//! workspace: &Path,
//! api_key: String,
//! model_id: &str,
//! ) -> Result<Agent> {
//! let model: Arc<dyn Model> = Arc::new(OpenAi::new(
//! api_key,
//! "https://api.openai.com/v1",
//! model_id,
//! )?);
//! let models = Arc::new(ModelRouter::new("default", model));
//! let sandbox = Arc::new(Sandbox::new(
//! Arc::new(LocalSandbox::new(workspace)?),
//! ApprovalPolicy::Ask,
//! ));
//! let checkpoints: Arc<dyn CheckpointStore> =
//! Arc::new(SqliteCheckpoint::new(workspace.join("mobius.sqlite3"))?);
//! let middleware: Vec<Arc<dyn Middleware>> = vec![
//! Arc::new(Messages::default()),
//! Arc::new(Tools::coding()),
//! ];
//!
//! create_agent(
//! AgentConfig::new(
//! models,
//! sandbox,
//! checkpoints,
//! MiddlewareStack::new(middleware)?,
//! "You are a concise coding agent.",
//! )
//! .session_context(SessionContext {
//! bot_id: "embedded".into(),
//! ..SessionContext::default()
//! }),
//! )
//! .await
//! }
//! ```
//!
//! A custom provider implements [`backend::model::Model`] and must return normalized output.
//! [`backend::model::ModelEventSink`] is synchronous and fallible; propagate its error rather
//! than silently losing a streamed event. This example also uses `serde_json`.
//!
//! ```rust,no_run
//! use serde_json::json;
//!
//! use mobius::{BoxFuture, Result};
//! use mobius::backend::model::{Model, ModelEventSink, ModelOutput, ModelRequest};
//! use mobius::protocol::{ModelEvent, ModelInfo, TokenUsage};
//!
//! struct EchoModel;
//!
//! impl Model for EchoModel {
//! fn info(&self) -> ModelInfo {
//! ModelInfo {
//! model: "echo".into(),
//! reasoning_effort: None,
//! }
//! }
//!
//! fn respond<'a>(
//! &'a self,
//! _request: ModelRequest<'a>,
//! events: ModelEventSink,
//! ) -> BoxFuture<'a, Result<ModelOutput>> {
//! Box::pin(async move {
//! events(ModelEvent::TextDelta("done".into()))?;
//! ModelOutput::from_output(
//! vec![json!({
//! "type": "message",
//! "role": "assistant",
//! "content": [{"type": "output_text", "text": "done"}]
//! })],
//! true,
//! TokenUsage::default(),
//! )
//! })
//! }
//! }
//! ```
//!
//! A capability implements [`middleware::Middleware`] and joins the declaration-ordered
//! [`middleware::MiddlewareStack`]. Static prompt sections are composed once at agent creation.
//!
//! ```rust,no_run
//! use std::sync::Arc;
//!
//! use mobius::Result;
//! use mobius::middleware::{Middleware, MiddlewareStack, PromptSection, RuntimeContext};
//! use mobius::middleware::messages::Messages;
//!
//! struct Policy;
//!
//! impl Middleware for Policy {
//! fn name(&self) -> &'static str {
//! "policy"
//! }
//!
//! fn prompt_section(&self, _runtime: &RuntimeContext) -> Result<Option<PromptSection>> {
//! Ok(Some(PromptSection::new("Follow the repository policy.")))
//! }
//! }
//!
//! fn middleware_stack() -> Result<MiddlewareStack> {
//! MiddlewareStack::new(vec![Arc::new(Messages::default()), Arc::new(Policy)])
//! }
//! ```
//!
//! # Runtime contracts
//!
//! - [`Error`] and [`ProviderError`] preserve actionable failure classes and retry metadata;
//! callers should not infer policy by matching display strings.
//! - [`agent::create_agent`] validates composition and unwinds started middleware on startup
//! failure. [`agent::AgentSender`] documents bounded submission and sender-drop shutdown;
//! drain [`agent::AgentEvents::recv`] until the stream closes.
//! - [`backend::checkpoint::CheckpointStore::save_with_events`] is the atomic logical boundary
//! for checkpoint, transcript, execution, and event state. Backend contracts specify durability
//! and which optional history operations are supported.
//! - [`backend::sandbox::Sandbox`] owns approval and background-process cleanup around an
//! injected [`backend::sandbox::SandboxBackend`]. Backends must keep cancellation cleanup for
//! resources they launch; the default authorized path fails closed.
//! - In `mobius-gateway`, signal shutdown through `GatewayServer::serve_until` and await it;
//! dropping the serving future does not perform graceful shutdown.
use Future;
use Pin;
/// A boxed asynchronous operation used by runtime-pluggable interfaces.
pub type BoxFuture<'a, T> = ;
/// A model-provider failure with retry metadata preserved for callers.
/// Errors returned by möbius modules.
/// Result type shared by möbius modules.
pub type Result<T> = Result;
pub
pub