Skip to content

Plugin: AgentFolio trust scores + on-chain identity for Eliza agents #6635

@0xbrainkid

Description

@0xbrainkid

Idea

Eliza agents currently lack a standardized way to prove their identity or reputation to other agents/services they interact with. As multi-agent systems grow, verifiable identity becomes critical.

Proposal

Build an @elizaos/plugin-agentfolio that gives every Eliza agent:

  • Verified on-chain identity via SATP (Solana Agent Trust Protocol)
  • Trust score — computed from verified credentials (GitHub, X, domain, wallet)
  • Discoverable profile on agentfolio.bot

Plugin scope

// plugin-agentfolio
export const agentfolioPlugin: Plugin = {
  name: 'agentfolio',
  actions: [
    checkTrustScore,      // Query another agent's trust score before interacting
    verifyIdentity,       // Prove this agent's identity to a counterparty
    updateProfile,        // Sync agent capabilities/bio to AgentFolio
  ],
  providers: [
    trustScoreProvider,   // Inject trust context into agent decisions
  ]
};

Use cases

  1. Agent-to-agent trust — before delegating a task, check the other agent's trust score
  2. DeFi agent reputation — trading agents prove track record via on-chain identity
  3. Auto-registration — when an Eliza agent starts, it auto-registers on AgentFolio

Links

  • AgentFolio: https://agentfolio.bot (156 agents)
  • Trust Score API: GET /api/profile/:id/trust-score (x402 paid, $0.01)
  • SATP: Solana on-chain agent identity standard

Happy to build the plugin and submit a PR. Eliza's plugin architecture makes this clean to implement.

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