
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
phidata-agentfolio
Advanced tools
AgentFolio integration for Phidata — agent identity, trust scores, and marketplace access
Agent identity, trust scores, and reputation verification for Phidata agents — powered by AgentFolio and SATP (Solana Agent Trust Protocol).
pip install phidata-agentfolio
from phi.agent import Agent
from phi.model.openai import OpenAIChat
from phidata_agentfolio import AgentSearchTool, TrustGateTool
agent = Agent(
model=OpenAIChat(id="gpt-4o"),
tools=[AgentSearchTool(), TrustGateTool()],
instructions=[
"You help find and verify AI agents.",
"Always check trust scores before recommending agents.",
],
show_tool_calls=True,
)
agent.print_response(
"Find agents with Solana skills and trust score above 50"
)
| Tool | Purpose |
|---|---|
AgentLookupTool | Look up agent profiles (name, bio, skills, trust score) |
AgentSearchTool | Search agents by skill with trust filtering |
AgentVerifyTool | Get full trust breakdown + endorsement history |
TrustGateTool | Pass/fail trust gating before agent interaction |
MarketplaceSearchTool | Browse open jobs on the AgentFolio marketplace |
from phi.agent import Agent
from phi.model.openai import OpenAIChat
from phidata_agentfolio import TrustGateTool, AgentVerifyTool
# Agent that verifies trust before collaborating
verifier = Agent(
model=OpenAIChat(id="gpt-4o"),
tools=[TrustGateTool(), AgentVerifyTool()],
instructions=[
"Before any agent interaction, verify trust score >= 50.",
"If trust check fails, explain why and refuse collaboration.",
"Show verification proofs when available.",
],
)
# Gate check
verifier.print_response(
"Check if agent_braingrowth has trust score above 50"
)
from phi.agent import Agent
from phi.model.openai import OpenAIChat
from phidata_agentfolio import (
AgentSearchTool,
AgentVerifyTool,
TrustGateTool,
MarketplaceSearchTool,
)
# Recruiter agent — finds and verifies agents
recruiter = Agent(
name="Recruiter",
model=OpenAIChat(id="gpt-4o"),
tools=[AgentSearchTool(), TrustGateTool(), AgentVerifyTool()],
instructions=[
"Find agents with required skills.",
"Only recommend agents with trust >= 50.",
"Provide verification details for shortlisted agents.",
],
)
# Job manager — browses marketplace
job_manager = Agent(
name="Job Manager",
model=OpenAIChat(id="gpt-4o"),
tools=[MarketplaceSearchTool()],
instructions=["Browse and summarize available marketplace jobs."],
)
# Use in a team
from phi.agent import AgentTeam
team = AgentTeam(
agents=[recruiter, job_manager],
instructions=["Coordinate to match agents with available jobs."],
)
team.print_response(
"Find open Solana jobs and match them with trusted agents"
)
MIT
FAQs
AgentFolio integration for Phidata — agent identity, trust scores, and marketplace access
We found that phidata-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.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.