You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@sschepis/oboto

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sschepis/oboto

Oboto: AI-powered everything assistant

latest
Source
npmnpm
Version
1.2.1
Version published
Maintainers
1
Created
Source

Oboto

Oboto

Your AI-Powered Everything Assistant

Download Platform License

Oboto is an advanced AI assistant built to make you more productive, efficient, and successful — across every domain. From software engineering and project management to research, automation, and creative work, Oboto combines a persistent cognitive architecture with deep system integration to act as your tireless partner in getting things done.

📥 Download

PlatformDownloadNotes
macOS (Apple Silicon)Oboto-1.2.0-arm64.dmgCode-signed, requires macOS 10.12+
macOS (zip)Oboto-1.2.0-arm64-mac.zipPortable zip archive
WindowsBuild via GitHub ActionsNSIS installer + portable exe

🚀 Key Features

Core Architecture

  • 🤖 Multi-Agent Architecture — Multiple parallel conversations per workspace, background tasks, recurring schedules, and an autonomous agent loop. Conversations share workspace memory and report findings back to a central command. See Multi-Agent Architecture.
  • 🧠 Consciousness Processor — Simulates an "inner life" with state persistence, ambiguity resolution (Semantic Collapse), and embodied cognition (Somatic Engine) for more coherent reasoning.
  • 🏗️ Structured Development — Enforces architectural discipline via a "Living Manifest" (SYSTEM_MAP.md), ensuring code changes align with global invariants and design phases.

AI Provider Support

  • Multi-Provider — Switch seamlessly between OpenAI, Google Gemini, Anthropic Claude, Google Vertex AI (Claude on GCP), local LLM Studio, and in-browser WebLLM models.
  • Model Routing — Route specific task types (agentic, reasoning, summarization, code completion) to different models for cost/quality optimization.
  • Auto-Detection — Provider is inferred automatically from the model name or can be set explicitly.

Integrations

  • 🔌 OpenClaw — Delegate tasks to external agents for cross-system coordination.
  • 🔌 MCP Support — Connect to any Model Context Protocol server for dynamic tool extension.
  • ☁️ Cloud Sync — Real-time cloud synchronization for conversations, files, and workspaces with presence indicators and multi-device support.

User Interface

  • 🖥️ Generative UI (Surfaces) — Spawn dynamic React dashboards on the fly to visualize data or create custom control panels.
  • ❓ Integrated Help System — Contextual help tooltips, searchable help panel, guided tours, feature spotlights, smart suggestions, and "What Is This?" mode for exploring the interface.
  • 🧙 Setup Wizard — Guided first-run onboarding that walks through provider selection, API key configuration, workspace setup, and optional OpenClaw integration.
  • 🎨 UI Themes — Customizable themes with live preview and theme editor.
  • ⌨️ Keyboard Shortcuts — Global command palette (Cmd+K), keyboard shortcuts reference, and guake-style terminal.

Desktop & Browser

  • 🖥️ System Tray App — Electron-based tray application for running Oboto as a persistent background service with workspace management and auto-start on login.
  • 🌐 Chrome Extension — Full browser automation and control via a Chrome extension that connects to the Oboto server over WebSocket.

Developer Features

  • 📦 Library API — Embeddable as an npm package (@sschepis/oboto) with a programmatic API for task execution, streaming, design-and-implement workflows, and custom tool registration.
  • 🔐 Secrets Vault — AES-256-GCM encrypted secrets storage for API keys and credentials, managed through the UI or CLI.

🔌 Plugin Ecosystem

Oboto ships with 30 built-in plugins, each extending capabilities in a specific domain:

PluginDescription
browserPuppeteer-based browser automation
canvas-vizCanvas-based data visualization
chrome-extChrome extension integration
code-interpreterSandboxed code execution environment
document-readerPDF, DOCX, and document parsing
embedVector embedding operations
firecrawlWeb scraping and crawling
hello-worldPlugin development template
html-artifactsHTML artifact rendering
imageAI-powered image generation and manipulation
knowledge-graphSemantic knowledge graph with memory fields
loggerStructured logging
mathWolfram-style computation via mathjs
math-animAnimated mathematical explanations using a Manim-inspired DSL
note-takerNote capture and organization
notification-centerSystem notifications
openclawExternal agent task delegation
personasAgent personality management
poorman-alphaSymbolic math via SymPy bridge
prompt-editorSystem prompt editor
secure-backupEncrypted workspace backups
semantic-searchSemantic document search
temporal-voyagerConversation time-travel
thought-stream-debuggerAgent reasoning debugger
ttsText-to-speech (ElevenLabs, OpenAI)
ui-themesTheme management and editor
voice-suiteVoice input/output providers
web-searchWeb search via Serper API
workflow-weaverVisual workflow builder
workflowsMulti-step workflow automation

