Orbito is an SDK-first platform that makes any website controllable by AI agents. Instead of fragile web scraping, Orbito allows developers to explicitly expose UI functionalities ("intents") through a React SDK, creating a reliable bridge between human-designed interfaces and AI agents.
Current AI agents struggle with websites because:
- β Websites are designed for humans, not AI
- β Scraping is fragile and breaks with UI changes
- β No standardized way for agents to interact with web UIs
- β No permission/access control for agent actions
Orbito solves this by allowing developers to wrap UI components and declare agent-accessible actions with explicit schemas.
Orbito consists of three main components:
βββββββββββββββββββββββββββββββββββββββββ
β Orbito Ecosystem β
βββββββββββββββββββββββββββββββββββββββββ
β β
ββββββββ΄βββββββββββββββββ΄βββββββ
β β β β
βββββ΄ββββ βββββ΄βββββ ββββββ΄ββββββ
β React β β Backend β β Browser β
β SDK β βPlatformβ βExtensionβ
ββββββββββ βββββββββββ ββββββββββββ
- npm package:
orbito-react-sdk - Developers install it in their React apps
- Provides
<OrbitoProvider>anduseOrbitoAction()hook - Wraps UI components to expose actions
- Registers actions with Backend Platform
- Handles execution requests from Browser Extension
- FastAPI server + MongoDB database
- Central action registry for all Orbito-enabled websites
- Provides discovery API for extensions/agents
- Admin dashboard for managing actions
- Handles authentication via API keys
- Chrome extension (Manifest V3)
- Discovers actions available on current page
- Accepts natural language prompts from users
- Multi-step workflow execution - Breaks down complex tasks into sequential actions
- Navigation handling - Automatically waits for page navigation and React Router changes
- Executes actions via message passing to SDK
- Provides visual feedback and step-by-step execution results
-
Install SDK:
npm install orbito-react-sdk
-
Wrap your app:
import { OrbitoProvider } from 'orbito-react-sdk'; <OrbitoProvider apiKey="orbito_key_xxx" domain="mysite.com"> <App /> </OrbitoProvider>
-
Expose actions:
import { useOrbitoAction } from 'orbito-react-sdk'; const { register } = useOrbitoAction({ actionId: 'add-to-cart', intent: 'addToCart', description: 'Adds product to shopping cart', parameters: { quantity: { type: 'number', required: false, default: 1 } }, onExecute: handleAddToCart }); <button {...register()}>Add to Cart</button>
- Install Orbito Extension (Chrome Web Store)
- Visit Orbito-enabled website
- Click extension icon to see available actions
- Type natural language:
- Single action: "add 2 items to cart"
- Multi-step workflow: "Add product 1 to cart, go to cart, proceed to checkout, fill name with John Doe, fill email with john@example.com, and complete payment"
- Actions execute automatically with proper sequencing and navigation handling
orbito/
βββ packages/
β βββ react-sdk/ # React SDK package
β β βββ src/
β β β βββ OrbitoProvider.tsx
β β β βββ useOrbitoAction.ts
β β β βββ OrbitoRegistry.ts
β β β βββ OrbitoClient.ts
β β βββ demo/ # Demo React app
β β
β βββ backend-platform/ # Backend + Dashboard
β β βββ backend/ # FastAPI server
β β β βββ server.py
β β β βββ models/
β β β βββ routes/
β β β βββ database.py
β β βββ frontend/ # Admin dashboard (React)
β β
β βββ browser-extension/ # Chrome extension
β βββ manifest.json
β βββ src/
β β βββ popup/ # Extension popup UI
β β βββ content/ # Content script
β β βββ background/ # Service worker
β βββ public/
β
βββ docs/ # Integration contracts & guides
βββ api-contract.md # Backend API specification
βββ message-protocol.md # Extension β SDK communication
βββ data-models.md # Database schemas
βββ integration-flow.md # Sequence diagrams
βββ puneet-react-sdk.md # React SDK developer guide
βββ shreyas-backend.md # Backend developer guide
βββ chayan-browser-extension.md # Extension developer guide
- Language: TypeScript
- Framework: React 18+
- Build: Rollup/Webpack
- Package Manager: npm/yarn
- Language: Python 3.11+
- Framework: FastAPI
- Database: MongoDB (motor driver)
- Auth: API Keys
- Deployment: Docker + Kubernetes (future)
- Language: TypeScript
- UI: React
- Manifest: V3
- Build: Webpack
- Browser: Chrome (Firefox support later)
- Node.js 18+
- Python 3.11+
- MongoDB (local or Atlas)
- Chrome browser (for extension development)
1. Clone repository:
git clone <repo-url>
cd orbito2. Setup Backend:
cd packages/backend-platform/backend
pip install -r requirements.txt
# Start MongoDB locally
mongod --dbpath ./data
# Run server
uvicorn server:app --reload --port 80013. Setup React SDK:
cd packages/react-sdk
npm install
npm run build
# Run demo
cd demo
npm install
npm run dev4. Setup Browser Extension:
cd packages/browser-extension
npm install
npm run build
# Load in Chrome: chrome://extensions > Load unpacked > select dist/All technical documentation is in the /docs folder:
- API Contract: Complete REST API specification
- Message Protocol: Extension β SDK communication
- Data Models: Database schemas and validation
- Integration Flow: Sequence diagrams for key operations
- Multi-Step Workflows: Guide to multi-step action chaining and workflow execution
- React SDK Guide: For Puneet (SDK development)
- Backend Guide: For Shreyas (Backend development)
- Extension Guide: For Chayan (Extension development)
- Demo1 Actions Guide: Complete guide to all actions in the demo e-commerce app
- Demo1 README: Setup and usage instructions for the demo app
Each developer works in their designated package folder:
- Puneet (React SDK):
/packages/react-sdk/ - Shreyas (Backend):
/packages/backend-platform/backend/ - Chayan (Extension):
/packages/browser-extension/
Commit Prefixes:
- SDK commits:
[sdk] Your commit message - Backend commits:
[backend] Your commit message - Extension commits:
[extension] Your commit message - Docs commits:
[docs] Your commit message
Branch Strategy:
- Main branch:
main - Feature branches:
feature/<component>-<feature-name> - Example:
feature/sdk-action-highlight,feature/backend-rate-limiting
- SDK: Jest + React Testing Library
- Backend: pytest
- Extension: Jest
- SDK β Backend: Test action registration
- Extension β Backend: Test action discovery
- Extension β SDK: Test action execution via messages
- Playwright for full workflow testing
- Test: User types prompt β Action executes β UI updates
- β Monorepo structure
- β Integration contracts
- π§ React SDK core
- π§ Backend API
- π§ Browser Extension
- β End-to-end integration testing
- β Multi-step action chaining and workflow execution
- β Navigation detection and waiting for React Router
- β Dynamic actions (single action for multiple elements)
- β Admin dashboard (website/action management)
- β Advanced NLP for prompt parsing
- β Visual action highlighting
- β Analytics and usage tracking
- β Framework-agnostic core (Vue, Angular support)
- β Server-side action execution
- β AI agent API (for programmatic access)
- β Marketplace for Orbito-enabled sites
- Team Lead: [Your Name]
- Slack Channel: #orbito-dev
- Documentation:
/docs - Issues: GitHub Issues
MIT License - See LICENSE file for details
Built with β€οΈ by the Orbito Team