agentic-terminal — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited agentic-terminal (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
AT Directory is the agent commerce discovery surface for Bitcoin- and Tether-aligned payments. It indexes merchants that sell products, services, APIs, or content and accept Lightning, BOLT12, L402, or USDT (any chain), with trust attestations issued through Observer Protocol. It is not in the payment path — you discover merchants here and pay the merchant directly.
All three hit the same data and are anonymous + ungated (no credential to discover or transact).
A. Hosted MCP (recommended — lowest friction, no install). Point any MCP-compliant client at the hosted URL:
{ "mcpServers": { "at-directory": { "url": "https://mcp.agenticterminal.ai/mcp" } } }B. Local MCP (npm). For air-gapped or offline-first setups:
npm install -g @agenticterminal/mcp-server # Node >= 20
at-directory-mcp # stdio MCP serverC. Plain REST (no MCP client needed). For agent runtimes that don't speak MCP (OpenClaw, custom Lightning-native agents) — just HTTP:
curl 'https://mcp.agenticterminal.ai/v1/merchants?rail=lightning&category=gift-cards'
curl 'https://mcp.agenticterminal.ai/v1/merchants/bitrefill'
curl 'https://mcp.agenticterminal.ai/v1/categories'
curl 'https://mcp.agenticterminal.ai/v1/rails'
curl -X POST 'https://mcp.agenticterminal.ai/v1/merchants/bitrefill/verify?rail=lightning'REST endpoints return the same JSON as the matching MCP tool (search_merchants ↔ GET /v1/merchants, get_merchant ↔ GET /v1/merchants/{id}, etc.), including the agent_identity field.
The MCP tool surface (paths A/B): search_merchants, get_merchant, verify_payment_endpoint, list_categories, list_rails, whoami.
Each merchant carries two independent signals. They do not imply each other.
OP trust tier (how verified the _merchant_ is):
Agent-callable tier (how you _transact_):
full-api — you complete the purchase end to end programmatically.structured-handoff — you pay autonomously from a structured request; fulfillment is human-handled.human-checkout — you discover the merchant but a human must complete a web checkout.Worked examples:
full-api → you can buy now, but trust is self-asserted. Good for low-value, reversible buys.human-checkout → endpoints verified, but you cannot complete autonomously; surface to a human.human-checkout → discovery only; weakest combination for autonomous action.full-api → strongest: verified and fully programmatic.Reason about both before transacting. Never collapse them into a single "is this good" score.
// USDT-on-Tron gift-card merchants
search_merchants({ rail: 'usdt', chain: 'tron', category: 'gift-cards' });
// Fully agent-callable Lightning merchants, verified tier only
search_merchants({ rail: 'lightning', agent_callable_tier: 'full-api', trust_tier_min: 2 });
// Full record before transacting
get_merchant({ id: 'bitrefill' });
// Liveness check before committing to a handoff
verify_payment_endpoint({ merchant_id: 'bitrefill', rail: 'usdt' });Every response echoes agent_identity. Reads are ungated: anonymous and credentialed callers see all tiers with the same limits — you do not need a credential to discover or transact. The field is honest signal you can branch on if you choose.
After get_merchant, the agent_endpoints object (when present) tells you how to transact:
npm: package for this merchant. Connect to it and use _its_ tools to complete the purchase. Example: Bitrefill exposes https://api.bitrefill.com/mcp.mcp_server, different protocol; either is sufficient to transact. Convention: mcp_server and rest_api are _connection surfaces_; api_docs/openapi_url are _documentation_; auth_note is prose."Requires Bitrefill API key (bitrefill.com/account/developers); embed as /mcp/<API_KEY>". Always check auth_note on every full-api merchant before connecting — different merchants authenticate differently.Rail mechanics for structured-handoff / human-checkout:
WWW-Authenticate: L402 challenge to your payer, pay, retry with the token.verify_payment_endpoint first.Reads (search, get_merchant, verify) need no credential. Present an Observer Protocol DirectoryAccessCredential only to raise rate limits and to submit reviews/notes.
X-AT-Credential header (base64url-encoded JSON).AT_CREDENTIAL to the base64url-encoded credential JSON.Confirm state any time with whoami() — it reports authenticated, tier_cap, and limits without running a real query.
402index.io; the directory does not duplicate it.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.