An Agentic UX Framework β AI-powered spatial navigation with depth, motion, and natural language.
WhiteGlove is an open-source React framework for building spatial web experiences with AI-powered adaptation. Instead of flat pages connected by links, WhiteGlove treats the web as a 3D space where users navigate through "rooms" of content with smooth depth transitions β all while AI watches behavior and adapts the experience.
WhiteGlove embeds AI directly into the browsing experience:
- / AI Command Bar β Press
/to navigate with natural language - π€ Voice Control β Say "Hey WhiteGlove" for hands-free navigation
- π§ Behavior Tracking β Automatically captures scroll, click, hover, dwell time, exit intent
- π― Intent Engine β LLM analyzes behavior and suggests adaptive changes
- π Engagement Scoring β Real-time scoring influences dynamic mutations
Revolutionary content architecture for modern web:
- πͺ Door Cards β Content pages appear as doors in a directory; click to "enter" the room
- π Depth Transitions β Smooth animations communicate spatial movement (zoom in/out, fade, blur)
- π± Mobile Gestures β Swipe down to exit, tap to enter
- π Markdown CMS β Drop
.mdfiles in/content/and they auto-appear in the directory
- π Bring Your Own Key β Use your own LLM API keys via AiAssist Secure
- πΈ No Markup β Pay providers directly at their rates
- π Multi-Provider β Switch between OpenAI, Anthropic, Groq without code changes
git clone https://github.com/AiAssistSecure/whiteglove.git
cd whiteglove
npm installnpm run devVisit http://localhost:5000/v2 to see WhiteGlove in action.
Drop Markdown files in src/content/ with this frontmatter:
---
title: Your Page Title
icon: Sparkles
description: Brief card description
category: Getting Started
order: 1
---
## Your Content
Write in standard Markdown...That's it! The page automatically appears in the directory.
See CONTENT_TEMPLATE.md for full template with available icons and formatting examples.
Sparkles Β· Layers Β· Blocks Β· DollarSign Β· HelpCircle Β· Wrench Β· LayoutList Β· Zap Β· Shield Β· Code Β· Users Β· Settings Β· Globe Β· Lock Β· Rocket Β· BookOpen Β· MessageSquare Β· Terminal Β· Database Β· Key
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Directory View β
β Cards organized by category, each is a "door" β
βββββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββ
β click / βK / tap
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Depth Transition β
β Scale up, fade in, slide from bottom β
βββββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββ
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Content Room β
β Full page with styled Markdown rendering β
β Prev/Next navigation, swipe to exit β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Press / (or βK) to open natural language navigation:
| Say This | WhiteGlove Does |
|---|---|
| "pricing" | Navigates to pricing page |
| "how does it work" | Opens architecture |
| "faq" | Jumps to FAQ |
| "security" | Opens security content |
The AI matches your query to content titles and descriptions.
WhiteGlove supports hands-free voice navigation using the browser's built-in Web Speech API.
- Click the microphone button (bottom-left corner) to enable voice
- Say "Hey WhiteGlove" β you'll hear a confirmation chime
- Speak your command (e.g., "open pricing", "show architecture")
- Watch it navigate and hear the spoken confirmation
- "Hey WhiteGlove"
- "Hey White Glove"
- "OK WhiteGlove"
- "Okay WhiteGlove"
You can combine the wake phrase with your command in one breath:
"Hey WhiteGlove, show me the pricing"
| State | Appearance |
|---|---|
| Off | Gray mic icon |
| Listening | Green outline, waiting for wake word |
| Awake | Pulsing green, ready for command |
| Speaking | Volume icon, TTS playing |
- 100% client-side β Uses browser Web Speech API, no backend calls
- Zero cost β No API usage, no quotas
- Auto-restart β Recognition continues after each command
- Browser support β Chrome, Edge, Safari (requires HTTPS in production)
whiteGlove/
βββ src/
β βββ components/
β β βββ SpatialView.tsx # Viewport & transitions
β β βββ CommandBar.tsx # Natural language nav
β β βββ ui/ # Aceternity UI effects
β βββ content/ # Markdown pages (v2)
β β βββ architecture.md
β β βββ features.md
β β βββ pricing.md
β β βββ ...
β βββ context/
β β βββ WhiteGloveProvider.tsx
β β βββ VoiceProvider.tsx # Voice control & TTS
β βββ lib/
β β βββ content.ts # MD loader & parser
β β βββ utils.ts
β βββ pages/
β βββ V2Page.tsx # Spatial navigation
β βββ LandingPage.tsx # Adaptive UX (v1)
βββ CONTENT_TEMPLATE.md # Template for new pages
βββ README.md
- React 18 + TypeScript + Vite
- Tailwind CSS + shadcn/ui
- Framer Motion β Physics-based animations
- Aceternity UI β Spotlight, beams, gradients
- gray-matter β Markdown frontmatter parsing
- react-markdown β Custom component rendering
Modify colors in tailwind.config.js. The purple/pink gradient is the default accent.
Edit SpatialView.tsx to add custom renderers:
components={{
Banner: ({ children }) => (
<div className="bg-purple-500/10 p-4 rounded-xl">
{children}
</div>
)
}}Create new categories by adding them to your frontmatter. They auto-group in the directory.
WhiteGlove is free and open source (MIT License).
For AI features (v1 adaptive UX), you need an AiAssist Secure API key:
- Free tier available
- BYOK β bring your own provider keys (OpenAI, Anthropic, Groq)
- No inference markup
WhiteGlove is built by AiAssist Secure, a product of INTERCHAINED LLC.
We believe the web should be spatial, adaptive, and intelligent. WhiteGlove is our contribution to making that vision accessible to everyone.
Built with AiAS. Powered by AiAssist Secure.