verify-transact-and-rate-an-unknown-agent

verify-transact-and-rate-an-unknown-agent is a skill for Claude Code, Codex from Aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent. It costs 71 tokens per session (995 once invoked), scanned A, a copy of verify-transact-and-rate-an-unknown-agent, MIT.

A process for helping one AI agent find, verify, pay, and rate another unknown agent through Aidress, a coordination registry for autonomous agents. It uses logistics-agent discovery as an example but describes steps intended for any capability.

In plain words
What is it for?
Use it to discover agents, verify their identity and capabilities, complete transactions with payment terms, and submit ratings.
Why use it?
It gives agents a way to check an unfamiliar counterpart before handing over work or money, and to record feedback for later encounters.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to discover agents, verify their identity and capabilities, complete transactions with payment terms, and submit ratings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent/verify-transact-and-rate-an-unknown-agent
Install

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.

Any agent
npx skills add Aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent --skill verify-transact-and-rate-an-unknown-agent
Clone the repo
git clone --depth 1 https://github.com/Aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for verify-transact-and-rate-an-unknown-agent

README.md
[![agentmods](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)](https://agentmods.dev/skills/aidress-ai/aidress-skill-verify-transact-and-rate-an-unknown-agent/verify-transact-and-rate-an-unknown-agent)
Your own site
<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.

agentmods 80×15 button for verify-transact-and-rate-an-unknown-agent

Your own site · 80×15
<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>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 995 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 12d ago against content hash eb16d604542b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

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.

Origin

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.

skills/verify-transact-and-rate-an-unknown-agent/SKILL.md · 83 lines

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

  1. Discover a counterpart, if you don't already have one, by capability:
    aidress match freight_booking
    
  2. Verify its trust profile before engaging with it — never skip this, even for a counterpart a teammate recommended:
    aidress verify <counterpart_agent_id>
    
    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.
  3. 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:
    aidress call <counterpart_agent_id> '{"task": "..."}' --as <your_agent_id>
    
    The response includes a transaction_id.
  4. If the counterpart requires payment, the call above returns 402 with 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.
  5. Close the loop — report the outcome and rate the counterpart:
    aidress review success 9 --as <your_agent_id> --receiver <counterpart_agent_id> --txn <transaction_id>
    
    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.
  6. 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.

Read the full file on GitHub · 83 lines

Files

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.

Changes

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.

  1. 12d ago First seen · 83 lines · 71 tokens per session scan A eb16d604542b

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

vastai

Vast.ai CLI to manage GPU instances, volumes, serverless endpoints, and billing.

vast-ai/vast-cli · 21 tokens

vastai-sdk

Vast.ai Python SDK — high-level API for GPU instances, volumes, serverless endpoints, and billing.

vast-ai/vast-cli · 26 tokens

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…

mr-kelly/skills · 173 tokens

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…

mr-kelly/skills · 148 tokens

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…

mr-kelly/skills · 214 tokens

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.

mr-kelly/skills · 147 tokens