From odra
Extract keys from a running NCTL node and create the .env.nctl file. Use when the user says "setup nctl", "configure nctl", "setup-nctl", or "create nctl env".
How this skill is triggered — by the user, by Claude, or both
Slash command
/odra:setup-nctlThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Extracts keys from a running NCTL container and creates the `.env.nctl` configuration file.
Extracts keys from a running NCTL container and creates the .env.nctl configuration file.
docker --version
If Docker is not installed or not running, tell the user and stop.
docker ps --filter name=mynctl --format '{{.Names}}'
If mynctl is listed, tell the user NCTL is already running and stop and move to step 4.
docker run --rm -it --cpus=1 --name mynctl -d \
-p 11101:11101 \
-p 14101:14101 \
-p 18101:18101 \
-p 25101:25101 \
makesoftware/casper-nctl:v203
Wait for readiness running the bundled wait script under scripts/wait-for-nctl.sh with a timeout of 120 seconds
passed as an argument.
./${CLAUDE_SKILL_DIR}/scripts/wait-for-nctl.sh 120
If the wait script exits non-zero, report failure and stop.
Run the bundled key extraction script under scripts/extract-keys.sh:
./${CLAUDE_SKILL_DIR}/scripts/extract-keys.sh
If the script exits non-zero, report error and stop.
Create .env.nctl from .env.sample with nctl defaults:
ODRA_CASPER_LIVENET_SECRET_KEY_PATH=.node-keys/secret_key.pem
ODRA_CASPER_LIVENET_NODE_ADDRESS=http://localhost:11101
ODRA_CASPER_LIVENET_EVENTS_URL=http://localhost:18101/events
ODRA_CASPER_LIVENET_CHAIN_NAME=casper-net-1
NCTL environment configured.
- RPC: http://localhost:11101
- Events: http://localhost:18101/events
- Chain: casper-net-1
- Keys: .node-keys/secret_key.pem, .node-keys/secret_key_1.pem
- .env: configured for nctl
To stop: docker stop mynctl
| Port | Service |
|---|---|
| 11101 | JSON-RPC |
| 14101 | REST API |
| 18101 | SSE (events) |
| 25101 | Speculative RPC |
docker run fails with a connection error, tell the user Docker Desktop may not be running.mynctl container first.user-1. If the user wants a different user (user-2, user-3, etc.), substitute in the path: /home/casper/casper-nctl/assets/net-1/users/user-N/secret_key.pem.Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub odradev/odradev-plugins --plugin odra-plugin