blockchain-engineer

blockchain-engineer is a skill for Claude Code, Codex from wonsukchoi/domain-experts. It costs 78 tokens per session (2,288 once invoked), scanned A, original, MIT.

A specialist guide for designing and reviewing blockchain software, especially smart contracts that run on a blockchain and may control real funds.

In plain words
What is it for?
Use it to review smart-contract logic, protect privileged functions, design safer on-chain price oracles, and reduce transaction costs.
Why use it?
It helps identify security and design risks that ordinary software checks can miss, including reentrancy, weak access controls, and unreliable price data. These mistakes can cause irreversible losses after deployment.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to review smart-contract logic, protect privileged functions, design safer on-chain price oracles, and reduce transaction costs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wonsukchoi/domain-experts/blockchain-engineer
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 wonsukchoi/domain-experts --skill blockchain-engineer
Clone the repo
git clone --depth 1 https://github.com/wonsukchoi/domain-experts

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 blockchain-engineer

README.md
[![agentmods](https://agentmods.dev/badge/skills/wonsukchoi/domain-experts/blockchain-engineer/github.svg)](https://agentmods.dev/skills/wonsukchoi/domain-experts/blockchain-engineer)
Your own site
<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.

agentmods 80×15 button for blockchain-engineer

Your own site · 80×15
<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>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,288 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 original No closer match found 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.00078 $0.02288
Opus 5 $0.00039 $0.01144
Sonnet 5 $0.00016 $0.00458
Haiku 4.5 $0.00008 $0.00229

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

Security

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.

roles/blockchain-engineer/SKILL.md · 89 lines

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

  1. 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.
  2. 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).
  3. 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.
  4. 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.
  5. 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.

Read the full file on GitHub · 89 lines

Files

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.

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. 8d ago First seen · 89 lines · 78 tokens per session scan A cf83b10712dc

Subscribe to this mod's changes

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.

Related

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.

wshobson/agents · 38 tokens

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…

docxology/template · 127 tokens

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…

docxology/template · 171 tokens

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.

docxology/template · 66 tokens

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…

docxology/template · 142 tokens

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.

docxology/template · 63 tokens