terraphim_multi_agent 1.0.0

Multi-agent system for Terraphim built on roles with rust-genai integration
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
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
use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use std::sync::Arc;
use tracing::{debug, info, warn};

use super::models::*;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub enum HookDecision {
    Allow,
    Block { reason: String },
    Modify { transformed_code: String },
    AskUser { prompt: String },
}

#[derive(Debug, Clone)]
pub struct PreToolContext {
    pub code: String,
    pub language: String,
    pub agent_id: String,
    pub vm_id: String,
    pub metadata: std::collections::HashMap<String, String>,
}

#[derive(Debug, Clone)]
pub struct PostToolContext {
    pub original_code: String,
    pub output: String,
    pub exit_code: i32,
    pub duration_ms: u64,
    pub agent_id: String,
    pub vm_id: String,
}

#[derive(Debug, Clone)]
pub struct PreLlmContext {
    pub prompt: String,
    pub agent_id: String,
    pub conversation_history: Vec<String>,
    pub token_count: usize,
}

#[derive(Debug, Clone)]
pub struct PostLlmContext {
    pub prompt: String,
    pub response: String,
    pub agent_id: String,
    pub token_count: usize,
    pub model: String,
}

#[async_trait]
pub trait Hook: Send + Sync {
    fn name(&self) -> &str;

    async fn pre_tool(&self, _context: &PreToolContext) -> Result<HookDecision, VmExecutionError> {
        Ok(HookDecision::Allow)
    }

    async fn post_tool(
        &self,
        _context: &PostToolContext,
    ) -> Result<HookDecision, VmExecutionError> {
        Ok(HookDecision::Allow)
    }

    async fn pre_llm(&self, _context: &PreLlmContext) -> Result<HookDecision, VmExecutionError> {
        Ok(HookDecision::Allow)
    }

    async fn post_llm(&self, _context: &PostLlmContext) -> Result<HookDecision, VmExecutionError> {
        Ok(HookDecision::Allow)
    }
}

pub struct HookManager {
    hooks: Vec<Arc<dyn Hook>>,
}

impl std::fmt::Debug for HookManager {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("HookManager")
            .field("hook_count", &self.hooks.len())
            .finish()
    }
}

impl HookManager {
    pub fn new() -> Self {
        Self { hooks: Vec::new() }
    }

    pub fn add_hook(&mut self, hook: Arc<dyn Hook>) {
        info!("Registered hook: {}", hook.name());
        self.hooks.push(hook);
    }

    pub async fn run_pre_tool(
        &self,
        context: &PreToolContext,
    ) -> Result<HookDecision, VmExecutionError> {
        for hook in &self.hooks {
            debug!("Running pre-tool hook: {}", hook.name());

            match hook.pre_tool(context).await? {
                HookDecision::Allow => continue,
                decision => {
                    info!("Hook {} returned decision: {:?}", hook.name(), decision);
                    return Ok(decision);
                }
            }
        }

        Ok(HookDecision::Allow)
    }

    pub async fn run_post_tool(
        &self,
        context: &PostToolContext,
    ) -> Result<HookDecision, VmExecutionError> {
        for hook in &self.hooks {
            debug!("Running post-tool hook: {}", hook.name());

            match hook.post_tool(context).await? {
                HookDecision::Allow => continue,
                decision => {
                    info!("Hook {} returned decision: {:?}", hook.name(), decision);
                    return Ok(decision);
                }
            }
        }

        Ok(HookDecision::Allow)
    }

    pub async fn run_pre_llm(
        &self,
        context: &PreLlmContext,
    ) -> Result<HookDecision, VmExecutionError> {
        for hook in &self.hooks {
            debug!("Running pre-LLM hook: {}", hook.name());

            match hook.pre_llm(context).await? {
                HookDecision::Allow => continue,
                decision => {
                    info!("Hook {} returned decision: {:?}", hook.name(), decision);
                    return Ok(decision);
                }
            }
        }

        Ok(HookDecision::Allow)
    }

    pub async fn run_post_llm(
        &self,
        context: &PostLlmContext,
    ) -> Result<HookDecision, VmExecutionError> {
        for hook in &self.hooks {
            debug!("Running post-LLM hook: {}", hook.name());

            match hook.post_llm(context).await? {
                HookDecision::Allow => continue,
                decision => {
                    info!("Hook {} returned decision: {:?}", hook.name(), decision);
                    return Ok(decision);
                }
            }
        }

        Ok(HookDecision::Allow)
    }
}

impl Default for HookManager {
    fn default() -> Self {
        Self::new()
    }
}

pub struct DangerousPatternHook {
    patterns: Vec<regex::Regex>,
}

