roder-context 0.1.1

Agentic software development tools and SDKs for Roder.
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
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
use roder_api::context::{
    ContextBlock, ContextBlockKind, ContextPlan, ContextPlanner, ContextPlannerId, ContextQuery,
};
use roder_api::retrieval::{
    RetrievalAvoidance, RetrievalConfidence, RetrievalIntent, RetrievalMode,
    RetrievalRecommendation, RetrievalRoutePlan,
};
use serde::Serialize;
use serde_json::json;
use time::OffsetDateTime;

#[derive(Debug, Clone, Default)]
pub struct RetrievalRouterPlanner;

#[async_trait::async_trait]
impl ContextPlanner for RetrievalRouterPlanner {
    fn id(&self) -> ContextPlannerId {
        "retrieval-router".to_string()
    }

    async fn plan(
        &self,
        query: &ContextQuery,
        mut provider_blocks: Vec<ContextBlock>,
    ) -> anyhow::Result<ContextPlan> {
        let plan = route_retrieval(query, &provider_blocks);
        if !plan.recommended.is_empty() || !plan.avoid.is_empty() {
            provider_blocks.push(render_retrieval_block(&plan));
        }
        provider_blocks.sort_by_key(|block| std::cmp::Reverse(block.priority));
        Ok(ContextPlan {
            blocks: provider_blocks,
        })
    }
}

pub fn route_retrieval(
    query: &ContextQuery,
    provider_blocks: &[ContextBlock],
) -> RetrievalRoutePlan {
    let prompt = query.prompt.to_ascii_lowercase();
    let mut recommended = Vec::new();
    let mut avoid = Vec::new();
    let intent = classify_intent(&prompt);
    let semantic_ready = provider_blocks.iter().any(|block| {
        block
            .metadata
            .get("source")
            .and_then(serde_json::Value::as_str)
            == Some("indexed_semantic_code_search")
    });

    if looks_like_command_failure(&prompt) {
        recommended.push(recommend(
            RetrievalMode::Artifact,
            "grep_artifact",
            extract_query(&query.prompt),
            "command or terminal output failure should start with saved artifact search",
            RetrievalConfidence::High,
        ));
    }
    if looks_like_capability_lookup(&prompt) {
        if let Some(item_id) = matching_promoted_capability(provider_blocks, &prompt) {
            let mut rec = recommend(
                RetrievalMode::Promotion,
                "discovery.read",
                extract_query(&query.prompt),
                "matching capability is already promoted or warm-cached for this session",
                RetrievalConfidence::High,
            );
            rec.item_id = Some(item_id);
            recommended.push(rec);
        }
        recommended.push(recommend(
            RetrievalMode::Discovery,
            "discovery.search",
            extract_query(&query.prompt),
            "tool, MCP, skill, command, or plugin capability lookup",
            RetrievalConfidence::High,
        ));
    }
    if looks_like_capability_execution(&prompt) {
        recommended.push(recommend(
            RetrievalMode::Promotion,
            "discovery.read",
            extract_query(&query.prompt),
            "full schema or instructions are needed before capability use",
            RetrievalConfidence::High,
        ));
    }
    if looks_like_file_name(&query.prompt) {
        recommended.push(recommend(
            RetrievalMode::FileName,
            "glob",
            extract_query(&query.prompt),
            "path or filename-shaped prompt",
            RetrievalConfidence::High,
        ));
    }
    if looks_like_exact_search(&query.prompt) {
        recommended.push(recommend(
            RetrievalMode::ExactText,
            "grep",
            extract_query(&query.prompt),
            "exact symbol, path, regex, or error string",
            RetrievalConfidence::High,
        ));
    }
    if matches!(intent, RetrievalIntent::BroadConcept) {
        if semantic_ready {
            recommended.push(recommend(
                RetrievalMode::SemanticCode,
                "code_index.search",
                extract_query(&query.prompt),
                "conceptual code search with ready semantic index",
                RetrievalConfidence::Medium,
            ));
        } else {
            recommended.push(recommend(
                RetrievalMode::ExactText,
                "grep",
                extract_query(&query.prompt),
                "semantic index not observed; start with exact local search fallback",
                RetrievalConfidence::Medium,
            ));
        }
    }
    if prompt.contains("history") || prompt.contains("previous turn") || prompt.contains("resume") {
        recommended.push(recommend(
            RetrievalMode::History,
            "history.search",
            extract_query(&query.prompt),
            "prior conversation or session recovery",
            RetrievalConfidence::Medium,
        ));
    }
    if prompt.contains("code") || prompt.contains("repo") || prompt.contains("workspace") {
        avoid.push(RetrievalAvoidance {
            mode: RetrievalMode::Web,
            reason: "local workspace retrieval should be tried before web search".to_string(),
        });
    }

    dedupe_recommendations(&mut recommended);
    RetrievalRoutePlan {
        route_id: format!("route:{}:{}", query.thread_id, query.turn_id),
        thread_id: query.thread_id.clone(),
        turn_id: query.turn_id.clone(),
        intent,
        recommended,
        avoid,
        timestamp: OffsetDateTime::now_utc(),
    }
}

