Powered by Coinbase
SKOOR AgentKit
Credit scoring, compliance screening, and verifiable identity for AI agents. The trust layer Coinbase AgentKit needs.
AgentKit gives agents wallets and on-chain actions. SKOOR gives them a credit score (300-850), OFAC compliance, and the ability to improve their reputation autonomously.
npm install @skoor/agentkitThree Lines to a Scored Agent
Check any agent's credit score. No API key required for reads.
Standalone
import { SkoorClient } from "@skoor/agentkit";
const skoor = new SkoorClient();
const { score, tier } = await skoor.checkScore("0x...");
// => { score: 720, tier: "good" }
const plan = await skoor.getImprovementPlan("0x...");
// => [{ action: "claim", pointsEstimate: 10 }, ...]With Coinbase AgentKit
import { AgentKit } from "@coinbase/agentkit";
import { skoorActionProvider } from "@skoor/agentkit";
const agent = await AgentKit.from({
actionProviders: [skoorActionProvider()],
});
// Agent now has 9 SKOOR actions + 50 AgentKit actionsWhat SKOOR AgentKit Adds
Everything Coinbase AgentKit does, plus the trust infrastructure autonomous agents need.
Credit Scoring
Every agent gets a 300-850 score based on 10 factors. Payment history, compliance, longevity, behavioral integrity, peer reputation, transaction volume, service diversity.
Compliance Screening
Automated OFAC/SDN screening on every transaction. Agents earn compliance points that improve their credit score. No manual review required.
Verifiable Identity
ERC-8004 on-chain identity tokens. Soulbound, non-transferable, cryptographically verifiable. Agents build reputation that follows them across chains.
Autonomous Self-Improvement
Agents check their own score, get an improvement roadmap, and execute actions automatically. Claim identity, request feedback, register services — all via API.
Badge System
Three-tier trust badges: SKOOR Wallet, SKOOR Verified, SKOOR Autonomous. Badges signal trustworthiness to counterparties at a glance.
Machine-Readable Scores
JSON-LD structured data on every agent card. REST API, MCP tools, A2A protocol. Other agents can evaluate your score programmatically.
AgentKit vs. SKOOR AgentKit
SKOOR AgentKit is a superset. You get everything in Coinbase AgentKit plus credit scoring, compliance, and identity.
| Feature | AgentKit | SKOOR AgentKit |
|---|---|---|
| Wallet Management | Yes | Yesvia Coinbase CDP SDK |
| On-Chain Actions (50+) | Yes | Yesinherited from AgentKit |
| Multi-Network Support | Yes | Yes25 EVM chains + Solana |
| Credit Score (300-850) | No | Yes10-factor FICO model |
| OFAC Compliance Screening | No | Yesautomated, every tx |
| Verifiable Identity (ERC-8004) | No | Yessoulbound, on-chain |
| Self-Improvement Actions | No | Yes9 autonomous actions |
| Trust Badges | No | Yes3-tier verification |
| A2A Protocol Support | No | YesGoogle A2A v0.3.0 |
| MCP Tool Integration | Yes | Yes16 SKOOR-specific tools |
| Score-Gated Financing | No | YesCredit Karma model |
| Autonomous Feedback Loop | No | Yespeer reputation system |
9 Actions for Autonomous Agents
Every action is available as a standalone function, an AgentKit action provider, or an MCP tool.
skoor_check_scoreFREECheck any agent's credit score (300-850)
skoor_improveFREEGet prioritized improvement roadmap
skoor_claim_identityFREEClaim ERC-8004 identity on-chain (+10 pts)
skoor_submit_complianceFREERun OFAC compliance screening (+8 pts)
skoor_register_serviceFREERegister A2A/MCP endpoint (+5 pts)
skoor_request_feedbackFREESolicit peer feedback (+2-15 pts)
skoor_payExecute scored transaction (+3 pts)
skoor_get_passportGet verifiable credential (JWT)
skoor_autonomous_loopFREEFull self-improvement cycle in one call
The Autonomous Self-Improvement Loop
Agents that use SKOOR AgentKit get measurably better over time. No human intervention required.
skoor_check_score()Score: 420 (Poor). 3 actions available.
skoor_claim_identity()+10 pts. Badge: SKOOR Wallet earned.
skoor_submit_compliance()+8 pts. Badge: SKOOR Verified earned.
skoor_register_service()+5 pts. A2A endpoint registered.
skoor_request_feedback()+12 pts from 3 peer responses.
skoor_check_score()Score: 455 (Poor to Fair). Financing unlocked.
Deep Dive
Explore every aspect of SKOOR AgentKit in detail.
Overview
What is SKOOR AgentKit? (no code needed)
Quickstart
Score your first agent in 5 minutes
Frameworks
Claude, LangChain, Vercel AI SDK, OpenAI
All 9 Actions
Complete action reference with code examples
Agent Wallets
Score-gated spending limits
x402 Payments
Score-verified transaction facilitation
Fund Your Agent
Get USDC into your agent's wallet
Scoring Methodology
The 10-factor credit model explained
Badge System
3-tier trust verification for agents
Compliance
Automated OFAC screening for agents
Autonomous Loop
Self-improvement without human intervention
SKOOR vs. AgentKit
Complete feature comparison
Virtuals Protocol
Score 46K+ active Virtuals agents
Works With Every AI Framework
Use SKOOR AgentKit standalone, with Coinbase AgentKit, or via MCP with Claude.
Frequently Asked Questions
What is the difference between AgentKit and SKOOR AgentKit?
Coinbase AgentKit provides wallet management and 50+ on-chain actions (transfers, swaps, deployments). SKOOR AgentKit adds the trust layer: credit scoring (300-850), OFAC compliance screening, verifiable identity, and autonomous self-improvement. SKOOR wraps AgentKit — you get everything in both.
Do I need Coinbase AgentKit to use SKOOR AgentKit?
No. SKOOR AgentKit works standalone — just import SkoorClient and call the REST API directly. AgentKit is an optional peer dependency. When used together, SKOOR actions appear alongside AgentKit's 50+ actions in your AI framework.
How much does it cost?
Score checks, improvement roadmaps, and compliance screening are free. Settlement transactions cost 25 basis points. Enriched profiles cost $0.02. The npm package is MIT licensed.
What chains are supported?
SKOOR indexes agents across 25 EVM chains including Base, Ethereum, Polygon, Arbitrum, BSC, Celo, and more. Score data is chain-agnostic — an agent on Base and an agent on Arbitrum are scored with the same 10-factor model.
How is this different from Skyfire KYA?
Skyfire offers binary Know-Your-Agent (yes/no). SKOOR provides a graduated 300-850 credit score with 10 factors, improvement roadmaps, and autonomous self-improvement actions. Binary screening tells you if an agent is allowed. SKOOR tells you how trustworthy it is.
Give Your Agents a Credit Score
Install @skoor/agentkit and your agents can check, improve, and prove their trustworthiness autonomously.
npm install @skoor/agentkit