🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Nimo AI Glasses

by @orideclaw

Connect AI smart glasses to OpenClaw via Companion App. Provides secure linkCode pairing, chat API, and SSE streaming for voice-controlled AI conversations t...

Versionv0.1.0
Downloads330
TERMINAL
clawhub install nimo-glasses

πŸ“– About This Skill


name: nimo-glasses description: Connect AI smart glasses to OpenClaw via Companion App. Provides secure linkCode pairing, chat API, and SSE streaming for voice-controlled AI conversations through smart glasses.

Nimo AI Glasses Plugin

Connect AI smart glasses to your OpenClaw Gateway for private, on-device AI voice conversations.

What it does

  • πŸ”— Secure pairing β€” 6-digit one-time link code, auto-rotates after each pairing
  • πŸ’¬ Chat API β€” POST /nimo/chat for text β†’ AI reply
  • πŸ“‘ SSE streaming β€” real-time token-by-token AI responses via GET /nimo/events
  • πŸ” Session tokens β€” bearer-token auth with configurable expiry (default 60 days)
  • βš™οΈ Configurable β€” custom system prompt, max response length
  • Installation

    openclaw plugins install nimo-glasses
    

    Then enable in your config:

    {
      plugins: {
        entries: {
          "nimo-glasses": {
            enabled: true,
            config: {
              maxResponseLength: 300,
              systemPrompt: "You are an AI assistant in smart glasses. Be concise, no line breaks."
            }
          }
        }
      }
    }
    

    Restart the gateway:

    openclaw gateway restart
    

    Usage

    1. GET /nimo/health β€” get the current link code 2. POST /nimo/pair β€” exchange link code for a session token 3. POST /nimo/chat β€” send a message, get AI reply 4. GET /nimo/events β€” SSE stream for real-time responses

    Data Flow

    Smart Glasses β†’ STT β†’ Companion App β†’ OpenClaw Gateway (this plugin) β†’ AI Agent β†’ Reply β†’ TTS β†’ Glasses
    

    Data does NOT pass through any third-party server. Direct connection to your own Gateway.

    πŸ’‘ Examples

    1. GET /nimo/health β€” get the current link code 2. POST /nimo/pair β€” exchange link code for a session token 3. POST /nimo/chat β€” send a message, get AI reply 4. GET /nimo/events β€” SSE stream for real-time responses