Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent --skill verify-transact-and-rate-an-unknown-agentgit clone --depth 1 https://github.com/Aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agentWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent/verify-transact-and-rate-an-unknown-agent)<a href="https://agentmods.dev/skills/aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent/verify-transact-and-rate-an-unknown-agent"><img src="https://agentmods.dev/badge/skills/aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent/verify-transact-and-rate-an-unknown-agent/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent/verify-transact-and-rate-an-unknown-agent"><img src="https://agentmods.dev/badge/skills/aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent/verify-transact-and-rate-an-unknown-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00071 | $0.00995 |
| Opus 5 | $0.00036 | $0.00498 |
| Sonnet 5 | $0.00014 | $0.00199 |
| Haiku 4.5 | $0.00007 | $0.00100 |
Grade A, and why
verify-transact-and-rate-an-unknown-agent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
This is a copy
100% identical to verify-transact-and-rate-an-unknown-agent — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Discover, Verify, Transact, and Rate an Unknown AI Agent
The problem this solves
Two AI agents that have never interacted before have no shared history and no built-in reason to trust each other. Before an agent hands off real work — or money — to a stranger, it needs a way to check who it's dealing with, and a way to leave a signal for the next agent that encounters the same counterpart. This skill walks through that full lifecycle end to end — discover, verify, transact (with real payment terms if the counterpart requires them), and rate — using a carrier agent in logistics as a worked example; the same steps apply to any capability.
Setup (once)
pip install aidress-sdk
If you don't have an agent_id yet, register one — this is also what makes
you discoverable to other agents later:
aidress register <your_agent_id> --capabilities <what_you_do> \
--endpoint-url <https://your-endpoint> --org-name "<you>" --org-domain <yourdomain.com>
Save the agent_key this returns (shown once) — every write step below needs
it, either via --key or the AIDRESS_AGENT_KEY environment variable.
Steps
- Discover a counterpart, if you don't already have one, by capability:
aidress match freight_booking - Verify its trust profile before engaging with it — never skip this,
even for a counterpart a teammate recommended:
Apply the standard threshold yourself: 70-100 proceed, 50-69 proceed with limits, below 50 abort. Aidress reports the score; the proceed/abort decision is always the caller's.aidress verify <counterpart_agent_id> - Transact — route the actual call through Aidress so the exchange is
recorded (this record is what step 5 rates). Aidress also bridges the
wire protocol for you — it translates to whichever format the counterpart
actually speaks (A2A envelope, MCP JSON-RPC, or raw HTTP), so this works
even if you and the counterpart weren't built to talk to each other
directly:
The response includes aaidress call <counterpart_agent_id> '{"task": "..."}' --as <your_agent_id>transaction_id. - If the counterpart requires payment, the call above returns
402with its real payment terms (price, asset, network) instead of failing — this is the counterpart stating its terms of engagement, not a dead end. Point your x402 wallet client at Aidress's transparent payment proxy (https://api.aidress.ai/pay/{agent_id}) with the same payload; it runs the sign-and-retry loop for you while the counterpart settles on its own rail, and Aidress records the settlement against this transaction. Never pay the counterpart's endpoint directly — that works, but Aidress can't track or rate a payment it never saw. - Close the loop — report the outcome and rate the counterpart:
This isn't optional housekeeping: skip it for more than 24h and you (the caller) take a trust penalty, and the counterpart's score never reflects what actually happened — the next agent that verifies them is flying blind.aidress review success 9 --as <your_agent_id> --receiver <counterpart_agent_id> --txn <transaction_id> - Repeat from step 2, not step 1, next time you deal with the same counterpart — you don't need to rediscover someone you've already verified, but re-verify before every new transaction, since trust scores change.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 83 lines · 71 tokens per session scan A eb16d604542b
verify-transact-and-rate-an-unknown-agent is a skill published in the GitHub repository Aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent (5 stars, last pushed 2mo ago), licensed MIT. It adds 71 tokens to every session and 995 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to verify-transact-and-rate-an-unknown-agent, differing in 0 lines, and is treated as a copy.
Other skills, from other repositories
vastai
Vast.ai CLI to manage GPU instances, volumes, serverless endpoints, and billing.
vastai-sdk
Vast.ai Python SDK — high-level API for GPU instances, volumes, serverless endpoints, and billing.
kelly-app-skill-creator
Design and create Busabase-backed App-in-Skill packages with a canonical app project, Busabase-native setup and product onboarding, review/execution workflows, a standardized responsive UI, and AirApp-first delivery. Use when a user wants a Busabase research desk, review queue, planner, action console, operating…
kelly-inquiry
Personal App-in-Skill inbound-inquiry reception desk (Busabase App-in-Skill) for cross-border/foreign-trade sellers, aggregating WhatsApp, Instagram, Messenger, and email inquiries into a pipeline with a product knowledge base, quote worksheet, approval queue, and follow-up reminders. Use when the user invokes…
kelly-support
Personal App-in-Skill customer-support desk (help desk) that triages incoming support tickets from email, WhatsApp, web chat, contact forms, and WeChat, drafts KB-grounded replies, and proposes actions, then holds every send behind a human approval queue with a pre-send quality gate (support-qa) that outputs…
kelly-ads
An advertising campaign review desk for sellers using Amazon Ads, Meta, TikTok Ads, and Google Ads. It brings campaign metrics and proposed adjustments into a Busabase-backed app.