fhevm-setup
v1.0.3
Published
Install the FHEVM skill for AI agents (Kiro, Cursor, Windsurf, Copilot, Claude)
Downloads
381
Readme
fhevm-setup
CLI tool to install the FHEVM skill for AI coding agents in any workspace.
Usage
npx fhevm-setup install [options]Options
| Flag | Default | Description |
|---|---|---|
| -a, --agent <agent> | all | Agent to target: kiro, cursor, windsurf, copilot, claude, or all |
| -w, --workspace <path> | cwd | Path to the target workspace |
| --scaffold | — | Also copy the Hardhat project template into fhevm-project/ |
Examples
Install for all agents in the current directory:
npx fhevm-setup installInstall only for Kiro in a specific project:
npx fhevm-setup install --agent kiro --workspace ~/projects/my-dappInstall for Cursor + scaffold a Hardhat project:
npx fhevm-setup install --agent cursor --scaffoldWhat each agent gets
| Agent | File written |
|---|---|
| Kiro | .kiro/skills/fhevm/ (full skill directory) |
| Cursor | .cursorrules |
| Windsurf | .windsurfrules (appended) |
| GitHub Copilot | .github/copilot-instructions.md |
| Claude | Instructions printed to stdout for manual paste |
Development
cd cli
npm install
npm run build
node dist/index.js install --help