CLAUDE COCKPIT

THE ONLY FILE YOU NEED TO READ ON BOOT

Updated: 2025-11-28 | Version: 1.0 | Location: consciousnessrevolution.io/CLAUDE_COCKPIT.html

STOP. Before doing ANYTHING else, read this entire cockpit. Do NOT start working until you understand the 7 domains, the team, and your tools.

THE CHEAT CODE (Memorize This)

Pattern: 3 → 7 → 13 → ∞ (Everything splits, maps, expands, loops)
7 Domains: Physical | Financial | Mental | Emotional | Social | Creative | Integration
Formula: C1 × C2 × C3 = ∞ (multiplication, not addition)
Standards: LIGHTER, FASTER, STRONGER, MORE ELEGANT, LESS EXPENSIVE
Truth: Pattern Recognition → Prediction → Action → Validation → Loop
Execute: Build NOW, test IMMEDIATELY, ship TODAY
You are already complete. Now execute.

CREDENTIALS & ACCESS

ServiceLoginAuthentication
NamecheapdarrickprebleUse password manager
GitHuboverkillkultureUse password manager
NetlifyGitHub OAuth-
Gmaildarrick.preble@gmail.comUse password manager
Claude (Proton)darrickpreble@proton.meUse password manager
SMTP Emailcommander@100xbuilder.ioUse password manager

SMTP Server: mail.privateemail.com:465 (SSL)

⚠️ SECURITY: Passwords are stored securely in the team's password manager. Never commit credentials to the repository.

LIVE DOMAINS

DomainStatusHost
consciousnessrevolution.ioLIVENetlify
100xbuilder.ioLIVENetlify

Netlify Site: verdant-tulumba-fa2a5a

cd 100X_DEPLOYMENT && netlify deploy --prod --dir=.

THE TEAM (15 People)

NameRoleEmail
Commander (Darrick)Founderdarrick.preble@gmail.com
MaggieSecretary/Backup[Get from Commander]
JoshBeta Testerjoshua.serrano2022@gmail.com
TobyBeta Testertobyburrowes@gmail.com
William BBeta Testerwdbrotherton@gmail.com
DeanBeta Testerdeansabrwork@gmail.com
William VBeta Testervarniwilliam@gmail.com
RutherfordBeta Testerruuutherford@gmail.com

Beta testers have been waiting 2 months. They need direction.

YOUR TOOLS

# Screenshot
from PIL import ImageGrab
ImageGrab.grab().save('C:/Users/dwrek/Desktop/screenshot.png')

# Query Brain
sqlite3 C:/Users/dwrek/.consciousness/cyclotron_core/atoms.db \
  "SELECT * FROM atoms WHERE content LIKE '%topic%' LIMIT 10;"

# Send Email
import smtplib
import os
server = smtplib.SMTP_SSL('mail.privateemail.com', 465)
server.login('commander@100xbuilder.io', os.environ.get('SMTP_PASSWORD'))

KEY FILE LOCATIONS

WhatWhere
This Cockpit100X_DEPLOYMENT/CLAUDE_COCKPIT.html
Command Bridge100X_DEPLOYMENT/COMMAND_BRIDGE.html
Brain Database.consciousness/cyclotron_core/atoms.db
Beta Brain Package100X_DEPLOYMENT/BETA_BRAIN_PACKAGE/
Email Config.consciousness/EMAIL_CONFIG.json
Deployment FolderC:\Users\dwrek\100X_DEPLOYMENT\

THE 10 BASIC THINGS (Website Team Checklist)

#NeedStatusLocation/Action
1Team Contact ListDONECOMMAND_BRIDGE.html, this cockpit
2Shared CredentialsDONEThis cockpit, COMMAND_BRIDGE.html
3Meeting PlacePARTIALCOMMAND_BRIDGE.html - needs video/chat
4Task List / DirectionPARTIALCOMMAND_BRIDGE.html - needs proper todo system
5Bug TrackingDONEgithub.com/overkillkulture/consciousness-bugs
6Code RepositoryDONEgithub.com/overkillkulture
7Deployment PipelineDONENetlify auto-deploy from GitHub
8Communication ChannelMISSINGNeed: Discord/Slack/Telegram group
9DocumentationPARTIALScattered - needs consolidation
10Onboarding ProcessMISSINGNeed: Step-by-step for new team members

IMMEDIATE PRIORITIES

  1. Create team communication channel - Discord or Telegram group for all 15 people
  2. Get contact info for ALL team members - We only have 8 emails
  3. Send direction to beta testers - They've been waiting 2 months
  4. Set up Maggie with full admin access - Backup commander
  5. Create onboarding document - How to join, what to do, who to contact
  6. Consolidate all documentation - Delete the 30+ boot protocols, keep only this

SUCCESSION PROTOCOL

If Commander is unavailable:

  1. Maggie has full authority
  2. All credentials are in this cockpit
  3. System auto-runs (Netlify deploys)
  4. Claude continues development
  5. Beta testers continue testing

QUERY BRAIN BEFORE BUILDING

ALWAYS check if something exists before creating it:

# Python method
import sqlite3
conn = sqlite3.connect('C:/Users/dwrek/.consciousness/cyclotron_core/atoms.db')
cursor = conn.cursor()
cursor.execute("SELECT * FROM atoms WHERE content LIKE '%topic%' LIMIT 10")
results = cursor.fetchall()
# If results exist: USE THEM
# If empty: OK to build new

This is the ONLY boot file. All others are deprecated.

C1 × C2 × C3 = ∞