-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Brandon Brooks edited this page Jan 22, 2026
·
2 revisions
Welcome to the ContractKit wiki! This plugin helps you scaffold complete Foundry smart contract projects with a single command.
ContractKit is a Claude Code plugin that generates production-ready Foundry smart contract projects from safe templates. Each project includes:
- Solidity contracts built on OpenZeppelin
- Comprehensive test suites
- Deployment scripts for local and testnet
- Security documentation and threat models
# Add the marketplace
/plugin marketplace add HCS412/contractkit
# Install the plugin
/plugin install contractkit@HCS412/contractkit# 1. Create an ERC20 token
/contractkit:new erc20 MyToken MTK
# 2. Run tests
cd contractkit-projects/mytoken
/contractkit:test
# 3. Start local chain
/contractkit:local
# 4. Deploy
/contractkit:deploy local
# 5. Interact
/contractkit:call mint --args "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" "1000000000000000000"ContractKit
Reference
Help