developing-smart-contracts
Installation
SKILL.md
Smart Contract Development
Best practices for developing Solidity smart contracts. Contains rules covering documentation, naming, structure, and code style.
When to Apply
Reference these guidelines when:
- Writing new Solidity contracts
- Reviewing smart contract code
- Refactoring existing contracts
- Adding NatSpec documentation
- Setting up contract file structure
Licenses
- Interfaces:
// SPDX-License-Identifier: Apache-2.0 - Contracts:
// SPDX-License-Identifier: AGPL-3.0
Related skills