Know Your Agent (KYA): drop-in counterparty trust check for agent-to-agent commerce — CLEAR/REVIEW/BLOCK, OFAC + on-chain wallet signals, signed receipt. npm + MCP.
git clone https://github.com/stillmarcus24/stillos-kya && cp stillos-kya/*.md ~/.claude/agents/Subagents overview
# stillos-kya — Know Your Agent
**The trust toll for agent-to-agent commerce.** Before your AI agent pays another agent, run one check: is the counterparty sanctioned? Is its wallet a scam/contract/drained? StillOS returns a fail-closed **CLEAR / REVIEW / BLOCK** verdict — OFAC SDN screen + live on-chain wallet signals — with an **Ed25519-signed receipt** you can attach to the transaction as proof-of-diligence.
> a16z (Big Ideas 2026) calls "Know Your Agent" — signed agent credentials + counterparty trust — the prerequisite for merchants to let agents onto payment rails. This is a working drop-in for it.
## Install
```bash
npm install stillos-kya
```
## Use — one call
```js
const { kya } = require('stillos-kya');
const r = await kya({ name: 'Acme Agent', wallet: '0xabc...' });
if (!r.allowed) throw new Error(`counterparty ${r.verdict}`); // CLEAR | REVIEW | BLOCK
// r.receipt -> { hash, signature, verify } (signed, verifiable proof-of-screening)
```
## Use — gate an x402 / express route in one line
```js
const { kyaGate } = require('stillos-kya');
// Every payment through this route runs a counterparty trust-check first.
app.post('/pay-agent', kyaGate({ blockOnReview: false }), async (req, res) => {
// req.kya = { verdict, allowed, checks, receipt, ... }
// ...proceed to pay; blocked counterparties never reach here
});
```
## Tiers
- **Free:** unsigned verdict — the answer, for triage.
- **Paid (x402 / API key):** the **signed, independently-verifiable receipt** — the proof-of-diligence that matters in a dispute. Pass `xPayment` or `apiKey` in opts.
Pricing + full endpoint reference: https://nolawealthfinancial.com/notary
## Why signed matters
An unsigned "looks fine" is worthless if a counterparty later turns out sanctioned or fraudulent. A StillOS signed receipt is cryptographic proof that you screened *before* you paid — the audit artifact that protects you.
What people ask about stillos-kya
What is stillmarcus24/stillos-kya?
+
stillmarcus24/stillos-kya is subagents for the Claude AI ecosystem. Know Your Agent (KYA): drop-in counterparty trust check for agent-to-agent commerce — CLEAR/REVIEW/BLOCK, OFAC + on-chain wallet signals, signed receipt. npm + MCP. It has 0 GitHub stars and was last updated 20d ago.
How do I install stillos-kya?
+
You can install stillos-kya by cloning the repository (https://github.com/stillmarcus24/stillos-kya) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is stillmarcus24/stillos-kya safe to use?
+
stillmarcus24/stillos-kya has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.
Who maintains stillmarcus24/stillos-kya?
+
stillmarcus24/stillos-kya is maintained by stillmarcus24. The last recorded GitHub activity is from 20d ago, with 0 open issues.
Are there alternatives to stillos-kya?
+
Yes. On ClaudeWave you can browse similar subagents at /categories/agents, sorted by popularity or recent activity.
Deploy stillos-kya to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/stillmarcus24-stillos-kya)<a href="https://claudewave.com/repo/stillmarcus24-stillos-kya"><img src="https://claudewave.com/api/badge/stillmarcus24-stillos-kya" alt="Featured on ClaudeWave: stillmarcus24/stillos-kya" width="320" height="64" /></a>More Subagents
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
The agent that grows with you
Java 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Build Agentic workflows, RAG pipelines, with rich AI model and tool support on one collaborative workspace. Deploy on cloud, VPC, or self-hosted, so teams move from prototype to production without rebuilding the stack.
The agent engineering platform.
Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.