refactor(exec-approvals): split allowlist evaluation module

This commit is contained in:
Peter Steinberger
2026-02-13 17:39:55 +00:00
parent 81fbfa06ee
commit 83bc73f4ea
3 changed files with 352 additions and 337 deletions

View File

@@ -5,6 +5,7 @@ import os from "node:os";
import path from "node:path";
import { DEFAULT_AGENT_ID } from "../routing/session-key.js";
export * from "./exec-approvals-analysis.js";
export * from "./exec-approvals-allowlist.js";
export type ExecHost = "sandbox" | "gateway" | "node";
export type ExecSecurity = "deny" | "allowlist" | "full";