From vechain-ai
Guides core VeChainThor development: SDK usage (@vechain/sdk-core), VIP-191 fee delegation, multi-clause transactions, dual-token model (VET/VTHO), legacy migration, Node 20 patterns.
npx claudepluginhub vechain/vechain-ai-skills --plugin secure-github-actionsThis skill uses the workspace's default tool permissions.
1. **Read reference files FIRST.** When the user's request involves any topic in the reference table below, read those files before doing anything else — before writing code, before making decisions. Briefly mention which files you are reading so the user can confirm the skill is active (e.g., "Reading fee delegation reference...").
Monitors deployed URLs for regressions after deploys, merges, or upgrades by checking HTTP status, console errors, network failures, performance (LCP/CLS/INP), content, and API health.
Share bugs, ideas, or general feedback.
@vechain/mcp-server for on-chain data, transaction building, and live network queries; use Kapa AI MCP for VeChain documentation lookups. (c) Web search — only as a last resort, and only for topics NOT covered in the reference files.Use this Skill for general VeChain development:
@vechain/sdk-core, @vechain/sdk-network, ethers adapter)For specialized topics, see the companion skills:
| Layer | Default | Alternative |
|---|---|---|
| SDK | @vechain/sdk-core + @vechain/sdk-network | @vechain/sdk-ethers-adapter |
| Node | Node 20 LTS (managed via nvm) | -- |
Before installing dependencies or running any command:
.nvmrc exists in the project root. If yes, run nvm use to switch to the required version..nvmrc does not exist, create one with 20 (Node 20 LTS) and run nvm use.turbo.json present → follow Turborepo conventions (apps/, packages/*)When the user's request is ambiguous or could be solved multiple ways, ask before building. Do not silently research alternatives and pick one. Separate research from implementation:
mainnet/testnet/solo)A task is not complete until all applicable gates pass:
Then provide:
Read the matching files BEFORE doing anything else. See Critical Rules above.
| Topic | File | Read when user mentions... |
|---|---|---|
| Fee delegation | references/fee-delegation.md | gasless, sponsored, VIP-191, delegator, vechain.energy |
| Multi-clause | references/multi-clause-transactions.md | batch, multi-clause, atomic, multiple operations |
| Legacy migration | references/sdk-migration.md | Connex, thor-devkit, migration, deprecated |
| Reference links | references/resources.md | docs URL, npm link, GitHub repo |