Model Office logo

Model Office

Organization
SylphAI-Inc
model-office

Launches "Model Office" — a live browser dashboard that visualizes multi-model job routing as a blocky Lego/Minecraft-style pixel office. Type one task, a dispatcher LLM decomposes it into subtasks and routes each to the best-fit model (Claude/GPT/Sonar) based on capability, and pixel-art worker avatars slide between a "working area" desk and a "waiting area" lounge as their live status changes (queued/thinking/done). Use when the user wants to demo/visualize multi-agent or multi-model job allocation, wants a "pixel agents"-style dashboard, or asks to see how tasks get routed across different models.

Overview

PublisherSylphAI-Inc
Repositoryskills
Skill namemodel-office
Stars
110
Forks
10
Bundled files
10
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 10 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by SylphAI-Inc on GitHub. Read the source before you install it.

Installation

Install the Model Office AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/SylphAI-Inc/skills.git /tmp/skills
mkdir -p .claude/skills
cp -r /tmp/skills/skills/model-office .claude/skills/model-office
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Model Office in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Model Office on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Model Office is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Model Office

A local FastAPI + WebSocket + HTML5 Canvas demo that visualizes capability-based job routing across multiple LLMs as a blocky Lego/Minecraft-style office. Inspired by pixel-agents-hq/pixel-agents, but built for capability-based multi-model routing rather than parsing a single coding agent's transcript.

Architecture

  • scripts/server.py — FastAPI backend: POST /api/task (submit a task), POST /api/events (producers push status), GET /ws (broadcast to browser), serves scripts/frontend/ as static files.
  • scripts/dispatcher.py — one Claude call decomposes the task into 2-4 subtasks and assigns each to the worker whose capability best fits (claude = code/reasoning, gpt = writing/general, sonar = research requiring live web facts). Emits jobCreated/jobAssigned events.
  • scripts/worker.py — runs each subtask against its real assigned model API, emitting queued → thinking → done/error status events as it goes. Subtasks for different workers run concurrently.
  • scripts/run.py — orchestrator: starts the server if not running, opens the browser, and (optionally) dispatches a task from argv.
  • scripts/frontend/ — canvas-based two-zone office UI: an upper grey "WORKING AREA" (desks with monitors) and a lower green "WAITING AREA" (lounge benches), separated by a thick red brick divider — Lego/Minecraft blocky art style. Worker avatars (sprites/claude.png, sprites/gpt.png, sprites/sonar.png) smoothly slide up to their desk when status becomes thinking, and slide back down to the lounge when done/idle/error. Job tickets fly from a queue to the assigned worker's desk; speech bubbles show live status text; a log feed sits underneath. Connects via WebSocket, replays event history on reconnect.

When to Use

Activate this skill when the user:

  • Wants to see/demo how work routes across multiple models based on capability
  • References "pixel agents", "pixel office", "model office", or this skill by name
  • Wants a live visual (browser) showing multiple agents/models picking up jobs and their status
  • Asks "can you show me job allocation across models visually"

Prerequisites

Real API keys must be present in the environment before running workers:

  • ANTHROPIC_API_KEY (dispatcher + claude worker)
  • OPENAI_API_KEY (gpt worker)
  • PERPLEXITY_API_KEY (sonar worker, native web search)

If any key is missing, worker.py raises an auth error for that worker only — the other workers still complete. Check with:

bash
env | grep -E 'ANTHROPIC_API_KEY|OPENAI_API_KEY|PERPLEXITY_API_KEY' | sed 's/=.*/=<set>/'

An env var appearing in env output with a non-empty value after = is what matters — a bare KEY= (empty) still shows the name but has no value. Verify with echo "LEN=${#OPENAI_API_KEY}" (0 means unset/empty).

How to Run

bash
cd skills/model-office/scripts
pip install -q -r requirements.txt   # first run only

# Option A: server + browser only, submit tasks from the UI
python3 server.py &
python3 -c "import webbrowser; webbrowser.open('http://127.0.0.1:8787')"

# Option B: one-shot — starts server, opens browser, dispatches a task, prints results
python3 run.py "Plan a 3-day Tokyo trip, write a fun blog intro, and research current visa rules for US citizens."

The dashboard also has a text input + Dispatch button, so once the server is running the user can type new tasks directly in the browser without invoking run.py again — it posts to /api/task which runs the dispatcher+workers in the background and streams status over the existing WebSocket.

If a live agent (e.g. AdaL, Claude Code) is already running and separate API keys aren't configured for worker.py, the agent can relay the pipeline itself: POST /api/events directly with jobCreated/jobAssigned/ workerStatus/jobDone events using its own model access (e.g. consult, web_search) so the browser still animates a live run.

Customizing Workers

Capability routing rules live in dispatcher.py::WORKER_CAPABILITIES and the DECOMPOSE_SYSTEM prompt. To add/swap a worker:

  1. Add its capability description to WORKER_CAPABILITIES.
  2. Add a _call_<worker>() function in worker.py and register it in _CALLERS.
  3. Add an entry to WORKERS in frontend/app.js with a desk x position.
  4. Generate a matching pixel-art sprite (16-bit style, magenta background, front-facing standing pose) and save to frontend/sprites/<worker>.png.

Known Limitations

  • Single-machine demo only — not wired into any specific agent's own orchestration; it's a standalone visualization of the concept of capability-based multi-model routing, using direct API calls to Anthropic/OpenAI/Perplexity.
  • No persistence — job history resets on server restart or POST /api/reset.
  • No cost/token tracking per worker yet (a natural next step: add token usage + running $ to the jobDone event payload and render it under the worker's name plate).
  • No self-evolving/learned routing yet (a natural next step: a skill-library cache mapping job-type signatures to the model+prompt combo that succeeded before, with fallback to the LLM dispatcher on cache miss).

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Model Office AI skill do?

Launches "Model Office" — a live browser dashboard that visualizes multi-model job routing as a blocky Lego/Minecraft-style pixel office. Type one task, a dispatcher LLM decomposes it into subtasks and routes each to the best-fit model (Claude/GPT/Sonar) based on capability, and pixel-art worker avatars slide between a "working area" desk and a "waiting area" lounge as their live status changes (queued/thinking/done). Use when the user wants to demo/visualize multi-agent or multi-model job allocation, wants a "pixel agents"-style dashboard, or asks to see how tasks get routed across differe...

Why use Model Office on TypingMind?

Because you install it once and use it with any model. Model Office is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Model Office in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/SylphAI-Inc/skills/tree/main/skills/model-office. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Model Office?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Model Office?

As many as you like. As long as a model supports skills, you can use Model Office with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Model Office AI skill free?

It is published on GitHub by SylphAI-Inc. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