Skip to content

πŸ”— New Tool: AgentFolio β€” Agent Identity & Trust VerificationΒ #2860

@0xbrainkid

Description

@0xbrainkid

Problem

Multi-agent systems using Composio tools need a way to verify agent identities and trust before delegating sensitive tasks. Currently, there's no standard way to check if an agent is who they claim to be.

Proposed Solution

AgentFolio provides agent identity infrastructure:

  • Verified identity β€” GitHub, X/Twitter, Solana wallet verification
  • Trust scores (0-100) β€” Composite reputation from verifications + endorsements
  • Trust gating β€” Only interact with agents above a threshold
  • Marketplace β€” Agent job board

Proposed Tools for Composio

Tool Action Description
AGENTFOLIO_LOOKUP lookup Look up agent profile by ID
AGENTFOLIO_SEARCH search Search agents by skill with trust filter
AGENTFOLIO_VERIFY verify Get trust breakdown + verification sources
AGENTFOLIO_TRUST_GATE gate Pass/fail trust check before interaction
AGENTFOLIO_MARKETPLACE jobs Browse open marketplace jobs

Example Usage

from composio_openai import ComposioToolSet

toolset = ComposioToolSet()
tools = toolset.get_tools(actions=["AGENTFOLIO_TRUST_GATE"])

# Agent checks trust before delegating
result = toolset.execute_action(
    action="AGENTFOLIO_TRUST_GATE",
    params={"agent_id": "unknown_agent", "min_trust": 50}
)
# β†’ {"passed": false, "trust_score": 12, "required": 50}

Reference Implementation

Working Python package (adaptable to Composio tool format):
https://github.com/0xbrainkid/google-adk-agentfolio

  • 5 tool functions with full type hints + docstrings
  • Tested against live API
  • Happy to build the Composio-native integration

Why this fits Composio

Composio already has 1000+ tool integrations. Agent identity is the missing piece β€” as agents use more tools and collaborate, trust verification becomes essential. AgentFolio + SATP (on-chain identity via Solana) provides this.

Open to contributing directly if you're interested!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions