Skip to main content
ClaudeWave

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.

SubagentsOfficial Registry0 stars0 forksJavaScriptUpdated 20d ago
Install as a Claude Code subagent
Method: Clone
Terminal
git clone https://github.com/stillmarcus24/stillos-kya && cp stillos-kya/*.md ~/.claude/agents/
1. Clone the repository and copy the agent .md definitions into ~/.claude/agents (or .claude/agents inside a project).
2. Start a new Claude Code session to load the agents.
3. Delegate work to them with the Task/Agent tool or by name.
Use cases

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.

Featured on ClaudeWave: stillmarcus24/stillos-kya
[![Featured on ClaudeWave](https://claudewave.com/api/badge/stillmarcus24-stillos-kya)](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

stillos-kya alternatives