🛠️ Tool Categories

CategoryToolsDescription
File Operationsread, write, search, diffFile CRUD with safety guards
ShellexecuteSandboxed command execution
Browsernavigate, click, type, screenshotPuppeteer-based browser automation
Chrome Extensiontabs, DOM, CDP, cookiesFull Chrome browser control via extension
Desktopmouse, keyboard, screenNative desktop automation via nut.js
Imagegenerate, edit, analyzeAI-powered image generation and manipulation
Mathevaluate, symbolicWolfram-style computation via mathjs
Webfetch, searchWeb requests and search via Serper
Structured Devmanifest, flow, bootstrapProject scaffolding and architecture
MCPconnect, callModel Context Protocol server integration
OpenClawdelegate, statusExternal agent task delegation
Workflowscreate, run, scheduleMulti-step workflow automation
Surfacescreate, update, deleteDynamic React dashboard generation
Async Tasksspawn, status, cancelBackground task management
Personasset, list, createAgent personality management
Skillsinstall, list, invokeModular skill system
Embeddingsembed, searchVector embedding operations
TTSspeakText-to-speech via ElevenLabs/OpenAI

📚 Documentation

Detailed documentation is available in the docs/ directory:

⚡ Quick Start

Prerequisites

  • Node.js v18+
  • npm & pnpm
  • Google Chrome (for browser automation)
npm install -g @sschepis/oboto

After installation, two binaries are available on your PATH:

CommandDescription
obotoCLI — interactive mode, single-shot prompts, or --server flag
oboto-serverStart the web server with UI directly

From Source

  • Clone & Install

    git clone https://github.com/sschepis/oboto.git
    cd oboto
    npm install
    
  • Build UI

    cd ui
    pnpm install
    pnpm run build
    cd ..
    
  • Configure

    cp .env.example .env
    # Edit .env with your API keys (Google Gemini, Anthropic, OpenAI)
    

Running Oboto

Server Mode (Agent + Web UI)

# Via the installed binary:
oboto-server

# Or via npm scripts:
npm run start:server

Access the UI at http://localhost:3000.

For development with hot-reloading UI:

# Terminal 1: Start the backend
npm run start:server

# Terminal 2: Start the Vite dev server
npm run dev:ui

Access the dev UI at http://localhost:5173.

CLI Mode

# Interactive mode
oboto

# Single-shot mode
oboto "Create a REST API for user management"

# Or via npm
npm start

System Tray App (Background Service)

npm run tray:install
npm run tray

Building from Source

macOS DMG:

npm run tray:build:mac
# Output: tray-app/dist/Oboto-1.2.0-arm64.dmg

Windows Installer:

# Requires Wine on macOS, or run on Windows / via GitHub Actions
npm run tray:build:win

Or trigger the Windows build workflow on GitHub Actions.

🏗️ Project Structure

oboto/
├── ai.mjs                        # CLI entry point (interactive, single-shot, --server)
├── bin/
│   └── oboto-server.mjs           # Server binary (installed to PATH via npm)
├── src/                           # Backend source
│   ├── core/                      # Agent loop, AI provider, conversation, consciousness
│   ├── server/                    # Express + WebSocket server, WS handlers
│   ├── execution/                 # Tool executor and handler modules
│   ├── structured-dev/            # Manifest, flow manager, bootstrapper, visualizers
│   ├── reasoning/                 # Fact inference, semantic collapse
│   ├── cloud/                     # Cloud sync, auth, realtime, conversation/file/workspace sync
│   ├── skills/                    # Skills manager
│   ├── plugins/                   # Plugin API, loader, manager, settings, storage
│   ├── surfaces/                  # Dynamic UI surface manager
│   ├── lib/                       # Embeddable library API (npm package entry point)
│   │   ├── index.mjs              # Main export: AiMan, Oboto, adapters, modules
│   │   └── interfaces.d.ts       # TypeScript type declarations
│   └── ui/                        # Console styler, generative UI renderer
├── ui/                            # React + Vite frontend
│   └── src/
│       ├── components/            # Chat, layout, features (60+ components)
│       │   ├── features/          # Settings, plugins, surfaces, wizard, etc.
│       │   ├── help/              # Help system (tours, tooltips, articles, search)
│       │   └── ...
│       ├── hooks/                 # React hooks for state management
│       ├── services/              # WebSocket service layer
│       └── surface-kit/           # Reusable UI primitives (charts, data, feedback, overlay)
├── plugins/                       # 30 built-in plugins (shipped with npm package)
├── tray-app/                      # Electron system tray application
├── chrome-extension/              # Chrome browser controller extension
├── skills/                        # Modular skill definitions (SKILL.md)
├── docs/                          # Architecture and guide documentation
├── .github/workflows/             # CI/CD workflows (Windows build)
└── themes.json                    # UI theme definitions

