dirge-agent 0.7.4

Minimalistic coding agent written in Rust, optimized for memory footprint and performance
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
use rig::completion::ToolDefinition;
use rig::tool::Tool;
use serde::Deserialize;
use tokio::sync::{mpsc, oneshot};

use crate::agent::tools::{AskSender, PermCheck, ToolError, check_perm};

pub type QuestionSender = mpsc::Sender<QuestionRequest>;
pub type QuestionReceiver = mpsc::Receiver<QuestionRequest>;

#[derive(Debug)]
pub struct QuestionRequest {
    pub questions: Vec<QuestionItem>,
    pub reply: oneshot::Sender<QuestionResponse>,
}

#[derive(Debug)]
pub enum QuestionResponse {
    Answered(Vec<Vec<String>>),
    Rejected,
}

#[derive(Deserialize, Debug, Clone)]
pub struct QuestionArgs {
    pub questions: Vec<QuestionItem>,
}

#[derive(Deserialize, Debug, Clone)]
pub struct QuestionItem {
    pub question: String,
    pub header: Option<String>,
    pub options: Vec<QuestionOption>,
    #[serde(default)]
    pub multi_select: Option<bool>,
    #[serde(default = "default_custom")]
    pub custom: bool,
}

fn default_custom() -> bool {
    true
}

#[derive(Deserialize, Debug, Clone)]
pub struct QuestionOption {
    pub label: String,
    pub description: String,
}

pub struct QuestionTool {
    pub question_tx: QuestionSender,
    pub permission: Option<PermCheck>,
    pub ask_tx: Option<AskSender>,
}

impl QuestionTool {
    pub fn new(question_tx: QuestionSender) -> Self {
        Self {
            question_tx,
            permission: None,
            ask_tx: None,
        }
    }

    /// Builder for the production path: wires the permission checker
    /// and ask channel so `question` invocations go through the same
    /// allow/ask/deny rules as every other behaviour-altering tool.
    pub fn with_permission(
        mut self,
        permission: Option<PermCheck>,
        ask_tx: Option<AskSender>,
    ) -> Self {
        self.permission = permission;
        self.ask_tx = ask_tx;
        self
    }
}

impl Tool for QuestionTool {
    const NAME: &'static str = "question";

    type Error = ToolError;
    type Args = QuestionArgs;
    type Output = String;

    async fn definition(&self, _prompt: String) -> ToolDefinition {
        // Description mirrors opencode's question.txt structure —
        // the explicit \"when to use\" list + \"usage notes\" gets
        // the model to actually reach for this tool instead of
        // either guessing or asking in plain prose. The
        // \"(Recommended)\" convention helps the model communicate
        // its preferred answer without taking choice away from
        // the user.
        ToolDefinition {
            name: "question".to_string(),
            description: "Ask the user structured questions during execution. Use this when you need to:\n\
                1. Gather user preferences or requirements\n\
                2. Clarify ambiguous instructions before proceeding\n\
                3. Get decisions on implementation choices as you work\n\
                4. Offer choices about what direction to take\n\
                \n\
                The tool blocks until the user answers. Multiple questions can be asked in one call.\n\
                \n\
                Usage notes:\n\
                - When `custom` is enabled (default), a \"Type your own answer\" option is added automatically; don't include \"Other\" or catch-all options yourself.\n\
                - Answers are returned per question (one array of selected labels each); set `multi_select: true` to allow more than one selection.\n\
                - If you recommend a specific option, make it the first option and add \" (Recommended)\" at the end of the label.\n\
                - Use `header` to group related questions under a short section title.\n\
                - Prefer asking over guessing when the user's request is genuinely ambiguous — but don't over-ask for clearly-decidable details."
                .to_string(),
            parameters: serde_json::json!({
                "type": "object",
                "properties": {
                    "questions": {
                        "type": "array",
                        "description": "List of questions to ask the user",
                        "items": {
                            "type": "object",
                            "properties": {
                                "question": {
                                    "type": "string",
                                    "description": "The question text"
                                },
                                "header": {
                                    "type": "string",
                                    "description": "Optional section heading displayed above the question"
                                },
                                "options": {
                                    "type": "array",
                                    "description": "Answer choices for the user",
                                    "items": {
                                        "type": "object",
                                        "properties": {
                                            "label": {"type": "string", "description": "Short display label for the option"},
                                            "description": {"type": "string", "description": "Explanation of what this choice means"}
                                        },
                                        "required": ["label", "description"]
                                    }
                                },
                                "multi_select": {
                                    "type": "boolean",
                                    "description": "Allow selecting multiple options (default: false)"
                                },
                                "custom": {
                                    "type": "boolean",
                                    "description": "Whether to show a 'Type your own answer' option (default: true)"
                                }
                            },
                            "required": ["question", "options"]
                        }
                    }
                },
                "required": ["questions"]
            }),
        }
    }

