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 nirholas/three.ws --skill bitcoin-inscription-guidegit clone --depth 1 https://github.com/nirholas/three.wsWrote 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/nirholas/three.ws/bitcoin-inscription-guide)<a href="https://agentmods.dev/skills/nirholas/three.ws/bitcoin-inscription-guide"><img src="https://agentmods.dev/badge/skills/nirholas/three.ws/bitcoin-inscription-guide.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.00056 | $0.01100 |
| Opus 5 | $0.00028 | $0.00550 |
| Sonnet 5 | $0.00011 | $0.00220 |
| Haiku 4.5 | $0.00006 | $0.00110 |
Grade A, and why
bitcoin-inscription-guide 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 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.
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 — 171 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Bitcoin Inscription Guide
Bitcoin inscriptions (Ordinals) let you permanently embed content — text, images, HTML, code — directly on the Bitcoin blockchain. This guide covers the full lifecycle from creation to marketplace.
What Are Inscriptions?
Inscriptions use the Ordinals protocol to embed arbitrary content into individual satoshis:
Bitcoin Transaction
│
└── Witness Data (SegWit)
│
└── Inscription Envelope
├── Content-Type: "text/plain"
└── Body: "Hello, Bitcoin!"
Inscription Types
| Type | Content-Type | Max Size | Use Case |
|---|---|---|---|
| Text | text/plain | ~390KB | Messages, poems, data |
| Image | image/png, image/webp | ~390KB | Art, pfps, memes |
| HTML | text/html | ~390KB | Interactive content |
| SVG | image/svg+xml | ~390KB | Vector art |
| JSON | application/json | ~390KB | BRC-20 tokens, metadata |
| JavaScript | text/javascript | ~390KB | Recursive inscriptions |
| Audio | audio/wav | ~390KB | Music |
| Video | video/mp4 | ~390KB | Short clips |
Creating Inscriptions
CLI Tool
# Install
npm install -g @nirholas/bitcoin-inscription
# Inscribe text
btc-inscribe text "Sperax <> Bitcoin" --fee-rate 10
# Inscribe image
btc-inscribe image ./my-art.png --fee-rate 10
# Inscribe HTML
btc-inscribe html ./interactive-art.html --fee-rate 10
Programmatic
import { Inscriber } from '@nirholas/bitcoin-inscription';
const inscriber = new Inscriber({
network: 'mainnet',
wallet: process.env.BTC_WALLET_WIF,
feeRate: 10 // sats/vByte
});
// Inscribe text
const result = await inscriber.inscribeText('Hello from Sperax!');
console.log(`Inscription ID: ${result.inscriptionId}`);
console.log(`TX: ${result.txId}`);
BRC-20 Tokens
BRC-20 is a token standard built on inscriptions:
Deploy
{
"p": "brc-20",
"op": "deploy",
"tick": "SPAX",
"max": "21000000",
"lim": "1000"
}
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 · 171 lines · 56 tokens per session scan A 10bb96f57c6d
bitcoin-inscription-guide is a skill published in the GitHub repository nirholas/three.ws (111 stars, last pushed yesterday), licensed Apache-2.0. It adds 56 tokens to every session and 1,100 once invoked, about $0.0003 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-03.
Other skills, from other repositories
blender-mcp
Drive Blender via the catalog blender MCP, with bpy recipes.
blender-mcp
Control Blender directly from Gauss via socket connection to the blender-mcp addon. Create 3D objects, materials, animations, and run arbitrary Blender Python (bpy) code. Use when user wants to create or modify anything in Blender.
blender-mcp
Control Blender directly from Hermes via socket connection to the blender-mcp addon. Create 3D objects, materials, animations, and run arbitrary Blender Python (bpy) code. Use when user wants to create or modify anything in Blender.
blender-mcp
Control Blender directly from Hermes via socket connection to the blender-mcp addon. Create 3D objects, materials, animations, and run arbitrary Blender Python (bpy) code. Use when user wants to create or modify anything in Blender.
blender-mcp
Control Blender directly from Hermes via socket connection to the blender-mcp addon. Create 3D objects, materials, animations, and run arbitrary Blender Python (bpy) code. Use when user wants to create or modify anything in Blender.
blender-mcp
Drive Blender via the catalog blender MCP, with bpy recipes.