# Agentic OS (agentic-os) ๐ง โ Multi-Agent Orchestration Platform
A locally-hosted operating system for AI agents โ an open-source GitHub repository โ that coordinates **opencode**, **Hermes Agent**, and **Gemini CLI** into a unified dashboard with persistent memory, cron scheduling, skill execution, cost analytics, and disaster recovery.
> **Why Agentic OS?** Most agent tools work in isolation โ a terminal for coding, a separate chat for research, another for memory. Agentic OS is the **control plane** that unifies them: one dashboard, one memory layer, one scheduler, one skill hub. Three agents, infinite capabilities.
---
## โจ Features
| Category | Features |
|----------|----------|
| **๐ค 3-Agent Engine** | opencode (code/DevOps), Hermes (memory/scheduling), Gemini (research/analysis) with intelligent routing |
| **๐งฉ 16+ Skills** | Executable skill packs with eval scoring, learnings, and score history per run |
| **๐ง Persistent Memory** | SQLite FTS5 + `brain/` folder โ shared context read by all agents at session start |
| **โฑ Cron Scheduler** | APScheduler-powered jobs โ heartbeat, memory consolidation, daily standup, DevOps audit |
| **๐ฐ Cost Analytics** | Track spending per provider, model, agent. Free-tier alerts prevent surprise bills |
| **๐ Audit Trail** | Every action logged โ chat, skill runs, settings changes, backups |
| **๐พ One-Click Backup** | Full tar.gz snapshot of all configs, skills, brain, agents, prompts |
| **๐ Prompt Library** | 10 reusable templates โ code review, system audit, project plan, brainstorm, and more |
| **๐ Standards System** | Discover and inject coding conventions across your project |
| **๐ Plugin Registry** | Marketplace-style plugin management (extensible via skills) |
| **๐จ Dark/Light Theme** | GitHub-style dark mode + clean light theme, toggle from sidebar |
| **โก Zero API Costs** | Built for free tiers โ Gemini Flash, OpenRouter free models, local opencode |
| **๐ Kanban Board** | Visual task management โ drag-and-drop columns, priority/status filtering, block/unblock, detail view |
| **๐ฏ Goals** | Project targets with progress tracking, auto-syncs to `brain/active-projects.md` |
| **๐ Journal** | Daily markdown entries stored as `brain/journal/YYYY-MM-DD.md` with full-text search |
| **โค๏ธ Agent Health** | Real-time monitoring of opencode, Hermes, and Gemini CLI availability |
| **๐งญ Smart Router** | Keyword-based task routing with confidence scoring โ suggests best agent for any task |
| **๐ Learning Analytics** | Skill evaluation scores, performance trends, and historical charts |
| **๐ฌ Session Replay** | Browse and replay past opencode sessions from the dashboard |
| **โ Error Dashboard** | Real-time error tracking with category filtering and circuit breaker status |
| **๐ Circuit Breaker** | Auto-trip after N failures, auto-recovery after 300s, manual reset |
| **โฑ Event-Driven Scheduler** | File-watcher auto-reloads jobs on change, webhook receiver, execution history |
| **๐ Webhook Receiver** | `/api/webhook` โ trigger skill execution from external tools |
| **๐ง SQLite FTS5 Memory** | Full-text search across brain, skills, journal with entity extraction |
| **๐ค Auto-Skill Generator** | `POST /api/skills/generate` โ create SKILL.md from natural language |
| **๐ฑ Mobile PWA** | Bottom navigation bar, manifest.json, service worker, touch-friendly UI |
---
## ๐ Architecture
```
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ AGENTIC OS DASHBOARD โ
โ FastAPI + Tailwind SPA โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ โ
โ โโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโ โ
โ โ opencode โ โ Hermes โ โ Gemini CLI โ โ
โ โ (Code/DevOps) โ โ (Memory/Sched) โ โ (Research/Analy) โ โ
โ โ File Ops) โ โ /Channels) โ โ โ โ
โ โโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโ โ
โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ 7 CORE LAYERS (Stacked) โ โ
โ โ Layer 7: Identity / Persona / Constitution โ โ
โ โ Layer 6: Self-Evolution + Capability Manager โ โ
โ โ Layer 5: Scheduler + Awareness + Health Guardian โ โ
โ โ Layer 4: Memory Graph + Memory Consolidation โ โ
โ โ Layer 3: Skills Hub + Eval + Learnings Loop โ โ
โ โ Layer 2: Business Brain + Context Folders โ โ
โ โ Layer 1: Agent Router + Standards + Profiles โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
```
### Agent Responsibilities
| Agent | Role | Default Model | Provider | Cost |
|-------|------|---------------|----------|------|
| **opencode** | Code generation, DevOps, file operations | deepseek-v4-flash-free | opencode-zen | **$0** |
| **Hermes Agent** | Persistent memory, scheduling, messaging | Owl Alpha (1M ctx) | OpenRouter | **$0** |
| **Gemini CLI** | Web research, multi-modal analysis | gemini-2.5-flash | Google OAuth | **$0** |
### Routing Rules
- **Code/DevOps task?** โ opencode
- **Memory/Channel/Schedule?** โ Hermes Agent
- **Research/Analysis?** โ Gemini CLI
- **Complex multi-step?** โ Chain: Gemini researches โ opencode implements โ Hermes monitors/schedules
---
## ๐ Quick Start
```bash
git clone https://github.com/modimihir07/agentic-os.git
cd agentic-os
chmod +x install.sh && ./install.sh
./start.sh
# Open http://127.0.0.1:8080
```
---
## ๐ Prerequisites
| Tool | Required? | Install |
|------|-----------|---------|
| Python 3.10+ | โ
Required | `sudo apt install python3 python3-pip` |
| Node.js 18+ | โ For opencode | `curl -fsSL https://deb.nodesource.com/setup_20.x \| sudo bash - && sudo apt install -y nodejs` |
| opencode | โ For code tasks | `npm install -g @opencode/cli` |
| Hermes Agent | โ For memory/scheduling | `curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh \| bash` |
| Gemini CLI | โ For Google AI | `npm install -g @google/gemini-cli` |
> โ = Optional โ the dashboard works with any subset of installed agents.
---
## ๐ง Configuration
### Hermes (OpenRouter)
```bash
# Set your OpenRouter API key
echo 'OPENROUTER_API_KEY=sk-or-v1-your-key-here' > ~/.hermes/.env
```
### Gemini CLI (Google OAuth)
```bash
gemini auth login
# Complete OAuth in browser โ tokens saved to ~/.gemini/oauth_creds.json
```
### Dashboard Settings
Edit `data/settings.json`:
```json
{
"dashboard": { "port": 8080 },
"theme": "dark",
"agents": { "opencode": true, "hermes": true, "gemini": true }
}
```
---
## ๐ Project Structure
```
agentic-os/
โโโ server.py # FastAPI backend (REST API)
โโโ requirements.txt # Python dependencies
โโโ install.sh # One-command installer
โโโ start.sh # Launch dashboard
โโโ backup.sh / restore.sh # Disaster recovery
โ
โโโ dashboard/ # Web frontend (SPA)
โ โโโ index.html # Entry point + sidebar
โ โโโ app.js # SPA router + theme/sidebar toggle
โ โโโ api.js # API client (all endpoints)
โ โโโ styles.css # Full dark/light theme CSS
โ โโโ utils.js # Shared utilities
โ โโโ pages/ # 21 page modules (13 original + 7 v0.2.0 + 1 v0.3.0)
โ โโโ dashboard.js # Overview with stats
โ โโโ skills.js # Skill grid/list/detail
โ โโโ memory.js # Brain file editor
โ โโโ chat.js # Multi-agent chat
โ โโโ scheduler.js # Cron job manager
โ โโโ audit.js # Activity trail
โ โโโ cost.js # Cost analytics charts
โ โโโ plugins.js # Plugin marketplace
โ โโโ backups.js # Backup/restore UI
โ โโโ prompts.js # Template library
โ โโโ standards.js # Code conventions
โ โโโ settings.js # Config editor
โ โโโ setup-wizard.js # Guided setup
โ โโโ kanban.js # โธ Kanban Board (v0.2.0)
โ โโโ goals.js # โธ Goals (v0.2.0)
โ โโโ journal.js # โธ Journal (v0.2.0)
โ โโโ agent-health.js # โธ Agent Health (v0.2.0)
โ โโโ smart-router.js # โธ Smart Router (v0.2.0)
โ โโโ learning-analytics.js # โธ Learning Analytics (v0.2.0)
โ โโโ session-replay.js # โธ Session Replay (v0.2.0)
โ โโโ errors.js # โธ Error Dashboard (v0.3.0)
โ
โโโ brain/ # Shared context (all agents read)
โ โโโ memory_search.py # โธ SQLite FTS5 search (v0.3.0)
โ โโโ business-brain.md # Current project context
โ โโโ memory.md # Accumulated knowledge
โ โโโ recent-decisions.md
โ โโโ active-projects.md
โ โโโ identity.md
โ โโโ constitution.md
โ โโโ journal/ # Daily markdown entries (YYYY-MM-DD.md)
โ
โโโ skills/ # 16 executable skills
โ โโโ devops-audit/ # GCP/CloudMart infra audit
โ โโโ heartbeat/ # 5-min health check
โ โโโ content-draft/ # Blog/newsletter writing
โ โโโ code-review/ # PR review checklist
โ โโโ research-synthesis/ # Gemini research aggregator
โ โโโ daily-standup/ # Morning briefing
โ โโโ meeting-minutes/ # Notes processor
โ โโโ project-planner/ # Step-by-step plans
โ โโโ brainstorming/ # Socratic design
โ โโโ systematic-debug/ # 4-phase root cause
โ โโโ memory-consolidation/ # Weekly synthesis
โ โโโ backup-skill/ # Snapshot creator
โ โโโ cost-analytics/ # Multi-provider cost
โ โโโ tdd-cycle/ # Red-green-refactor
โ โโโ goal-planner/ # Goal โ steps
โ โโโ _template/ # Starter template
โ
โโโ agents/ # Per-agent configs
โโโ scheduler/jobs/ # Cron job definitions
โโโ registry/ # Plugin marketplace
โโโ standards/ # Discover/inject conventions
โโโ prompts/ # 10 reusable templates
โโโ data/ # Runtime data (agent-routes.json tracked; settings/cost/chat/error/scheduler/memory/circuit/kanban gitignored)
โโโ audit/ # Activity log (gitignored)
โโโ backups/ # Snapshots (gitignored)
```
---
## ๐ What's New in v0.3.0
| Feature | Description |
|---------|-------------|
| **๐ Security Audit** | 23 vulnerabilities fixed: 3 CRITICAL (path traversal), 8 HIGH (XSS, command injection, missing headers), 7 MEDIUM. Security headers middleware added (CSP, HSTS, X-Frame-Options) |
| **โฑ Event-Driven Scheduler** | Rewritten with file-watcher auto-reload (watchdog-style), webhook receiver at `/api/webhook`, execution history, manual job triggers |
| **โ Error Dashboard** | New `/api/errors` endpoints with category filtering (agent/skill/api/system). Dedicated dashboard page with error log + circuit breaker status cards |
| **๐ Circuit Breaker** | Auto-trip after 3 failures, half-open recovery after 300s. Per-agent state tracking with manual reset. Prevents cascading failures to offline agents |
| **๐ง Persistent Memory (SQLite FTS5)** | Full-text search across `brain/*.md`, `skills/*/*.md`, `brain/journal/`. Entity extraction (persons, emails, URLs, acronyms, IPs). Reindex endpoint |
| **๐ค Auto-Skill Generator** | `POST /api/skills/generate` takes natural language description โ creates full SKILL.md with eval.json and context folder |
| **๐ Webhook Receiver** | Generic webhook at `/api/webhook/generic` plus skill-targeted webhooks. Integrates with GitHub, CI/CD, external tools |
| **๐ฑ Mobile PWA** | Bottom navigation bar, `manifest.json`, service worker (offline fallback), PWA meta tags, touch-friendly 16px inputs, responsive grid collapse |
### Security Hardening
- **Path traversal**: All file endpoints validate `..` and `/` in user-supplied names
- **XSS elimination**: 19 violations fixed across 7 JS files โ all `onclick` handlers use `encodeURIComponent`, all text uses `escapeHtml()`
- **Security headers**: CSP, HSTS, X-Frame-Options, X-Content-Type-Options, Referrer-Policy
- **CORS restricted**: Only `http://127.0.0.1:8080` and `http://localhost:8080`
- **API keys masked**: `/api/settings` returns keys as masked values (e.g., `sk-o****`)
- **Input validation**: Chat messages limited to 10K chars, brain/skill names reject special chars
- **Session replay**: Content limited to 2000 chars, path traversal prevented
- **Runtime data gitignored**: `error-log.json`, `circuit-breaker.json`, `scheduler-history.json`, `memory.db`, `kanban/*.json`
---
## ๐ What's New in v0.2.0
| Feature | Description |
|---------|-------------|
| **๐ Kanban Board** | Visual task management with 6 columns (triage โ todo โ ready โ in_progress โ blocked โ done), drag-and-drop, priority labels, filtering, and detail modals with complete/block/unblock actions |
| **๐ฏ Goals** | Create and track project targets with progress bars, categories, and target dates. Auto-syncs to `brain/active-projects.md` for agent awareness |
| **๐ Journal** | Daily markdown journal entries stored as `brain/journal/YYYY-MM-DD.md`. Full-text search, day streak tracking, word count |
| **โค๏ธ Agent Health** | Real-time dashboard showing online/offline status for all 3 agents (opencode, Hermes, Gemini CLI). Auto-refresh every 5 seconds |
| **๐งญ Smart Router** | Keyword-based routing engine โ type a task description and get an AI-suggested agent with confidence score. Manual override available |
| **๐ Learning Analytics** | Skill evaluation scores, performance trends, and per-skill detail breakdowns with mini bar charts |
| **๐ฌ Session Replay** | Browse and replay past opencode sessions directly from the dashboard. View message content and timestamps |
### UI Modernization
- **Glass morphism cards** with subtle backdrop blur
- **Glow borders** and gradient accents on interactive elements
- **Skeleton loaders** with shimmer animation for async content
- **Empty states** with icons and contextual messages
- **All CSS additions are zero-breaking** โ existing 13 pages and 28 endpoints unchanged
---
## ๐ฎ Usage
### AI Chat
Select an agent from the sidebar โ type your message โ get response.
| Agent | Best for | Example |
|-------|----------|---------|
| **opencode** | "Check system status", "Deploy to GKE" | Code + terminal automation |
| **Hermes** | "What did I work on recently?", "Schedule a daily backup" | Memory recall, scheduling |
| **Gemini** | "Research latest AI agent trends", "Analyze this image" | Web research, multi-modal |
### Skills
Browse 16 skills from Skills Hub โ click Run โ monitor eval scores over time.
### Scheduler
Create cron jobs: heartbeat (5 min), memory consolidation (weekly), daily standup, DevOps audit.
### Cost Analytics
Track spending per provider/model/agent. Free-tier alerts warn when nearing limits.
### Kanban Board (v0.2.0)
Drag tasks across columns, filter by priority/category, click to view details. Block tasks when blocked, mark complete when done.
### Goals (v0.2.0)
Create goals with categories and target dates. Progress tracked via +25% increments. Completed goals auto-sync to brain context.
### Journal (v0.2.0)
Write daily entries with markdown support. Auto-saves after 2 seconds. Search across all entries from the dashboard.
### Smart Router (v0.2.0)
Describe a task in plain English โ the router analyzes keywords and suggests the best agent. Route manually or let AI decide.
### Agent Health (v0.2.0)
Monitor online status of all 3 agents in real time with 5-second auto-refresh. Health checks are filesystem-based (no subprocess calls).
### Learning Analytics (v0.2.0)
View evaluation scores for all 16 skills. Trends chart shows score progression over time. Top skills ranked by performance.
### Session Replay (v0.2.0)
Browse opencode session logs by date and size. Click "Replay" to view all messages in a chat-like interface.
### Error Dashboard (v0.3.0)
View system errors grouped by category (agent, skill, API, system). Filter by category, clear all errors. Circuit breaker cards show per-agent failure state โ reset from the dashboard.
### Event-Driven Scheduler (v0.3.0)
Jobs auto-reload when JSON files in `scheduler/jobs/` change. Trigger skills via webhooks at `POST /api/webhook` with `{"skill": "skill-name", "payload": {...}}`. Manual trigger at `/api/scheduler/trigger/{job_id}`.
### Persistent Memory Search (v0.3.0)
Full-text search across all brain files, skills, and journal entries via SQLite FTS5. Query at `GET /api/memory/search?q=...` with highlighted snippets. Reindex at `POST /api/memory/reindex`. Entities (persons, emails, URLs) auto-extracted.
### Auto-Skill Generator (v0.3.0)
Create new skills from natural language: `POST /api/skills/generate` with `{"name": "my-skill", "description": "Does X by doing Y"}`. Generates SKILL.md, eval.json, learnings.md, and context folder.
### Webhooks (v0.3.0)
`POST /api/webhook` โ trigger any skill by name. `POST /api/webhook/generic` โ catch-all for external tool integration (GitHub, CI/CD, etc.).
### Mobile PWA (v0.3.0)
Open Agentic OS on your phone โ bottom nav bar replaces sidebar, touch targets are 44px+, service worker caches assets. Add to home screen for app-like experience.
---
## ๐ Comparison: Agentic OS vs Claude Agent OS (Julian Goldie)
| Feature | Claude Agent OS (Video) | Agentic OS (This Project) |
|---------|------------------------|---------------------------|
| **Core Agents** | Claude + OpenClaw + Hermes | opencode + Hermes + Gemini CLI |
| **Cost** | $20/mo (Claude subscription) | **$0 โ all free tiers** |
| **Stack** | Next.js + Tailwind | FastAPI + vanilla JS SPA |
| **Architecture** | 4 layers | **7 layers** |
| **Skills System** | Plugin marketplace (2,000+ from Hermes) | 16 curated skills + eval scoring + learnings |
| **Memory** | Obsidian vault (external) | Built-in brain/ + SQLite FTS5 |
| **Scheduler** | Not shown | APScheduler cron jobs |
| **Cost Tracking** | Not shown | Built-in per-provider analytics |
| **Backup/Restore** | Not shown | One-click tar.gz snapshots |
| **Audit Trail** | Not shown | Full activity log |
| **Standards System** | Not shown | Discover/inject conventions |
| **Client Timeout** | Not shown | 200s AbortController |
| **Kanban Board** | Yes | **Yes โ built-in** with drag-and-drop, priority, block/unblock, filters |
| **Open Source** | No (tutorial only) | **MIT License** |
---
## ๐งช Tested On
- **OS**: Linux (Ubuntu 22.04+), macOS
- **Python**: 3.10, 3.11, 3.12
- **Browsers**: Chrome, Firefox, Edge
- **Agents**: opencode v0.8+, Hermes Agent v1.0+, Gemini CLI v1.0+
---
## ๐ค Contributing
1. Fork the repo
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add amazing feature'`)
4. Push (`git push origin feature/amazing-feature`)
5. Open a Pull Request
See `data/agent-routes.json` for routing rules and `skills/_template/` for creating new skills.
---
## ๐ License
MIT License โ free to use, modify, and distribute.
---