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 agentmods add instructions/twzrd-sol/twzrd-trust/agents-mdgit clone --depth 1 https://github.com/twzrd-sol/twzrd-trustWrote 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/instructions/twzrd-sol/twzrd-trust/agents-md)<a href="https://agentmods.dev/instructions/twzrd-sol/twzrd-trust/agents-md"><img src="https://agentmods.dev/badge/instructions/twzrd-sol/twzrd-trust/agents-md.svg" alt="Measured on agentmods" 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.00725 | $0.00725 |
| Opus 5 | $0.00362 | $0.00362 |
| Sonnet 5 | $0.00145 | $0.00145 |
| Haiku 4.5 | $0.00072 | $0.00072 |
Grade A, and why
twzrd-trust AGENTS.md 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 45 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Cursor Cloud specific instructions
Repo layout / what is actually developable
This repo is a public mirror. Most top-level directories are published-artifact mirrors, not buildable source:
twzrd-x402-gate/— the only package with realsrc/+test/. All development, linting, building, and testing happens here.eliza-plugin/,plugin-trustgate/,twzrd-mcp-server/— shipdist/only (nosrc/, no lockfile). Theirpackage.jsontest/buildscripts reference files that are not in this mirror, so they are not buildable/testable here. Don't try tonpm install/build them.server/— static docs +.well-knownonly. ItsDockerfileinstalls a private Python package (twzrd-agent-intel) that is not in this repo, so it cannot be built/run here.
twzrd-x402-gate (the one service)
Node 22 / npm 10 (package engines requires node >=18). Package manager is npm
(package-lock.json). It is an ESM-only TypeScript library + CLI, not a long-running
server — there is nothing to "serve"; you run it via tests, example scripts, or its bin/
CLIs. All commands run from twzrd-x402-gate/.
- Lint: there is no separate lint script.
npm run typecheck(tsc --noEmit -p tsconfig.check.json, coverssrc+test) is the lint/static-check. - Build:
npm run build(tsc→ emitsdist/,srconly). - Test:
npm test— runs ~40tsxtest files sequentially; the run stops at the first failing file. Tests are self-contained (no external services needed). - Run / demo (core "hello world"):
npm run gate-eval-refuseruns the buyer trust gate end-to-end and proves it refuses payment to a bad merchant before the wallet signs (signer_invocation_count: 0,usdc_spent: 0). Other example scripts live underexamples/and in thescriptsblock ofpackage.json.
Non-obvious gotchas
- The
bin/CLIs (e.g.gate-eval-refuse) load fromdist/, sonpm run buildmust have run before invoking them (the update script installs deps but does not build; runnpm run buildfirst ifdist/is stale or missing). gate-eval-refuseand severalexamples/*make live network calls tohttps://intel.twzrd.xyz(free preflight, no key/signup). They need outbound egress; they spend no USDC. If egress is blocked these demos fail even though unit tests pass.- The x402/Solana peer deps are declared as optional
peerDependenciesbut are present asdevDependencies, so a plainnpm ciintwzrd-x402-gate/is enough to build and test.
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.
- yesterday First seen · 45 lines · 725 tokens per session scan A ab0d0edc2718
twzrd-trust AGENTS.md is an instructions file published in the GitHub repository twzrd-sol/twzrd-trust (1 stars, last pushed today), licensed MIT. It adds 725 tokens to every session, about $0.0036 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.
Other instructions, from other repositories
pumpfun-bonkfun-bot CLAUDE.md
Instructions for chainstacklabs/pumpfun-bonkfun-bot, covering agent guide, ground rules, layout, naming inside learning-examples/ and commands.
safe_wallet AGENTS.md
Instructions for ascenx/safe_wallet, covering agents.md, 1. 沟通原则, 2. 工作方式, 3. 代码修改边界 and 4. git 规则.
orquestra copilot-instructions.md
Instructions for berkayoztunc/orquestra, covering copilot instructions — orquestra, project overview, architecture, key patterns & conventions and worker route structure.
core-ai CLAUDE.md
Claude Code instructions for helius-labs/core-ai, covering core ai, compiler-managed sync, mcp server pin, skill versioning and router surface maintenance.
core-ai AGENTS.md
AGENTS.md instructions for helius-labs/core-ai, covering core ai — agent instructions, repository overview, mcp server setup, api key setup and public tool surface.
x402-client AGENTS.md
Instructions for vybenetwork/x402-client, covering vybe x402 client — agent instructions, quick reference, prerequisites, complete flow and step 1: install.