feat: GDI (Governed Decision Intelligence) conformance driver#7
Open
mj3b wants to merge 4 commits into
Open
Conversation
Implement GDI driver to produce structured-envelope receipts with embedded GDR payloads, capturing decision-making states and ensuring compliance with specified wire formats.
This script serves as a conformance driver for GDI, handling fixture reading and receipt writing.
Added README.md for GDI Driver detailing its purpose, requirements, and usage instructions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a GDI (Governed Decision Intelligence) conformance driver as the 5th
cross-verifying implementation.
Driver:
implementations/gdi/Produces v2 structured-envelope receipts with a GDR payload embedded in
payload.gdr. The GDR captures pre-decision reasoning state before thetool fires: confidence score against institutional thresholds, gate
classification, evidence completeness per source, and accountability chain.
result_hash = sha256(JCS(GDR))seals that payload into the signed receipt.All three conformance checks pass:
@veritasacta/verify --keyparent_receipt_hashlinkageNote on Check 2: this driver uses the shared fixture keypair directly
rather than a hosted JWKS endpoint. Pass
--key $(cat implementations/gdi/key.hex)to
@veritasacta/verify. Happy to add a one-line update toconformance/verify.shto check for
key.hexin the driver directory if that pattern is useful forother drivers.
Relates to microsoft/agent-governance-toolkit#276.