MC
Mission Control

Overview

Live brain. Updates without refresh as Phase 2 ingests new items.

Agents

Today: 0 ok · 0 err
Last activity:

Knowledge

Newest 10

Money

Coming in Phase 6

Fiverr + Upwork pipeline lands here. Schema sketch ready for Phase 6:

brain.money_pipeline (
  id            uuid pk,
  source        text   -- 'fiverr' | 'upwork' | 'stripe' | 'manual'
  type          text   -- 'lead' | 'proposal' | 'contract' | 'invoice' | 'payout'
  amount_cents  int,
  currency      text default 'USD',
  status        text   -- 'open' | 'won' | 'lost' | 'paid'
  client        text,
  project_id    uuid fk -> brain.projects,
  external_id   text,  -- gig/proposal id on the source platform
  metadata      jsonb,
  occurred_at   timestamptz,
  created_at    timestamptz default now()
)

v0 placeholder. Phase 6 wires Fiverr + Upwork webhooks → n8n → this table.