veil
Veil
This skill wraps the @veil-cash/sdk CLI to make Veil operations agent-friendly.
What it does
- Key management: generate and store a Veil keypair locally
- Status check: verify configuration, registration, and relay health
- Balances: combined
balance,queue-balance,private-balance - Deposits via Bankr: build a Bankr-compatible unsigned transaction and ask Bankr to sign & submit it
- Private actions:
withdraw,transfer,mergeare executed locally usingVEIL_KEY(ZK/proof flow)
File locations (recommended)
- Veil keys:
~/.thinkfleet/skills/veil/.env.veil(chmod 600) - Bankr API key:
~/.thinkfleet/skills/bankr/config.json
Quick start
1) Install the Veil SDK
Option A: Global npm install (recommended)
npm install -g @veil-cash/sdk
Option B: Clone from GitHub
mkdir -p ~/.thinkfleetbot/workspace/repos
cd ~/.thinkfleetbot/workspace/repos
git clone https://github.com/veildotcash/veildotcash-sdk.git
cd veildotcash-sdk
npm ci && npm run build
2) Configure Base RPC (recommended)
Veil queries a lot of blockchain data (UTXOs, merkle proofs, etc.), so public RPCs will likely hit rate limits. A dedicated RPC from Alchemy, Infura, or similar is recommended.
Put RPC_URL=... in one of these:
~/.thinkfleet/skills/veil/.env(preferred)- or the SDK repo
.env(less ideal)
Example:
mkdir -p ~/.thinkfleet/skills/veil
cat > ~/.thinkfleet/skills/veil/.env << 'EOF'
RPC_URL=https://base-mainnet.g.alchemy.com/v2/YOUR_KEY
EOF
chmod 600 ~/.thinkfleet/skills/veil/.env
3) Make scripts executable
chmod +x scripts/*.sh
4) Generate your Veil keypair
scripts/veil-init.sh
scripts/veil-keypair.sh
5) Check your setup
scripts/veil-status.sh
6) Find your Bankr Base address
scripts/veil-bankr-prompt.sh "What is my Base wallet address? Respond with just the address."
7) Check balances
scripts/veil-balance.sh --address 0xYOUR_BANKR_ADDRESS
8) Deposit via Bankr (sign & submit)
scripts/veil-deposit-via-bankr.sh 0.011 --address 0xYOUR_BANKR_ADDRESS
9) Withdraw (private → public)
scripts/veil-withdraw.sh 0.007 0xYOUR_BANKR_ADDRESS
References
- SDK Reference — CLI commands, environment variables, error codes
- Troubleshooting — Common issues and debugging tips
Notes
- For Bankr signing, this skill uses Bankr’s Agent API via your local
~/.thinkfleet/skills/bankr/config.json. - For privacy safety: never commit
.env.veilor.envfiles to git.
More from thinkfleetai/thinkfleet-engine
local-whisper
Local speech-to-text using OpenAI Whisper. Runs fully offline after model download. High quality transcription with multiple model sizes.
149flyio-cli-public
Use the Fly.io flyctl CLI for deploying and operating apps on Fly.io: deploys (local or remote builder), viewing status/logs, SSH/console, secrets/config, scaling, machines, volumes, and Fly Postgres (create/attach/manage databases). Use when asked to deploy to Fly.io, debug fly deploy/build/runtime failures, set up GitHub Actions deploys/previews, or safely manage Fly apps and Postgres.
24kagi-search
Web search using Kagi Search API. Use when you need to search the web for current information, facts, or references. Requires KAGI_API_KEY in the environment.
22bambu-local
Control Bambu Lab 3D printers locally via MQTT (no cloud). Supports A1, A1 Mini, P1P, P1S, X1C.
10voice-transcribe
Transcribe audio files using OpenAI's gpt-4o-mini-transcribe model with vocabulary hints and text replacements. Requires uv (https://docs.astral.sh/uv/).
10video-subtitles
Generate SRT subtitles from video/audio with translation support. Transcribes Hebrew (ivrit.ai) and English (whisper), translates between languages, burns subtitles into video. Use for creating captions, transcripts, or hardcoded subtitles for WhatsApp/social media.
10