feat: AgentID cryptographic identity for agent pipelines#591
Open
haroldmalikfrimpong-ops wants to merge 1 commit intoOpenBMB:mainfrom
Open
feat: AgentID cryptographic identity for agent pipelines#591haroldmalikfrimpong-ops wants to merge 1 commit intoOpenBMB:mainfrom
haroldmalikfrimpong-ops wants to merge 1 commit intoOpenBMB:mainfrom
Conversation
Adds identity verification tools so ChatDev agents (CEO, Programmer, Reviewer, etc.) can prove their identity before collaborating on sensitive tasks. Closes OpenBMB#587. - functions/function_calling/agentid.py: 4 tools (verify, register, discover, connect) loadable via FunctionManager - functions/edge/conditions.py: 3 identity-aware edge conditions (identity_verified, identity_not_verified, trust_score_above_threshold) - yaml_instance/chatdev_with_identity.yaml: example workflow with identity gate pattern - docs/user_guide/en/agentid_identity.md: integration documentation Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
Implements cryptographic identity verification for ChatDev agents using AgentID, as discussed in #587.
verify_agent_identity,register_agent_identity,discover_agents,send_verified_message) — agents can verify each other before delegating tasks or sharing dataidentity_verified,identity_not_verified,trust_score_above_threshold) — route workflow based on verification statuschatdev_with_identity.yaml) — identity gate pattern where agents are verified before coding beginsdocs/user_guide/en/agentid_identity.md)Why
ChatDev agents collaborate as CEO, Programmer, Reviewer, Tester — but have no verifiable identity. A compromised agent could impersonate any role. AgentID issues ECDSA P-256 certificates per agent and provides a verification API for runtime credential checks.
Test plan
FunctionManager(43 total functions, 4 new)validate_all_yamls.py— 45/45 passed, 0 failedCloses #587
🤖 Generated with Claude Code