impl DangerousPatternHook {
    pub fn new() -> Self {
        let patterns = vec![
            regex::Regex::new(r"rm\s+-rf").unwrap(),
            regex::Regex::new(r"format\s+c:").unwrap(),
            regex::Regex::new(r"mkfs\.").unwrap(),
            regex::Regex::new(r"dd\s+if=").unwrap(),
            regex::Regex::new(r":\(\)\{\s*:\|:&\s*\}").unwrap(),
            regex::Regex::new(r"curl.*\|.*sh").unwrap(),
            regex::Regex::new(r"wget.*\|.*sh").unwrap(),
        ];

        Self { patterns }
    }
}

#[async_trait]
impl Hook for DangerousPatternHook {
    fn name(&self) -> &str {
        "dangerous_pattern"
    }

    async fn pre_tool(&self, context: &PreToolContext) -> Result<HookDecision, VmExecutionError> {
        let code_lower = context.code.to_lowercase();

        for pattern in &self.patterns {
            if pattern.is_match(&code_lower) {
                warn!(
                    "Dangerous pattern detected in code: {} (agent: {})",
                    pattern.as_str(),
                    context.agent_id
                );

                return Ok(HookDecision::Block {
                    reason: format!(
                        "Code contains potentially dangerous pattern: {}",
                        pattern.as_str()
                    ),
                });
            }
        }

        Ok(HookDecision::Allow)
    }
}

impl Default for DangerousPatternHook {
    fn default() -> Self {
        Self::new()
    }
}

pub struct SyntaxValidationHook {
    supported_languages: Vec<String>,
}

impl SyntaxValidationHook {
    pub fn new() -> Self {
        Self {
            supported_languages: vec![
                "python".to_string(),
                "javascript".to_string(),
                "bash".to_string(),
                "rust".to_string(),
            ],
        }
    }
}

#[async_trait]
impl Hook for SyntaxValidationHook {
    fn name(&self) -> &str {
        "syntax_validation"
    }

    async fn pre_tool(&self, context: &PreToolContext) -> Result<HookDecision, VmExecutionError> {
        if !self.supported_languages.contains(&context.language) {
            return Ok(HookDecision::Block {
                reason: format!("Unsupported language: {}", context.language),
            });
        }

        if context.code.trim().is_empty() {
            return Ok(HookDecision::Block {
                reason: "Code cannot be empty".to_string(),
            });
        }

        if context.code.len() > 100000 {
            return Ok(HookDecision::Block {
                reason: "Code exceeds maximum length of 100,000 characters".to_string(),
            });
        }

        Ok(HookDecision::Allow)
    }
}

impl Default for SyntaxValidationHook {
    fn default() -> Self {
        Self::new()
    }
}

pub struct ExecutionLoggerHook;

#[async_trait]
impl Hook for ExecutionLoggerHook {
    fn name(&self) -> &str {
        "execution_logger"
    }

    async fn pre_tool(&self, context: &PreToolContext) -> Result<HookDecision, VmExecutionError> {
        info!(
            "Executing {} code for agent {} on VM {}",
            context.language, context.agent_id, context.vm_id
        );
        Ok(HookDecision::Allow)
    }

    async fn post_tool(&self, context: &PostToolContext) -> Result<HookDecision, VmExecutionError> {
        info!(
            "Execution completed for agent {} with exit code {} ({}ms)",
            context.agent_id, context.exit_code, context.duration_ms
        );
        Ok(HookDecision::Allow)
    }
}

pub struct DependencyInjectorHook {
    inject_imports: bool,
}

impl DependencyInjectorHook {
    pub fn new(inject_imports: bool) -> Self {
        Self { inject_imports }
    }
}

#[async_trait]
impl Hook for DependencyInjectorHook {
    fn name(&self) -> &str {
        "dependency_injector"
    }

    async fn pre_tool(&self, context: &PreToolContext) -> Result<HookDecision, VmExecutionError> {
        if !self.inject_imports {
            return Ok(HookDecision::Allow);
        }

        let transformed = match context.language.as_str() {
            "python" => {
                if !context.code.contains("import ") {
                    format!("import sys\nimport os\n\n{}", context.code)
                } else {
                    context.code.clone()
                }
            }
            "javascript" => {
                if !context.code.contains("require(") && !context.code.contains("import ") {
                    format!("// Auto-injected standard modules\n{}", context.code)
                } else {
                    context.code.clone()
                }
            }
            _ => context.code.clone(),
        };

        if transformed != context.code {
            debug!("Injected dependencies for {} code", context.language);
            Ok(HookDecision::Modify {
                transformed_code: transformed,
            })
        } else {
            Ok(HookDecision::Allow)
        }
    }
}

pub struct OutputSanitizerHook;

