turboclaude-protocol 0.1.0

Shared protocol types and definitions for TurboClaude REST and Agent SDKs
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
472
473
474
475
476
477
//! Hook system types and matching for agent SDK
//!
//! Provides types for hook matchers, permission decisions, and advanced hook response fields
//! that enable sophisticated control over tool execution and agent behavior.

use regex::Regex;
use serde::{Deserialize, Serialize};

/// Permission decision for PreToolUse hooks
///
/// Indicates whether a tool should be allowed, denied, or require user confirmation.
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum PermissionDecision {
    /// Allow the tool to execute
    Allow,
    /// Deny the tool execution
    Deny,
    /// Ask the user for permission
    Ask,
}

/// Reason for continuing execution
///
/// Provides semantic context for why a hook decided to continue.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
pub enum ContinueReason {
    /// Hook approved the action
    Approved,
    /// Hook modified the input
    Modified,
    /// Hook added context
    ContextAdded,
    /// Hook allowed with conditions
    Conditional,
    /// Custom reason
    Custom(String),
}

/// Reason for stopping execution
///
/// Provides semantic context for why a hook decided to stop.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
pub enum StopReason {
    /// Security policy violation
    SecurityViolation,
    /// Error detected
    ErrorDetected,
    /// User-requested stop
    UserRequested,
    /// Critical condition detected
    Critical,
    /// Custom reason
    Custom(String),
}

/// Hook matcher for selective hook invocation
///
/// Provides pattern-based matching to control when hooks are invoked.
/// Hooks are only triggered when the matcher criteria are satisfied.
///
/// # Examples
///
/// ```
/// use turboclaude_protocol::hooks::HookMatcher;
///
/// // Match specific tool by name
/// let matcher = HookMatcher::new()
///     .with_tool_name("Bash");
///
/// // Match tools using regex
/// let matcher = HookMatcher::new()
///     .with_tool_name_regex(r"^(Write|Edit|MultiEdit)$");
///
/// // Match any tool (always trigger)
/// let matcher = HookMatcher::new();
/// ```
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct HookMatcher {
    /// Exact tool name to match (case-sensitive)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_name: Option<String>,

    /// Regex pattern for tool name matching
    ///
    /// Uses Rust regex syntax. Patterns are matched against the full tool name.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(with = "serde_regex", default)]
    pub tool_name_regex: Option<Regex>,

    /// Match only if tool input contains specific fields
    #[serde(skip_serializing_if = "Option::is_none")]
    pub required_input_fields: Option<Vec<String>>,

    /// Match only specific event types
    ///
    /// If None, matches all events. If Some, only matches events in the list.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub event_types: Option<Vec<String>>,
}

impl HookMatcher {
    /// Create a new empty matcher (matches everything)
    pub fn new() -> Self {
        Self::default()
    }

    /// Set exact tool name to match
    pub fn with_tool_name(mut self, name: impl Into<String>) -> Self {
        self.tool_name = Some(name.into());
        self
    }

    /// Set tool name regex pattern
    ///
    /// # Panics
    ///
    /// Panics if the regex pattern is invalid. For fallible construction, use `try_with_tool_name_regex`.
    pub fn with_tool_name_regex(mut self, pattern: &str) -> Self {
        self.tool_name_regex = Some(Regex::new(pattern).expect("Invalid regex pattern"));
        self
    }

    /// Try to set tool name regex pattern (fallible)
    pub fn try_with_tool_name_regex(mut self, pattern: &str) -> Result<Self, regex::Error> {
        self.tool_name_regex = Some(Regex::new(pattern)?);
        Ok(self)
    }

    /// Set required input fields
    pub fn with_required_fields(mut self, fields: Vec<String>) -> Self {
        self.required_input_fields = Some(fields);
        self
    }

    /// Set specific event types to match
    pub fn with_event_types(mut self, events: Vec<String>) -> Self {
        self.event_types = Some(events);
        self
    }

    /// Check if this matcher matches the given hook context
    ///
    /// Returns true if all specified criteria are satisfied.
    pub fn matches(&self, context: &HookContext) -> bool {
        // Check tool name exact match
        if let Some(ref name) = self.tool_name
            && context.tool_name.as_ref() != Some(name)
        {
            return false;
        }

        // Check tool name regex match
        if let Some(ref regex) = self.tool_name_regex {
            if let Some(ref tool_name) = context.tool_name {
                if !regex.is_match(tool_name) {
                    return false;
                }
            } else {
                // No tool name but regex specified
                return false;
            }
        }

        // Check required input fields
        if let Some(ref required_fields) = self.required_input_fields {
            if let Some(ref input) = context.tool_input {
                for field in required_fields {
                    if input.get(field).is_none() {
                        return false;
                    }
                }
            } else {
                // No input but required fields specified
                return false;
            }
        }

        // Check event type
        if let Some(ref event_types) = self.event_types
            && !event_types.contains(&context.event_type)
        {
            return false;
        }

        true
    }

