vestaboard
⚠Review·Scanned 2/18/2026
This skill reads and writes messages to a Vestaboard using node scripts/vb.js, local layouts like content/layouts/forest-depth.json, and preview files in content/previews/*.md. It reads VESTABOARD_TOKEN/VESTABOARD_RW_KEY and makes network requests to https://cloud.vestaboard.com/.
from clawhub.ai·va4e2e99·15.0 KB·0 installs
Scanned from 1.0.0 at a4e2e99 · Transparency log ↗
$ vett add clawhub.ai/seidprojects/vestaboardReview findings below
Vestaboard
Security
- Require a token via environment variables (never inline keys in prompts, logs, or commits).
- Preferred:
VESTABOARD_TOKEN - Optional legacy fallback:
VESTABOARD_RW_KEY
- Preferred:
Constraints
- Flagship Vestaboard layout is 6 rows x 22 cols.
- Text input is formatted to 6x22 by default (uppercase + word wrap; truncates overflow).
Quick usage (local CLI)
# from repo root
npm install
# Preview formatting only
node scripts/vb.js preview "Hello from Quarterbridge Farm"
# Read current message (JSON)
node scripts/vb.js read
# Write text
node scripts/vb.js write "EGGS READY"
# Write a numeric layout (6x22 array of character codes)
node scripts/vb.js write-layout content/layouts/forest-depth.json
Sample content
- Numeric layouts live in
content/layouts/*.json - Human review previews live in
content/previews/*.md