mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-09-01 09:09:19 +00:00
feat: extend lifecycle hooks with declarative bundles (#176)
* feat: add bundled and declarative hook bundle loading * fix: load plugin hooks only for active extensions * fix: avoid duplicate plugin hook registration * security: harden outbound webhook hooks * fix: pin webhook DNS resolutions for outbound hooks * fix: block IPv4-mapped local webhook targets * style: format webhook hardening changes for CI * fix: pass HookRegistry to ExtensionManager in AppBuilder After merging main (which extracted AppBuilder from main.rs in #198), the ExtensionManager::new() call in app.rs was missing the `hooks` parameter that PR #176 added. This moves HookRegistry creation before init_extensions() and threads it through, matching the existing pattern in main.rs. Co-Authored-By: Claude Opus 4.6 <[email protected]> --------- Co-authored-by: Illia Polosukhin <[email protected]> Co-authored-by: Claude Opus 4.6 <[email protected]>
This commit is contained in:
co-authored by
Illia Polosukhin
Claude Opus 4.6
parent
e42b1e5ec1
commit
e87d7bd066
@@ -0,0 +1,378 @@
|
||||
//! Hook bootstrap helpers for loading bundled, plugin, and workspace hooks.
|
||||
|
||||
use std::collections::HashSet;
|
||||
use std::path::{Path, PathBuf};
|
||||
use std::sync::Arc;
|
||||
|
||||
use crate::channels::wasm::discover_channels;
|
||||
use crate::hooks::bundled::{
|
||||
HookBundleConfig, HookRegistrationSummary, register_bundle, register_bundled_hooks,
|
||||
};
|
||||
use crate::hooks::registry::HookRegistry;
|
||||
use crate::tools::wasm::{discover_dev_tools, discover_tools};
|
||||
use crate::workspace::Workspace;
|
||||
|
||||
/// Summary of hook bootstrap work done at startup.
|
||||
#[derive(Debug, Default, Clone, Copy)]
|
||||
pub struct HookBootstrapSummary {
|
||||
/// Number of bundled built-in hooks registered.
|
||||
pub bundled_hooks: usize,
|
||||
/// Number of plugin-provided rule hooks registered.
|
||||
pub plugin_hooks: usize,
|
||||
/// Number of workspace-provided rule hooks registered.
|
||||
pub workspace_hooks: usize,
|
||||
/// Number of outbound webhook hooks registered.
|
||||
pub outbound_webhooks: usize,
|
||||
/// Number of invalid hook configs skipped.
|
||||
pub errors: usize,
|
||||
}
|
||||
|
||||
impl HookBootstrapSummary {
|
||||
/// Total number of hooks registered across all categories.
|
||||
pub fn total_hooks(&self) -> usize {
|
||||
self.bundled_hooks + self.plugin_hooks + self.workspace_hooks + self.outbound_webhooks
|
||||
}
|
||||
}
|
||||
|
||||
/// Register bundled hooks, then load plugin and workspace hook bundles.
|
||||
pub async fn bootstrap_hooks(
|
||||
registry: &Arc<HookRegistry>,
|
||||
workspace: Option<&Arc<Workspace>>,
|
||||
wasm_tools_dir: &Path,
|
||||
wasm_channels_dir: &Path,
|
||||
active_tool_names: &[String],
|
||||
active_channel_names: &[String],
|
||||
dev_loaded_tool_names: &[String],
|
||||
) -> HookBootstrapSummary {
|
||||
let mut summary = HookBootstrapSummary::default();
|
||||
|
||||
let bundled = register_bundled_hooks(registry).await;
|
||||
summary.bundled_hooks += bundled.hooks;
|
||||
summary.outbound_webhooks += bundled.outbound_webhooks;
|
||||
summary.errors += bundled.errors;
|
||||
|
||||
let plugin = register_plugin_bundles(
|
||||
registry,
|
||||
wasm_tools_dir,
|
||||
wasm_channels_dir,
|
||||
active_tool_names,
|
||||
active_channel_names,
|
||||
dev_loaded_tool_names,
|
||||
)
|
||||
.await;
|
||||
summary.plugin_hooks += plugin.hooks;
|
||||
summary.outbound_webhooks += plugin.outbound_webhooks;
|
||||
summary.errors += plugin.errors;
|
||||
|
||||
if let Some(workspace) = workspace {
|
||||
let workspace_loaded = register_workspace_bundles(registry, workspace).await;
|
||||
summary.workspace_hooks += workspace_loaded.hooks;
|
||||
summary.outbound_webhooks += workspace_loaded.outbound_webhooks;
|
||||
summary.errors += workspace_loaded.errors;
|
||||
}
|
||||
|
||||
summary
|
||||
}
|
||||
|
||||
async fn register_plugin_bundles(
|
||||
registry: &Arc<HookRegistry>,
|
||||
wasm_tools_dir: &Path,
|
||||
wasm_channels_dir: &Path,
|
||||
active_tool_names: &[String],
|
||||
active_channel_names: &[String],
|
||||
dev_loaded_tool_names: &[String],
|
||||
) -> HookRegistrationSummary {
|
||||
let mut summary = HookRegistrationSummary::default();
|
||||
let files = collect_plugin_capability_files(
|
||||
wasm_tools_dir,
|
||||
wasm_channels_dir,
|
||||
active_tool_names,
|
||||
active_channel_names,
|
||||
dev_loaded_tool_names,
|
||||
)
|
||||
.await;
|
||||
|
||||
for (source, path) in files {
|
||||
let registered =
|
||||
register_plugin_bundle_from_capabilities_file(registry, &source, &path).await;
|
||||
summary.merge(registered);
|
||||
}
|
||||
|
||||
summary
|
||||
}
|
||||
|
||||
/// Register a plugin hook bundle from a single capabilities file.
|
||||
///
|
||||
/// This is used by startup bootstrap and by runtime extension activation.
|
||||
pub async fn register_plugin_bundle_from_capabilities_file(
|
||||
registry: &Arc<HookRegistry>,
|
||||
source: &str,
|
||||
path: &Path,
|
||||
) -> HookRegistrationSummary {
|
||||
match load_plugin_bundle_from_capabilities_file(path).await {
|
||||
Ok(Some(bundle)) => register_bundle(registry, source, bundle).await,
|
||||
Ok(None) => HookRegistrationSummary::default(),
|
||||
Err(err) => {
|
||||
tracing::warn!(
|
||||
source = source,
|
||||
path = %path.display(),
|
||||
error = %err,
|
||||
"Skipping plugin hook bundle"
|
||||
);
|
||||
HookRegistrationSummary {
|
||||
hooks: 0,
|
||||
outbound_webhooks: 0,
|
||||
errors: 1,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async fn collect_plugin_capability_files(
|
||||
wasm_tools_dir: &Path,
|
||||
wasm_channels_dir: &Path,
|
||||
active_tool_names: &[String],
|
||||
active_channel_names: &[String],
|
||||
dev_loaded_tool_names: &[String],
|
||||
) -> Vec<(String, PathBuf)> {
|
||||
let mut files: Vec<(String, PathBuf)> = Vec::new();
|
||||
let mut seen: HashSet<String> = HashSet::new();
|
||||
let active_tools: HashSet<&str> = active_tool_names.iter().map(String::as_str).collect();
|
||||
let active_channels: HashSet<&str> = active_channel_names.iter().map(String::as_str).collect();
|
||||
let dev_loaded_tools: HashSet<&str> =
|
||||
dev_loaded_tool_names.iter().map(String::as_str).collect();
|
||||
|
||||
if wasm_tools_dir.exists() {
|
||||
match discover_tools(wasm_tools_dir).await {
|
||||
Ok(tools) => {
|
||||
for (name, tool) in tools {
|
||||
if let Some(path) = tool.capabilities_path
|
||||
&& active_tools.contains(name.as_str())
|
||||
&& !dev_loaded_tools.contains(name.as_str())
|
||||
{
|
||||
insert_unique(&mut files, &mut seen, format!("plugin.tool:{}", name), path);
|
||||
}
|
||||
}
|
||||
}
|
||||
Err(err) => {
|
||||
tracing::warn!(
|
||||
path = %wasm_tools_dir.display(),
|
||||
error = %err,
|
||||
"Failed to discover WASM tool capabilities for plugin hooks"
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
match discover_dev_tools().await {
|
||||
Ok(dev_tools) => {
|
||||
for (name, tool) in dev_tools {
|
||||
if let Some(path) = tool.capabilities_path
|
||||
&& active_tools.contains(name.as_str())
|
||||
&& dev_loaded_tools.contains(name.as_str())
|
||||
{
|
||||
insert_unique(
|
||||
&mut files,
|
||||
&mut seen,
|
||||
format!("plugin.dev_tool:{}", name),
|
||||
path,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
Err(err) => {
|
||||
tracing::debug!(error = %err, "No dev tool capabilities discovered for plugin hooks");
|
||||
}
|
||||
}
|
||||
|
||||
if wasm_channels_dir.exists() {
|
||||
match discover_channels(wasm_channels_dir).await {
|
||||
Ok(channels) => {
|
||||
for (name, channel) in channels {
|
||||
if let Some(path) = channel.capabilities_path
|
||||
&& active_channels.contains(name.as_str())
|
||||
{
|
||||
insert_unique(
|
||||
&mut files,
|
||||
&mut seen,
|
||||
format!("plugin.channel:{}", name),
|
||||
path,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
Err(err) => {
|
||||
tracing::warn!(
|
||||
path = %wasm_channels_dir.display(),
|
||||
error = %err,
|
||||
"Failed to discover WASM channel capabilities for plugin hooks"
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
files.sort_by(|a, b| a.0.cmp(&b.0));
|
||||
files
|
||||
}
|
||||
|
||||
fn insert_unique(
|
||||
files: &mut Vec<(String, PathBuf)>,
|
||||
seen: &mut HashSet<String>,
|
||||
source: String,
|
||||
path: PathBuf,
|
||||
) {
|
||||
let key = path.to_string_lossy().to_string();
|
||||
if seen.insert(key) {
|
||||
files.push((source, path));
|
||||
}
|
||||
}
|
||||
|
||||
async fn load_plugin_bundle_from_capabilities_file(
|
||||
path: &Path,
|
||||
) -> Result<Option<HookBundleConfig>, String> {
|
||||
let bytes = tokio::fs::read(path)
|
||||
.await
|
||||
.map_err(|e| format!("read failed: {e}"))?;
|
||||
|
||||
let value: serde_json::Value =
|
||||
serde_json::from_slice(&bytes).map_err(|e| format!("invalid JSON: {e}"))?;
|
||||
|
||||
let Some(hooks_value) = extract_hooks_section(&value) else {
|
||||
return Ok(None);
|
||||
};
|
||||
|
||||
HookBundleConfig::from_value(hooks_value)
|
||||
.map(Some)
|
||||
.map_err(|e| e.to_string())
|
||||
}
|
||||
|
||||
fn extract_hooks_section(root: &serde_json::Value) -> Option<&serde_json::Value> {
|
||||
root.get("hooks")
|
||||
.or_else(|| root.get("capabilities").and_then(|c| c.get("hooks")))
|
||||
}
|
||||
|
||||
async fn register_workspace_bundles(
|
||||
registry: &Arc<HookRegistry>,
|
||||
workspace: &Arc<Workspace>,
|
||||
) -> HookRegistrationSummary {
|
||||
let mut summary = HookRegistrationSummary::default();
|
||||
|
||||
let paths = match workspace.list_all().await {
|
||||
Ok(paths) => paths,
|
||||
Err(err) => {
|
||||
summary.errors += 1;
|
||||
tracing::warn!(error = %err, "Failed to list workspace paths for hooks");
|
||||
return summary;
|
||||
}
|
||||
};
|
||||
|
||||
let mut hook_paths: Vec<String> = paths
|
||||
.into_iter()
|
||||
.filter(|path| is_workspace_hook_file(path))
|
||||
.collect();
|
||||
hook_paths.sort();
|
||||
|
||||
for path in hook_paths {
|
||||
let doc = match workspace.read(&path).await {
|
||||
Ok(doc) => doc,
|
||||
Err(err) => {
|
||||
summary.errors += 1;
|
||||
tracing::warn!(path = %path, error = %err, "Skipping unreadable workspace hook file");
|
||||
continue;
|
||||
}
|
||||
};
|
||||
|
||||
let parsed: serde_json::Value = match serde_json::from_str(&doc.content) {
|
||||
Ok(value) => value,
|
||||
Err(err) => {
|
||||
summary.errors += 1;
|
||||
tracing::warn!(path = %path, error = %err, "Workspace hook file is not valid JSON");
|
||||
continue;
|
||||
}
|
||||
};
|
||||
|
||||
let bundle = match parse_workspace_bundle(&parsed) {
|
||||
Ok(bundle) => bundle,
|
||||
Err(err) => {
|
||||
summary.errors += 1;
|
||||
tracing::warn!(path = %path, error = %err, "Skipping invalid workspace hook bundle");
|
||||
continue;
|
||||
}
|
||||
};
|
||||
|
||||
let source = format!("workspace:{}", path);
|
||||
let registered = register_bundle(registry, &source, bundle).await;
|
||||
summary.merge(registered);
|
||||
}
|
||||
|
||||
summary
|
||||
}
|
||||
|
||||
fn parse_workspace_bundle(value: &serde_json::Value) -> Result<HookBundleConfig, String> {
|
||||
if let Some(nested) = value.get("hooks") {
|
||||
HookBundleConfig::from_value(nested).map_err(|e| e.to_string())
|
||||
} else {
|
||||
HookBundleConfig::from_value(value).map_err(|e| e.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
fn is_workspace_hook_file(path: &str) -> bool {
|
||||
path == "hooks/hooks.json" || (path.starts_with("hooks/") && path.ends_with(".hook.json"))
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_extract_hooks_section_from_tool_caps() {
|
||||
let value = serde_json::json!({
|
||||
"http": {"allowlist": []},
|
||||
"hooks": {"rules": []}
|
||||
});
|
||||
|
||||
let extracted = extract_hooks_section(&value).unwrap();
|
||||
assert!(extracted.get("rules").is_some());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_extract_hooks_section_from_channel_caps() {
|
||||
let value = serde_json::json!({
|
||||
"type": "channel",
|
||||
"capabilities": {
|
||||
"hooks": {
|
||||
"rules": []
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
let extracted = extract_hooks_section(&value).unwrap();
|
||||
assert!(extracted.get("rules").is_some());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_workspace_hook_file_filter() {
|
||||
assert!(is_workspace_hook_file("hooks/hooks.json"));
|
||||
assert!(is_workspace_hook_file("hooks/redact.hook.json"));
|
||||
assert!(!is_workspace_hook_file("hooks/readme.md"));
|
||||
assert!(!is_workspace_hook_file("MEMORY.md"));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_parse_workspace_bundle_wrapped_hooks() {
|
||||
let value = serde_json::json!({
|
||||
"hooks": {
|
||||
"rules": [
|
||||
{
|
||||
"name": "append-bang",
|
||||
"points": ["beforeInbound"],
|
||||
"append": "!"
|
||||
}
|
||||
]
|
||||
}
|
||||
});
|
||||
|
||||
let bundle = parse_workspace_bundle(&value).unwrap();
|
||||
assert_eq!(bundle.rules.len(), 1);
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
+20
-3
@@ -3,9 +3,11 @@
|
||||
use std::time::Duration;
|
||||
|
||||
use async_trait::async_trait;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
/// Points in the agent lifecycle where hooks can be attached.
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
pub enum HookPoint {
|
||||
/// Before processing an inbound user message.
|
||||
BeforeInbound,
|
||||
@@ -21,8 +23,22 @@ pub enum HookPoint {
|
||||
TransformResponse,
|
||||
}
|
||||
|
||||
impl HookPoint {
|
||||
/// Human-readable hook point identifier.
|
||||
pub fn as_str(&self) -> &'static str {
|
||||
match self {
|
||||
HookPoint::BeforeInbound => "beforeInbound",
|
||||
HookPoint::BeforeToolCall => "beforeToolCall",
|
||||
HookPoint::BeforeOutbound => "beforeOutbound",
|
||||
HookPoint::OnSessionStart => "onSessionStart",
|
||||
HookPoint::OnSessionEnd => "onSessionEnd",
|
||||
HookPoint::TransformResponse => "transformResponse",
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Contextual data carried with each hook invocation.
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||
pub enum HookEvent {
|
||||
/// An inbound user message about to be processed.
|
||||
Inbound {
|
||||
@@ -133,7 +149,8 @@ impl HookOutcome {
|
||||
}
|
||||
|
||||
/// How to handle hook execution failures.
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
|
||||
#[serde(rename_all = "snake_case")]
|
||||
pub enum HookFailureMode {
|
||||
/// On error/timeout, continue processing as if the hook returned `ok()`.
|
||||
FailOpen,
|
||||
|
||||
@@ -12,8 +12,14 @@
|
||||
//! Hooks are executed in priority order (lower number = higher priority).
|
||||
//! Each hook can pass through, modify content, or reject the event.
|
||||
|
||||
pub mod bootstrap;
|
||||
pub mod bundled;
|
||||
pub mod hook;
|
||||
pub mod registry;
|
||||
|
||||
pub use bootstrap::{HookBootstrapSummary, bootstrap_hooks};
|
||||
pub use bundled::{
|
||||
HookBundleConfig, HookRegistrationSummary, register_bundle, register_bundled_hooks,
|
||||
};
|
||||
pub use hook::{Hook, HookContext, HookError, HookEvent, HookFailureMode, HookOutcome, HookPoint};
|
||||
pub use registry::HookRegistry;
|
||||
|
||||
+54
-1
@@ -39,7 +39,22 @@ impl HookRegistry {
|
||||
/// Lower priority number = runs first.
|
||||
pub async fn register_with_priority(&self, hook: Arc<dyn Hook>, priority: u32) {
|
||||
let mut hooks = self.hooks.write().await;
|
||||
hooks.push(HookEntry { hook, priority });
|
||||
let hook_name = hook.name().to_string();
|
||||
|
||||
if let Some(existing) = hooks
|
||||
.iter_mut()
|
||||
.find(|entry| entry.hook.name() == hook_name)
|
||||
{
|
||||
tracing::warn!(
|
||||
hook = %hook_name,
|
||||
"Replacing existing hook registration with same name"
|
||||
);
|
||||
existing.hook = hook;
|
||||
existing.priority = priority;
|
||||
} else {
|
||||
hooks.push(HookEntry { hook, priority });
|
||||
}
|
||||
|
||||
hooks.sort_by_key(|e| e.priority);
|
||||
}
|
||||
|
||||
@@ -346,6 +361,44 @@ mod tests {
|
||||
assert_eq!(names, vec!["hook-a", "hook-b"]);
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn test_register_duplicate_name_replaces_existing() {
|
||||
let registry = HookRegistry::new();
|
||||
|
||||
registry
|
||||
.register_with_priority(
|
||||
Arc::new(ModifyHook {
|
||||
name: "dup".into(),
|
||||
suffix: "-A".into(),
|
||||
points: vec![HookPoint::BeforeInbound],
|
||||
}),
|
||||
100,
|
||||
)
|
||||
.await;
|
||||
|
||||
registry
|
||||
.register_with_priority(
|
||||
Arc::new(ModifyHook {
|
||||
name: "dup".into(),
|
||||
suffix: "-B".into(),
|
||||
points: vec![HookPoint::BeforeInbound],
|
||||
}),
|
||||
10,
|
||||
)
|
||||
.await;
|
||||
|
||||
let names = registry.list().await;
|
||||
assert_eq!(names, vec!["dup"]);
|
||||
|
||||
let result = registry.run(&test_event()).await.unwrap();
|
||||
match result {
|
||||
HookOutcome::Continue {
|
||||
modified: Some(value),
|
||||
} => assert_eq!(value, "hello-B"),
|
||||
other => panic!("expected modified output, got {other:?}"),
|
||||
}
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn test_priority_ordering() {
|
||||
let registry = HookRegistry::new();
|
||||
|
||||
Reference in New Issue
Block a user