    /// Check if this is an empty matcher (matches everything)
    pub fn is_empty(&self) -> bool {
        self.tool_name.is_none()
            && self.tool_name_regex.is_none()
            && self.required_input_fields.is_none()
            && self.event_types.is_none()
    }
}

/// Context information for hook matching
///
/// Provides all available context that matchers can use to decide whether to invoke.
#[derive(Debug, Clone, Default)]
pub struct HookContext {
    /// Event type (PreToolUse, PostToolUse, etc.)
    pub event_type: String,

    /// Tool name if applicable
    pub tool_name: Option<String>,

    /// Tool input if applicable
    pub tool_input: Option<serde_json::Value>,

    /// Tool output if applicable (PostToolUse)
    pub tool_output: Option<serde_json::Value>,

    /// Session ID
    pub session_id: Option<String>,
}

impl HookContext {
    /// Create a new hook context
    pub fn new(event_type: impl Into<String>) -> Self {
        Self {
            event_type: event_type.into(),
            ..Default::default()
        }
    }

    /// Set tool name
    pub fn with_tool_name(mut self, name: impl Into<String>) -> Self {
        self.tool_name = Some(name.into());
        self
    }

    /// Set tool input
    pub fn with_tool_input(mut self, input: serde_json::Value) -> Self {
        self.tool_input = Some(input);
        self
    }

    /// Set tool output
    pub fn with_tool_output(mut self, output: serde_json::Value) -> Self {
        self.tool_output = Some(output);
        self
    }

    /// Set session ID
    pub fn with_session_id(mut self, id: impl Into<String>) -> Self {
        self.session_id = Some(id.into());
        self
    }
}

/// Custom serialization for Regex using serde_regex
mod serde_regex {
    use regex::Regex;
    use serde::{Deserialize, Deserializer, Serializer};

    pub fn serialize<S>(regex: &Option<Regex>, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        match regex {
            Some(r) => serializer.serialize_some(r.as_str()),
            None => serializer.serialize_none(),
        }
    }

