oc-setup-demo
v1.0.0
Published
OpenClaw SXSW live demo setup — one command, AI agent live in 60 seconds
Maintainers
Readme
oc-setup-demo
SXSW live demo tool for OpenClaw — set up a personal AI agent on Telegram in under 60 seconds, on stage, with a single command.
Structure
src/— CLI tool (TypeScript, compiled with tsup)web/— Demo landing page (Next.js, deployed to Vercel)
CLI Usage
# Run the demo (with base64 config payload)
npx oc-setup-demo --config <base64payload>
# Run with environment variables
export OC_TELEGRAM_USER_ID="..."
export OC_TELEGRAM_BOT_TOKEN="..."
export OC_API_KEY="sk-..."
npx oc-setup-demo
# Pre-flight check (run backstage before going on)
npx oc-setup-demo preflight
# Reset everything (clean slate for next run)
npx oc-setup-demo resetWebsite
The demo landing page has two views:
/— Audience-facing: what they just saw, QR code, try-it-yourself instructions/backstage— Presenter-only: config generator, command builder, quick reference
Development
# CLI
npm install
npm run build
# Website
cd web
npm install
npm run dev