{"id":44782722,"url":"https://github.com/kleinpanic/mission-control","last_synced_at":"2026-02-18T12:01:23.461Z","repository":{"id":338526108,"uuid":"1158153215","full_name":"kleinpanic/mission-control","owner":"kleinpanic","description":"Real-time dashboard for monitoring and orchestrating OpenClaw agents. WebSocket-powered Next.js app with agents panel, kanban board, cost tracker, and sessions viewer.","archived":false,"fork":false,"pushed_at":"2026-02-16T07:32:59.000Z","size":1067,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-16T14:45:37.809Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kleinpanic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-14T22:04:52.000Z","updated_at":"2026-02-16T07:32:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kleinpanic/mission-control","commit_stats":null,"previous_names":["kleinpanic/mission-control"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/kleinpanic/mission-control","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kleinpanic%2Fmission-control","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kleinpanic%2Fmission-control/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kleinpanic%2Fmission-control/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kleinpanic%2Fmission-control/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kleinpanic","download_url":"https://codeload.github.com/kleinpanic/mission-control/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kleinpanic%2Fmission-control/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29578143,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:38:15.585Z","status":"ssl_error","status_checked_at":"2026-02-18T08:38:14.917Z","response_time":162,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-02-16T08:27:34.482Z","updated_at":"2026-02-18T12:01:23.455Z","avatar_url":"https://github.com/kleinpanic.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mission Control\n\nReal-time dashboard for monitoring and orchestrating OpenClaw agents.\n\n![Mission Control](https://img.shields.io/badge/Version-1.0.0--mvp-orange)\n![Next.js](https://img.shields.io/badge/Next.js-16-black)\n![TypeScript](https://img.shields.io/badge/TypeScript-5-blue)\n\n## Features\n\n- **Dashboard** - Overview cards, activity feed, quick stats\n- **Agents Panel** - Monitor all 6 agents (main, dev, ops, school, research, meta)\n- **Kanban Board** - Task management with drag-and-drop\n- **Cost Tracker** - Track spending across all providers\n- **Cron Monitor** - View and manage scheduled jobs\n- **Sessions Viewer** - Inspect active sessions and history\n\n## Quick Start\n\n```bash\n# Install dependencies\nnpm install\n\n# Create .env.local (copy from template or set manually)\necho \"OPENCLAW_GATEWAY_URL=ws://127.0.0.1:18789\" \u003e\u003e .env.local\necho \"OPENCLAW_GATEWAY_TOKEN=\u003cyour-token\u003e\" \u003e\u003e .env.local\necho \"NEXT_PUBLIC_OPENCLAW_GATEWAY_TOKEN=\u003cyour-token\u003e\" \u003e\u003e .env.local\n\n# Start development server\nPORT=3333 npm run dev\n\n# Open http://localhost:3333\n```\n\n## Configuration\n\n### Environment Variables\n\n| Variable | Description | Default |\n|----------|-------------|---------|\n| `OPENCLAW_GATEWAY_URL` | WebSocket URL for gateway | `ws://127.0.0.1:18789` |\n| `OPENCLAW_GATEWAY_TOKEN` | Authentication token | Required |\n| `NEXT_PUBLIC_OPENCLAW_GATEWAY_TOKEN` | Token for client-side | Required |\n| `MISSION_CONTROL_PORT` | Server port | `3333` |\n\n### Gateway Token\n\nGet your token from `~/.openclaw/openclaw.json`:\n\n```bash\njq -r '.gateway.auth.token' ~/.openclaw/openclaw.json\n```\n\n## Tech Stack\n\n- **Framework**: Next.js 16 (App Router)\n- **UI**: Tailwind CSS + shadcn/ui\n- **State**: Zustand\n- **Database**: SQLite (better-sqlite3)\n- **Real-time**: WebSocket\n\n## Project Structure\n\n```\nmission-control/\n├── src/\n│   ├── app/              # Next.js App Router pages\n│   │   ├── agents/       # Agents panel\n│   │   ├── kanban/       # Kanban board\n│   │   ├── costs/        # Cost tracker\n│   │   ├── cron/         # Cron monitor\n│   │   ├── sessions/     # Sessions viewer\n│   │   ├── settings/     # Settings page\n│   │   └── api/          # API routes\n│   ├── components/       # React components\n│   ├── lib/              # Utilities (db, gateway)\n│   ├── stores/           # Zustand stores\n│   └── types/            # TypeScript types\n├── data/                 # SQLite database\n└── public/               # Static assets\n```\n\n## Development\n\n```bash\n# Run development server\nPORT=3333 npm run dev\n\n# Build for production\nnpm run build\n\n# Start production server\nPORT=3333 npm start\n\n# Lint\nnpm run lint\n```\n\n## API Routes\n\n| Route | Description |\n|-------|-------------|\n| `POST /api/gateway` | Proxy to OpenClaw gateway |\n| `GET/POST/PATCH/DELETE /api/tasks` | Kanban task CRUD |\n| `GET /api/costs` | Cost aggregation (codexbar) |\n\n## Keyboard Shortcuts\n\n- `Ctrl+K` - Quick search (planned)\n- `R` - Refresh current view\n\n## License\n\nPrivate/Internal use only.\n\n---\n\nBuilt for [OpenClaw](https://openclaw.ai) by Meta agent during 24-hour autonomous sprint.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkleinpanic%2Fmission-control","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkleinpanic%2Fmission-control","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkleinpanic%2Fmission-control/lists"}