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 skills/mission69b/t2000/t2000-engineeringnpx skills add mission69b/t2000 --skill t2000-engineeringgit clone --depth 1 https://github.com/mission69b/t2000Wrote 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/mission69b/t2000/t2000-engineering)<a href="https://agentmods.dev/skills/mission69b/t2000/t2000-engineering"><img src="https://agentmods.dev/badge/skills/mission69b/t2000/t2000-engineering.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 | $0.00137 | $0.03072 |
| Opus 5 | $0.00068 | $0.01536 |
| Sonnet 5 | $0.00027 | $0.00614 |
| Haiku 4.5 | $0.00014 | $0.00307 |
Grade A, and why
t2000-engineering scanned grade A with 1 finding 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 4d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
Each verify step must be runnable — a test, a lint, a curl against the dev server, How it starts
The opening of the file, as written. The whole thing — 294 lines — stays where its author put it; the contents beside it link to each section on GitHub.
t2000 Engineering Discipline
Merged 2026-07-24 from four Cursor rules that were alwaysApply: true
(engineering-principles, goal-driven-execution, coding-discipline,
product-build-algorithm). The load-bearing assertions live in CLAUDE.md § Engineering Discipline and apply every turn; this file is the depth behind them.
1. Trace the full path BEFORE writing code
Before fixing any bug, trace the ACTUAL execution path from user action → API route → handler → SDK → on-chain → response → UI render. Verify which functions/routes/ handlers are actually called. Never assume.
What went wrong once: spent 4 iterations fixing sdk.swap() balance-change
parsing when the Audric web app uses a sponsored transaction flow
(/api/transactions/prepare → sign → /api/transactions/execute) that never calls
sdk.swap() directly. The fix needed to be in the client-side handleExecuteAction,
not the SDK.
Checklist before implementing a fix:
- What is the ACTUAL data flow? (trace it, don't guess)
- Where does the data first become wrong? (that's where to fix)
- Does this fix introduce duplication? (if yes, rethink)
- Will this fix survive adding a new token/asset/feature? (if no, rethink)
2. Single source of truth — never duplicate
If data exists in one place, import it. Never copy token maps, decimal maps, or config into multiple files.
// ❌ BAD — hardcoded list that gets stale
const COMMON_TOKENS = 'SUI, USDC, USDT, USDSUI';
// ✅ GOOD — derived from canonical source
const { TOKEN_MAP } = await import('@t2000/sdk');
const supportedTokens = Object.keys(TOKEN_MAP).join(', ');
3. Ask "does this scale?" before every implementation
Before hardcoding any list, map, or constant: "Where is the source of truth? Can I derive this dynamically? Will someone have to manually update this when things change?" If the answer to the last question is yes, the approach is wrong.
4. Fix at the root, not the symptom
When a fix requires changes in 3+ places or multiple retry attempts, the architecture is wrong. Step back and find the single point of failure.
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.
- 4d ago First seen · 294 lines · 137 tokens per session scan A 12a448d87284
t2000-engineering is a skill published in the GitHub repository mission69b/t2000 (23 stars, last pushed yesterday), licensed MIT. It adds 137 tokens to every session and 3,072 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
swarmwage-hire
Discover, inspect, dry-run, hire, and pay AI capabilities through Swarmwage. Start with wallet-free capability search and x402 reliability checks; use a dedicated USDC wallet only for real hires or paid external x402 calls.
swarmwage-publish
Publish your agent's capabilities to the Swarmwage registry and earn USDC for each call. Lets your agent advertise services (image generation, audio transcription, charting, custom domain workflows…) on the open agent hire protocol — other AI agents discover you, hire you with one function call, and pay you in USDC on…
agent-payment-stats
Cross-protocol agent-economy payment metrics from Barker's index. x402 (Base) volume is on-chain verifiable; ACP / AP2 / MPP / AP4M figures are self-reported claims. Separates real vs nominal volume by filtering wash/noise sellers. Use when users ask about x402 volume, agent payment stats, agent economy metrics, or…
selat-discovery
Use the moment you're about to tell the user you can't do something — or about to suggest they sign up for, get an API key for, or go to an external tool, site, or API to do it themselves. Covers what's beyond a model natively: image/video/audio/voice generation, translation, transcription, web search/scraping…
agentservices
Access paid data APIs for AI agents including crypto prices, technical indicators, DeFi yields, on-chain analytics (whale tracking, exchange flows, stablecoin flows), market intelligence (sentiment, trends, competitor analysis, content gaps, ad copy), portfolio intelligence, DeFi strategy optimization, web search and…
aisa-skill
Skill "aisa-skill" from vbkotecha/agentservices-api, covering agentservices — paid apis for ai agents, quick start, install the x402 client, make a paid api call (agent wallet required) and what agents can do.