GitHub Docs

Interactive walkthroughs covering VibeCody’s 65 major capabilities across CLI, Desktop IDE, and API surfaces.

Getting Started

Demo Surface Description
01 — First Run & Setup CLI Install, configure providers, first AI chat
02 — TUI Interface CLI Navigate the terminal UI, panels, keybindings
36 — One-Shot Chat CLI Send a message and get a response without entering the REPL
57 — Easy Setup & Deployment CLI One-command install, systemd/launchd service, platform deploy

AI & Providers

Demo Surface Description
03 — Multi-Provider AI Chat CLI + UI Switch between 23 AI providers, streaming responses
04 — Agent Loop & Tool Execution CLI + UI Autonomous coding with file edit, shell, search tools
05 — Model Arena UI Side-by-side model comparison and ranking
06 — Cost Observatory CLI + UI Track token usage and costs across providers
47 — Counsel & SuperBrain CLI + UI Multi-LLM deliberation and multi-provider routing

Code Intelligence

Demo Surface Description
07 — Inline Chat & Completions UI Context-aware code suggestions in the editor
08 — Code Search & Embeddings CLI + UI Semantic search across codebases
09 — Autofix & Diagnostics CLI + UI Automated bug detection and repair
10 — Code Transforms CLI + UI AST-based refactoring and code generation
41 — Semantic Codebase Index CLI + UI AST-level call graphs, type hierarchies, import chains
42 — MCTS Code Repair CLI + UI Monte Carlo Tree Search for cost-efficient bug fixing
46 — Code Replay & Explainability CLI + UI Replay past sessions and inspect reasoning chains

Agentic Systems

Demo Surface Description
37 — A2A Protocol CLI + UI Agent-to-Agent communication (Google/Linux Foundation)
38 — Parallel Worktree Agents CLI + UI Run N agents in isolated git worktrees
39 — Proactive Agent CLI + UI Background scanning with learning from feedback
43 — Cost-Optimized Routing CLI + UI Smart model selection based on task complexity
60 — Next-Task Prediction CLI + UI Workflow-level task suggestions with learning

DevOps & Infrastructure

Demo Surface Description
11 — Docker & Container Management CLI + UI Build, run, manage containers
12 — Kubernetes Operations CLI + UI Deploy, scale, monitor K8s workloads
13 — CI/CD Pipeline CLI + UI GitHub Actions, pipeline monitoring
14 — Cloud Provider Integration CLI + UI AWS/GCP/Azure scanning, IAM, IaC generation
15 — Deploy & Database CLI + UI Deployment workflows and database management
59 — Smart Dependencies CLI + UI Conflict resolution, CVE patching, license compliance

MCP & Extensions

Demo Surface Description
16 — MCP Server Integration CLI + UI Connect external tool servers
17 — MCP Lazy Loading CLI + UI Scalable tool registry with on-demand loading
18 — MCP Plugin Directory UI Browse, install, rate verified plugins

Collaboration & Context

Demo Surface Description
19 — Context Bundles CLI + UI Shareable context sets for teams
20 — Agent Teams CLI + UI Multi-agent collaboration with roles
21 — CRDT Collaboration UI Real-time multi-user editing
22 — Gateway Messaging CLI AI assistant on 18 platforms (Slack, Discord, etc.)

Testing & Quality

Demo Surface Description
23 — Test Runner & Coverage CLI + UI Run tests, track coverage, generate tests
24 — Red Team Security CLI + UI Security scanning and vulnerability detection
25 — SWE-bench Benchmarking CLI + UI Benchmark AI coding performance
26 — QA Validation Pipeline CLI + UI Multi-round quality validation
44 — Visual Verification CLI + UI Screenshot comparison and design compliance

Developer Tools

Demo Surface Description
27 — HTTP Playground CLI + UI API testing with history and collections
28 — GraphQL Explorer UI Schema introspection and query building
29 — Regex & Encoding Tools UI Regex tester, JWT decoder, base converter
30 — Notebook & Scripts CLI + UI Interactive notebooks and script runner
50 — Warp-Style Terminal CLI Natural language commands, corrections, secret redaction
51 — Profiles & Sessions CLI Named config profiles and session resume
52 — Watch Mode & Sandbox CLI File-watching agent and OS-level isolation
53 — Workflow Orchestration CLI + UI Lessons, todo tracking, complexity estimation

Design & Diagrams

Demo Surface Description
63 — Multi-Provider Design Platform UI Draw.io editor, Penpot integration, Pencil wireframes, AI diagram generator, Design System Hub

Memory & Research

Demo Surface Description
40 — Web Search Grounding CLI + UI Agent searches the web mid-task with citations
48 — OpenMemory Engine CLI + UI 5-sector cognitive memory, knowledge graph, encryption, consolidation
49 — Autonomous Research CLI + UI Multi-strategy research with cross-run learning
58 — Living Doc Sync CLI + UI Bidirectional spec-code synchronization
61 — Verbatim Drawers & MemPalace CLI + UI Lossless 800-char chunk ingestion, Wing/Room scoping, cross-project Tunnels
62 — Memory Benchmarking CLI + UI LongMemEval recall@K benchmark across cognitive and verbatim layers

Full reference: Memory Guide — all three memory layers (auto-recording, cognitive store, verbatim drawers), every REPL command, and VibeUI panel tour.

Productivity Integrations

Demo Surface Description
58 — Productivity Integrations CLI Email, calendar, todo, Jira, Home Assistant, Notion via REPL

Voice & Access

Demo Surface Description
45 — Offline Voice Coding CLI Local whisper.cpp speech recognition
55 — Voice, Pairing & Tailscale CLI Voice input, QR pairing, Tailscale Funnel
56 — Browser Web Client Web Zero-install SPA with SSE streaming
64 — Apple Watch & Wear OS Mobile Wrist-based agent control with HMAC-JWT auth
65 — Zero-Config Connectivity CLI mDNS LAN discovery and ngrok tunnel auto-detection

Security & Compliance

Demo Surface Description
35 — Compliance & Audit CLI + UI SOC 2 controls and audit trails
54 — Blue & Purple Team CLI + UI Incident response and ATT&CK exercises

Enterprise & Advanced

Demo Surface Description
31 — Batch Builder CLI + UI Generate entire codebases (3M+ lines)
32 — Legacy Migration CLI + UI COBOL/Fortran to modern languages
33 — App Builder CLI + UI Full-stack app scaffolding from prompts
34 — Usage Metering CLI + UI Credit budgets and team cost allocation
57 — Internal Developer Platform CLI + UI 12-platform IDP with service catalogs and golden paths

Running Demos

CLI Demos

# One-shot chat (simplest demo)
vibecli "Hello! What can you help me with?"

# Run a specific demo recording
vibecli
> /demo run <demo-id>

# List available demos
> /demo list

# Generate a demo with AI
> /demo generate --feature "agent loop"

# Export demo as HTML slideshow
> /demo export <id> --format html

VibeUI Demos

  1. Open VibeUI: cd vibeui && npm run tauri:dev
  2. Navigate to the Demo tab in the AI panel
  3. Browse demos by category
  4. Click Play to step through interactively

Self-Hosted / Air-Gapped

# Run with Ollama (no internet required)
docker-compose up -d
vibecli --provider ollama "Hello"