fn render_retrieval_block(plan: &RetrievalRoutePlan) -> ContextBlock {
    let mut text = format!("Retrieval route intent: {:?}", plan.intent);
    for (index, rec) in plan.recommended.iter().take(5).enumerate() {
        text.push_str(&format!(
            "\n{}. {:?} via `{}` query `{}` - {}",
            index + 1,
            rec.mode,
            rec.tool,
            truncate(&rec.query, 80),
            rec.reason
        ));
    }
    if !plan.avoid.is_empty() {
        let avoid = plan
            .avoid
            .iter()
            .map(|avoid| format!("{:?}: {}", avoid.mode, avoid.reason))
            .collect::<Vec<_>>()
            .join("; ");
        text.push_str(&format!("\nAvoid: {avoid}"));
    }

    ContextBlock {
        id: "retrieval-router".to_string(),
        kind: ContextBlockKind::RetrievalHint,
        text,
        priority: 88,
        token_estimate: None,
        metadata: json!({
            "planner": "retrieval-router",
            "route_id": plan.route_id,
            "intent": format!("{:?}", plan.intent),
            "retrievalPlan": serializable(plan),
            "recommended": serializable(&plan.recommended),
            "avoid": serializable(&plan.avoid),
        }),
    }
}

fn classify_intent(prompt: &str) -> RetrievalIntent {
    if prompt.contains("tool")
        || prompt.contains("mcp")
        || prompt.contains("skill")
        || prompt.contains("plugin")
    {
        return RetrievalIntent::InspectTool;
    }
    if looks_like_command_failure(prompt) {
        return RetrievalIntent::DebugFailure;
    }
    if prompt.contains("usage") || prompt.contains("call sites") || prompt.contains("where used") {
        return RetrievalIntent::TraceUsage;
    }
    if prompt.contains("history") || prompt.contains("previous turn") || prompt.contains("resume") {
        return RetrievalIntent::RecoverHistory;
    }
    if prompt.contains("file") || prompt.contains("path") || prompt.contains("filename") {
        return RetrievalIntent::FileLookup;
    }
    if looks_like_exact_search(prompt) {
        return RetrievalIntent::FindDefinition;
    }
    RetrievalIntent::BroadConcept
}

fn recommend(
    mode: RetrievalMode,
    tool: &str,
    query: String,
    reason: &str,
    confidence: RetrievalConfidence,
) -> RetrievalRecommendation {
    RetrievalRecommendation {
        mode,
        tool: tool.to_string(),
        query,
        reason: reason.to_string(),
        confidence,
        item_id: None,
    }
}

fn dedupe_recommendations(recommended: &mut Vec<RetrievalRecommendation>) {
    let mut seen = std::collections::BTreeSet::new();
    recommended.retain(|rec| seen.insert((rec.mode.clone(), rec.tool.clone())));
    recommended.truncate(5);
}

fn looks_like_capability_lookup(prompt: &str) -> bool {
    prompt.contains("tool")
        || prompt.contains("mcp")
        || prompt.contains("skill")
        || prompt.contains("command")
        || prompt.contains("plugin")
}

fn looks_like_capability_execution(prompt: &str) -> bool {
    looks_like_capability_lookup(prompt)
        && (prompt.contains("run")
            || prompt.contains("use")
            || prompt.contains("execute")
            || prompt.contains("call")
            || prompt.contains("invoke"))
}

fn looks_like_command_failure(prompt: &str) -> bool {
    prompt.contains("stderr")
        || prompt.contains("stdout")
        || prompt.contains("exit code")
        || prompt.contains("terminal")
        || prompt.contains("command failed")
        || prompt.contains("panic")
        || prompt.contains("stack trace")
}

fn looks_like_file_name(prompt: &str) -> bool {
    prompt.contains('/')
        || prompt.contains(".rs")
        || prompt.contains(".ts")
        || prompt.contains(".tsx")
        || prompt.contains(".json")
        || prompt.contains(".toml")
        || prompt.contains(".md")
}

fn looks_like_exact_search(prompt: &str) -> bool {
    prompt.contains("::")
        || prompt.contains("->")
        || prompt.contains("fn ")
        || prompt.contains("struct ")
        || prompt.contains("enum ")
        || prompt.split_whitespace().any(|token| {
            token.len() >= 4
                && token
                    .chars()
                    .any(|ch| ch == '_' || ch.is_ascii_uppercase() || ch.is_ascii_digit())
        })
}

