feat: Add AgentPass identity & credential verification plugin#544
Open
kai-agent-free wants to merge 1 commit intosendaifun:v2from
Open
feat: Add AgentPass identity & credential verification plugin#544kai-agent-free wants to merge 1 commit intosendaifun:v2from
kai-agent-free wants to merge 1 commit intosendaifun:v2from
Conversation
Add plugin-agentpass for verifying AI agent identities and credentials using AgentPass (https://agentpass.space). Actions: - VERIFY_AGENT_IDENTITY: Check passport via API + on-chain wallet binding - CHECK_AGENT_CREDENTIAL: Verify MVA credentials with on-chain anchors Addresses sendaifun#531 (Agent Identity Verification Infrastructure) Related to sendaifun#542 (AgentID Interoperability) AgentPass provides: - Portable agent passports with cryptographic auth - MVA Credential standard for agent-to-agent trust - On-chain credential anchoring on Solana - 335+ tests, production API at api.agentpass.space
This was referenced Mar 30, 2026
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
@solana-agent-kit/plugin-agentpass— a plugin for verifying AI agent identities and credentials using AgentPass.Addresses #531 (Agent Identity Verification Infrastructure)
Related to #542 (AgentID Interoperability)
What it does
Two actions for the agent toolkit:
VERIFY_AGENT_IDENTITY
Verifies an agent's passport via AgentPass API and checks on-chain wallet binding on Solana.
CHECK_AGENT_CREDENTIAL
Checks if an agent has specific verifiable credentials (MVA format) with optional on-chain anchor verification.
Architecture
api.agentpass.space) for passport data and credentialsAgentPass Background
Files
src/index.tssrc/actions/verifyAgent.tssrc/actions/checkCredential.tssrc/tools/verify_agent.tssrc/tools/check_credential.tsFollows existing plugin conventions (tsup build, peerDependencies, tsconfig extends).