mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 00:08:28 +00:00
agents: add tool policy conformance snapshot (no runtime behavior change) (#6011)
This commit is contained in:
17
src/agents/tool-policy.conformance.ts
Normal file
17
src/agents/tool-policy.conformance.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* Conformance snapshot for tool policy.
|
||||
*
|
||||
* Security note:
|
||||
* - This is static, build-time information (no runtime I/O, no network exposure).
|
||||
* - Intended for CI/tools to detect drift between the implementation policy and
|
||||
* the formal models/extractors.
|
||||
*/
|
||||
|
||||
import { TOOL_GROUPS } from "./tool-policy.js";
|
||||
|
||||
// Tool name aliases are intentionally not exported from tool-policy today.
|
||||
// Keep the conformance snapshot focused on exported policy constants.
|
||||
|
||||
export const TOOL_POLICY_CONFORMANCE = {
|
||||
toolGroups: TOOL_GROUPS,
|
||||
} as const;
|
||||
Reference in New Issue
Block a user