一键导入
arcanea-command-center
// Visual web dashboard for managing AI agent pipelines. Inbox with approval cards, live agent monitoring, social scheduling, and publish pipeline.
// Visual web dashboard for managing AI agent pipelines. Inbox with approval cards, live agent monitoring, social scheduling, and publish pipeline.
The Claw Fleet — 5 AI engines (Media, Forge, Herald, Scout, Scribe) with 33 skills, cross-claw events, and fleet orchestration for creative operations.
Complete AI-powered media processing pipeline for creative world-building. Scans, classifies, processes, scores, and uploads media with fantasy/mythology-aware tagging.
Auto-generate platform-optimized image variants and AI-written captions for Instagram, LinkedIn, X, YouTube, and TikTok from any source image.
AI-powered aesthetic quality scoring for images. 5-dimension evaluation: Canon Alignment, Design Compliance, Emotional Impact, Technical Fit, Uniqueness. Scores 0-100 with automatic tier assignment.
Classify untagged media against Arcanea canon using Gemini Vision
Detect and reject duplicate media files by content hash
| name | arcanea-command-center |
| version | 1.0.0 |
| description | Visual web dashboard for managing AI agent pipelines. Inbox with approval cards, live agent monitoring, social scheduling, and publish pipeline. |
| author | frankxai |
| homepage | https://arcanea.ai |
| repository | https://github.com/frankxai/arcanea-claw |
| license | MIT |
| tags | ["dashboard","agent-management","pipeline-monitoring","social-scheduling","content-management","ui","web"] |
| dependencies | {"node":">=18","packages":["next","react","tailwindcss","@supabase/supabase-js"]} |
| env | {"required":["SUPABASE_URL","SUPABASE_ANON_KEY"],"optional":["NEXT_PUBLIC_SITE_URL"]} |
| ports | [3100] |
A visual web dashboard for managing AI agent pipelines, reviewing generated content, scheduling social posts, and monitoring the entire media processing lifecycle. The human-in-the-loop control surface for autonomous creative agents.
The central review queue. Every piece of content that passes through the pipeline lands here as an approval card.
a approve, r reject, s skip, arrow keys to navigateLive visibility into running agents and pipeline status.
Review, edit, and schedule social posts generated by the social-prep skill.
Final control before content goes live.
claw install arcanea-command-center
claw run arcanea-command-center
# Open http://localhost:3100
openclaw skill add arcanea-command-center
openclaw skill start arcanea-command-center
git clone https://github.com/frankxai/arcanea-claw.git
cd arcanea-claw/command-center
npm install
cp .env.example .env.local
# Fill in your Supabase credentials
npm run dev
# Open http://localhost:3100
docker compose up command-center -d
# Open http://localhost:3100
# Required
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=your-anon-key
# Optional
NEXT_PUBLIC_SITE_URL=http://localhost:3100
COMMAND_CENTER_PORT=3100
The default layout shows four panels (Inbox, Agent Monitor, Social Scheduler, Publish Pipeline). Customize via config:
command_center:
port: 3100
default_view: "inbox"
panels:
- inbox
- agent_monitor
- social_scheduler
- publish_pipeline
inbox:
default_sort: "score_desc"
page_size: 24
show_score_breakdown: true
social:
default_calendar_view: "week"
auto_schedule: false
The dashboard uses Supabase Realtime subscriptions to show live updates as agents process new media. When a new image is scored, the inbox card appears without a page refresh. When an agent heartbeats, its status dot updates in real time.
The Command Center exposes a lightweight API for programmatic access:
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/inbox | List pending approval items |
| POST | /api/inbox/:id/approve | Approve an item |
| POST | /api/inbox/:id/reject | Reject an item |
| GET | /api/agents | List registered agents with status |
| GET | /api/agents/:id/health | Agent health details |
| GET | /api/social/queue | List scheduled social posts |
| POST | /api/social/schedule | Schedule a post |
| POST | /api/publish | Publish approved items to production |
| Key | Action |
|---|---|
a | Approve current item |
r | Reject current item |
s | Skip to next item |
Left/Right | Navigate between items |
1-5 | Jump to quality tier filter |
Cmd+K | Command palette |
Cmd+S | Save current edits |
The Command Center follows the Arcanean Design System: dark theme with cosmic accents, glass morphism panels, and aurora gradient highlights.
asset_metadata or social_queue tablesMIT -- use it, fork it, build on it.