HeadOffice Daily Command View

Site: mwmsheadofficebrain.site
Owning Brain: HeadOffice Brain
Document Type: Operational Display Page
Exact Page Title: HeadOffice Daily Command View
Parent Page: HeadOffice
Output Type: FULL PAGE OUTPUT


FULL PAGE OUTPUT

HeadOffice Daily Command View

Purpose

The HeadOffice Daily Command View is the operational display page for daily MWMS newsletter intelligence decisions.

This page converts structured newsletter intelligence from Supabase into a readable HeadOffice command view.

Its purpose is to show:

  • what needs attention now
  • what should be tested
  • what should be monitored
  • what has been ignored or rejected by the system

This page is not a Canon page.

It is an operational reporting page.


Source System

Primary data source:

headoffice_command_center

Supabase query source:

select *
from headoffice_command_center;

This view is generated from the newsletter_intelligence table.


Operating Rule

Supabase stores the intelligence.

Make processes the newsletters.

OpenAI classifies and decides.

This page displays the daily HeadOffice decision view.

Long term, this page should become the readable operating surface for HeadOffice newsletter intelligence.


Daily Command Sections

ACT NOW

Use this section for newsletter intelligence where:

decision = act_now

These items require immediate HeadOffice attention.

Current Items

Paste ACT NOW items here.

Format:

[Primary Brain] Headline
→ Insight summary
→ Required action

TEST

Use this section for newsletter intelligence where:

decision = test

These items may become experiments, validation tasks, offer checks, campaign ideas, or system tests.

Current Items

Paste TEST items here.

Format:

[Primary Brain] Headline
→ Insight summary
→ Possible test

MONITOR

Use this section for newsletter intelligence where:

decision = monitor

These items are worth watching but do not require action yet.

Current Items

Paste MONITOR items here.

Format:

[Primary Brain] Headline
→ Insight summary
→ Why it should be monitored

IGNORED

Ignored items are not displayed by default.

Items with:

decision = ignore

should remain hidden unless HeadOffice needs to audit rejected intelligence.


Daily Review Method

Each day:

  1. Run the newsletter intelligence workflow in Make.
  2. Confirm new rows enter Supabase.
  3. Confirm decision is populated.
  4. Query or display headoffice_command_center.
  5. Copy relevant items into this page if using manual mode.
  6. Review ACT NOW first.
  7. Review TEST second.
  8. Review MONITOR last.

Current Manual Query

Use this query when manually reviewing the command feed:

select *
from headoffice_command_center;

Alternative focused query:

select
headline,
extracted_insights,
primary_brain,
action_type,
decision,
priority
from newsletter_intelligence
where decision is not null
and decision != 'ignore'
order by created_at desc
limit 20;

Decision Meaning

act_now

Immediate attention required.

Usually means:

  • platform change
  • tracking issue
  • compliance risk
  • major system opportunity
  • urgent operational implication

test

Worth validating through experiment or controlled review.

Usually means:

  • offer angle
  • campaign idea
  • CRO insight
  • new tool application
  • monetisation opportunity

monitor

Worth watching but not acting on yet.

Usually means:

  • market signal
  • early trend
  • tool movement
  • macro shift
  • possible future opportunity

ignore

Rejected as low value.

Usually means:

  • hype
  • general news
  • weak relevance
  • no direct MWMS impact
  • not decision-changing

HeadOffice Usage Rule

This page is for decisions, not reading newsletters.

HeadOffice should not use this page as a news feed.

The page must remain focused on:

  • action
  • testing
  • monitoring
  • system decisions

If an item does not support a decision, it should not be promoted here.


Future Automation Notes

Future build stage may include:

  • automatic Supabase pull into this page
  • card-based WordPress display
  • ACT NOW / TEST / MONITOR grouping
  • Brain Room handoff
  • task creation from act_now
  • test candidate creation from test
  • monitor log creation from monitor

Do not automate until the manual command view proves useful.


Change Log

Version: v1.0
Date: 2026-05-04
Author: HeadOffice
Change: Initial operational page created for displaying daily newsletter intelligence command decisions from Supabase.


END HEAD OFFICE DAILY COMMAND VIEW