uira-orchestration 0.1.1

Agent definitions, SDK, tool registry, and hook implementations for Uira
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
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub enum HookEvent {
    UserPromptSubmit,
    Stop,
    SessionStart,
    PreToolUse,
    PostToolUse,
    SessionIdle,
    MessagesTransform,
    AssistantTurnComplete,
}

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum HookType {
    KeywordDetector,
    StopContinuation,
    Ralph,
    PersistentMode,
    SessionStart,
    PreToolUse,
    PostToolUse,
    Autopilot,
    ThinkMode,
    RulesInjector,
    CommentChecker,
    DelegationEnforcer,
    Recovery,
    PreemptiveCompaction,
    BackgroundNotification,
    DirectoryReadmeInjector,
    EmptyMessageSanitizer,
    ThinkingBlockValidator,
    NonInteractiveEnv,
    AgentUsageReminder,
    Ultrawork,
    UltraQA,
    Notepad,
    Learner,
    Ultrapilot,
    UiraOrchestrator,
    PluginPatterns,
    TodoContinuation,
    MemoryRecall,
    MemoryCapture,
}

impl HookType {
    pub fn name(&self) -> &'static str {
        match self {
            Self::KeywordDetector => "keyword-detector",
            Self::StopContinuation => "stop-continuation",
            Self::Ralph => "ralph",
            Self::PersistentMode => "persistent-mode",
            Self::SessionStart => "session-start",
            Self::PreToolUse => "pre-tool-use",
            Self::PostToolUse => "post-tool-use",
            Self::Autopilot => "autopilot",
            Self::ThinkMode => "think-mode",
            Self::RulesInjector => "rules-injector",
            Self::CommentChecker => "comment-checker",
            Self::DelegationEnforcer => "delegation-enforcer",
            Self::Recovery => "recovery",
            Self::PreemptiveCompaction => "preemptive-compaction",
            Self::BackgroundNotification => "background-notification",
            Self::DirectoryReadmeInjector => "directory-readme-injector",
            Self::EmptyMessageSanitizer => "empty-message-sanitizer",
            Self::ThinkingBlockValidator => "thinking-block-validator",
            Self::NonInteractiveEnv => "non-interactive-env",
            Self::AgentUsageReminder => "agent-usage-reminder",
            Self::Ultrawork => "ultrawork",
            Self::UltraQA => "ultraqa",
            Self::Notepad => "notepad",
            Self::Learner => "learner",
            Self::Ultrapilot => "ultrapilot",
            Self::UiraOrchestrator => "uira-orchestrator",
            Self::PluginPatterns => "plugin-patterns",
            Self::TodoContinuation => "todo-continuation",
            Self::MemoryRecall => "memory-recall",
            Self::MemoryCapture => "memory-capture",
        }
    }
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MessagePart {
    #[serde(rename = "type")]
    pub part_type: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Message {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub content: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct HookInput {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub session_id: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub prompt: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub message: Option<Message>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub parts: Option<Vec<MessagePart>>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_name: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_input: Option<serde_json::Value>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_output: Option<serde_json::Value>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub directory: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub stop_reason: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub user_requested: Option<bool>,

    /// Path to transcript JSONL file for accessing conversation history
    /// This is passed from StopInput which already has this field in uira-core
    #[serde(skip_serializing_if = "Option::is_none")]
    pub transcript_path: Option<String>,

    #[serde(flatten)]
    pub extra: HashMap<String, serde_json::Value>,
}

impl HookInput {
    pub fn get_prompt_text(&self) -> String {
        if let Some(prompt) = &self.prompt {
            return prompt.clone();
        }
        if let Some(message) = &self.message {
            if let Some(content) = &message.content {
                return content.clone();
            }
        }
        if let Some(parts) = &self.parts {
            return parts
                .iter()
                .filter(|p| p.part_type == "text")
                .filter_map(|p| p.text.as_ref())
                .cloned()
                .collect::<Vec<_>>()
                .join(" ");
        }
        String::new()
    }

    pub fn get_directory(&self) -> String {
        self.directory.clone().unwrap_or_else(|| {
            std::env::current_dir()
                .unwrap()
                .to_string_lossy()
                .to_string()
        })
    }

    /// Get the last assistant text response from transcript JSONL
    ///
    /// Parses the transcript file (if available) and extracts the last
    /// assistant message's text content.
    pub fn get_last_assistant_response(&self) -> Option<String> {
        let transcript_path = self.transcript_path.as_ref()?;
        let path = std::path::Path::new(transcript_path);
        if !path.exists() {
            return None;
        }

        let content = std::fs::read_to_string(path).ok()?;

        // Parse JSONL from end to find last assistant message
        for line in content.lines().rev() {
            if line.trim().is_empty() {
                continue;
            }
            if let Ok(entry) = serde_json::from_str::<serde_json::Value>(line) {
                if entry.get("type").and_then(|v| v.as_str()) == Some("progress") {
                    if let Some(data) = entry.get("data") {
                        if let Some(msg) = data.get("message") {
                            if msg.get("type").and_then(|v| v.as_str()) == Some("assistant") {
                                if let Some(content) = msg
                                    .get("message")
                                    .and_then(|m| m.get("content"))
                                    .and_then(|c| c.as_array())
                                {
                                    let texts: Vec<&str> = content
                                        .iter()
                                        .filter_map(|item| {
                                            if item.get("type").and_then(|t| t.as_str())
                                                == Some("text")
                                            {
                                                item.get("text").and_then(|t| t.as_str())
                                            } else {
                                                None
                                            }
                                        })
                                        .collect();

                                    if !texts.is_empty() {
                                        return Some(texts.join("\n"));
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        None
    }
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct HookOutput {
    #[serde(rename = "continue")]
    pub should_continue: bool,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub message: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub modified_input: Option<serde_json::Value>,
}

impl HookOutput {
    pub fn continue_with_message(message: impl Into<String>) -> Self {
        Self {
            should_continue: true,
            message: Some(message.into()),
            reason: None,
            modified_input: None,
        }
    }

    pub fn block_with_reason(reason: impl Into<String>) -> Self {
        Self {
            should_continue: false,
            message: None,
            reason: Some(reason.into()),
            modified_input: None,
        }
    }

    pub fn pass() -> Self {
        Self {
            should_continue: true,
            message: None,
            reason: None,
            modified_input: None,
        }
    }
}

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

    #[test]
    fn test_hook_input_get_prompt_text_from_prompt() {
        let input = HookInput {
            session_id: None,
            prompt: Some("test prompt".to_string()),
            message: None,
            parts: None,
            tool_name: None,
            tool_input: None,
            tool_output: None,
            directory: None,
            stop_reason: None,
            user_requested: None,
            transcript_path: None,
            extra: HashMap::new(),
        };

        assert_eq!(input.get_prompt_text(), "test prompt");
    }

    #[test]
    fn test_hook_input_get_prompt_text_from_message() {
        let input = HookInput {
            session_id: None,
            prompt: None,
            message: Some(Message {
                content: Some("message content".to_string()),
            }),
            parts: None,
            tool_name: None,
            tool_input: None,
            tool_output: None,
            directory: None,
            stop_reason: None,
            user_requested: None,
            transcript_path: None,
            extra: HashMap::new(),
        };

        assert_eq!(input.get_prompt_text(), "message content");
    }

    #[test]
    fn test_hook_input_get_prompt_text_from_parts() {
        let input = HookInput {
            session_id: None,
            prompt: None,
            message: None,
            parts: Some(vec![
                MessagePart {
                    part_type: "text".to_string(),
                    text: Some("part 1".to_string()),
                },
                MessagePart {
                    part_type: "text".to_string(),
                    text: Some("part 2".to_string()),
                },
            ]),
            tool_name: None,
            tool_input: None,
            tool_output: None,
            directory: None,
            stop_reason: None,
            user_requested: None,
            transcript_path: None,
            extra: HashMap::new(),
        };

        assert_eq!(input.get_prompt_text(), "part 1 part 2");
    }

    #[test]
    fn test_hook_output_continue_with_message() {
        let output = HookOutput::continue_with_message("test message");
        assert!(output.should_continue);
        assert_eq!(output.message, Some("test message".to_string()));
        assert!(output.reason.is_none());
    }

    #[test]
    fn test_hook_output_block_with_reason() {
        let output = HookOutput::block_with_reason("blocked");
        assert!(!output.should_continue);
        assert_eq!(output.reason, Some("blocked".to_string()));
        assert!(output.message.is_none());
    }

    #[test]
    fn test_hook_output_pass() {
        let output = HookOutput::pass();
        assert!(output.should_continue);
        assert!(output.message.is_none());
        assert!(output.reason.is_none());
    }

    #[test]
    fn test_get_last_assistant_response_no_transcript() {
        let input = HookInput {
            session_id: None,
            prompt: None,
            message: None,
            parts: None,
            tool_name: None,
            tool_input: None,
            tool_output: None,
            directory: None,
            stop_reason: None,
            user_requested: None,
            transcript_path: None,
            extra: HashMap::new(),
        };

        assert!(input.get_last_assistant_response().is_none());
    }

    #[test]
    fn test_get_last_assistant_response_missing_file() {
        let input = HookInput {
            session_id: None,
            prompt: None,
            message: None,
            parts: None,
            tool_name: None,
            tool_input: None,
            tool_output: None,
            directory: None,
            stop_reason: None,
            user_requested: None,
            transcript_path: Some("/nonexistent/path/transcript.jsonl".to_string()),
            extra: HashMap::new(),
        };

        assert!(input.get_last_assistant_response().is_none());
    }
}