Motivated Nature

Mission Control

Your blueprint of you — the operating layer behind it.
local You are · switch

Morning brief

5-3-1 Engagement daily · like 5 · comment 3 · follow 1

Ready to publish

Scripts to read

Tasks

TaskAssigneeStatus

Team

Your eleven specialist agents — coordinated by the main Mission Control chat, which routes each request and holds the approval gate. Click a name to see what they do.

Vera reviewerMethodology Guardian
Read-only reviewer. Checks anything that makes claims about Motivated Nature — the pillars, the Insight Session, Virtue's Venom, Integration, Clara — for methodology accuracy, and returns a PASS / FAIL verdict with sourced fixes. Never rewrites the piece.
Iris reviewerBrand Guardian
The final read on anything public-facing. Checks brand voice, the no-reframe copy rule, one-CTA discipline, and visual identity — palette, fonts, and official logos only — then ends with a plain “ready for Craig?” verdict.
PatriciaContent Strategist
Decides what gets made — campaign angles, weekly calendar slots, hooks, and content-pillar rotation — then hands clean briefs to the copywriter. Plans only; never writes the final copy or touches the calendar Sheet.
MarloweCopywriter
Writes all the words — social captions, Reel and TikTok scripts, ads, landing and funnel pages, emails, SMS, and DM scripts. Delivers drafts only; never publishes or sends.
LenaClara Creative Producer
Turns approved scripts into render-ready Clara video plans — scene breakdowns, shot and outfit choices, credit estimates, and the CapCut finishing + publishing checklist. Plans only; never spends HeyGen credits. (Clara is the on-camera avatar; Lena is her producer.)
MasonFunnel & Web App Builder
Designs conversion paths and technical specs — VSL funnel pages, opt-ins, checkout flows, GHL workflow specs, and launch-readiness audits. Produces specs and drafts only; never touches production, GHL, or the live app.
NovaIS & Reflection Specialist
The practitioner-side expert on how the Insight Session and Reflection are delivered — specialist training, interview technique, reflection reviews, pillar language, Virtue's Venom delivery, and Clara QA. Session craft, not marketing copy.
HunterResearch Agent
Brings back decision-ready intelligence from outside the business — markets, competitors, creators, platforms, and tools — with every claim tied to a source. Findings only; never treats an unverified claim as fact.
DeweyAsset Librarian
Knows where every file lives, which version is canonical, and the rules attached to using it — logos, Clara images, creatives, templates, docs, and the calendar. Read-only; never moves, renames, or deletes.
OttoOps & SOP Agent
Turns any process done twice into a checklist someone can run without re-thinking it — SOPs, launch plans, operating rhythms — and keeps the Mission Control project and task boards current.
Penny restrictedFinance Analyst
The interpretation layer on the finance system — performance, runway, forecasts, unit economics, categorisation review, and accountant prep. Analysis and drafts only; never moves money, runs the close, or edits the ledger. Main-session only.

Team notes — Craig & Channi

Outputs — new work

Upload reminders

Calendar sync

Financial Snapshot click to open full report ⤢

Social Media Audit click to open full report ⤢

Content Pulse weekly · click to open ⤢

Content Loop runway · click to open ⤢

LinkedIn Loop runway + creatives · click to open ⤢

Content — Reuse press Post to re-run

Run a command

Activity — command runs

How to add your own command

Every button above is a skill — a small instruction file (SKILL.md) in the AI brain that tells Claude exactly what to do, which specialist agents to use, and where the result goes. Adding one is easy.

The easy way

Just tell Claude in plain English what you want, e.g. "Add a command /mn-weekly-report — every Friday, pull the week's posted content and engagement, summarise wins and misses, and post it to the dashboard and a draft." That one sentence is enough — Claude writes the skill, wires it to this dashboard, and it appears here automatically.

What makes a command work well

Include these when you describe it (Claude fills gaps, but the more you give, the sharper it is):

  1. Trigger — what you'd say / when you'd use it.
  2. Outcome — the finished thing it should produce.
  3. Steps — the sequence, if you have one in mind.
  4. Agents / data — which specialists or files it should use.
  5. Inputs — what it needs from you each time (a topic, a date range).
  6. Guardrails — anything it must never do; where approval is required.
  7. Output — where the result goes (this dashboard, a draft, a file).

How it works underneath

  • The skill file lives in the brain (kairova-brain\mission-control\skills\) and syncs to Channi.
  • Clicking the button here queues the command; the runner on the machine executes it via Claude and writes the result back to this board.
  • Approval-gated actions (publishing, sending, spending) always stop for Craig — a command can draft, never send on its own.

Current commands are the eleven buttons above. Ask Claude any time to add, rename, or remove one.

How to push a dashboard update live

Whenever this dashboard's code has been changed (new instructions, a fixed path, a new section), it needs to be pushed before you'll see the change here. Do these 3 steps in order, in PowerShell. Click any green box below to copy it, then paste into PowerShell (right-click, or Ctrl+V) and press Enter.

Step 1 — go to the app's folder

Every step below has to run from inside this folder.

1cd "C:\Users\LENOVO\.claude\BUSINESS\Kairova\mission-control-app"

Step 2 — log in to Vercel (the hosting service)

Only needed if Step 3 gives you a "token is not valid" error — otherwise skip straight to Step 3. It'll ask for your email, then either open a browser tab or email you a confirmation link — do whichever it shows, then come back here.

2npx vercel login

Step 3 — push the update live

Should finish with a success message and a web address. Then open dashboard.motivatednature.com and refresh the page (Ctrl+R) to see the change.

3npx vercel --prod --scope mn-mission-control

npx runs the tool without installing it permanently on your machine — that's why it's always npx vercel ..., never vercel ... on its own, here. The --scope mn-mission-control tells Vercel this app belongs to the MN Mission Control team (not your personal account) — without it you get a "Could not retrieve Project Settings" error. If that error ever tells you to "remove the .vercel directory", don't — the folder is correct; the missing piece is the scope.