Sign In

@agentradar/agentkit

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agentradar/agentkit

Coinbase AgentKit action provider for AgentRadar — let any AgentKit agent verify a wallet/agent's trust score before interacting or paying.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@agentradar/agentkit

A Coinbase AgentKit action provider that lets any AgentKit agent verify a wallet/agent's trust before interacting with or paying it.

"Verify before you transact" — the safety primitive for autonomous agents, as a one-line AgentKit action.

Actions

ActionDescription
verify_agentAgentRadar trust score (0-100), verdict, and risk flags for an EVM address.
get_trust_badgeAn embeddable AgentRadar badge image URL (SVG).

Install

npm install @agentradar/agentkit

Use

import { AgentKit } from "@coinbase/agentkit";
import { agentRadarActionProvider } from "@agentradar/agentkit";

const agentkit = await AgentKit.from({
  walletProvider,
  actionProviders: [
    agentRadarActionProvider(), // defaults to https://api.vvpro.ai
    // ...your other providers
  ],
});

Now the LLM can call verify_agent before, say, sending funds or accepting a job:

"Before paying 0xABC… for this task, verify it with AgentRadar."verify_agent({ address: "0xABC…" })"AgentRadar trust for 0xabc…: 12/100 (BLOCKED). Risk flags: [high] known scam wallet…"

Config

agentRadarActionProvider({ baseUrl: "https://api.vvpro.ai", apiKey: process.env.AGENTRADAR_API_KEY });

Status / shipping

Built with the current customActionProvider API (no decorators). Before publishing or opening a PR to coinbase/agentkit, pin the installed @coinbase/agentkit version and run npm run typecheck.

MIT © AgentRadar

Keywords

coinbase

FAQs

Package last updated on 17 Jun 2026

Did you know?

Socket

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.

Install

Related posts