Three Pillars
Super Mind implements the Extended Mind framework's three pillars — Memory, Access, and Action — as a concrete system.
Memory
“Where does this live?”
Supabase tables — the database IS the extended memory. Consolidation converts raw activity into structured knowledge.
- projects, tasks, activity_log, decisions, checkpoints
- tickets, agents, protocols, skills
- memory_snapshots — periodic consolidation
Access
“How do I reach this?”
Three access channels for the same memory: dashboard UI, Claude Code skills, and Supabase API.
- Dashboard UI — web views for humans
- Claude Code skills — agent CRUD operations
- Supabase API — direct queries for integrations
Action
“How does this get done?”
The action pipeline: Idea → Capture → Definition → Scaffolding → Execution → Registry. Each stage maps to CRUD operations on entities.
- Agents (H, NH, HNH) execute work
- Skills standardize recurring operations
- Protocols govern how agents operate
Feedback Loop
Entity Model
All 9 Extended Mind components (§3) plus decisions and consolidation — 11 entities organized in three tiers.
Tier 1 — Core Operational
CRUD from dashboard + agents
Projects
Bounded units of work
projectsProjects (§3)Tasks
Discrete work units
tasksTasks (§3)Tickets
Bugs, requests, ops issues
ticketsTickets (§3)Activity Log
Chronological record
activity_logActivity Log (§3)Decisions
Non-obvious choices with rationale
decisions(implicit in spec)Checkpoints
Milestones
checkpointsCheckpoints (§3)Tier 2 — System Entities
Tracked, not primary CRUD
Agents
H/NH/HNH entities that operate on the system
agentsAgents (§3)Protocols
References to CLAUDE.md files governing agents
protocolsProtocols (§3)Skills
References to .claude/skills/ operations
skillsSkills (§3)Tier 3 — Emergent / Consolidation
Patterns extracted from activity
Memory Snapshots
Periodic summaries of activity patterns
memory_snapshotsConsolidation (§3)Identity
Emergent — computed from patterns across all entities
—Identity (§3)Action Pipeline
Every idea follows a pipeline from inception to execution. Each stage maps to CRUD operations on Super Mind entities.
Idea
Something emerges — from conversation, reading, observation. Not yet recorded.
Capture
Registered in the system. Create project or task — it now exists as a component.
Definition
Developed into a spec — purpose, scope, and structure are articulated.
Scaffolding
Project structure created: protocols, tracking files, initial artifacts.
Execution
Active work. Agents (H, NH, HNH) produce artifacts — code, writing, designs.
Registry
What was done is logged. Activity log grows. The feedback loop closes.
Consolidation
Converting raw activity into structured knowledge — the agent equivalent of sleep consolidation. This is what separates storage from genuine cognitive extension.
Activity Log
Raw events — what was done, by whom, when
Level 1-2: StoragePattern Extraction
What recurs, what changed, cross-project themes
Level 3: Connected StorageMemory Snapshots
Structured knowledge — periodic consolidation summaries
Level 3-4: Active ExtensionIdentity
Emergent model of the operator — who they are, how they work, what they value
Level 4: Cognitive ExtensionStorage → Extension Spectrum