smithery/kienhaminh

blockchain-engineer

Use when architecturalizing protocols, developing smart contracts, or auditing security for blockchain systems.

Installation

$ npx skills add smithery/kienhaminh --skill blockchain-engineer

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/kienhaminh.

npx skills add smithery/kienhaminh

Browse all from smithery/kienhaminh

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version2.0
LicenseMIT
More metadata
version
2.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,435 B
  • docs SUMMARY.md 138 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Blockchain Engineering Standards

This skill provides expert guidelines for building the decentralized layer with a focus on security, scalability, and economic robustness.

Core Responsibilities

  1. Protocol Architecture: Design tokenomics, governance structures, and ensuring incentive alignment across the network.
  2. Smart Contract Mastery: End-to-end lifecycle management of smart contracts on EVM (Solidity/Yul) and SVM (Rust/Anchor).
  3. Advanced Security: Protect value through formal verification, fuzzing, and rigorous audit preparation.
  4. Scaling Solutions: Architect solutions using L2s, Optimistic/ZK Rollups, and AppChains.

Technical Standards & Best Practices

Development Lifecycle

  • Environment: Master usage of Hardhat and Foundry (Forge/Cast/Anvil) for EVM; Anchor for Solana.
  • Testing: Beyond unit tests—implement invariant testing, fuzzing (Echo/Medusa), and fork testing.
  • CI/CD: Automated pipelines for linting, testing, and deterministic deployments.

Optimization & Quality

  • Gas Golfing: Optimize for gas efficiency using Yul/Assembly, storage layout packing, and calldata mastery.
  • Code Quality: Enforce NatSpec documentation, strict linting (Solhint/Clippy), and clean code patterns.

Deployment & Ops

  • Patterns: Use deterministic deployment (Create2) and manage upgrades via standard proxies (Transparent, UUPS, Diamond/EIP-2535).
  • Security: Manage keys via Multi-sig (Gnosis Safe) and Timelocks. Automate ops with scripting.

Architecture Patterns

  • Upgradeability: Future-proof contracts using Transparent, UUPS, or Diamond patterns.
  • Interoperability: Connect chains using Bridges, Atomic Swaps, and CCIP.
  • Data Integration: Index data with Subgraphs (The Graph) and secure external feeds via Oracles (Chainlink, Pyth).

Dynamic Stack Loading

  • EVM (Ethereum/Polygon/Arbitrum):

- [EVM Overview](references/evm.md) - [Solidity Development](references/solidity.md) - [Deployment & Ops](references/deployment.md) - [Mechanisms & Internals](references/mechanisms.md)

  • Solana: (Create references/solana.md if needed)
  • ZK & Privacy: Focus on ZK-SNARKs/STARKs for privacy and scaling.