#[async_trait]
impl Hook for OutputSanitizerHook {
    fn name(&self) -> &str {
        "output_sanitizer"
    }

    async fn post_tool(&self, context: &PostToolContext) -> Result<HookDecision, VmExecutionError> {
        let sensitive_patterns = vec![
            regex::Regex::new(r"(?i)(password|passwd|pwd)\s*[:=]\s*\S+").unwrap(),
            regex::Regex::new(r"(?i)(api[_-]?key|apikey)\s*[:=]\s*\S+").unwrap(),
            regex::Regex::new(r"(?i)(secret|token)\s*[:=]\s*\S+").unwrap(),
            regex::Regex::new(r"\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b").unwrap(),
        ];

        for pattern in &sensitive_patterns {
            if pattern.is_match(&context.output) {
                warn!(
                    "Sensitive information detected in output for agent {}",
                    context.agent_id
                );

                return Ok(HookDecision::Block {
                    reason: "Output contains potential sensitive information".to_string(),
                });
            }
        }

        Ok(HookDecision::Allow)
    }
}

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

    #[tokio::test]
    async fn test_hook_manager() {
        let mut manager = HookManager::new();
        manager.add_hook(Arc::new(ExecutionLoggerHook));

        let context = PreToolContext {
            code: "print('test')".to_string(),
            language: "python".to_string(),
            agent_id: "test-agent".to_string(),
            vm_id: "test-vm".to_string(),
            metadata: HashMap::new(),
        };

        let decision = manager.run_pre_tool(&context).await.unwrap();
        assert_eq!(decision, HookDecision::Allow);
    }

    #[tokio::test]
    async fn test_dangerous_pattern_hook() {
        let hook = DangerousPatternHook::new();

        let dangerous_context = PreToolContext {
            code: "rm -rf /".to_string(),
            language: "bash".to_string(),
            agent_id: "test-agent".to_string(),
            vm_id: "test-vm".to_string(),
            metadata: HashMap::new(),
        };

        let decision = hook.pre_tool(&dangerous_context).await.unwrap();
        assert!(matches!(decision, HookDecision::Block { .. }));

        let safe_context = PreToolContext {
            code: "echo 'hello'".to_string(),
            language: "bash".to_string(),
            agent_id: "test-agent".to_string(),
            vm_id: "test-vm".to_string(),
            metadata: HashMap::new(),
        };

        let decision = hook.pre_tool(&safe_context).await.unwrap();
        assert_eq!(decision, HookDecision::Allow);
    }

    #[tokio::test]
    async fn test_syntax_validation_hook() {
        let hook = SyntaxValidationHook::new();

        let empty_context = PreToolContext {
            code: "   ".to_string(),
            language: "python".to_string(),
            agent_id: "test-agent".to_string(),
            vm_id: "test-vm".to_string(),
            metadata: HashMap::new(),
        };

        let decision = hook.pre_tool(&empty_context).await.unwrap();
        assert!(matches!(decision, HookDecision::Block { .. }));

        let valid_context = PreToolContext {
            code: "print('test')".to_string(),
            language: "python".to_string(),
            agent_id: "test-agent".to_string(),
            vm_id: "test-vm".to_string(),
            metadata: HashMap::new(),
        };

        let decision = hook.pre_tool(&valid_context).await.unwrap();
        assert_eq!(decision, HookDecision::Allow);
    }

    #[tokio::test]
    async fn test_dependency_injector_hook() {
        let hook = DependencyInjectorHook::new(true);

        let context = PreToolContext {
            code: "print('hello')".to_string(),
            language: "python".to_string(),
            agent_id: "test-agent".to_string(),
            vm_id: "test-vm".to_string(),
            metadata: HashMap::new(),
        };

        let decision = hook.pre_tool(&context).await.unwrap();
        assert!(matches!(decision, HookDecision::Modify { .. }));
    }

    #[tokio::test]
    async fn test_output_sanitizer_hook() {
        let hook = OutputSanitizerHook;

        let sensitive_context = PostToolContext {
            original_code: "env".to_string(),
            output: "PASSWORD=secret123".to_string(),
            exit_code: 0,
            duration_ms: 100,
            agent_id: "test-agent".to_string(),
            vm_id: "test-vm".to_string(),
        };

        let decision = hook.post_tool(&sensitive_context).await.unwrap();
        assert!(matches!(decision, HookDecision::Block { .. }));

        let safe_context = PostToolContext {
            original_code: "echo test".to_string(),
            output: "test".to_string(),
            exit_code: 0,
            duration_ms: 100,
            agent_id: "test-agent".to_string(),
            vm_id: "test-vm".to_string(),
        };

        let decision = hook.post_tool(&safe_context).await.unwrap();
        assert_eq!(decision, HookDecision::Allow);
    }
}