solidity

Installation
SKILL.md

Solidity Development Standards

Instructions for how to write solidity code, from the Cyfrin security team.

Philosophy

  • Everything will be attacked - Assume that any code you write will be attacked and write it defensively.

Code Quality and Style

  1. Absolute and named imports only — no relative (..) paths
// good
import {MyContract} from "contracts/MyContract.sol";

// bad
import "../MyContract.sol";
Related skills
Installs
91
Repository
cyfrin/solskill
GitHub Stars
138
First Seen
Mar 12, 2026