    async fn call(&self, args: QuestionArgs) -> Result<String, ToolError> {
        // Route through the same permission system as task / write /
        // bash. `question` rewrites what the LLM sees by injecting
        // user input — that's behavior-altering and shouldn't bypass
        // user rules.
        let summary = args
            .questions
            .first()
            .map(|q| q.question.clone())
            .unwrap_or_default();
        check_perm(&self.permission, &self.ask_tx, "question", &summary).await?;

        let (reply_tx, reply_rx) = oneshot::channel();

        self.question_tx
            .send(QuestionRequest {
                questions: args.questions.clone(),
                reply: reply_tx,
            })
            .await
            .map_err(|_| ToolError::Msg("question system unavailable".to_string()))?;

        match reply_rx.await {
            Ok(QuestionResponse::Answered(answers)) => {
                let mut output = String::new();
                // Audit L13: zip(answers) silently dropped trailing
                // questions when the UI returned fewer answer arrays
                // than questions (partial response, plugin override
                // shape mismatch). Iterate by question index so
                // every question surfaces; missing answers are
                // explicitly marked `[no answer]` so the LLM sees
                // the gap and the user knows what slipped through.
                for (i, item) in args.questions.iter().enumerate() {
                    if i > 0 {
                        output.push_str("\n\n");
                    }
                    if let Some(header) = &item.header {
                        output.push_str(&format!("## {}\n", header));
                    }
                    let answer_text = match answers.get(i) {
                        Some(a) if !a.is_empty() => a.join(", "),
                        _ => "[no answer]".to_string(),
                    };
                    output.push_str(&format!(
                        "**Q{}:** {}\n**A:** {}",
                        i + 1,
                        item.question,
                        answer_text,
                    ));
                }
                if output.is_empty() {
                    output = "(no questions answered)".to_string();
                }
                Ok(output)
            }
            Ok(QuestionResponse::Rejected) => {
                Err(ToolError::Msg("question rejected by user".to_string()))
            }
            Err(_) => Err(ToolError::Msg(
                "question channel closed unexpectedly".to_string(),
            )),
        }
    }
}

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

    #[tokio::test]
    async fn test_definition_has_correct_name() {
        let (tx, _rx) = mpsc::channel(1);
        let tool = QuestionTool::new(tx);
        let def = tool.definition(String::new()).await;
        assert_eq!(def.name, "question");
    }

    #[tokio::test]
    async fn test_single_select_question() {
        let (tx, mut rx) = mpsc::channel(1);
        let tool = QuestionTool::new(tx);

        let args = QuestionArgs {
            questions: vec![QuestionItem {
                question: "What color?".to_string(),
                header: None,
                options: vec![
                    QuestionOption {
                        label: "Red".to_string(),
                        description: "Red color".to_string(),
                    },
                    QuestionOption {
                        label: "Blue".to_string(),
                        description: "Blue color".to_string(),
                    },
                ],
                multi_select: None,
                custom: false,
            }],
        };

        let handle = tokio::spawn(async move { tool.call(args).await });

        let req = rx.recv().await.unwrap();
        assert_eq!(req.questions.len(), 1);
        assert_eq!(req.questions[0].question, "What color?");

        let _ = req
            .reply
            .send(QuestionResponse::Answered(vec![vec!["Red".to_string()]]));

        let result = handle.await.unwrap().unwrap();
        assert!(result.contains("**Q1:** What color?"));
        assert!(result.contains("**A:** Red"));
    }

    #[tokio::test]
    async fn test_multi_select_question() {
        let (tx, mut rx) = mpsc::channel(1);
        let tool = QuestionTool::new(tx);

        let args = QuestionArgs {
            questions: vec![QuestionItem {
                question: "Pick colors".to_string(),
                header: Some("Colors".to_string()),
                options: vec![
                    QuestionOption {
                        label: "Red".to_string(),
                        description: "".to_string(),
                    },
                    QuestionOption {
                        label: "Blue".to_string(),
                        description: "".to_string(),
                    },
                ],
                multi_select: Some(true),
                custom: false,
            }],
        };

        let handle = tokio::spawn(async move { tool.call(args).await });

        let req = rx.recv().await.unwrap();
        let _ = req.reply.send(QuestionResponse::Answered(vec![vec![
            "Red".to_string(),
            "Blue".to_string(),
        ]]));

        let result = handle.await.unwrap().unwrap();
        assert!(result.contains("## Colors"));
        assert!(result.contains("**A:** Red, Blue"));
    }

    #[tokio::test]
    async fn test_reject_returns_error() {
        let (tx, mut rx) = mpsc::channel(1);
        let tool = QuestionTool::new(tx);

        let args = QuestionArgs {
            questions: vec![QuestionItem {
                question: "What?".to_string(),
                header: None,
                options: vec![QuestionOption {
                    label: "A".to_string(),
                    description: "".to_string(),
                }],
                multi_select: None,
                custom: false,
            }],
        };

        let handle = tokio::spawn(async move { tool.call(args).await });

        let req = rx.recv().await.unwrap();
        let _ = req.reply.send(QuestionResponse::Rejected);

        let result = handle.await.unwrap();
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("rejected"));
    }

    #[tokio::test]
    async fn test_multiple_questions() {
        let (tx, mut rx) = mpsc::channel(1);
        let tool = QuestionTool::new(tx);

        let args = QuestionArgs {
            questions: vec![
                QuestionItem {
                    question: "Q1".to_string(),
                    header: None,
                    options: vec![QuestionOption {
                        label: "A1".to_string(),
                        description: "".to_string(),
                    }],
                    multi_select: None,
                    custom: false,
                },
                QuestionItem {
                    question: "Q2".to_string(),
                    header: None,
                    options: vec![QuestionOption {
                        label: "A2".to_string(),
                        description: "".to_string(),
                    }],
                    multi_select: None,
                    custom: false,
                },
            ],
        };

        let handle = tokio::spawn(async move { tool.call(args).await });

        let req = rx.recv().await.unwrap();
        assert_eq!(req.questions.len(), 2);
        let _ = req.reply.send(QuestionResponse::Answered(vec![
            vec!["A1".to_string()],
            vec!["A2".to_string()],
        ]));

        let result = handle.await.unwrap().unwrap();
        assert!(result.contains("Q1"));
        assert!(result.contains("Q2"));
        assert!(result.contains("A1"));
        assert!(result.contains("A2"));
    }

    // Header text must be emitted as a markdown `## …` heading so the agent
    // sees structured output rather than a flat blob.
    #[tokio::test]
    async fn output_includes_header_as_markdown_heading() {
        let (tx, mut rx) = mpsc::channel(1);
        let tool = QuestionTool::new(tx);
        let args = QuestionArgs {
            questions: vec![QuestionItem {
                question: "Which?".into(),
                header: Some("Choice".into()),
                options: vec![QuestionOption {
                    label: "A".into(),
                    description: "".into(),
                }],
                multi_select: None,
                custom: false,
            }],
        };
        let handle = tokio::spawn(async move { tool.call(args).await });
        let req = rx.recv().await.unwrap();
        let _ = req
            .reply
            .send(QuestionResponse::Answered(vec![vec!["A".into()]]));
        let out = handle.await.unwrap().unwrap();
        assert!(out.contains("## Choice"), "got: {out}");
        assert!(out.contains("**Q1:** Which?"));
        assert!(out.contains("**A:** A"));
    }

    // Regression: dropping the receiver (channel closed before tool call)
    // must error cleanly. Don't panic, don't hang.
    #[tokio::test]
    async fn errors_when_channel_unavailable() {
        let (tx, rx) = mpsc::channel(1);
        drop(rx);
        let tool = QuestionTool::new(tx);
        let result = tool
            .call(QuestionArgs {
                questions: vec![QuestionItem {
                    question: "Q?".into(),
                    header: None,
                    options: vec![QuestionOption {
                        label: "A".into(),
                        description: "".into(),
                    }],
                    multi_select: None,
                    custom: false,
                }],
            })
            .await;
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("unavailable"));
    }

    // Reply oneshot dropped without sending → tool surfaces channel-closed
    // error rather than hanging.
    #[tokio::test]
    async fn errors_when_reply_dropped() {
        let (tx, mut rx) = mpsc::channel(1);
        let tool = QuestionTool::new(tx);
        let handle = tokio::spawn(async move {
            tool.call(QuestionArgs {
                questions: vec![QuestionItem {
                    question: "Q?".into(),
                    header: None,
                    options: vec![QuestionOption {
                        label: "A".into(),
                        description: "".into(),
                    }],
                    multi_select: None,
                    custom: false,
                }],
            })
            .await
        });
        let req = rx.recv().await.unwrap();
        drop(req.reply);
        let result = handle.await.unwrap();
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("channel closed"));
    }

    // Default for `custom` is true. Without serde reading the schema default
    // an agent that omits the field would get `false`, which silently changes
    // the picker UX.
    #[test]
    fn args_default_custom_is_true() {
        let parsed: QuestionItem = serde_json::from_value(serde_json::json!({
            "question": "Q?",
            "options": [{"label": "A", "description": ""}],
        }))
        .unwrap();
        assert!(parsed.custom);
    }

    // Multi-select with multiple answers must comma-join.
    #[tokio::test]
    async fn multi_select_joins_answers_with_comma() {
        let (tx, mut rx) = mpsc::channel(1);
        let tool = QuestionTool::new(tx);
        let args = QuestionArgs {
            questions: vec![QuestionItem {
                question: "Pick".into(),
                header: None,
                options: vec![
                    QuestionOption {
                        label: "A".into(),
                        description: "".into(),
                    },
                    QuestionOption {
                        label: "B".into(),
                        description: "".into(),
                    },
                    QuestionOption {
                        label: "C".into(),
                        description: "".into(),
                    },
                ],
                multi_select: Some(true),
                custom: false,
            }],
        };
        let handle = tokio::spawn(async move { tool.call(args).await });
        let req = rx.recv().await.unwrap();
        let _ = req.reply.send(QuestionResponse::Answered(vec![vec![
            "A".into(),
            "C".into(),
        ]]));
        let out = handle.await.unwrap().unwrap();
        assert!(out.contains("**A:** A, C"), "got: {out}");
    }
}