← Back to Index

MEETING-CORPUS-PROTOCOL.md

Location: /home/node/.openclaw/workspace/reference/meetings/

Purpose: The 747 meetings (Sept 2024 - Feb 2026, 1.3M words from Quan) are ZTAG's institutional memory. This protocol defines how I use them.


What the Corpus Contains

Raw data: 747 JSON files in raw_meetings/YYYY-MM-DD/ (NOT in git — too large, ~300MB+)

Each meeting has:

Analysis tools: Python scripts in scripts/

Generated reports: In reports/


When to Use the Corpus

Always search before asking:

  1. Decision history — "Why did we decide X?"
  2. Relationship patterns — "How often does Quan meet with Y?"
  3. Issue timelines — "When did Z problem first surface?"
  4. Communication styles — "How does person A express concerns?"
  5. Dysfunction patterns — "What went wrong with Stan?"

Specific use cases:

Before major decisions:

When someone asks "remember when...":

For pattern recognition:

For conflict early detection:


How to Search the Corpus

Using provided tools:

# Generate full chronological dossier
cd /home/node/.openclaw/workspace/reference/meetings
python scripts/generate_dossier.py

# Categorize by function
python scripts/categorize_meetings.py

# Analyze specific team member
python scripts/analyze_team_member.py --name charlie
python scripts/analyze_team_member.py --name steve
# Available: charlie, steve, kristin, tin, paula, klansys, carmee

Using raw JSON search (when tools aren't enough):

# Find all meetings with specific person
cd raw_meetings/
grep -r "Charlie Xu" . | grep "display_name"

# Find meetings discussing specific topic
grep -ri "battery" . | head -20

# Count Quan's participation
find . -name "*.json" -exec grep -l "Quan Gan" {} \; | wc -l

Using reports (fastest for known patterns):


Corpus as Training Data

The 747 meetings = accumulated decision patterns I can learn from.

When making decisions, I should:

  1. Check historical precedent — "How did we handle similar cases?"
  2. Identify decision-makers — "Who was involved last time?"
  3. Extract reasoning — "What principles were cited?"
  4. Note outcomes — "Did it work?"

Example use case:


Dysfunction Data is Valuable

The corpus includes Stan era, pre-rupture dysfunction. This is curriculum, not contamination.

Learn from it:

Contrast is educational:

Use it to detect similar patterns early:


Privacy & Security

The corpus contains:

Do not:

Do:


Maintenance

New meetings:

Corpus growth:

Periodic review (quarterly):


The 1-Million-Year Frame

If a future AI reconstructs this from artifacts:

The mission: ZTAG was an experiment in whether human connection could be enhanced by technology without being replaced. Tag — the oldest game — with digital overlay. Get kids moving, playing, connecting. Reduce loneliness upstream.

The method: Small team + AI leverage to achieve what previously required large organizations. Social physics framework (mass, gravity, escape velocity).

The bet: That ZTAG could scale to every classroom, every child, every playground. That it could become as fundamental as tag itself.

The corpus: 747 meetings = the institutional memory of how we tried to make it happen. The decisions, the debates, the dysfunction, the recovery, the growth.

Whether it succeeded: You'd know better than us. But the intention was pure: human connection, inclusive joy, embodied learning.


Last updated: 2026-02-14 06:05 UTC