← Command Center

How to use this

The OS in five minutes — and the workflows that get the most out of it.

1The mental model

The OS has five layers. You mostly touch the command center (this UI); everything underneath is plumbing that skills and agents use.

Identity
CLAUDE.md — who you are, your voice, rules, refusals.
Rules & Hooks
Black-and-white constraints + automatic reflexes.
Skills
Named workflows you've done 3+ times (e.g. /linkedin-post).
Agents
Roles that hold judgment — Publicist, Scout, Registrar (deferred).
Tools
graphify, n8n, Sanity… wrapped inside skills, never used raw.

The vault is the source of truth (markdown). graphify turns your repos and business docs into queryable graphs. This UI is the single screen that shows and uses all of it — you never edit files to use it.

2What each screen does

Dashboard
Live counts — projects mapped, total graph nodes/edges, skills built.
Projects
A card per project. Click for its detail page.
Project detail
Core abstractions (god nodes), the interactive graph (drag / zoom / click nodes), and a query box scoped to that project.
Ask the graphs
Pick a project, type a question, get an answer traced from the graph — no repo reading.
Skills / Agents
Current status of each.

3Get the most out of it

A · Query graphs instead of re-reading repos (your token-saver)

When you need to understand a codebase, ask the graph first — in the query box, or a terminal. It traverses the prebuilt graph (cheap) instead of an AI reading dozens of files (expensive). Use it before any “how does X work” task.

cd ~/Projects/rentijer
graphify query "how does eVisitor check-in work"

B · Add a new project (~10 min)

1. Graph the repo (free — no API key needed):

cd ~/Projects/<new-repo>
graphify . --obsidian --obsidian-dir ~/neviox-os/vault/graphify/<new-repo>

2. Add one entry to command-center/os.config.ts projects[] (copy an existing block). 3. Refresh:

cd ~/neviox-os/command-center && bun snapshot && bun dev

C · Keep graphs fresh after you code

cd ~/Projects/<repo> && graphify . --update
cd ~/neviox-os/command-center && bun snapshot

D · Capture work as you go

Drop a line into vault/projects/<project>.md when you ship or learn something. That’s the raw material the Publicist agent turns into LinkedIn posts once the growth module is switched on.

4Deploy / redeploy

The app is portable — it reads bundled data, not your local filesystem — so it runs on Vercel unchanged. The deployed site is a read-only mirror; when graphs or the vault change, refresh and redeploy:

cd ~/neviox-os/command-center && bun snapshot
git -C ~/neviox-os add -A && git -C ~/neviox-os commit -m "refresh snapshot"
# then redeploy (Vercel)

Keep the repo private — the vault and graphs contain client/business detail.

5The rules it runs on

Approval-gated
Nothing external (post, email, invoice) is sent without your OK.
No spam, no hype
No mass cold outreach, no fake urgency — ever.
Floor rate
€50/hr / €350/day — never quoted below.
Skills earn their name
A workflow becomes a skill only after ~3 manual repeats.

Full detail lives in CLAUDE.md.

6What's next

Interactive write-back
Edit notes, run a skill, approve a draft — all from this UI, so you never touch a file. (Currently read-only + query.)
Growth module
Publicist → Scout → Registrar + a Morning Digest that sends drafts to your phone. Turn on when the core feels solid.
More projects & sections
One config entry each.