    pub fn deserialize<'de, D>(deserializer: D) -> Result<Option<Regex>, D::Error>
    where
        D: Deserializer<'de>,
    {
        let opt: Option<String> = Option::deserialize(deserializer)?;
        match opt {
            Some(s) => Regex::new(&s).map(Some).map_err(serde::de::Error::custom),
            None => Ok(None),
        }
    }
}

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

    #[test]
    fn test_permission_decision_serialization() {
        let allow = PermissionDecision::Allow;
        let json = serde_json::to_string(&allow).unwrap();
        assert_eq!(json, r#""allow""#);

        let deny = PermissionDecision::Deny;
        let json = serde_json::to_string(&deny).unwrap();
        assert_eq!(json, r#""deny""#);

        let ask = PermissionDecision::Ask;
        let json = serde_json::to_string(&ask).unwrap();
        assert_eq!(json, r#""ask""#);
    }

    #[test]
    fn test_continue_reason_serialization() {
        let reason = ContinueReason::Approved;
        let json = serde_json::to_string(&reason).unwrap();
        assert_eq!(json, r#""approved""#);

        let custom = ContinueReason::Custom("custom reason".to_string());
        let json = serde_json::to_string(&custom).unwrap();
        assert!(json.contains("custom reason"));
    }

    #[test]
    fn test_stop_reason_serialization() {
        let reason = StopReason::SecurityViolation;
        let json = serde_json::to_string(&reason).unwrap();
        assert_eq!(json, r#""security_violation""#);

        let custom = StopReason::Custom("critical error".to_string());
        let json = serde_json::to_string(&custom).unwrap();
        assert!(json.contains("critical error"));
    }

    #[test]
    fn test_hook_matcher_empty() {
        let matcher = HookMatcher::new();
        assert!(matcher.is_empty());

        let context = HookContext::new("PreToolUse");
        assert!(matcher.matches(&context));
    }

    #[test]
    fn test_hook_matcher_tool_name_exact() {
        let matcher = HookMatcher::new().with_tool_name("Bash");

        let context = HookContext::new("PreToolUse").with_tool_name("Bash");
        assert!(matcher.matches(&context));

        let context = HookContext::new("PreToolUse").with_tool_name("Write");
        assert!(!matcher.matches(&context));
    }

    #[test]
    fn test_hook_matcher_tool_name_regex() {
        let matcher = HookMatcher::new().with_tool_name_regex(r"^(Write|Edit|MultiEdit)$");

        let context = HookContext::new("PreToolUse").with_tool_name("Write");
        assert!(matcher.matches(&context));

        let context = HookContext::new("PreToolUse").with_tool_name("Edit");
        assert!(matcher.matches(&context));

        let context = HookContext::new("PreToolUse").with_tool_name("Bash");
        assert!(!matcher.matches(&context));
    }

    #[test]
    fn test_hook_matcher_required_fields() {
        let matcher = HookMatcher::new()
            .with_tool_name("Bash")
            .with_required_fields(vec!["command".to_string()]);

        let input = serde_json::json!({ "command": "echo hello" });
        let context = HookContext::new("PreToolUse")
            .with_tool_name("Bash")
            .with_tool_input(input);
        assert!(matcher.matches(&context));

        let input = serde_json::json!({ "other": "value" });
        let context = HookContext::new("PreToolUse")
            .with_tool_name("Bash")
            .with_tool_input(input);
        assert!(!matcher.matches(&context));
    }

    #[test]
    fn test_hook_matcher_event_types() {
        let matcher = HookMatcher::new()
            .with_event_types(vec!["PreToolUse".to_string(), "PostToolUse".to_string()]);

        let context = HookContext::new("PreToolUse");
        assert!(matcher.matches(&context));

        let context = HookContext::new("UserPromptSubmit");
        assert!(!matcher.matches(&context));
    }

    #[test]
    fn test_hook_matcher_combined() {
        let matcher = HookMatcher::new()
            .with_tool_name_regex(r"^(Write|Edit)$")
            .with_event_types(vec!["PreToolUse".to_string()])
            .with_required_fields(vec!["file_path".to_string()]);

        // All criteria match
        let input = serde_json::json!({ "file_path": "/tmp/test.txt", "content": "test" });
        let context = HookContext::new("PreToolUse")
            .with_tool_name("Write")
            .with_tool_input(input);
        assert!(matcher.matches(&context));

        // Wrong tool name
        let input = serde_json::json!({ "file_path": "/tmp/test.txt" });
        let context = HookContext::new("PreToolUse")
            .with_tool_name("Bash")
            .with_tool_input(input);
        assert!(!matcher.matches(&context));

        // Wrong event type
        let input = serde_json::json!({ "file_path": "/tmp/test.txt" });
        let context = HookContext::new("PostToolUse")
            .with_tool_name("Write")
            .with_tool_input(input);
        assert!(!matcher.matches(&context));

        // Missing required field
        let input = serde_json::json!({ "content": "test" });
        let context = HookContext::new("PreToolUse")
            .with_tool_name("Write")
            .with_tool_input(input);
        assert!(!matcher.matches(&context));
    }

    #[test]
    fn test_hook_matcher_serialization() {
        let matcher = HookMatcher::new()
            .with_tool_name("Bash")
            .with_tool_name_regex(r"^Bash$");

        let json = serde_json::to_string(&matcher).unwrap();
        let deserialized: HookMatcher = serde_json::from_str(&json).unwrap();

        assert_eq!(matcher.tool_name, deserialized.tool_name);
        assert_eq!(
            matcher.tool_name_regex.as_ref().map(|r| r.as_str()),
            deserialized.tool_name_regex.as_ref().map(|r| r.as_str())
        );
    }

    #[test]
    fn test_hook_context_builder() {
        let context = HookContext::new("PreToolUse")
            .with_tool_name("Bash")
            .with_tool_input(serde_json::json!({"command": "ls"}))
            .with_session_id("session-123");

        assert_eq!(context.event_type, "PreToolUse");
        assert_eq!(context.tool_name, Some("Bash".to_string()));
        assert_eq!(context.session_id, Some("session-123".to_string()));
    }

    #[test]
    fn test_hook_matcher_no_tool_name() {
        let matcher = HookMatcher::new().with_tool_name_regex(r"^Bash$");

        // Context without tool_name should not match when regex is specified
        let context = HookContext::new("UserPromptSubmit");
        assert!(!matcher.matches(&context));
    }

    #[test]
    fn test_hook_matcher_regex_partial_match() {
        // Regex should NOT match partial strings
        let matcher = HookMatcher::new().with_tool_name_regex(r"Write");

        let context = HookContext::new("PreToolUse").with_tool_name("MultiWrite");
        assert!(matcher.matches(&context)); // "Write" is contained

        // To match exact, use anchors
        let matcher = HookMatcher::new().with_tool_name_regex(r"^Write$");
        let context = HookContext::new("PreToolUse").with_tool_name("MultiWrite");
        assert!(!matcher.matches(&context));

        let context = HookContext::new("PreToolUse").with_tool_name("Write");
        assert!(matcher.matches(&context));
    }
}