Agent skills for building apps with Initia
npx skills add https://github.com/initia-labs/agent-skills --skill initia-appchain-dev使用 CLI 安装这个技能,并在你的工作区中直接复用对应的 SKILL.md 工作流。
Single-skill package for end-to-end Initia development:
wagmi + viem) and @initia/interwovenkit-reactnpx skills add initia-labs/agent-skills
git clone https://github.com/initia-labs/agent-skills
cd agent-skills
./install.sh
Project-local install:
./install.sh --project
Project-local install (overwrite non-interactively):
./install.sh --project --force
Custom destination:
./install.sh --path /custom/path/initia-appchain-dev
npx skills add . --list
Expected output: one skill named initia-appchain-dev.
Default install destination for install.sh: ${CODEX_HOME:-~/.codex}/skills/initia-appchain-dev
This repo replaced three legacy skills with one consolidated skill:
contract-guide -> initia-appchain-devfrontend-kit -> initia-appchain-devweave -> initia-appchain-devBehavior changes:
frontend-evm-rpc.md)frontend-interwovenkit.md)runtime-discovery.md.scripts/ci-check.sh, GitHub workflow).weave launch config for a testnet EVM rollup."0x... address to Initia bech32 and add it to genesis accounts."Run all local checks:
./scripts/ci-check.sh
Script dependencies (for key generation checks):
pip install -r skill/scripts/requirements.txt
generate-system-keys.py does not hard-require a specific Python version, but if bip_utils fails to install/import on your runtime, use Python 3.11 or 3.12.
Safe key generation examples:
# Safe stdout output (mnemonics redacted)
python3 skill/scripts/generate-system-keys.py --vm evm
# Include mnemonics only when writing to a protected file (0600 perms)
python3 skill/scripts/generate-system-keys.py --vm move --include-mnemonics --output ./system-keys.json
Optional CI fallback for network-restricted environments:
SKIP_SKILLS_CLI_CHECK=1 ./scripts/ci-check.sh