Merge remote-tracking branch 'origin/rcc/telemetry' into integration/dori-cleanroom

This commit is contained in:
YeonGyu-Kim
2026-04-02 11:13:56 +09:00
11 changed files with 853 additions and 38 deletions

View File

@@ -476,6 +476,15 @@ impl HookRunner {
}
}
struct HookInvocation<'a> {
event: HookEvent,
tool_name: &'a str,
tool_input: &'a str,
tool_output: Option<&'a str>,
is_error: bool,
payload: &'a str,
}
enum HookCommandOutcome {
Allow { parsed: ParsedHookOutput },
Deny { parsed: ParsedHookOutput },