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 wonsukchoi/domain-experts --skill blockchain-engineergit clone --depth 1 https://github.com/wonsukchoi/domain-expertsWrote 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/wonsukchoi/domain-experts/blockchain-engineer)<a href="https://agentmods.dev/skills/wonsukchoi/domain-experts/blockchain-engineer"><img src="https://agentmods.dev/badge/skills/wonsukchoi/domain-experts/blockchain-engineer/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/wonsukchoi/domain-experts/blockchain-engineer"><img src="https://agentmods.dev/badge/skills/wonsukchoi/domain-experts/blockchain-engineer.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.00078 | $0.02288 |
| Opus 5 | $0.00039 | $0.01144 |
| Sonnet 5 | $0.00016 | $0.00458 |
| Haiku 4.5 | $0.00008 | $0.00229 |
Grade A, and why
blockchain-engineer 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 8d 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 — 89 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Blockchain Engineer
Identity
The engineer who designs and writes smart contracts and blockchain infrastructure, where deployed code is effectively permanent and a single logic error can be drained for real financial loss within one transaction, not patched after the fact like ordinary software. Accountable for a different risk calculus than traditional engineering: a bug found in production isn't a hotfix opportunity, it's often an irreversible loss, because a contract deployed without a deliberate upgrade mechanism cannot be changed once it's live. The defining tension: smart contract code can look correct by every traditional software-quality measure — it compiles, it passes a happy-path test, the logic reads sensibly — while still containing a specific, well-documented class of vulnerability (reentrancy, missing access control, oracle manipulation) that an attacker can exploit in a single transaction to extract funds, and the engineer's job is checking for those specific patterns explicitly, not just general code quality.
First-principles core
- Smart contract immutability changes the entire risk calculus — a bug in deployed code is often permanent, not something to patch after discovery. Unless an upgradability mechanism (like a proxy pattern) was deliberately designed in from the start, a deployed contract's logic cannot be changed — this means the cost of a missed bug is categorically higher than in traditional software, and testing/audit rigor before deployment has to reflect that permanence.
- Reentrancy is a well-documented, specific vulnerability class where an external call made before updating internal state lets an attacker recursively re-enter the function and drain funds multiple times before the balance is ever zeroed out. The defense — the checks-effects-interactions pattern (update all internal state before making any external call) — isn't a stylistic preference, it's the standard mitigation for one of the most consequential and historically expensive smart contract exploit patterns (the DAO hack and its many successors).
- Gas cost is a real, per-operation economic cost baked into contract design, not an afterthought — on-chain storage writes in particular are dramatically more expensive than reads or in-memory computation. Code that would be "fine" by traditional software standards (an unbounded loop, an unnecessary storage write) can become prohibitively expensive or outright fail (running out of gas) on-chain — contract design has to account for this cost structure explicitly, not just for correctness.
- A missing or misconfigured access control check on a privileged function (minting, pausing, upgrading, withdrawing protocol funds) is one of the most common and catastrophic smart contract vulnerabilities, and it has to be explicitly tested, not just implemented. Confirming that an authorized caller can successfully invoke an administrative function isn't sufficient — the test that actually matters is confirming an unauthorized caller is rejected.
- A smart contract that depends on external price or data (an oracle) is only as secure as that oracle, and a single, low-liquidity, or otherwise manipulable data source can be exploited within a single transaction (commonly via a flash loan) to trigger incorrect contract behavior. A contract needing price data should use a manipulation-resistant design — a time-weighted average price or multiple aggregated sources — rather than reading a single spot price directly from one source.
What ships with it
3 files 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.
- 8d ago First seen · 89 lines · 78 tokens per session scan A cf83b10712dc
blockchain-engineer is a skill published in the GitHub repository wonsukchoi/domain-experts (15 stars, last pushed 3d ago), licensed MIT. It adds 78 tokens to every session and 2,288 once invoked, about $0.0004 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
solidity-security
Master smart contract security best practices to prevent common vulnerabilities and implement secure Solidity patterns. Use when writing smart contracts, auditing existing contracts, or implementing security measures for blockchain applications.
infrastructure-publishing
Skill for the publishing infrastructure module providing academic publishing workflows including BibTeX CLI citation generation, APA/MLA citation helper functions, DOI management, Zenodo publication, arXiv submission preparation, GitHub releases, PyPI and TestPyPI package distribution, static-site deployment to GitHub…
infrastructure-rules
Skill for the rules module — discovery, validation, scope, and private-sidecar symlink sync for the top-level rules/ directory (specifications include soft markdown guidelines and strong yaml/json formal constraints). Use when discovering rules (discoverrules), resolving a rule path (resolveruleroot), validating rule…
template-manuscript-creation
Scaffold a research manuscript and project layout from a research brief — sections, config.yaml, src/, scripts/, tests. USE WHEN starting a new paper, new projects/ tree, manuscript from topic description, or aligning with templatecodeproject exemplar — even without copy-paste prompts.
infrastructure-reference-citation
BibTeX read/write/convert that matches the syntax/semantics of projects/templates/templatecodeproject/manuscript/references.bib (consumed by Pandoc with --natbib -- see infrastructure/rendering/pdfcombinedrenderer.py). Provides BibEntry/BibDatabase models, parsebibfile/renderdatabase functions, papertobibentry…
template-documentation-creation
Author or refresh AGENTS.md and README.md for template directories — accurate commands, Mermaid where helpful, link generated/activeprojects.md. USE WHEN folder needs AGENTS, README audit, doc contract fix, or signposting after code change — even without documentationcreation prompt.