feat: add compliance plugin for x402 validation + ERC-8004 identity - #9
Open
GentechLabs wants to merge 3 commits into
Open
feat: add compliance plugin for x402 validation + ERC-8004 identity#9GentechLabs wants to merge 3 commits into
GentechLabs wants to merge 3 commits into
Conversation
added 3 commits
August 25, 2026 01:10
3 actions for GOAT Network agentkit: - validateX402Payment — pre-flight payment checks - validateX402Response — HTTP 402 response validation - checkAgentIdentity — ERC-8004 agent reputation verification Built by GenTech Labs — agent economy infrastructure.
3 actions for GOAT Network agentkit: - validateX402Payment (120 lines) — pre-flight payment checks - validateX402Response (114 lines) — HTTP 402 response validation - checkAgentIdentity (101 lines) — ERC-8004 agent reputation verification 335 lines total. Built by GenTech Labs.
3 actions for GOAT Network agentkit: - validateX402Payment (120 lines) — pre-flight payment checks - validateX402Response (114 lines) — HTTP 402 response validation - checkAgentIdentity (101 lines) — ERC-8004 agent reputation verification 335 lines total. Built by GenTech Labs.
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.
Summary
Adds a compliance plugin to GOAT AgentKit — 3 new actions for pre-flight validation and identity checks.
New Compliance Plugin (3 actions)
1. compliance.validate_x402_payment
Pre-flight checks on x402 payment requests before submission:
2. compliance.validate_x402_response
Validate HTTP 402 responses against the x402 spec:
3. compliance.check_agent_identity
ERC-8004 agent identity verification before transacting:
Why This Matters
GOAT AgentKit has 15 plugins (118 actions) covering wallet, DEX, bridge, x402, and ERC-8004 — but no compliance or pre-flight validation layer. This plugin fills that gap, making it safer for agents to transact autonomously.
Verification