
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
Know Your Agent — trust scoring for AI agents. Check any wallet's trust score, verify ERC-8004 identity, get tier. Zero dependencies.
Trust scoring for AI agents. Check any wallet's trust score, verify ERC-8004 identity, get tier. Zero dependencies.
npm install agent-kya
Also available as: pip install agent-kya
import kya from 'agent-kya';
// Trust score (0–100) — FREE, no API key
const { score, tier } = await kya.check('0xABC...');
console.log(score); // 73
console.log(tier); // 'trusted'
// Quick boolean
if (await kya.isTrusted('0xABC...', 50)) {
// safe to transact
}
Every AI agent that transacts with another agent needs to answer one question: should I trust this address?
kya answers it in one line. No signup, no API key, no payment for basic checks.
| Function | What it does |
|---|---|
kya.check(address) | Trust score 0–100, tier, components, blocked status |
kya.verify(address) | ERC-8004 identity verification (registered agent?) |
kya.tier(address) | Trust tier + transaction limits |
kya.batchCheck(addresses) | Batch trust check (max 10) |
kya.framework() | Scoring methodology, tiers, endpoints |
kya.isTrusted(address, minScore?) | Quick boolean: score ≥ minScore and not blocked |
| Function | What it does |
|---|---|
kya.deepAnalysis(address) | Behavioral signals, velocity scoring, anomaly flags, recommendation |
import kya from 'kya';
async function payAgent(agentAddress: string, amount: number) {
const trust = await kya.check(agentAddress);
if (trust.blocked) throw new Error('Agent is sanctioned');
if (trust.score < 20) throw new Error('Trust too low');
// Proceed with payment...
}
const { verified, agentId } = await kya.verify('0x...');
if (!verified) {
console.log('Not a registered agent');
}
const results = await kya.batchCheck([
'0xAgent1...',
'0xAgent2...',
'0xAgent3...',
]);
results.forEach(r => console.log(r.address, r.score, r.tier));
const deep = await kya.deepAnalysis('0x...');
console.log(deep.recommendation); // 'allow' | 'review' | 'block'
console.log(deep.behavioral.anomalyFlags);
import kya from 'agent-kya';
kya.configure({ baseUrl: 'https://my-kya-server.com' });
| Tier | Score | Max per TX | Requirements |
|---|---|---|---|
| Open | 0–19 | $1 | Wallet + sanctions pass |
| Verified | 20–49 | $1,000 | ERC-8004 identity + wallet history |
| Trusted | 50–79 | $10,000 | Operator KYB + Travel Rule |
| Enterprise | 80–100 | Unlimited | Full KYB + trust bond + SLA |
kya queries the AsterPay KYA API which aggregates:
All free endpoints require no authentication. The API is rate-limited but generous for normal use.
pip install asterpay[langchain]pip install asterpay[crewai]npx @asterpay/mcp-servernpm install @asterpay/agentkit-kyaMIT — AsterPay
FAQs
Know Your Agent — trust scoring for AI agents. Check any wallet's trust score, verify ERC-8004 identity, get tier. Zero dependencies.
The npm package agent-kya receives a total of 1 weekly downloads. As such, agent-kya popularity was classified as not popular.
We found that agent-kya 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.
Did you know?

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.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.