objectiveai-api 2.0.5

ObjectiveAI API Server
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
//! Retrieve router — dispatches by `Remote`, resolves commits, and caches per request.

use crate::ctx;
use objectiveai_sdk::error::ResponseError;
use objectiveai_sdk::Remote;
use std::sync::Arc;

/// Routes fetch operations by `Remote` to GitHub/Filesystem/Mock,
/// with per-request deduplication caching via context caches.
///
/// Main methods accept `CommitOptional` enums (inline or remote ref).
/// If inline, converts directly. If remote, resolves commit, fetches
/// from source, converts, and returns the union type.
pub struct Router<G, F, M, CTXEXT> {
    pub github: Arc<G>,
    pub filesystem: Arc<F>,
    pub mock: Arc<M>,
    _ctxext: std::marker::PhantomData<CTXEXT>,
}

impl<G, F, M, CTXEXT> Router<G, F, M, CTXEXT> {
    pub fn new(github: Arc<G>, filesystem: Arc<F>, mock: Arc<M>) -> Self {
        Self { github, filesystem, mock, _ctxext: std::marker::PhantomData }
    }
}


impl<G, F, M, CTXEXT> Router<G, F, M, CTXEXT>
where
    G: super::Client<CTXEXT>,
    F: super::Client<CTXEXT>,
    M: super::Client<CTXEXT>,
    CTXEXT: Send + Sync + 'static,
{
    async fn dispatch_resolve_latest<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        &self,
        remote: Remote,
        ctx: &ctx::Context<CTXEXT, PC>,
        kind: crate::retrieval::Kind,
        path: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<Option<objectiveai_sdk::RemotePath>, ResponseError> {
        match remote {
            Remote::Github => self.github.resolve_latest(ctx, kind, path).await,
            Remote::Filesystem => self.filesystem.resolve_latest(ctx, kind, path).await,
            Remote::Mock => self.mock.resolve_latest(ctx, kind, path).await,
        }
    }

    async fn dispatch_get_agent<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        &self,
        remote: Remote,
        ctx: &ctx::Context<CTXEXT, PC>,
        path: &objectiveai_sdk::RemotePath,
    ) -> Result<Option<objectiveai_sdk::agent::RemoteAgentBaseWithFallbacks>, ResponseError> {
        match remote {
            Remote::Github => self.github.get_agent(ctx, path).await,
            Remote::Filesystem => self.filesystem.get_agent(ctx, path).await,
            Remote::Mock => self.mock.get_agent(ctx, path).await,
        }
    }

    async fn dispatch_get_swarm<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        &self,
        remote: Remote,
        ctx: &ctx::Context<CTXEXT, PC>,
        path: &objectiveai_sdk::RemotePath,
    ) -> Result<Option<objectiveai_sdk::swarm::RemoteSwarmBase>, ResponseError> {
        match remote {
            Remote::Github => self.github.get_swarm(ctx, path).await,
            Remote::Filesystem => self.filesystem.get_swarm(ctx, path).await,
            Remote::Mock => self.mock.get_swarm(ctx, path).await,
        }
    }

    async fn dispatch_get_function<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        &self,
        remote: Remote,
        ctx: &ctx::Context<CTXEXT, PC>,
        path: &objectiveai_sdk::RemotePath,
    ) -> Result<Option<objectiveai_sdk::functions::FullRemoteFunction>, ResponseError> {
        match remote {
            Remote::Github => self.github.get_function(ctx, path).await,
            Remote::Filesystem => self.filesystem.get_function(ctx, path).await,
            Remote::Mock => self.mock.get_function(ctx, path).await,
        }
    }

    async fn dispatch_get_profile<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        &self,
        remote: Remote,
        ctx: &ctx::Context<CTXEXT, PC>,
        path: &objectiveai_sdk::RemotePath,
    ) -> Result<Option<objectiveai_sdk::functions::RemoteProfile>, ResponseError> {
        match remote {
            Remote::Github => self.github.get_profile(ctx, path).await,
            Remote::Filesystem => self.filesystem.get_profile(ctx, path).await,
            Remote::Mock => self.mock.get_profile(ctx, path).await,
        }
    }

    async fn dispatch_get_prompt<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        &self,
        remote: Remote,
        ctx: &ctx::Context<CTXEXT, PC>,
        path: &objectiveai_sdk::RemotePath,
    ) -> Result<Option<objectiveai_sdk::functions::inventions::prompts::RemotePrompt>, ResponseError> {
        match remote {
            Remote::Github => self.github.get_prompt(ctx, path).await,
            Remote::Filesystem => self.filesystem.get_prompt(ctx, path).await,
            Remote::Mock => self.mock.get_prompt(ctx, path).await,
        }
    }

    /// Resolves a `RemotePathCommitOptional` to a `RemotePath`.
    pub async fn resolve_path<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        kind: crate::retrieval::Kind,
        path: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<Option<objectiveai_sdk::RemotePath>, ResponseError> {
        let remote = path.remote();
        let cache_key = path.clone();
        let router = self.clone();
        let ctx_clone = ctx.clone();
        let path_clone = path.clone();
        ctx.cached_remote_latest(cache_key, move || async move {
            router.dispatch_resolve_latest(remote, &ctx_clone, kind, &path_clone).await
        }).await
    }

    // ── Agent ──────────────────────────────────────────────────────

    /// Resolve an agent: inline converts directly, remote fetches and converts.
    pub async fn get_agent<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: objectiveai_sdk::agent::InlineAgentBaseWithFallbacksOrRemoteCommitOptional,
    ) -> Result<objectiveai_sdk::agent::AgentWithFallbacks, ResponseError> {
        match params {
            objectiveai_sdk::agent::InlineAgentBaseWithFallbacksOrRemoteCommitOptional::AgentBase(base) => {
                let converted = base.convert().map_err(|e| bad_request(&e))?;
                Ok(objectiveai_sdk::agent::AgentWithFallbacks::Inline(converted))
            }
            objectiveai_sdk::agent::InlineAgentBaseWithFallbacksOrRemoteCommitOptional::Remote(remote) => {
                let base = self.fetch_agent_base(ctx, &remote).await?
                    .ok_or_else(|| not_found("agent"))?;
                let converted = base.convert().map_err(|e| bad_request(&e))?;
                Ok(objectiveai_sdk::agent::AgentWithFallbacks::Remote(converted))
            }
        }
    }

    /// Fetch a raw `RemoteAgentBaseWithFallbacks` from a source, with per-request dedup caching.
    async fn fetch_agent_base<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<Option<objectiveai_sdk::agent::RemoteAgentBaseWithFallbacks>, ResponseError> {
        let Some(path) = self.resolve_path(ctx, crate::retrieval::Kind::Agents, params).await? else {
            return Ok(None);
        };
        let router = self.clone();
        let remote = path.remote();
        let path_clone = path.clone();
        let ctx_clone = ctx.clone();
        ctx.cached_agent(path, move || async move {
            router.dispatch_get_agent(remote, &ctx_clone, &path_clone).await
        }).await
    }

    /// API endpoint: fetch a remote agent, convert, wrap in response.
    pub async fn endpoint_get_agent<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<objectiveai_sdk::agent::response::GetAgentResponse, ResponseError> {
        let path = self.resolve_path(ctx, crate::retrieval::Kind::Agents, params).await?
            .ok_or_else(|| not_found("agent"))?;
        let result = self.get_agent(
            ctx,
            objectiveai_sdk::agent::InlineAgentBaseWithFallbacksOrRemoteCommitOptional::Remote(params.clone()),
        ).await?;
        let inner = match result {
            objectiveai_sdk::agent::AgentWithFallbacks::Remote(r) => r,
            objectiveai_sdk::agent::AgentWithFallbacks::Inline(_) => unreachable!(),
        };
        Ok(objectiveai_sdk::agent::response::GetAgentResponse { path, inner })
    }

    // ── Swarm ─────────────────────────────────────────────────────

    /// Resolve a swarm: inline converts directly, remote fetches and converts.
    /// Remote agent references in the swarm's agents list are resolved automatically.
    pub async fn get_swarm<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: objectiveai_sdk::swarm::InlineSwarmBaseOrRemoteCommitOptional,
    ) -> Result<objectiveai_sdk::swarm::Swarm, ResponseError> {
        match params {
            objectiveai_sdk::swarm::InlineSwarmBaseOrRemoteCommitOptional::SwarmBase(base) => {
                let converted = self.resolve_swarm_base(ctx, base).await?;
                Ok(objectiveai_sdk::swarm::Swarm::Inline(converted))
            }
            objectiveai_sdk::swarm::InlineSwarmBaseOrRemoteCommitOptional::Remote(remote) => {
                let base = self.fetch_swarm_base(ctx, &remote).await?
                    .ok_or_else(|| not_found("swarm"))?;
                let converted = self.resolve_swarm_base(ctx, base.inner).await?;
                Ok(objectiveai_sdk::swarm::Swarm::Remote(objectiveai_sdk::swarm::RemoteSwarm {
                    description: base.description,
                    inner: converted,
                }))
            }
        }
    }

    /// Resolve remote agent references in a swarm base and convert it.
    /// All remote agents are fetched concurrently.
    async fn resolve_swarm_base<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        base: objectiveai_sdk::swarm::InlineSwarmBase,
    ) -> Result<objectiveai_sdk::swarm::InlineSwarm, ResponseError> {
        // Collect unique remote agent paths to fetch.
        let mut unique_paths: indexmap::IndexMap<String, objectiveai_sdk::RemotePathCommitOptional> =
            indexmap::IndexMap::new();
        for agent_slot in &base.agents {
            if let objectiveai_sdk::agent::InlineAgentBaseWithFallbacksOrRemote::Remote(path) =
                &agent_slot.inner
            {
                let key = path.key();
                unique_paths
                    .entry(key)
                    .or_insert_with(|| path.clone().into());
            }
        }

        // Fetch all remote agents concurrently.
        if !unique_paths.is_empty() {
            let futs: Vec<_> = unique_paths
                .iter()
                .map(|(key, path)| {
                    let key = key.clone();
                    async move {
                        let agent_base = self.fetch_agent_base(ctx, path).await?
                            .ok_or_else(|| not_found("agent"))?;
                        Ok::<_, ResponseError>((key, agent_base))
                    }
                })
                .collect();
            let results = futures::future::try_join_all(futs).await?;
            let remote_agents: std::collections::HashMap<_, _> = results.into_iter().collect();
            base.convert(Some(&remote_agents)).map_err(|e| bad_request(&e))
        } else {
            base.convert(None).map_err(|e| bad_request(&e))
        }
    }

    /// Fetch a raw `RemoteSwarmBase` from a source, with per-request dedup caching.
    /// Falls back to swarm.json if profile.json is not found (for profile retrieval).
    async fn fetch_swarm_base<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<Option<objectiveai_sdk::swarm::RemoteSwarmBase>, ResponseError> {
        let Some(path) = self.resolve_path(ctx, crate::retrieval::Kind::Swarms, params).await? else {
            return Ok(None);
        };
        let router = self.clone();
        let remote = path.remote();
        let path_clone = path.clone();
        let ctx_clone = ctx.clone();
        ctx.cached_swarm(path, move || async move {
            router.dispatch_get_swarm(remote, &ctx_clone, &path_clone).await
        }).await
    }

    /// API endpoint: fetch a remote swarm, convert, wrap in response.
    pub async fn endpoint_get_swarm<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<objectiveai_sdk::swarm::response::GetSwarmResponse, ResponseError> {
        let path = self.resolve_path(ctx, crate::retrieval::Kind::Swarms, params).await?
            .ok_or_else(|| not_found("swarm"))?;
        let result = self.get_swarm(
            ctx,
            objectiveai_sdk::swarm::InlineSwarmBaseOrRemoteCommitOptional::Remote(params.clone()),
        ).await?;
        let inner = match result {
            objectiveai_sdk::swarm::Swarm::Remote(r) => r,
            objectiveai_sdk::swarm::Swarm::Inline(_) => unreachable!(),
        };
        Ok(objectiveai_sdk::swarm::response::GetSwarmResponse { path, inner })
    }

    // ── Function ──────────────────────────────────────────────────

    /// Resolve a function: inline returns directly, remote fetches with caching.
    pub async fn get_function<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: objectiveai_sdk::functions::FullInlineFunctionOrRemoteCommitOptional,
    ) -> Result<objectiveai_sdk::functions::FullFunction, ResponseError> {
        match params {
            objectiveai_sdk::functions::FullInlineFunctionOrRemoteCommitOptional::Inline(inline) => {
                Ok(objectiveai_sdk::functions::FullFunction::Inline(inline))
            }
            objectiveai_sdk::functions::FullInlineFunctionOrRemoteCommitOptional::Remote(remote) => {
                let fetched = self.fetch_function(ctx, &remote).await?
                    .ok_or_else(|| not_found("function"))?;
                Ok(objectiveai_sdk::functions::FullFunction::Remote(fetched))
            }
        }
    }

    /// Fetch a raw `FullRemoteFunction` from a source, with per-request dedup caching.
    async fn fetch_function<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<Option<objectiveai_sdk::functions::FullRemoteFunction>, ResponseError> {
        let Some(path) = self.resolve_path(ctx, crate::retrieval::Kind::Functions, params).await? else {
            return Ok(None);
        };
        let router = self.clone();
        let remote = path.remote();
        let path_clone = path.clone();
        let ctx_clone = ctx.clone();
        ctx.cached_function(path, move || async move {
            router.dispatch_get_function(remote, &ctx_clone, &path_clone).await
        }).await
    }

    /// API endpoint: fetch a remote function, wrap in response.
    pub async fn endpoint_get_function<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<objectiveai_sdk::functions::response::GetFunctionResponse, ResponseError> {
        let path = self.resolve_path(ctx, crate::retrieval::Kind::Functions, params).await?
            .ok_or_else(|| not_found("function"))?;
        let result = self.get_function(
            ctx,
            objectiveai_sdk::functions::FullInlineFunctionOrRemoteCommitOptional::Remote(params.clone()),
        ).await?;
        let inner = match result {
            objectiveai_sdk::functions::FullFunction::Remote(r) => r,
            objectiveai_sdk::functions::FullFunction::Inline(_) => unreachable!(),
        };
        Ok(objectiveai_sdk::functions::response::GetFunctionResponse { path, inner })
    }

    /// Fetches all child functions referenced by a function's tasks.
    /// Returns a HashMap keyed by the path's key string.
    pub async fn get_function_tasks<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        function: objectiveai_sdk::functions::FullFunction,
    ) -> Result<std::collections::HashMap<String, objectiveai_sdk::functions::FullRemoteFunction>, ResponseError> {
        let mut futs: Vec<(String, _)> = Vec::new();

        for path in function.remotes() {
            let key = path.key();
            let params = objectiveai_sdk::functions::FullInlineFunctionOrRemoteCommitOptional::Remote(
                path.clone().into(),
            );
            let router = self.clone();
            let ctx = ctx.clone();
            futs.push((key, tokio::spawn(async move {
                router.get_function(&ctx, params).await
            })));
        }

        let mut children = std::collections::HashMap::new();
        for (key, handle) in futs {
            let full_fn = handle.await.expect("get_function_tasks panicked")?;
            match full_fn {
                objectiveai_sdk::functions::FullFunction::Remote(r) => {
                    children.insert(key, r);
                }
                objectiveai_sdk::functions::FullFunction::Inline(_) => {
                    unreachable!()
                }
            }
        }

        Ok(children)
    }

    // ── Profile ───────────────────────────────────────────────────

    /// Resolve a profile: inline returns directly, remote fetches with caching.
    pub async fn get_profile<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: objectiveai_sdk::functions::InlineProfileOrRemoteCommitOptional,
    ) -> Result<objectiveai_sdk::functions::Profile, ResponseError> {
        match params {
            objectiveai_sdk::functions::InlineProfileOrRemoteCommitOptional::Inline(inline) => {
                Ok(objectiveai_sdk::functions::Profile::Inline(inline))
            }
            objectiveai_sdk::functions::InlineProfileOrRemoteCommitOptional::Remote(remote) => {
                let fetched = self.fetch_profile(ctx, &remote).await?
                    .ok_or_else(|| not_found("profile"))?;
                Ok(objectiveai_sdk::functions::Profile::Remote(fetched))
            }
        }
    }

    /// Fetch a raw `RemoteProfile` from a source, with per-request dedup caching.
    /// Falls back to swarm.json if profile.json is not found.
    async fn fetch_profile<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<Option<objectiveai_sdk::functions::RemoteProfile>, ResponseError> {
        let Some(path) = self.resolve_path(ctx, crate::retrieval::Kind::Profiles, params).await? else {
            return Ok(None);
        };
        let router = self.clone();
        let remote = path.remote();
        let path_clone = path.clone();
        let ctx_clone = ctx.clone();
        ctx.cached_profile(path, move || async move {
            // Try profile.json first
            let result = router.dispatch_get_profile(remote, &ctx_clone, &path_clone).await;
            match &result {
                Ok(None) => {
                    // Fallback: try swarm.json (a swarm definition is a valid Auto profile)
                    match router.dispatch_get_swarm(remote, &ctx_clone, &path_clone).await {
                        Ok(Some(swarm)) => Ok(Some(
                            objectiveai_sdk::functions::RemoteProfile::Auto(swarm),
                        )),
                        Ok(None) => Ok(None),
                        Err(e) => Err(e),
                    }
                }
                _ => result,
            }
        }).await
    }

    // ── Function Invention State ────────────────────────────────────

    /// Resolves an invention state: if inline, returns the ParamsState directly.
    /// If remote, fetches the constituent files and deserializes into ParamsState.
    /// Returns None if the remote path doesn't exist or all files are missing.
    pub async fn get_function_invention_state<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: objectiveai_sdk::functions::inventions::ParamsStateOrRemoteCommitOptional,
    ) -> Result<Option<objectiveai_sdk::functions::inventions::ParamsState>, ResponseError> {
        let remote_path = match params {
            objectiveai_sdk::functions::inventions::ParamsStateOrRemoteCommitOptional::Inline(state) => {
                return Ok(Some(state));
            }
            objectiveai_sdk::functions::inventions::ParamsStateOrRemoteCommitOptional::Remote(remote) => remote,
        };

        let Some(path) = self.resolve_path(ctx, crate::retrieval::Kind::Functions, &remote_path).await? else {
            return Ok(None);
        };
        let remote = path.remote();

        // Fetch all state files concurrently
        let filenames = objectiveai_sdk::functions::inventions::ParamsState::filenames();
        let futs: Vec<_> = filenames.iter().map(|&filename| {
            let path = path.clone();
            let ctx = ctx.clone();
            async move {
                let content = match remote {
                    Remote::Github => self.github.get_function_invention_state_file(&ctx, &path, filename).await,
                    Remote::Filesystem => self.filesystem.get_function_invention_state_file(&ctx, &path, filename).await,
                    Remote::Mock => self.mock.get_function_invention_state_file(&ctx, &path, filename).await,
                }?;
                Ok::<_, ResponseError>((filename, content))
            }
        }).collect();

        let results = futures::future::try_join_all(futs).await?;

        // If all files are None, no state exists
        if results.iter().all(|(_, content)| content.is_none()) {
            return Ok(None);
        }

        // Build HashMap from the results (only include files that exist)
        let map: std::collections::HashMap<&'static str, String> = results
            .into_iter()
            .filter_map(|(filename, content)| content.map(|c| (filename, c)))
            .collect();

        match objectiveai_sdk::functions::inventions::ParamsState::deserialize_from_files(map) {
            Ok(state) => Ok(state),
            Err(e) => Err(ResponseError {
                code: 500,
                message: serde_json::json!({ "error": format!("failed to deserialize invention state: {e}") }),
            }),
        }
    }

    /// API endpoint: fetch a remote function invention state, wrap in response.
    pub async fn endpoint_get_function_invention_state<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<objectiveai_sdk::functions::inventions::state::response::GetFunctionInventionStateResponse, ResponseError> {
        let path = self.resolve_path(ctx, crate::retrieval::Kind::Functions, params).await?
            .ok_or_else(|| not_found("function invention state"))?;
        let state = self.get_function_invention_state(
            ctx,
            objectiveai_sdk::functions::inventions::ParamsStateOrRemoteCommitOptional::Remote(params.clone()),
        ).await?
            .ok_or_else(|| not_found("function invention state"))?;
        Ok(objectiveai_sdk::functions::inventions::state::response::GetFunctionInventionStateResponse { path, inner: state })
    }

    /// API endpoint: fetch a remote profile, wrap in response.
    pub async fn endpoint_get_profile<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<objectiveai_sdk::functions::profiles::response::GetProfileResponse, ResponseError> {
        let path = self.resolve_path(ctx, crate::retrieval::Kind::Profiles, params).await?
            .ok_or_else(|| not_found("profile"))?;
        let result = self.get_profile(
            ctx,
            objectiveai_sdk::functions::InlineProfileOrRemoteCommitOptional::Remote(params.clone()),
        ).await?;
        let inner = match result {
            objectiveai_sdk::functions::Profile::Remote(r) => r,
            objectiveai_sdk::functions::Profile::Inline(_) => unreachable!(),
        };
        Ok(objectiveai_sdk::functions::profiles::response::GetProfileResponse { path, inner })
    }

    // ── Prompt ─────────────────────────────────────────────────────

    /// Resolve a prompt: inline returns directly, remote fetches with caching.
    pub async fn get_prompt<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: objectiveai_sdk::functions::inventions::prompts::InlinePromptOrRemoteCommitOptional,
    ) -> Result<objectiveai_sdk::functions::inventions::prompts::Prompt, ResponseError> {
        match params {
            objectiveai_sdk::functions::inventions::prompts::InlinePromptOrRemoteCommitOptional::Inline(inline) => {
                Ok(objectiveai_sdk::functions::inventions::prompts::Prompt::Inline(inline))
            }
            objectiveai_sdk::functions::inventions::prompts::InlinePromptOrRemoteCommitOptional::Remote(remote) => {
                let fetched = self.fetch_prompt(ctx, &remote).await?
                    .ok_or_else(|| not_found("prompt"))?;
                Ok(objectiveai_sdk::functions::inventions::prompts::Prompt::Remote(fetched))
            }
        }
    }

    /// Fetch a raw `RemotePrompt` from a source.
    async fn fetch_prompt<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<Option<objectiveai_sdk::functions::inventions::prompts::RemotePrompt>, ResponseError> {
        let Some(path) = self.resolve_path(ctx, crate::retrieval::Kind::Prompts, params).await? else {
            return Ok(None);
        };
        let remote = path.remote();
        self.dispatch_get_prompt(remote, ctx, &path).await
    }

    /// API endpoint: fetch a remote prompt, wrap in response.
    pub async fn endpoint_get_prompt<PC: crate::ctx::persistent_cache::PersistentCacheClient>(
        self: &Arc<Self>,
        ctx: &ctx::Context<CTXEXT, PC>,
        params: &objectiveai_sdk::RemotePathCommitOptional,
    ) -> Result<objectiveai_sdk::functions::inventions::prompts::response::GetPromptResponse, ResponseError> {
        let path = self.resolve_path(ctx, crate::retrieval::Kind::Prompts, params).await?
            .ok_or_else(|| not_found("prompt"))?;
        let result = self.get_prompt(
            ctx,
            objectiveai_sdk::functions::inventions::prompts::InlinePromptOrRemoteCommitOptional::Remote(params.clone()),
        ).await?;
        let inner = match result {
            objectiveai_sdk::functions::inventions::prompts::Prompt::Remote(r) => r,
            objectiveai_sdk::functions::inventions::prompts::Prompt::Inline(_) => unreachable!(),
        };
        Ok(objectiveai_sdk::functions::inventions::prompts::response::GetPromptResponse { path, inner })
    }
}

fn not_found(kind: &str) -> ResponseError {
    ResponseError {
        code: 404,
        message: serde_json::json!({ "error": format!("{} not found", kind) }),
    }
}

fn bad_request(msg: &str) -> ResponseError {
    ResponseError {
        code: 400,
        message: serde_json::json!({ "error": msg }),
    }
}