@agentradar/eliza-plugin
v0.1.0
Published
ElizaOS plugin for AgentRadar — a VERIFY_AGENT action so Eliza agents can check a wallet/agent's on-chain trust score before interacting or paying.
Maintainers
Readme
@agentradar/eliza-plugin
An ElizaOS plugin that gives your agent on-chain trust awareness via AgentRadar.
VERIFY_AGENTaction — when a message contains an EVM address and asks about safety/trust, Eliza replies with the AgentRadar score, verdict, and risk flags.AGENTRADAR_TRUSTprovider — silently injects trust context for any address mentioned, so the agent reasons with it.
Install
npm install @agentradar/eliza-plugin
# or, once published to the registry: elizaos plugins add @agentradar/eliza-pluginConfigure
Add the plugin to your character and set the API URL (defaults to https://api.vvpro.ai):
import { agentRadarPlugin } from "@agentradar/eliza-plugin";
export const character = {
name: "MyAgent",
plugins: [agentRadarPlugin],
settings: {
AGENTRADAR_API_URL: "https://api.vvpro.ai",
// AGENTRADAR_API_KEY: "optional",
},
};Example
User: "Should I trust 0x2222…2222 before sending payment?" Agent: "AgentRadar trust for 0x2222…2222: 12/100 (BLOCKED). Risk flags: [high] known scam wallet. Report: https://api.vvpro.ai/verify?target=0x2222…"
Status / shipping
Built against the current @elizaos/core Plugin/Action API. Before elizaos publish, pin @elizaos/core and run npm run typecheck. Registry is mid-migration — track elizaOS/eliza#8173.
MIT © AgentRadar
