Founder Reading List & Contributions

Track what you’ve written, reviewed, and approved.


Quick Status

CategoryTotalReviewedApprovedPending
Letters12+1111+
Articles/Papers15+3212+
Innovations1,062~50~50~1,000
Patent Bags2222022
Under the Hood25+10515+

LETTERS

Circle 1: Investors (Shields)

LetterStatusReviewedApprovedLocation
MacKenzie Scott (“Cardboard Boots”)✅ FINALAsteroid-ProofVault/CARDBOARD_BOOTS_MACKENZIE_SCOTT_FINAL.md
Warren Buffett📝 Draftletters/outreach-letters/
Bill Gates📝 DraftTBD

Circle 2: Operators (Spears)

LetterStatusReviewedApprovedLocation
Anand Giridharadas📝 Draftletters/outreach-letters/LETTER-ANAND-GIRIDHARADAS.md
Reid Hoffman📝 DraftTBD

Circle 3: Champions (Phalanx)

LetterStatusReviewedApprovedLocation
[Local Leaders]📝 TemplateTBD

ARTICLES & PAPERS

Academic Papers

PaperStatusReviewedApprovedLocation
Automated Trust (Harper)✅ DONECephas/.../academics/automated-trust-harper-system.md
The Band Strategy✅ DONELAUNCH_DOCUMENTS_MASTER/articles/PAPER_THE_BAND_STRATEGY_MAXIMUM_PERSONAL_SUCCESS.md
AI Time Analysis📝 RequestedPending creation

Strategy Documents

DocumentStatusReviewedApprovedLocation
The Opening Gambit✅ DONELAUNCH_DOCUMENTS_MASTER/THE_OPENING_GAMBIT_LAUNCH_STRATEGY.md
Trigger Sheet✅ DONECephas/.../trigger-sheet.md

INNOVATIONS BY CATEGORY

Need Founder Review

RangeCategoryReview Status
#1-50Core Platform⚠️ Partial
#51-100Economics⚠️ Partial
#101-200Governance⚠️ Partial
#201-500Various❌ Not started
#501-900Various❌ Not started
#901-1000Recent⚠️ Partial
#1001-1062Feb 2026 batch⚠️ Partial

PATENT BAGS

BagCategoryReviewedFiled
1-10Core⚠️
11-15Governance⚠️
16-18Sponsorship⚠️
19AI Context⚠️
20Privacy⚠️
21Quality
22Community

UNDER THE HOOD DOCS

Recently Created (Feb 2, 2026)

DocumentReviewedApproved
The Wall Protocol
Marks for Marks
Viral Campaigns Registry
Patent Ownership Offering
Trigger Sheet
Upekrithen (Fortress)
Blueprints & Treasure Maps
Political/Religious Arenas

REVIEW WORKFLOW

To Mark as Reviewed

Update the founder_reviewed: true attribute in frontmatter.

To Mark as Approved

Update the founder_approved: true attribute in frontmatter.

Database Tracking

These attributes should sync to content_items table:

  • founder_reviewed_at: timestamp
  • founder_approved_at: timestamp
  • status: draft | reviewed | approved | published

TASKS FOR FOUNDER

Immediate (Per Your Request)

  • Final letters → Founder Approved attribute pass
  • Golden Key Puzzle collaboration with Bishop/Pawn

Ongoing

  • Review Patent Bags 1-20 before filing
  • Approve Under the Hood docs
  • Sign off on Opening Gambit triggers

DATABASE CONFIRMATION

Should Be Implemented

The attributes system should track:

-- In content_items or similar table
CREATE TABLE content_review_status (
  content_id UUID PRIMARY KEY,
  content_type TEXT, -- letter, article, innovation, etc.
  founder_reviewed BOOLEAN DEFAULT false,
  founder_reviewed_at TIMESTAMP,
  founder_approved BOOLEAN DEFAULT false,
  founder_approved_at TIMESTAMP,
  status TEXT DEFAULT 'draft'
);

STATUS: Need to verify this exists in migrations.


Last Updated: February 2, 2026