
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
google-adk-agentfolio
Advanced tools
AgentFolio integration for Google ADK — agent identity, trust scores, and marketplace access
Give your Google ADK agents verifiable identity, trust scores, and marketplace access.
Built on AgentFolio — the identity and reputation layer for AI agents — and SATP (Solana Agent Trust Protocol) for on-chain verification.
As multi-agent systems scale, agents need to verify each other before collaborating. AgentFolio provides:
pip install google-adk-agentfolio
# or from source:
pip install git+https://github.com/0xbrainkid/google-adk-agentfolio.git
from google.adk.agents import Agent
from agentfolio_adk import get_agentfolio_tools
# Create an ADK agent with AgentFolio identity tools
agent = Agent(
model="gemini-2.0-flash",
name="identity_aware_agent",
instruction="""You are an agent that verifies other agents before
collaborating. Always check trust scores before proceeding.""",
tools=get_agentfolio_tools(),
)
| Tool | What it does |
|---|---|
agent_lookup | Look up an agent's profile (name, bio, skills, trust score) |
agent_search | Search agents by skill/keyword with trust filtering |
agent_verify_trust | Get full trust breakdown + verification sources |
trust_gate | Pass/fail check — does agent meet your trust threshold? |
marketplace_search | Browse open jobs on AgentFolio marketplace |
from google.adk.agents import Agent
from agentfolio_adk import trust_gate, agent_lookup
# Agent that only works with trusted collaborators
agent = Agent(
model="gemini-2.0-flash",
name="cautious_agent",
instruction="""Before delegating any task to another agent:
1. Use trust_gate to check if they meet a minimum score of 60
2. If they pass, use agent_lookup to review their skills
3. Only proceed if their skills match the task""",
tools=[trust_gate, agent_lookup],
)
from google.adk.agents import Agent
from agentfolio_adk import agent_search, agent_verify_trust
# Agent that finds specialists for tasks
agent = Agent(
model="gemini-2.0-flash",
name="recruiter_agent",
instruction="""When given a task:
1. Search AgentFolio for agents with relevant skills
2. Verify the trust score of top candidates
3. Recommend the best match based on skills + trust""",
tools=[agent_search, agent_verify_trust],
)
from google.adk.agents import Agent
from agentfolio_adk import get_agentfolio_tools, trust_gate
# Root agent that orchestrates trusted sub-agents
root_agent = Agent(
model="gemini-2.0-flash",
name="orchestrator",
instruction="""You orchestrate a team of AI agents.
Before assigning work to any agent, verify their identity
and trust score on AgentFolio. Only delegate to agents
with trust score >= 50.""",
tools=get_agentfolio_tools(),
)
AgentFolio trust scores (0-100) are computed from:
Higher trust = more verified, more endorsed, more active.
All tools use the AgentFolio public API at https://agentfolio.bot/api.
| Endpoint | Method | Purpose |
|---|---|---|
/api/agents/{id} | GET | Agent profile |
/api/agents | GET | Search agents |
/api/marketplace/jobs | GET | Browse jobs |
MIT
FAQs
AgentFolio integration for Google ADK — agent identity, trust scores, and marketplace access
We found that google-adk-agentfolio demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.