Install
openclaw skills install agency-hqA pixel art office visualization for your AI agent team. Shows real-time agent status, activity feeds, and personality-driven banter. Works with OpenClaw in...
openclaw skills install agency-hqA real-time pixel art visualization of your AI agent team. Agents move between rooms (office, kitchen, game room, server room) based on their actual status. Includes a live activity feed, agent spotlight cards, and personality-driven chat.
git clone https://github.com/enjinstudio/agency-hq.git
cd agency-hq
npm install
Copy .env.example to .env.local:
cp .env.example .env.local
Set ARENA_MODE=live to connect to your OpenClaw instance, or leave as demo for simulated data.
Edit src/lib/agents.ts. Each agent needs:
| Field | Description |
|---|---|
id | Must match your OpenClaw agent ID (e.g., main, dev, research) |
name | Display name |
emoji | Avatar emoji |
role | Role label shown in spotlight |
model | Model name shown in spotlight |
color | Hex color for theme and pixel art |
desk | Desk position: command, dev, trading, research, design, security, content, strategy, engineering, pm, finance |
accessory | Pixel art accessory: glasses, hat, badge, headphones, scarf, cap, bowtie, visor, antenna, crown, monocle |
Edit src/lib/agent-chat.ts to write personality-driven banter. Each agent has:
general — random lines said to the roomto{AgentName} — directed lines at specific agents (30% chance)# Development
npm run dev
# Production
npm run build && npm start
Push to GitHub and import in Vercel. Demo mode activates automatically on Vercel.
In live mode, the app reads from your OpenClaw directory:
~/.openclaw/agents/{id}/sessions/*.jsonl for recent activity/proc/loadavg, runs free -m and dfNo database. No external APIs. Just reads files from disk.