Does anyone think about governance past the tool call? #375
Closed
qstackfield
started this conversation in
Show and tell (with ECC)
Replies: 1 comment
|
Yes. Hooks catch the tool boundary; they do not fully answer whether the reasoning path was authorized before the tool call. For regulated environments, that upstream policy layer is real work, not decoration. The design I would trust has three separate records:
Then you can compare intent -> policy -> action instead of only inspecting action after the fact. ECC hooks are a practical enforcement layer, but governance above the tool call belongs in a policy/ledger layer with audit hashes and human override points. This is adjacent to where AgentShield and ECC security workflows should go: less trust in prompt prose, more explicit runtime boundaries and inspectable receipts. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hooks are the right instinct.
But who authorized the reasoning that led to the tool call?
I’ve been running agents in regulated environments for a year. Built the governance layer upstream of execution entirely. 28-43ms full round trip. Audit trail, ledger hash, everything. Multi-node. Tested across a private tunnel to a node outside the US.
Hooks catch what happened. This catches whether it was allowed to happen at all.
Curious what others are doing for drift detection and audit trails on the reasoning itself.
All reactions