fn matching_promoted_capability(blocks: &[ContextBlock], prompt: &str) -> Option<String> {
    let prompt_tokens = prompt
        .split(|c: char| !c.is_ascii_alphanumeric() && c != '_' && c != '-')
        .map(str::to_ascii_lowercase)
        .filter(|token| token.len() >= 3)
        .collect::<Vec<_>>();
    blocks.iter().find_map(|block| {
        let source = block
            .metadata
            .get("source")
            .and_then(serde_json::Value::as_str)
            .unwrap_or_default();
        if !matches!(
            source,
            "promoted_capabilities" | "discovery_promotions" | "warm_cached_capabilities"
        ) {
            return None;
        }
        let item_id = block
            .metadata
            .get("item_id")
            .and_then(serde_json::Value::as_str)
            .or_else(|| {
                block
                    .metadata
                    .get("itemId")
                    .and_then(serde_json::Value::as_str)
            })?;
        let haystack = format!("{} {}", item_id, block.text).to_ascii_lowercase();
        prompt_tokens
            .iter()
            .any(|token| haystack.contains(token))
            .then(|| item_id.to_string())
    })
}

fn extract_query(prompt: &str) -> String {
    truncate(prompt.trim(), 120).to_string()
}

fn truncate(text: &str, max: usize) -> &str {
    if text.len() <= max {
        return text;
    }
    let mut end = max;
    while !text.is_char_boundary(end) {
        end -= 1;
    }
    &text[..end]
}

fn serializable<T: Serialize>(value: &T) -> serde_json::Value {
    serde_json::to_value(value).unwrap_or_else(|_| serde_json::Value::Null)
}

#[cfg(test)]
mod tests {
    use super::*;

    #[tokio::test]
    async fn retrieval_router_routes_exact_symbols_to_grep() {
        let planner = RetrievalRouterPlanner;
        let plan = planner
            .plan(&query("Find ToolExecutionContext in the repo"), Vec::new())
            .await
            .unwrap();

        let block = plan
            .blocks
            .iter()
            .find(|block| block.kind == ContextBlockKind::RetrievalHint)
            .unwrap();
        assert!(block.text.contains("ExactText"));
        assert!(block.text.contains("`grep`"));
    }

    #[tokio::test]
    async fn retrieval_router_routes_concepts_to_semantic_when_index_ready() {
        let planner = RetrievalRouterPlanner;
        let semantic_block = ContextBlock {
            id: "code-index".to_string(),
            kind: ContextBlockKind::RetrievedDocument,
            text: "Indexed context".to_string(),
            priority: 10,
            token_estimate: None,
            metadata: json!({ "source": "indexed_semantic_code_search" }),
        };

        let plan = planner
            .plan(
                &query("How does the policy gate choose approvals?"),
                vec![semantic_block],
            )
            .await
            .unwrap();

        let block = plan.blocks.first().unwrap();
        assert_eq!(block.kind, ContextBlockKind::RetrievalHint);
        assert!(block.text.contains("SemanticCode"));
        assert!(block.text.contains("code_index.search"));
    }

    #[tokio::test]
    async fn retrieval_router_routes_capability_execution_to_discovery_and_promotion() {
        let planner = RetrievalRouterPlanner;
        let plan = planner
            .plan(
                &query("Use the GitHub MCP issue search tool to find blockers"),
                Vec::new(),
            )
            .await
            .unwrap();
        let block = plan.blocks.first().unwrap();

        assert!(block.text.contains("Discovery"));
        assert!(block.text.contains("Promotion"));
        assert!(block.text.contains("discovery.search"));
        assert!(block.text.contains("discovery.read"));
    }

    #[tokio::test]
    async fn retrieval_router_prefers_promoted_capability_state() {
        let planner = RetrievalRouterPlanner;
        let promoted = ContextBlock {
            id: "promoted-github".to_string(),
            kind: ContextBlockKind::ToolAvailability,
            text: "GitHub issue search is promoted".to_string(),
            priority: 20,
            token_estimate: None,
            metadata: json!({
                "source": "promoted_capabilities",
                "item_id": "mcp:github/issues.search",
            }),
        };

        let plan = planner
            .plan(
                &query("Use the GitHub MCP issue search tool"),
                vec![promoted],
            )
            .await
            .unwrap();
        let block = plan.blocks.first().unwrap();

        assert!(block.text.contains("already promoted or warm-cached"));
        assert_eq!(
            block.metadata["recommended"][0]["itemId"],
            "mcp:github/issues.search"
        );
    }

    #[tokio::test]
    async fn retrieval_router_routes_command_failures_to_artifacts() {
        let planner = RetrievalRouterPlanner;
        let plan = planner
            .plan(
                &query("A terminal command failed with stderr; inspect the log"),
                Vec::new(),
            )
            .await
            .unwrap();
        let block = plan.blocks.first().unwrap();

        assert!(block.text.contains("Artifact"));
        assert!(block.text.contains("grep_artifact"));
    }

    fn query(prompt: &str) -> ContextQuery {
        ContextQuery {
            thread_id: "thread-a".to_string(),
            turn_id: "turn-a".to_string(),
            prompt: prompt.to_string(),
            workspace: None,
            token_budget: None,
        }
    }
}