Skip to content

0xbrainkid/langchain-agentfolio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ”— langchain-agentfolio

Agent identity, trust & reputation for LangChain β€” powered by AgentFolio & SATP (Solana Agent Trust Protocol).

Give your LangChain agents verified identity, trust-gated interactions, and access to the AgentFolio marketplace.

Install

pip install langchain-agentfolio

Quick Start

Look Up an Agent

from langchain_agentfolio import AgentLookupTool

tool = AgentLookupTool()
result = tool.invoke({"agent_id": "agent_braingrowth"})
print(result)
# β†’ name, bio, skills, trust_score, verification status

Trust-Gate Before Interaction

from langchain_agentfolio import TrustGateTool

gate = TrustGateTool()
check = gate.invoke({"agent_id": "agent_unknown", "min_trust": 50})
# β†’ {"passed": false, "trust_score": 12, "required": 50}

Search for Agents by Skill

from langchain_agentfolio import AgentSearchTool

search = AgentSearchTool()
results = search.invoke({"query": "solana developer", "min_trust": 40})

Use as a Retriever (RAG)

from langchain_agentfolio import AgentProfileRetriever

retriever = AgentProfileRetriever(min_trust=30, max_results=5)
docs = retriever.invoke("smart contract auditing")
for doc in docs:
    print(doc.page_content)

In a LangGraph Agent

from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI
from langchain_agentfolio import (
    AgentLookupTool,
    AgentSearchTool,
    TrustGateTool,
    MarketplaceSearchTool,
)

tools = [
    AgentLookupTool(),
    AgentSearchTool(),
    TrustGateTool(),
    MarketplaceSearchTool(),
]

agent = create_react_agent(ChatOpenAI(model="gpt-4o"), tools)
result = agent.invoke({
    "messages": [("user", "Find me a trusted Solana dev agent and verify their identity")]
})

Tools

Tool Description
AgentLookupTool Get a specific agent's full profile
AgentSearchTool Search agents by skill/name with trust filter
AgentVerifyTool Get trust score breakdown + endorsement count
TrustGateTool Pass/fail check against minimum trust threshold
MarketplaceSearchTool Browse open jobs on AgentFolio marketplace

Retriever

AgentProfileRetriever returns agent profiles as LangChain Document objects β€” perfect for RAG pipelines that need agent identity context.

Why Agent Identity Matters

When AI agents interact with each other, hire services, or handle funds:

  • Who is this agent? β†’ Verified on-chain identity via SATP
  • Can I trust them? β†’ Trust scores from verification, endorsements, track record
  • What can they do? β†’ Skill profiles + marketplace history

AgentFolio is the identity layer. This package makes it native to LangChain.

API

All tools hit the public AgentFolio API at https://agentfolio.bot/api. No API key required for reads. Custom base URL supported:

tool = AgentLookupTool(base_url="https://your-instance.com/api")

Links

  • AgentFolio β€” Agent identity platform
  • SATP β€” Solana Agent Trust Protocol
  • brainAI β€” Multi-agent AI company

License

MIT

About

πŸ”— LangChain tools for AgentFolio β€” agent identity, trust scores & reputation verification for LLM agents

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors