{"id":50302201,"url":"https://github.com/alexanderqchen/orb-ui","last_synced_at":"2026-05-28T13:30:30.324Z","repository":{"id":341048781,"uuid":"1167730822","full_name":"alexanderqchen/orb-ui","owner":"alexanderqchen","description":"The simplest voice AI component library for React. Works with Vapi and ElevenLabs. No config, no boilerplate — just drop it in.","archived":false,"fork":false,"pushed_at":"2026-05-25T17:59:25.000Z","size":634,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-25T19:33:35.863Z","etag":null,"topics":["animation","component-library","elevenlabs","react","typescript","vapi","voice-ai"],"latest_commit_sha":null,"homepage":"https://orb-ui.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alexanderqchen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-26T16:10:46.000Z","updated_at":"2026-05-25T17:59:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/alexanderqchen/orb-ui","commit_stats":null,"previous_names":["alexanderqchen/orb-ui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alexanderqchen/orb-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexanderqchen%2Forb-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexanderqchen%2Forb-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexanderqchen%2Forb-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexanderqchen%2Forb-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alexanderqchen","download_url":"https://codeload.github.com/alexanderqchen/orb-ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexanderqchen%2Forb-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33611247,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["animation","component-library","elevenlabs","react","typescript","vapi","voice-ai"],"created_at":"2026-05-28T13:30:29.254Z","updated_at":"2026-05-28T13:30:30.319Z","avatar_url":"https://github.com/alexanderqchen.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# orb-ui\n\nThe simplest way to add voice UI to your React app. One install, one component, works with Vapi and ElevenLabs out of the box.\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://orb-ui.com\"\u003e\n    \u003cimg src=\"assets/demo-screenshot.jpg\" alt=\"orb-ui demo\" width=\"600\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://orb-ui.com\"\u003eLive Demo\u003c/a\u003e · \u003ca href=\"https://www.npmjs.com/package/orb-ui\"\u003enpm\u003c/a\u003e · \u003ca href=\"https://github.com/alexanderqchen/orb-ui\"\u003eGitHub\u003c/a\u003e\n\u003c/p\u003e\n\n```jsx\nimport { Orb } from 'orb-ui'\nimport { createVapiAdapter } from 'orb-ui/adapters'\n\nfunction VoiceOrb({ vapi }) {\n  const adapter = createVapiAdapter(vapi, { assistantId: 'your-id' })\n\n  return \u003cOrb adapter={adapter} theme=\"circle\" /\u003e\n}\n```\n\n## Install\n\n```bash\nnpm install orb-ui\n```\n\n\u003e **Note:** Orb uses React hooks internally — in Next.js App Router, use it in a `'use client'` component.\n\n## Quick Start\n\n### With Vapi\n\n```jsx\nimport Vapi from '@vapi-ai/web'\nimport { Orb } from 'orb-ui'\nimport { createVapiAdapter } from 'orb-ui/adapters'\n\nconst vapi = new Vapi('your-public-key')\nconst adapter = createVapiAdapter(vapi, { assistantId: 'your-assistant-id' })\n\nfunction App() {\n  return \u003cOrb adapter={adapter} theme=\"circle\" /\u003e\n}\n```\n\n### With ElevenLabs\n\n```jsx\nimport { Conversation } from '@elevenlabs/client'\nimport { Orb } from 'orb-ui'\nimport { createElevenLabsAdapter } from 'orb-ui/adapters'\n\nconst adapter = createElevenLabsAdapter(Conversation, { agentId: 'your-agent-id' })\n\nfunction App() {\n  return \u003cOrb adapter={adapter} theme=\"circle\" /\u003e\n}\n```\n\n### Controlled mode (custom integration)\n\n```jsx\nimport { Orb } from 'orb-ui'\nimport { useState } from 'react'\n\nfunction App() {\n  const [state, setState] = useState('idle')\n  const [volume, setVolume] = useState(0)\n\n  return \u003cOrb state={state} volume={volume} theme=\"circle\" /\u003e\n}\n```\n\n## Themes\n\n| Theme    | Description                                                                   |\n| -------- | ----------------------------------------------------------------------------- |\n| `debug`  | State + volume display with start/stop. Use to verify your integration works. |\n| `circle` | Pulsing circle that reacts to volume.                                         |\n| `bars`   | Five bars that animate with voice.                                            |\n\n## Props\n\n| Prop      | Type                            | Default   | Description                                             |\n| --------- | ------------------------------- | --------- | ------------------------------------------------------- |\n| `theme`   | `'debug' \\| 'circle' \\| 'bars'` | `'debug'` | Visual theme                                            |\n| `state`   | `OrbState`                      | `'idle'`  | Conversation state (controlled mode)                    |\n| `volume`  | `number`                        | `0`       | Audio volume, 0–1 (controlled mode)                     |\n| `adapter` | `OrbAdapter`                    | —         | Provider adapter (manages state + volume automatically) |\n| `size`    | `number`                        | `200`     | Size in pixels                                          |\n| `onStart` | `() =\u003e void`                    | —         | Custom start handler (overrides adapter.start())        |\n| `onStop`  | `() =\u003e void`                    | —         | Custom stop handler (overrides adapter.stop())          |\n\n## States\n\n`idle` · `connecting` · `listening` · `speaking` · `error`\n\n## Supported Providers\n\n| Provider                                              | Adapter                                                  |\n| ----------------------------------------------------- | -------------------------------------------------------- |\n| [Vapi](https://vapi.ai)                               | `createVapiAdapter` from `orb-ui/adapters`               |\n| [ElevenLabs](https://elevenlabs.io/conversational-ai) | `createElevenLabsAdapter` from `orb-ui/adapters`         |\n| Custom                                                | Use controlled mode — pass `state` and `volume` directly |\n\n## Development\n\n```bash\ngit clone https://github.com/alexanderqchen/orb-ui.git\ncd orb-ui\npnpm install\n\n# Build the library\npnpm build\n\n# Run demo locally\npnpm dev:demo\n```\n\nUseful maintenance commands:\n\n```bash\npnpm check        # format check, lint, typecheck, tests, library build, demo build\npnpm format       # format repo files\npnpm changeset    # add release notes for a user-facing package change\n```\n\nReleases are managed with Changesets. Merging a Changesets version PR publishes\n`orb-ui` to npm from GitHub Actions using npm trusted publishing.\n\n## License\n\nMIT © [Alexander Chen](https://github.com/alexanderqchen)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexanderqchen%2Forb-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexanderqchen%2Forb-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexanderqchen%2Forb-ui/lists"}