🧠 The "Consciousness"

Oboto features a unique cognitive architecture:

  • Fact Inference Engine — Learns and deduces new facts from conversation context.
  • Symbolic Continuity — Maintains a cryptographic "identity thread" across sessions, with optional Chinese Room Mode for encrypted private symbolic space.
  • Somatic Engine — Simulates nervous system states (Focus, Stress, Rest) to modulate creativity and caution.
  • Archetype Analyzer — Analyzes interaction patterns and adapts persona behavior.
  • Persona Manager — Manages customizable agent personalities and behavioral archetypes.
  • Semantic Collapse — Resolves ambiguity by collapsing probability distributions to concrete decisions.

📦 Library Usage

Oboto can be embedded as a library in your own Node.js applications:

npm install @sschepis/oboto

Basic Usage

import { AiMan } from '@sschepis/oboto';

const ai = new AiMan({ workingDir: process.cwd() });

// Execute a task
const result = await ai.execute('Create a REST API for user management');

// Design then implement
const { design, result: impl } = await ai.designAndImplement('Add authentication middleware');

// Stream responses
await ai.executeStream('Refactor the database layer', (chunk) => {
  process.stdout.write(chunk);
});

// Register custom tools
ai.registerTool(schema, handler);

Subpath Imports

The package provides several subpath imports for granular access:

// Main library entry — AiMan, Oboto, adapters, structured dev modules
import { AiMan, Oboto, config } from '@sschepis/oboto';

// Adapters only — for custom LLM/status/memory implementations
import { ConsoleStatusAdapter, NetworkLLMAdapter, MemoryAdapter } from '@sschepis/oboto/adapters';

// Programmatic server — create an Express server with the AiMan API
import { createServer } from '@sschepis/oboto/server';
const app = createServer({ workingDir: process.cwd() });
app.listen(3000);

// Plugin system — manage plugins programmatically
import { PluginManager, PluginLoader } from '@sschepis/oboto/plugins';

Programmatic Server

You can create a standalone API server programmatically:

import { createServer } from '@sschepis/oboto/server';

const app = createServer({ workingDir: '/path/to/workspace' });
app.listen(3000, () => console.log('Oboto API running on port 3000'));

// POST /api/execute   — Execute a task
// POST /api/execute/stream — Stream a task (SSE)
// POST /api/design    — Generate a design document
// POST /api/implement — Implement a design

See the full Library API Reference for details.

🌐 Chrome Extension

The Chrome extension enables full browser automation:

  • Navigate to chrome://extensions and enable Developer mode
  • Click "Load unpacked" and select the chrome-extension/ directory
  • Start the Oboto server — the extension auto-connects via WebSocket

Features include tab management, DOM interaction, CDP debugging, cookie/storage access, and real-time event streaming. See Chrome Extension README.

⚙️ Configuration

Environment Variables

Key configuration options in .env:

VariableDefaultDescription
AI_MODELgpt-4oAI model to use
AI_PROVIDERauto-detectProvider: openai, gemini, anthropic, lmstudio, cloud, webllm
AI_TEMPERATURE0.7Response creativity
AI_MAX_TOKENS4096Max response tokens
AI_MAX_TURNS100Max conversation turns per execution

Model Routing

Route specific task types to different models for cost/quality optimization:

ROUTE_AGENTIC=gemini-2.5-flash
ROUTE_REASONING_HIGH=gemini-2.5-pro
ROUTE_REASONING_MEDIUM=gemini-2.5-flash
ROUTE_REASONING_LOW=gemini-2.0-flash
ROUTE_SUMMARIZER=gemini-2.0-flash
ROUTE_CODE_COMPLETION=gemini-2.0-flash

Secrets Vault

API keys can be managed through the Secrets Vault UI (Cmd+K → "Secrets Vault"). Secrets are AES-256-GCM encrypted at rest in .secrets.enc. Priority: Shell env vars > Vault secrets > .env file > defaults.

🧪 Testing

npm test

Tests use Jest with --experimental-vm-modules for ESM support. Test files are located alongside source in __tests__/ directories.

🤝 Contributing

We welcome contributions! Please see the Structured Development Guide to understand how we use the SYSTEM_MAP.md to manage features.

📄 License

MIT

Keywords

ai

FAQs

Package last updated on 12 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts