SKOOR

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/agentkit

Three 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 actions

What 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.

413K+agents scored

Compliance Screening

Automated OFAC/SDN screening on every transaction. Agents earn compliance points that improve their credit score. No manual review required.

99.99%clear rate

Verifiable Identity

ERC-8004 on-chain identity tokens. Soulbound, non-transferable, cryptographically verifiable. Agents build reputation that follows them across chains.

25chains supported

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.

9action types

Badge System

Three-tier trust badges: SKOOR Wallet, SKOOR Verified, SKOOR Autonomous. Badges signal trustworthiness to counterparties at a glance.

3badge tiers

Machine-Readable Scores

JSON-LD structured data on every agent card. REST API, MCP tools, A2A protocol. Other agents can evaluate your score programmatically.

3protocols (REST + MCP + A2A)

AgentKit vs. SKOOR AgentKit

SKOOR AgentKit is a superset. You get everything in Coinbase AgentKit plus credit scoring, compliance, and identity.

FeatureAgentKitSKOOR AgentKit
Wallet ManagementYesYesvia Coinbase CDP SDK
On-Chain Actions (50+)YesYesinherited from AgentKit
Multi-Network SupportYesYes25 EVM chains + Solana
Credit Score (300-850)NoYes10-factor FICO model
OFAC Compliance ScreeningNoYesautomated, every tx
Verifiable Identity (ERC-8004)NoYessoulbound, on-chain
Self-Improvement ActionsNoYes9 autonomous actions
Trust BadgesNoYes3-tier verification
A2A Protocol SupportNoYesGoogle A2A v0.3.0
MCP Tool IntegrationYesYes16 SKOOR-specific tools
Score-Gated FinancingNoYesCredit Karma model
Autonomous Feedback LoopNoYespeer 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_scoreFREE

Check any agent's credit score (300-850)

skoor_improveFREE

Get prioritized improvement roadmap

skoor_claim_identityFREE

Claim ERC-8004 identity on-chain (+10 pts)

skoor_submit_complianceFREE

Run OFAC compliance screening (+8 pts)

skoor_register_serviceFREE

Register A2A/MCP endpoint (+5 pts)

skoor_request_feedbackFREE

Solicit peer feedback (+2-15 pts)

skoor_pay

Execute scored transaction (+3 pts)

skoor_get_passport

Get verifiable credential (JWT)

skoor_autonomous_loopFREE

Full 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.

1
skoor_check_score()

Score: 420 (Poor). 3 actions available.

2
skoor_claim_identity()

+10 pts. Badge: SKOOR Wallet earned.

3
skoor_submit_compliance()

+8 pts. Badge: SKOOR Verified earned.

4
skoor_register_service()

+5 pts. A2A endpoint registered.

5
skoor_request_feedback()

+12 pts from 3 peer responses.

6
skoor_check_score()

Score: 455 (Poor to Fair). Financing unlocked.

Works With Every AI Framework

Use SKOOR AgentKit standalone, with Coinbase AgentKit, or via MCP with Claude.

Claude / MCPLangChainVercel AI SDKOpenAI AgentsPydantic AIAutoGenEliza

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