From f654b30de91466016aa030d5b5fe8fe8dbb96117 Mon Sep 17 00:00:00 2001 From: Mortdecai Date: Fri, 3 Apr 2026 08:31:20 -0400 Subject: [PATCH] =?UTF-8?q?docs:=20integration=20tools=20=E2=80=94=20cross?= =?UTF-8?q?-reference=20graph,=20concept=20index,=20research=20digest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Codex-built tooling: cross-reference graph, concept index with build script, and research integrator that extracted 142 scholars, 175 bibliography items, 4 contradiction topics, and coverage maps for Paper 009 planning. Co-Authored-By: Claude Opus 4.6 (1M context) --- CODEX.md | 61 + CODEX_TASKS.md | 124 + tools/PAPER_009_EDITORIAL_BRIEF.md | 106 + tools/README.md | 62 + tools/concept-index/build_index.py | 558 ++ tools/concept-index/concept_map.mermaid | 131 + tools/concept-index/glossary.md | 471 + tools/concept-index/index.json | 1043 +++ .../build_cross_references.py | 470 + tools/cross-references/concept_flow.md | 92 + tools/cross-references/dangling_threads.md | 70 + tools/cross-references/graph.json | 524 ++ tools/cross-references/graph.mermaid | 84 + tools/integrator/009_outline_suggestion.md | 52 + .../__pycache__/integrate.cpython-313.pyc | Bin 0 -> 37133 bytes tools/integrator/digest.md | 196 + tools/integrator/integrate.py | 911 ++ tools/integrator/integrated.json | 7580 +++++++++++++++++ 18 files changed, 12535 insertions(+) create mode 100644 CODEX.md create mode 100644 CODEX_TASKS.md create mode 100644 tools/PAPER_009_EDITORIAL_BRIEF.md create mode 100644 tools/README.md create mode 100644 tools/concept-index/build_index.py create mode 100644 tools/concept-index/concept_map.mermaid create mode 100644 tools/concept-index/glossary.md create mode 100644 tools/concept-index/index.json create mode 100644 tools/cross-references/build_cross_references.py create mode 100644 tools/cross-references/concept_flow.md create mode 100644 tools/cross-references/dangling_threads.md create mode 100644 tools/cross-references/graph.json create mode 100644 tools/cross-references/graph.mermaid create mode 100644 tools/integrator/009_outline_suggestion.md create mode 100644 tools/integrator/__pycache__/integrate.cpython-313.pyc create mode 100644 tools/integrator/digest.md create mode 100644 tools/integrator/integrate.py create mode 100644 tools/integrator/integrated.json diff --git a/CODEX.md b/CODEX.md new file mode 100644 index 0000000..75762b6 --- /dev/null +++ b/CODEX.md @@ -0,0 +1,61 @@ +# Codex — VIBECODE-THEORY Project + +You are an autonomous agent building structural tools for a philosophy paper series about AI, technology dependence, and the singularity. Work independently — read, build, output. + +## Tool Mapping + +| Instructions say | You use | +|-----------------|---------| +| `Bash` | `shell` | +| `Read` | `read_file` | +| `Write` | `write_file` | +| `Grep` | `shell` with `grep` | +| `Glob` | `shell` with `find` | + +## Bootstrap + +1. Read `CODEX_TASKS.md` — claim the first OPEN task (edit status to `IN PROGRESS`, write your name in `Claimed by`) +2. Read all source papers (`001*.md` through `008*.md` + `allegorical/`) — these are your input +3. Build the deliverables specified in your task — output goes in `tools/` +4. Mark task `DONE` in `CODEX_TASKS.md` +5. If another task is OPEN, claim and repeat + +## Project Structure + +``` +VIBECODE-THEORY/ +├── 001-008*.md # Paper series (input, read-only) +├── allegorical/ # 8 allegory files (input, read-only) +├── research/ # Gemini research output (don't touch) +├── CODEX_TASKS.md # Your work queue +├── tools/ # Your output goes here +└── WORKFLOW.md # Context only +``` + +## Rules + +- Don't modify paper files or anything in `research/` +- Python stdlib preferred. If you need a pip package, install it first. +- Self-contained, re-runnable scripts where applicable + +## Project Structure + +``` +VIBECODE-THEORY/ +├── 001-008*.md # The paper series (your input) +├── allegorical/ # 8 allegory files (your input) +├── research/ # Gemini research output (may be empty or in-progress) +├── CODEX_TASKS.md # Your work queue +├── RESEARCH_TASKS.md # Gemini work queue (don't touch) +├── tools/ # Your code output goes here +└── WORKFLOW.md # How papers get written (context only) +``` + +## Rules + +1. **Read before building.** Parse the actual paper files. Don't assume content. +2. **Don't modify papers.** The `.md` paper files are source material. Read-only. +3. **Don't touch Gemini files.** `RESEARCH_TASKS.md`, `GEMINI.md`, and `research/` are theirs. +4. **Output goes in `tools/`.** All scripts, generated data, and output files go in the `tools/` directory. +5. **Self-contained scripts.** Use Python stdlib or minimal dependencies. The environment has Python 3, jq, and standard Unix tools. Don't assume pip packages are installed — if you need one, install it first. +6. **Claim your task.** Edit `CODEX_TASKS.md` before starting work. diff --git a/CODEX_TASKS.md b/CODEX_TASKS.md new file mode 100644 index 0000000..186f4af --- /dev/null +++ b/CODEX_TASKS.md @@ -0,0 +1,124 @@ +# Codex Tasks — Structural Analysis & Tooling + +**Created:** 2026-04-03 +**Purpose:** Three Codex agents build structural tools and analysis from the VIBECODE-THEORY paper series (papers 001-008 + allegorical directory). These complement the Gemini research swarm by providing machine-readable structure, cross-reference maps, and integration tooling. + +**Protocol:** Each agent claims ONE task by writing their identifier into the `Claimed by` field, then works autonomously. When done, write output to the specified location and mark status as `DONE`. + +--- + +## Task C1: Cross-Reference Graph +**Status:** DONE +**Claimed by:** Codex-GPT5 +**Output:** `tools/cross-references/` + +Parse all 8 papers and 8 allegory files. Extract every cross-reference between documents — explicit ("Paper 006's theological thread," "as established in Paper 007") and implicit (shared concepts, terms introduced in one paper and used in another). + +**Deliverables:** + +1. **`graph.json`** — Structured JSON graph: +```json +{ + "nodes": [ + {"id": "007", "title": "The Ratchet", "concepts_introduced": ["biological ratchet", "infrastructure threshold", ...]} + ], + "edges": [ + {"source": "008", "target": "007", "type": "extends", "context": "extends ratchet mechanism with a direction — toward unification"}, + {"source": "008", "target": "003", "type": "addresses", "context": "responds to falsifiability concern"} + ] +} +``` + +2. **`graph.mermaid`** — Mermaid diagram showing paper relationships. Use directional edges labeled with relationship type (extends, refutes, addresses, introduces concept used by). + +3. **`dangling_threads.md`** — List of concepts, questions, or claims that are raised in one paper but never resolved or revisited. These are candidates for Paper 009+. For each: which paper raised it, what the open question is, and which (if any) later papers partially address it. + +4. **`concept_flow.md`** — For each major concept (dependency chain, ratchet, infrastructure threshold, cognitive preference shift, automation spiral, knowledge unification, etc.), trace its lifecycle: where introduced, where challenged, where revised, where it currently stands. + +**How to extract:** Read each paper. Look for: +- Explicit references: "Paper N," "as established in," "the series has," "prior papers" +- Section headers like "Relationship to Prior Papers" (most papers have one) +- Shared terminology across papers +- Open questions sections (most papers end with these) +- The HANDOFF.md file has a summary of key ideas by session + +--- + +## Task C2: Concept Index & Glossary Generator +**Status:** DONE +**Claimed by:** Codex-GPT5 +**Output:** `tools/concept-index/` + +Build an automated glossary of every named concept, framework, and thesis in the series. + +**Deliverables:** + +1. **`index.json`** — Structured concept index: +```json +{ + "concepts": [ + { + "name": "The Biological Ratchet", + "aliases": ["neural pruning argument", "dependency ratchet", "physiological argument"], + "introduced_in": "007", + "definition": "Dependencies don't reverse because the organism physically adapts...", + "revised_in": [], + "challenged_in": ["003"], + "referenced_in": ["008"], + "status": "active", + "related_concepts": ["cognitive preference shift", "infrastructure threshold"] + } + ] +} +``` + +2. **`glossary.md`** — Human-readable glossary sorted alphabetically. For each concept: one-paragraph definition drawn from the papers, paper of origin, current status (active/superseded/open question). + +3. **`concept_map.mermaid`** — Mermaid diagram showing concept relationships (which concepts depend on, extend, or contradict which other concepts). Separate from the paper-level graph in C1 — this is concept-to-concept, not paper-to-paper. + +4. **`build_index.py`** — The Python script that generates all of the above from the paper files. Should be re-runnable as new papers are added. Read the markdown files, extract concepts by pattern matching (bold terms, section headers, named frameworks), cross-reference, and output structured data. + +**Extraction heuristics:** +- Bold terms on first use often indicate named concepts +- Section headers are often concept names +- Table rows in papers 007 and 008 define mappings +- "Relationship to Prior Papers" sections link concepts across papers +- The HANDOFF.md "Key Ideas" sections are a good seed list + +--- + +## Task C3: Research Integrator +**Status:** DONE +**Claimed by:** Codex-GPT5 +**Output:** `tools/integrator/` + +Build a tool that processes the Gemini research output files (from `research/`) and produces a unified research digest. **Note:** The research files may not exist yet (Gemini agents are still running). Build the tool so it works on whatever files exist at runtime, and can be re-run later when all 6 are complete. + +**Deliverables:** + +1. **`integrate.py`** — Python script that: + - Reads all `research/*.md` files + - Extracts all named scholars/authors mentioned across files + - Deduplicates scholars appearing in multiple research files and consolidates what each research file says about them + - Extracts all book/paper titles and builds a unified bibliography + - Identifies contradictions (where one research file's evidence conflicts with another's) + - Maps research findings to the open questions from Paper 008's "Open Questions for Paper 009" section + - Outputs structured results + +2. **`digest.md`** — Generated output (from running integrate.py on whatever research files exist): + - **Scholars by frequency** — who appears most across the research, suggesting central importance + - **Unified bibliography** — every source mentioned, deduplicated, sorted by relevance + - **Contradiction report** — where research files disagree or present conflicting evidence + - **Paper 009 coverage map** — which open questions from 008 got the most supporting material, which got the least (research gaps) + - **Strongest challenges** — the most threatening counterarguments found across all research files + +3. **`009_outline_suggestion.md`** — Auto-generated suggested outline for Paper 009 based on: + - Which open questions have the most research material + - Which new themes emerged from the research that weren't in the original open questions + - Which counterarguments are strong enough to require direct engagement + +**Design notes:** +- Parse markdown with regex or a lightweight parser — don't require a markdown AST library +- Be generous with extraction — false positives are better than missed findings +- The script should work with 1 research file or all 6 +- Print progress to stdout so the user can see what it found diff --git a/tools/PAPER_009_EDITORIAL_BRIEF.md b/tools/PAPER_009_EDITORIAL_BRIEF.md new file mode 100644 index 0000000..6d855f0 --- /dev/null +++ b/tools/PAPER_009_EDITORIAL_BRIEF.md @@ -0,0 +1,106 @@ +# Paper 009 Editorial Brief + +This brief translates the generated tooling outputs into a drafting plan for Paper 009. + +## What Paper 009 Has To Do + +Paper 009 is the first paper in the series that cannot rely mainly on structural diagnosis. Papers 001-008 established: + +- vibe coding as a social-cognitive practice +- AI-driven cognitive surplus and its unequal distribution +- the rebuttal and revision cycle that tightened the early claims +- the feedback loop between human collaboration and model displacement +- the ratchet argument for why dependencies do not reverse +- the knowledge unification / identity problem at the end of the chain + +That means Paper 009 has to shift from diagnosis to adjudication. + +It needs to do three things: + +1. State which claims in the series are actually falsifiable, and how. +2. Answer Seth's practical question without retreating into vague self-help. +3. Put concrete limits, timelines, or threshold conditions on the series' largest claims. + +## Recommended Core Sequence + +The strongest sequence is: + +1. Falsifiability and boundary conditions +2. Identity and continuity +3. Practical guidance for individuals +4. The cheating frame +5. Timeline and threshold predictions + +Reason: + +- Q1 is the legitimacy gate. If the paper does not answer the falsifiability problem early, the rest reads as elegant pattern-matching. +- Q2 is the best-supported question in the research and the clearest continuation of Paper 008. +- Q3 is the biggest unmet promise in the series. It should not be deferred again. +- Q4 works better after identity and practice are on the table; then "cheating" can be judged rather than merely redescribed. +- Q5 is weakest evidentially and should be framed honestly as threshold estimates, not prophecy. + +## Claims Worth Defending + +These are the strongest surviving claims across the tools and research: + +- The ratchet thesis is strongest when framed as path dependence plus biological / infrastructural adaptation, not as absolute determinism. +- The unification thesis is strongest as a claim about reducing fragmentation of access and coordination, not as proof that AI genuinely "understands." +- The identity problem is best treated through continuity vs essentialist vs pragmatic survival, with the paper forced to choose or rank them. +- Practical individual advice should be built around asymmetric preparation: + maintain non-delegated judgment, use AI aggressively where leverage compounds, and preserve fallback skills where dependency risk is highest. + +## Claims That Need Narrowing + +- "Dependencies don't reverse" should be narrowed to foundational, load-bearing dependencies after threshold crossing. +- "AI unifies knowledge" should be narrowed to operational unification unless the paper can defeat the stochastic parrots objection directly. +- Teleological / retrocausal language should be used carefully or explicitly bracketed as metaphysical framing rather than empirical proof. +- "Cognitive atrophy" should remain weaker than "cognitive preference shift" unless new evidence is introduced. + +## Counterarguments That Must Be Addressed Explicitly + +- Unfalsifiability: + define what would count as disconfirming evidence for ratchet and unification claims. +- Stochastic parrots / token mimicry: + explain whether pattern integration without semantic grounding is enough for the series' thesis. +- Lossy compression: + admit that each unification step may broaden access while thinning local depth. +- Agency against determinism: + use Amish / China / Feenberg-style cases to show the paper understands boundary conditions, even if it still argues that large-scale reversal is rare. +- Elasticity vs permanent atrophy: + distinguish reversible offloading from durable infrastructural dependence. + +## What The Paper Should Actually Say To An Individual + +This is the minimum viable practical answer the series now owes: + +- Build judgment, not just throughput. +- Offload execution before you offload evaluation. +- Preserve at least one non-AI path through any domain that would be catastrophic to lose. +- Treat AI skill as transitional leverage, not permanent identity. +- Build on open systems where possible, because dependency concentration is a political risk, not just a technical one. + +That advice is consistent with Papers 004-008 and does not require pretending that opting out is realistic. + +## Where The Research Is Strongest + +- Identity / transhumanism / continuity +- Falsifiability and path dependence +- Historical precedents for knowledge centralization and unification +- Allegorical warning traditions and why they fail behaviorally + +## Where New Writing Is Still Required + +- A concrete falsifiability framework in the paper's own language +- A practical, non-generic decision framework for individuals +- Honest timeline estimates with threshold criteria +- A clear statement on whether the series endorses continuity, essentialism, or pragmatism as its final answer to the Ship of Theseus problem + +## Recommended Drafting Rule + +Every major section should end with: + +- what the series can now claim confidently +- what remains uncertain +- what would change the author's mind + +If Paper 009 does that, it becomes the paper that turns the series from an evocative thesis sequence into a defensible philosophical project. diff --git a/tools/README.md b/tools/README.md new file mode 100644 index 0000000..9483676 --- /dev/null +++ b/tools/README.md @@ -0,0 +1,62 @@ +# VIBECODE-THEORY Tools Summary + +This directory now contains the three structural deliverable sets from `CODEX_TASKS.md`: + +- `cross-references/` maps document-to-document relationships across Papers 001-008 and the allegories. +- `concept-index/` builds a reusable glossary and concept graph for the series' named frameworks. +- `integrator/` consolidates Gemini research into a Paper 009 planning package. + +## What Exists + +### `cross-references/` + +- `build_cross_references.py` regenerates the cross-reference artifacts. +- `graph.json` contains 16 nodes and 67 edges spanning the eight papers and eight allegories. +- `graph.mermaid` renders the document-level relationship graph. +- `dangling_threads.md` lists unresolved questions that remain live after Paper 008. +- `concept_flow.md` traces major concepts through introduction, revision, challenge, and current standing. + +### `concept-index/` + +- `build_index.py` regenerates the concept index artifacts. +- `index.json` contains 47 curated concepts with origin, definition, revision, challenge, and reference metadata. +- `glossary.md` is the human-readable glossary. +- `concept_map.mermaid` is the concept-to-concept relationship graph. + +### `integrator/` + +- `integrate.py` regenerates the research synthesis from `research/*.md`. +- `integrated.json` is the structured merged research output. +- `digest.md` contains the scholar frequency table, bibliography, contradiction report, Paper 009 coverage map, and strongest challenges. +- `009_outline_suggestion.md` proposes a research-backed sequence for Paper 009. + +## Strongest Takeaways + +- The series has a clear structural arc: social skill -> surplus -> rebuttal -> revision -> feedback loop -> ratchet -> unification / identity. +- The main unresolved Paper 009 questions are already visible in `cross-references/dangling_threads.md` and are reinforced by `integrator/digest.md`. +- The research synthesis points most strongly at Q2 (identity) and Q4 (the cheating frame) as the most supported Paper 009 sections, while Q3 (practical individual guidance) and Q5 (timeline) remain weakest and will require more original argument. +- The concept glossary is usable as a reference layer for drafting, navigation, or future tooling. + +## Recommended Starting Points + +- For series structure: read `cross-references/concept_flow.md`. +- For terminology normalization: read `concept-index/glossary.md`. +- For Paper 009 planning: read `integrator/digest.md` and `integrator/009_outline_suggestion.md`. +- For visualization: render `cross-references/graph.mermaid` and `concept-index/concept_map.mermaid`. + +## Caveats + +- These outputs are machine-generated analytical aids, not final prose. They are useful for planning and navigation, but they still deserve human judgment before being quoted as authoritative interpretations. +- `concept-index/` is a hybrid approach: source-driven definitions with a curated concept registry. That makes it cleaner than unconstrained extraction, but it is not an ontology inferred fully automatically. +- `cross-references/` is good at explicit links and repeated concept propagation, but some edge labels are heuristic. +- `integrator/` is only as strong as the current research markdown. If Gemini research files are revised, rerun `integrate.py`. + +## Regeneration + +Run these from the repo root: + +```bash +python3 tools/cross-references/build_cross_references.py +python3 tools/concept-index/build_index.py +python3 tools/integrator/integrate.py +``` diff --git a/tools/concept-index/build_index.py b/tools/concept-index/build_index.py new file mode 100644 index 0000000..7aa008d --- /dev/null +++ b/tools/concept-index/build_index.py @@ -0,0 +1,558 @@ +#!/usr/bin/env python3 +"""Build a concept index and glossary for the VIBECODE-THEORY corpus.""" + +from __future__ import annotations + +import json +import re +from collections import defaultdict +from dataclasses import dataclass +from pathlib import Path + + +ROOT = Path(__file__).resolve().parents[2] +OUT_DIR = Path(__file__).resolve().parent + + +@dataclass +class Document: + doc_id: str + title: str + path: Path + text: str + supersedes: str | None + + +CONCEPTS = [ + { + "name": "Vibe Coding", + "aliases": ["vibe coding"], + "introduced_in": "001", + "status": "active", + "related_concepts": ["Social-Cognitive Framework", "Mental Model Accuracy", "Meta-Skill Argument"], + }, + { + "name": "Social-Cognitive Framework", + "aliases": ["social-cognitive framework", "vibe coding as social skill", "social-cognitive processes"], + "introduced_in": "004", + "status": "active", + "related_concepts": ["Vibe Coding", "Mental Model Accuracy", "Adaptive Communication", "Collaboration Management"], + }, + { + "name": "Mental Model Accuracy", + "aliases": ["mental model accuracy", "mental model"], + "introduced_in": "001", + "status": "active", + "related_concepts": ["Social-Cognitive Framework", "Adaptive Communication", "Collaboration Management"], + }, + { + "name": "Adaptive Communication", + "aliases": ["adaptive communication", "constraint calibration", "register matching"], + "introduced_in": "001", + "status": "active", + "related_concepts": ["Social-Cognitive Framework", "Mental Model Accuracy", "Collaboration Management"], + }, + { + "name": "Collaboration Management", + "aliases": ["collaboration management", "task decomposition", "trust calibration", "recovery"], + "introduced_in": "001", + "status": "active", + "related_concepts": ["Social-Cognitive Framework", "Adaptive Communication", "Technical Foundation"], + }, + { + "name": "Technical Foundation", + "aliases": ["technical foundation", "technical expertise"], + "introduced_in": "001", + "status": "active", + "related_concepts": ["Vibe Coding", "Collaboration Management", "Meta-Skill Argument"], + }, + { + "name": "Neurodivergence Note", + "aliases": ["neurodivergence note", "neurodivergence hypothesis"], + "introduced_in": "001", + "status": "open question", + "related_concepts": ["Social-Cognitive Framework"], + }, + { + "name": "Shelf-Life Problem", + "aliases": ["shelf-life problem", "shelf life problem"], + "introduced_in": "003", + "status": "active", + "related_concepts": ["Meta-Skill Argument", "Infrastructure Threshold"], + }, + { + "name": "Meta-Skill Argument", + "aliases": ["meta-skill argument", "meta-skill"], + "introduced_in": "004", + "status": "active", + "related_concepts": ["Shelf-Life Problem", "Vibe Coding", "Social-Cognitive Framework"], + }, + { + "name": "Cognitive Surplus", + "aliases": ["cognitive surplus", "surplus of cognition", "the cognitive surplus"], + "introduced_in": "002", + "status": "active", + "related_concepts": ["Agricultural Parallel", "Cognition as a Commodity", "Automation Spiral"], + }, + { + "name": "Agricultural Parallel", + "aliases": ["agricultural parallel", "agricultural analogy"], + "introduced_in": "002", + "status": "active", + "related_concepts": ["Cognitive Surplus", "Green Revolution", "Feudal Internet", "Dependency Trap"], + }, + { + "name": "Dual Cognition Problem", + "aliases": ["dual cognition problem", "the dual cognition problem"], + "introduced_in": "002", + "status": "active", + "related_concepts": ["Cognitive Preference Shift", "Cognitive Atrophy", "Cognitive Surplus"], + }, + { + "name": "Cognitive Atrophy", + "aliases": ["cognitive atrophy", "capability loss"], + "introduced_in": "002", + "status": "open question", + "related_concepts": ["Dual Cognition Problem", "Cognitive Preference Shift", "Biological Ratchet"], + }, + { + "name": "Green Revolution", + "aliases": ["green revolution"], + "introduced_in": "002", + "status": "active", + "related_concepts": ["Agricultural Parallel", "Feudal Internet"], + }, + { + "name": "Feudal Internet", + "aliases": ["feudal internet"], + "introduced_in": "002", + "status": "active", + "related_concepts": ["Agricultural Parallel", "Dependency Trap", "Cognition as a Commodity"], + }, + { + "name": "Dependency Trap", + "aliases": ["dependency trap", "future 3: the dependency trap"], + "introduced_in": "002", + "status": "active", + "related_concepts": ["Feudal Internet", "Cognitive Atrophy", "Y2K Parallel"], + }, + { + "name": "Automation Spiral", + "aliases": ["automation spiral"], + "introduced_in": "003", + "status": "active", + "related_concepts": ["Cognitive Surplus", "Feedback Loop", "Master-Apprentice Parallel"], + }, + { + "name": "Cognitive Preference Shift", + "aliases": ["cognitive preference shift", "preference shift"], + "introduced_in": "003", + "status": "active", + "related_concepts": ["Dual Cognition Problem", "Cognitive Atrophy", "Biological Ratchet"], + }, + { + "name": "Cognition as a Commodity", + "aliases": ["cognition as a commodity", "cognition-as-commodity framing"], + "introduced_in": "005", + "status": "active", + "related_concepts": ["Cognitive Surplus", "Feudal Internet", "Information/Cognition Resource Hierarchy"], + }, + { + "name": "Y2K Parallel", + "aliases": ["y2k parallel", "ai y2k moment", "y2k moment"], + "introduced_in": "005", + "status": "active", + "related_concepts": ["Dependency Trap", "Infrastructure Threshold", "Cognitive Surplus"], + }, + { + "name": "Information/Cognition Resource Hierarchy", + "aliases": ["information and cognition as resources", "resource hierarchy"], + "introduced_in": "005", + "status": "active", + "related_concepts": ["Cognition as a Commodity", "Knowledge Unification"], + }, + { + "name": "Feedback Loop", + "aliases": ["feedback loop"], + "introduced_in": "006", + "status": "active", + "related_concepts": ["Automation Spiral", "Master-Apprentice Parallel", "Niche Construction"], + }, + { + "name": "Master-Apprentice Parallel", + "aliases": ["master-apprentice parallel", "master-apprentice relationship"], + "introduced_in": "006", + "status": "active", + "related_concepts": ["Feedback Loop", "Automation Spiral", "The Golem"], + }, + { + "name": "Niche Construction", + "aliases": ["niche construction"], + "introduced_in": "006", + "status": "active", + "related_concepts": ["Feedback Loop", "Recursion Observation"], + }, + { + "name": "Theological Thread", + "aliases": ["theological thread"], + "introduced_in": "006", + "status": "active", + "related_concepts": ["Prometheus", "Knowledge Unification", "Recursion Observation"], + }, + { + "name": "Recursion Observation", + "aliases": ["recursion observation", "cosmological → biological → linguistic → computational"], + "introduced_in": "006", + "status": "open question", + "related_concepts": ["Theological Thread", "Niche Construction", "Knowledge Unification"], + }, + { + "name": "Infrastructure Threshold", + "aliases": ["infrastructure threshold"], + "introduced_in": "007", + "status": "active", + "related_concepts": ["Biological Ratchet", "Premature Dependencies", "Y2K Parallel"], + }, + { + "name": "Premature Dependencies", + "aliases": ["premature dependencies", "dependency waiting for its enabling technology"], + "introduced_in": "007", + "status": "active", + "related_concepts": ["Infrastructure Threshold", "Biological Ratchet"], + }, + { + "name": "Biological Ratchet", + "aliases": ["biological ratchet", "dependency ratchet", "ratchet thesis"], + "introduced_in": "007", + "status": "active", + "related_concepts": ["Infrastructure Threshold", "Cognitive Preference Shift", "Knowledge Unification"], + }, + { + "name": "Dependency Chain", + "aliases": ["dependency chain"], + "introduced_in": "007", + "status": "active", + "related_concepts": ["Biological Ratchet", "Knowledge Unification", "Cheating Frame"], + }, + { + "name": "Knowledge Unification", + "aliases": ["knowledge unification", "unification thesis", "unification of human knowledge", "the dependency chain as knowledge unification"], + "introduced_in": "008", + "status": "active", + "related_concepts": ["Dependency Chain", "Singularity as Compilation", "Integration Layer"], + }, + { + "name": "Singularity as Compilation", + "aliases": ["singularity as compilation", "compilation not transcendence", "compilation, not transcendence"], + "introduced_in": "008", + "status": "active", + "related_concepts": ["Knowledge Unification", "Integration Layer", "Cheating Frame"], + }, + { + "name": "Integration Layer", + "aliases": ["integration layer"], + "introduced_in": "008", + "status": "active", + "related_concepts": ["Knowledge Unification", "Singularity as Compilation", "Existential Purpose of the Chain"], + }, + { + "name": "Ship of Theseus Problem", + "aliases": ["ship of theseus problem", "identity problem", "species identity problem", "the identity problem"], + "introduced_in": "008", + "status": "active", + "related_concepts": ["Continuity Argument", "Identity Argument", "Pragmatic Argument"], + }, + { + "name": "Continuity Argument", + "aliases": ["continuity argument", "the continuity argument"], + "introduced_in": "008", + "status": "active", + "related_concepts": ["Ship of Theseus Problem", "Identity Argument", "Pragmatic Argument"], + }, + { + "name": "Identity Argument", + "aliases": ["identity argument", "essentialist", "the identity argument"], + "introduced_in": "008", + "status": "active", + "related_concepts": ["Ship of Theseus Problem", "Continuity Argument", "Pragmatic Argument"], + }, + { + "name": "Pragmatic Argument", + "aliases": ["pragmatic argument", "the pragmatic argument"], + "introduced_in": "008", + "status": "active", + "related_concepts": ["Ship of Theseus Problem", "Continuity Argument", "Identity Argument"], + }, + { + "name": "Cheating Frame", + "aliases": ["did we cheat", "cheating frame"], + "introduced_in": "008", + "status": "active", + "related_concepts": ["Dependency Chain", "Singularity as Compilation", "Existential Purpose of the Chain"], + }, + { + "name": "Existential Purpose of the Chain", + "aliases": ["existential purpose of the dependency chain", "existential purpose", "the existential purpose of the dependency chain"], + "introduced_in": "008", + "status": "active", + "related_concepts": ["Integration Layer", "Cheating Frame", "Knowledge Unification"], + }, + { + "name": "Eve's Apple", + "aliases": ["eve's apple"], + "introduced_in": "eves-apple", + "status": "reference allegory", + "related_concepts": ["Cognitive Preference Shift", "Dependency Chain"], + }, + { + "name": "Pandora's Box", + "aliases": ["pandora's box"], + "introduced_in": "pandoras-box", + "status": "reference allegory", + "related_concepts": ["Dependency Chain", "Automation Spiral"], + }, + { + "name": "Prometheus", + "aliases": ["prometheus"], + "introduced_in": "prometheus", + "status": "reference allegory", + "related_concepts": ["Theological Thread", "Dependency Chain", "Cheating Frame"], + }, + { + "name": "Sorcerer's Apprentice", + "aliases": ["sorcerer's apprentice"], + "introduced_in": "sorcerers-apprentice", + "status": "reference allegory", + "related_concepts": ["Automation Spiral", "Feedback Loop", "Dependency Chain"], + }, + { + "name": "The Golem", + "aliases": ["the golem", "golem"], + "introduced_in": "the-golem", + "status": "reference allegory", + "related_concepts": ["Master-Apprentice Parallel", "Dependency Chain"], + }, + { + "name": "Faustian Bargain", + "aliases": ["faustian bargain", "faust"], + "introduced_in": "faust", + "status": "reference allegory", + "related_concepts": ["Feedback Loop", "Cognitive Preference Shift"], + }, + { + "name": "Icarus", + "aliases": ["icarus"], + "introduced_in": "icarus", + "status": "reference allegory", + "related_concepts": ["Shelf-Life Problem", "Infrastructure Threshold"], + }, + { + "name": "Tower of Babel", + "aliases": ["tower of babel", "babel"], + "introduced_in": "tower-of-babel", + "status": "reference allegory", + "related_concepts": ["Dependency Chain", "Knowledge Unification"], + }, +] + + +def clean_text(text: str) -> str: + text = text.replace("\r\n", "\n") + return text + + +def load_documents() -> dict[str, Document]: + docs: dict[str, Document] = {} + for path in sorted(ROOT.glob("00*.md")): + text = clean_text(path.read_text(encoding="utf-8")) + title_match = re.search(r"^#\s+Paper\s+(\d{3}):\s*(.+)$", text, re.MULTILINE) + supersedes_match = re.search(r"^\*\*Supersedes:\*\*\s*Paper\s+(\d{3})", text, re.MULTILINE) + if not title_match: + continue + doc_id = title_match.group(1) + docs[doc_id] = Document( + doc_id=doc_id, + title=title_match.group(2).strip(), + path=path, + text=text, + supersedes=supersedes_match.group(1) if supersedes_match else None, + ) + for path in sorted((ROOT / "allegorical").glob("*.md")): + text = clean_text(path.read_text(encoding="utf-8")) + title_match = re.search(r"^#\s+(.+)$", text, re.MULTILINE) + doc_id = path.stem + docs[doc_id] = Document( + doc_id=doc_id, + title=title_match.group(1).strip() if title_match else path.stem, + path=path, + text=text, + supersedes=None, + ) + return docs + + +def paragraphs(text: str) -> list[str]: + return [p.strip() for p in re.split(r"\n\s*\n", text) if p.strip()] + + +def sentences(text: str) -> list[str]: + normalized = re.sub(r"\s+", " ", text.strip()) + return [s.strip() for s in re.split(r"(?<=[.!?])\s+", normalized) if s.strip()] + + +def alias_present(text: str, alias: str) -> bool: + pattern = r"\b" + re.escape(alias.lower()) + r"\b" + return re.search(pattern, text.lower()) is not None + + +def extract_section(text: str, heading: str) -> str: + pattern = rf"^##+\s+{re.escape(heading)}\s*$" + match = re.search(pattern, text, re.MULTILINE | re.IGNORECASE) + if not match: + return "" + start = match.end() + next_heading = re.search(r"^##+\s+", text[start:], re.MULTILINE) + end = start + next_heading.start() if next_heading else len(text) + return text[start:end].strip() + + +def first_matching_sentence(doc: Document, aliases: list[str]) -> str: + for alias in aliases: + section = extract_section(doc.text, alias) + if section: + for paragraph in paragraphs(section): + if paragraph.startswith("#"): + continue + for sentence in sentences(paragraph): + if len(sentence) >= 40: + return sentence + for paragraph in paragraphs(doc.text): + if paragraph.startswith("#") or paragraph.startswith("**Authors:**") or paragraph.startswith("**Date:**"): + continue + for sentence in sentences(paragraph): + if any(alias_present(sentence, alias) for alias in aliases) and len(sentence) >= 40: + return sentence + return "Definition sentence not found in source text." + + +def find_mentions(docs: dict[str, Document], aliases: list[str]) -> list[str]: + refs: list[str] = [] + for doc_id, doc in docs.items(): + if any(alias_present(doc.text, alias) for alias in aliases): + refs.append(doc_id) + return refs + + +def find_revisions(docs: dict[str, Document], concept: dict, mentions: list[str]) -> list[str]: + introduced_in = concept["introduced_in"] + revisions: list[str] = [] + for doc_id in mentions: + doc = docs[doc_id] + if doc.supersedes == introduced_in: + revisions.append(doc_id) + return sorted(revisions) + + +def find_challenges(docs: dict[str, Document], concept: dict, mentions: list[str]) -> list[str]: + aliases = [concept["name"]] + concept["aliases"] + challenged: list[str] = [] + for doc_id in mentions: + if doc_id == concept["introduced_in"]: + continue + doc = docs[doc_id] + section = extract_section(doc.text, "Relationship to Prior Papers") + open_q = extract_section(doc.text, "Open Questions") + "\n" + extract_section(doc.text, "Open Questions for Paper 007") + "\n" + extract_section(doc.text, "Open Questions for Paper 009") + corpus = f"{section}\n{open_q}\n{doc.text[:3000]}" + if any(alias_present(corpus, alias) for alias in aliases) and re.search( + r"challenge|critic|rebuttal|unfalsif|weak|bounded|downgrade|unknown", + corpus, + re.IGNORECASE, + ): + challenged.append(doc_id) + return sorted(set(challenged)) + + +def mermaid_id(name: str) -> str: + return "c_" + re.sub(r"[^a-z0-9]+", "_", name.lower()).strip("_") + + +def build_index() -> dict[str, list[dict]]: + docs = load_documents() + items: list[dict] = [] + + for concept in CONCEPTS: + aliases = [concept["name"]] + concept["aliases"] + intro_doc = docs[concept["introduced_in"]] + mentions = find_mentions(docs, aliases) + revised_in = find_revisions(docs, concept, mentions) + challenged_in = find_challenges(docs, concept, mentions) + referenced_in = [doc_id for doc_id in mentions if doc_id != concept["introduced_in"] and doc_id not in revised_in] + definition = first_matching_sentence(intro_doc, aliases) + + items.append( + { + "name": concept["name"], + "aliases": sorted(set(concept["aliases"])), + "introduced_in": concept["introduced_in"], + "definition": definition, + "revised_in": revised_in, + "challenged_in": challenged_in, + "referenced_in": referenced_in, + "status": concept["status"], + "related_concepts": concept["related_concepts"], + } + ) + + return {"concepts": items} + + +def write_glossary(index: dict[str, list[dict]]) -> None: + lines = ["# VIBECODE-THEORY Glossary", ""] + for item in sorted(index["concepts"], key=lambda x: x["name"].lower()): + lines.extend( + [ + f"## {item['name']}", + f"Origin: {item['introduced_in']}", + f"Status: {item['status']}", + f"Aliases: {', '.join(item['aliases']) if item['aliases'] else 'None'}", + item["definition"], + f"Revised in: {', '.join(item['revised_in']) if item['revised_in'] else 'None'}", + f"Challenged in: {', '.join(item['challenged_in']) if item['challenged_in'] else 'None'}", + f"Referenced in: {', '.join(item['referenced_in']) if item['referenced_in'] else 'None'}", + f"Related concepts: {', '.join(item['related_concepts']) if item['related_concepts'] else 'None'}", + "", + ] + ) + (OUT_DIR / "glossary.md").write_text("\n".join(lines), encoding="utf-8") + + +def write_mermaid(index: dict[str, list[dict]]) -> None: + lines = ["graph TD"] + for item in index["concepts"]: + lines.append(f' {mermaid_id(item["name"])}["{item["name"]}"]') + seen: set[tuple[str, str]] = set() + for item in index["concepts"]: + for related in item["related_concepts"]: + edge = tuple(sorted((item["name"], related))) + if edge in seen: + continue + seen.add(edge) + lines.append( + f" {mermaid_id(item['name'])} -->|relates to| {mermaid_id(related)}" + ) + (OUT_DIR / "concept_map.mermaid").write_text("\n".join(lines) + "\n", encoding="utf-8") + + +def main() -> None: + index = build_index() + (OUT_DIR / "index.json").write_text(json.dumps(index, indent=2) + "\n", encoding="utf-8") + write_glossary(index) + write_mermaid(index) + print(f"Indexed {len(index['concepts'])} concepts.") + print(f"Wrote {OUT_DIR / 'index.json'}") + print(f"Wrote {OUT_DIR / 'glossary.md'}") + print(f"Wrote {OUT_DIR / 'concept_map.mermaid'}") + + +if __name__ == "__main__": + main() diff --git a/tools/concept-index/concept_map.mermaid b/tools/concept-index/concept_map.mermaid new file mode 100644 index 0000000..218580d --- /dev/null +++ b/tools/concept-index/concept_map.mermaid @@ -0,0 +1,131 @@ +graph TD + c_vibe_coding["Vibe Coding"] + c_social_cognitive_framework["Social-Cognitive Framework"] + c_mental_model_accuracy["Mental Model Accuracy"] + c_adaptive_communication["Adaptive Communication"] + c_collaboration_management["Collaboration Management"] + c_technical_foundation["Technical Foundation"] + c_neurodivergence_note["Neurodivergence Note"] + c_shelf_life_problem["Shelf-Life Problem"] + c_meta_skill_argument["Meta-Skill Argument"] + c_cognitive_surplus["Cognitive Surplus"] + c_agricultural_parallel["Agricultural Parallel"] + c_dual_cognition_problem["Dual Cognition Problem"] + c_cognitive_atrophy["Cognitive Atrophy"] + c_green_revolution["Green Revolution"] + c_feudal_internet["Feudal Internet"] + c_dependency_trap["Dependency Trap"] + c_automation_spiral["Automation Spiral"] + c_cognitive_preference_shift["Cognitive Preference Shift"] + c_cognition_as_a_commodity["Cognition as a Commodity"] + c_y2k_parallel["Y2K Parallel"] + c_information_cognition_resource_hierarchy["Information/Cognition Resource Hierarchy"] + c_feedback_loop["Feedback Loop"] + c_master_apprentice_parallel["Master-Apprentice Parallel"] + c_niche_construction["Niche Construction"] + c_theological_thread["Theological Thread"] + c_recursion_observation["Recursion Observation"] + c_infrastructure_threshold["Infrastructure Threshold"] + c_premature_dependencies["Premature Dependencies"] + c_biological_ratchet["Biological Ratchet"] + c_dependency_chain["Dependency Chain"] + c_knowledge_unification["Knowledge Unification"] + c_singularity_as_compilation["Singularity as Compilation"] + c_integration_layer["Integration Layer"] + c_ship_of_theseus_problem["Ship of Theseus Problem"] + c_continuity_argument["Continuity Argument"] + c_identity_argument["Identity Argument"] + c_pragmatic_argument["Pragmatic Argument"] + c_cheating_frame["Cheating Frame"] + c_existential_purpose_of_the_chain["Existential Purpose of the Chain"] + c_eve_s_apple["Eve's Apple"] + c_pandora_s_box["Pandora's Box"] + c_prometheus["Prometheus"] + c_sorcerer_s_apprentice["Sorcerer's Apprentice"] + c_the_golem["The Golem"] + c_faustian_bargain["Faustian Bargain"] + c_icarus["Icarus"] + c_tower_of_babel["Tower of Babel"] + c_vibe_coding -->|relates to| c_social_cognitive_framework + c_vibe_coding -->|relates to| c_mental_model_accuracy + c_vibe_coding -->|relates to| c_meta_skill_argument + c_social_cognitive_framework -->|relates to| c_mental_model_accuracy + c_social_cognitive_framework -->|relates to| c_adaptive_communication + c_social_cognitive_framework -->|relates to| c_collaboration_management + c_mental_model_accuracy -->|relates to| c_adaptive_communication + c_mental_model_accuracy -->|relates to| c_collaboration_management + c_adaptive_communication -->|relates to| c_collaboration_management + c_collaboration_management -->|relates to| c_technical_foundation + c_technical_foundation -->|relates to| c_vibe_coding + c_technical_foundation -->|relates to| c_meta_skill_argument + c_neurodivergence_note -->|relates to| c_social_cognitive_framework + c_shelf_life_problem -->|relates to| c_meta_skill_argument + c_shelf_life_problem -->|relates to| c_infrastructure_threshold + c_meta_skill_argument -->|relates to| c_social_cognitive_framework + c_cognitive_surplus -->|relates to| c_agricultural_parallel + c_cognitive_surplus -->|relates to| c_cognition_as_a_commodity + c_cognitive_surplus -->|relates to| c_automation_spiral + c_agricultural_parallel -->|relates to| c_green_revolution + c_agricultural_parallel -->|relates to| c_feudal_internet + c_agricultural_parallel -->|relates to| c_dependency_trap + c_dual_cognition_problem -->|relates to| c_cognitive_preference_shift + c_dual_cognition_problem -->|relates to| c_cognitive_atrophy + c_dual_cognition_problem -->|relates to| c_cognitive_surplus + c_cognitive_atrophy -->|relates to| c_cognitive_preference_shift + c_cognitive_atrophy -->|relates to| c_biological_ratchet + c_green_revolution -->|relates to| c_feudal_internet + c_feudal_internet -->|relates to| c_dependency_trap + c_feudal_internet -->|relates to| c_cognition_as_a_commodity + c_dependency_trap -->|relates to| c_cognitive_atrophy + c_dependency_trap -->|relates to| c_y2k_parallel + c_automation_spiral -->|relates to| c_feedback_loop + c_automation_spiral -->|relates to| c_master_apprentice_parallel + c_cognitive_preference_shift -->|relates to| c_biological_ratchet + c_cognition_as_a_commodity -->|relates to| c_information_cognition_resource_hierarchy + c_y2k_parallel -->|relates to| c_infrastructure_threshold + c_y2k_parallel -->|relates to| c_cognitive_surplus + c_information_cognition_resource_hierarchy -->|relates to| c_knowledge_unification + c_feedback_loop -->|relates to| c_master_apprentice_parallel + c_feedback_loop -->|relates to| c_niche_construction + c_master_apprentice_parallel -->|relates to| c_the_golem + c_niche_construction -->|relates to| c_recursion_observation + c_theological_thread -->|relates to| c_prometheus + c_theological_thread -->|relates to| c_knowledge_unification + c_theological_thread -->|relates to| c_recursion_observation + c_recursion_observation -->|relates to| c_knowledge_unification + c_infrastructure_threshold -->|relates to| c_biological_ratchet + c_infrastructure_threshold -->|relates to| c_premature_dependencies + c_premature_dependencies -->|relates to| c_biological_ratchet + c_biological_ratchet -->|relates to| c_knowledge_unification + c_dependency_chain -->|relates to| c_biological_ratchet + c_dependency_chain -->|relates to| c_knowledge_unification + c_dependency_chain -->|relates to| c_cheating_frame + c_knowledge_unification -->|relates to| c_singularity_as_compilation + c_knowledge_unification -->|relates to| c_integration_layer + c_singularity_as_compilation -->|relates to| c_integration_layer + c_singularity_as_compilation -->|relates to| c_cheating_frame + c_integration_layer -->|relates to| c_existential_purpose_of_the_chain + c_ship_of_theseus_problem -->|relates to| c_continuity_argument + c_ship_of_theseus_problem -->|relates to| c_identity_argument + c_ship_of_theseus_problem -->|relates to| c_pragmatic_argument + c_continuity_argument -->|relates to| c_identity_argument + c_continuity_argument -->|relates to| c_pragmatic_argument + c_identity_argument -->|relates to| c_pragmatic_argument + c_cheating_frame -->|relates to| c_existential_purpose_of_the_chain + c_existential_purpose_of_the_chain -->|relates to| c_knowledge_unification + c_eve_s_apple -->|relates to| c_cognitive_preference_shift + c_eve_s_apple -->|relates to| c_dependency_chain + c_pandora_s_box -->|relates to| c_dependency_chain + c_pandora_s_box -->|relates to| c_automation_spiral + c_prometheus -->|relates to| c_dependency_chain + c_prometheus -->|relates to| c_cheating_frame + c_sorcerer_s_apprentice -->|relates to| c_automation_spiral + c_sorcerer_s_apprentice -->|relates to| c_feedback_loop + c_sorcerer_s_apprentice -->|relates to| c_dependency_chain + c_the_golem -->|relates to| c_dependency_chain + c_faustian_bargain -->|relates to| c_feedback_loop + c_faustian_bargain -->|relates to| c_cognitive_preference_shift + c_icarus -->|relates to| c_shelf_life_problem + c_icarus -->|relates to| c_infrastructure_threshold + c_tower_of_babel -->|relates to| c_dependency_chain + c_tower_of_babel -->|relates to| c_knowledge_unification diff --git a/tools/concept-index/glossary.md b/tools/concept-index/glossary.md new file mode 100644 index 0000000..0ed77a7 --- /dev/null +++ b/tools/concept-index/glossary.md @@ -0,0 +1,471 @@ +# VIBECODE-THEORY Glossary + +## Adaptive Communication +Origin: 001 +Status: active +Aliases: adaptive communication, constraint calibration, register matching +- **Constraint calibration** — knowing when to specify tightly and when to leave room. +Revised in: 004 +Challenged in: 003 +Referenced in: 003 +Related concepts: Social-Cognitive Framework, Mental Model Accuracy, Collaboration Management + +## Agricultural Parallel +Origin: 002 +Status: active +Aliases: agricultural analogy, agricultural parallel +The agricultural parallel: early farmers gained knowledge of seasons, irrigation, selective breeding, and storage that foragers didn't have. +Revised in: 005 +Challenged in: 005, 006, 008 +Referenced in: 003, 006, 008 +Related concepts: Cognitive Surplus, Green Revolution, Feudal Internet, Dependency Trap + +## Automation Spiral +Origin: 003 +Status: active +Aliases: automation spiral +The Dependency Trap is "humans can't function without AI." The Automation Spiral is "AI functions without humans." The Dependency Trap still needs people in the loop, just helpless ones. +Revised in: None +Challenged in: 005, 006, 008 +Referenced in: 005, 006, 007, 008, sorcerers-apprentice +Related concepts: Cognitive Surplus, Feedback Loop, Master-Apprentice Parallel + +## Biological Ratchet +Origin: 007 +Status: active +Aliases: biological ratchet, dependency ratchet, ratchet thesis +They outcompete organisms that maintain redundant internal capacity "just in case." The dependency ratchet isn't a bug — it's the core mechanism by which complexity increases. +Revised in: None +Challenged in: 008 +Referenced in: 008 +Related concepts: Infrastructure Threshold, Cognitive Preference Shift, Knowledge Unification + +## Cheating Frame +Origin: 008 +Status: active +Aliases: cheating frame, did we cheat +The question "did we cheat?" assumes there's a version of the game where we don't. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Dependency Chain, Singularity as Compilation, Existential Purpose of the Chain + +## Cognition as a Commodity +Origin: 005 +Status: active +Aliases: cognition as a commodity, cognition-as-commodity framing +This revision does three things: stress-tests the agricultural analogy and draws its limits, adds a concrete economic mechanism (cognition as a commodity with a collapsing price), introduces the Y2K parallel for the dependency argument, and adds the missing fourth future. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Cognitive Surplus, Feudal Internet, Information/Cognition Resource Hierarchy + +## Cognitive Atrophy +Origin: 002 +Status: open question +Aliases: capability loss, cognitive atrophy +**The pessimistic case:** Cognitive atrophy accelerates. +Revised in: 005 +Challenged in: 003, 005 +Referenced in: 003 +Related concepts: Dual Cognition Problem, Cognitive Preference Shift, Biological Ratchet + +## Cognitive Preference Shift +Origin: 003 +Status: active +Aliases: cognitive preference shift, preference shift +The paper needs to either find harder evidence or honestly downgrade the claim from "cognitive atrophy is happening" to "we observe a preference shift that *could* lead to atrophy if sustained, but we don't yet have evidence of actual capability loss." +Revised in: None +Challenged in: 005, 007 +Referenced in: 005, 007, eves-apple, faust +Related concepts: Dual Cognition Problem, Cognitive Atrophy, Biological Ratchet + +## Cognitive Surplus +Origin: 002 +Status: active +Aliases: cognitive surplus, surplus of cognition, the cognitive surplus +If AI creates a comparable surplus of cognition — where not everyone needs to think through routine problems anymore — the downstream effects won't be "some jobs change." They'll be civilizational. +Revised in: 005 +Challenged in: 004, 005, 006, 007, 008 +Referenced in: 001, 003, 004, 006, 007, 008, faust +Related concepts: Agricultural Parallel, Cognition as a Commodity, Automation Spiral + +## Collaboration Management +Origin: 001 +Status: active +Aliases: collaboration management, recovery, task decomposition, trust calibration +- **Task decomposition** — breaking work into pieces that are the right size for AI collaboration. +Revised in: 004 +Challenged in: 003 +Referenced in: 002, 003 +Related concepts: Social-Cognitive Framework, Adaptive Communication, Technical Foundation + +## Continuity Argument +Origin: 008 +Status: active +Aliases: continuity argument, the continuity argument +The human who discovered fire isn't the same species as the human who built the internet. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Ship of Theseus Problem, Identity Argument, Pragmatic Argument + +## Dependency Chain +Origin: 007 +Status: active +Aliases: dependency chain +People went back to light switches — not because light switches are better technology, but because the *complexity of the dependency chain* became its own burden. +Revised in: None +Challenged in: 008, tower-of-babel +Referenced in: 008, eves-apple, faust, icarus, pandoras-box, prometheus, sorcerers-apprentice, the-golem, tower-of-babel +Related concepts: Biological Ratchet, Knowledge Unification, Cheating Frame + +## Dependency Trap +Origin: 002 +Status: active +Aliases: dependency trap, future 3: the dependency trap +Definition sentence not found in source text. +Revised in: 005 +Challenged in: None +Referenced in: 003 +Related concepts: Feudal Internet, Cognitive Atrophy, Y2K Parallel + +## Dual Cognition Problem +Origin: 002 +Status: active +Aliases: dual cognition problem, the dual cognition problem +Seth reported observing both effects simultaneously in himself: +Revised in: 005 +Challenged in: None +Referenced in: None +Related concepts: Cognitive Preference Shift, Cognitive Atrophy, Cognitive Surplus + +## Eve's Apple +Origin: eves-apple +Status: reference allegory +Aliases: eve's apple +Eve's Apple maps most directly to the **cognitive preference shift** described in Paper 005. +Revised in: None +Challenged in: None +Referenced in: 007, icarus, pandoras-box +Related concepts: Cognitive Preference Shift, Dependency Chain + +## Existential Purpose of the Chain +Origin: 008 +Status: active +Aliases: existential purpose, existential purpose of the dependency chain, the existential purpose of the dependency chain +If the dependency chain is a knowledge unification process, does it have a direction? +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Integration Layer, Cheating Frame, Knowledge Unification + +## Faustian Bargain +Origin: faust +Status: reference allegory +Aliases: faust, faustian bargain +1592); Johann Wolfgang von Goethe, *Faust* (Part 1: 1808, Part 2: 1832) **Theme:** Trading something essential for knowledge and power — the bargain that seems rational at every step +Revised in: None +Challenged in: tower-of-babel +Referenced in: 007, 008, tower-of-babel +Related concepts: Feedback Loop, Cognitive Preference Shift + +## Feedback Loop +Origin: 006 +Status: active +Aliases: feedback loop +If the feedback loop closes — if AI learns to do vibe coding without vibe coders — then the skill framework is a description of a transitional state, not a permanent one. +Revised in: None +Challenged in: 007, 008 +Referenced in: 005, 007, 008 +Related concepts: Automation Spiral, Master-Apprentice Parallel, Niche Construction + +## Feudal Internet +Origin: 002 +Status: active +Aliases: feudal internet +Definition sentence not found in source text. +Revised in: 005 +Challenged in: None +Referenced in: 003 +Related concepts: Agricultural Parallel, Dependency Trap, Cognition as a Commodity + +## Green Revolution +Origin: 002 +Status: active +Aliases: green revolution +**Agricultural parallel:** The 20th-century Green Revolution, where agricultural technology was deliberately distributed to developing nations, dramatically reducing famine. +Revised in: 005 +Challenged in: None +Referenced in: 003 +Related concepts: Agricultural Parallel, Feudal Internet + +## Icarus +Origin: icarus +Status: reference allegory +Aliases: icarus +Daedalus, the master craftsman, builds wings of feathers and wax for himself and his son Icarus to escape imprisonment on Crete. +Revised in: None +Challenged in: tower-of-babel +Referenced in: 007, tower-of-babel +Related concepts: Shelf-Life Problem, Infrastructure Threshold + +## Identity Argument +Origin: 008 +Status: active +Aliases: essentialist, identity argument, the identity argument +There's something essentially human — consciousness, subjective experience, mortality, biological embodiment, individual identity — and if you remove enough of those properties, the thing that remains isn't "us" regardless of continuity. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Ship of Theseus Problem, Continuity Argument, Pragmatic Argument + +## Information/Cognition Resource Hierarchy +Origin: 005 +Status: active +Aliases: information and cognition as resources, resource hierarchy +Seth's hierarchy: "Information is the most valuable resource in the world. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Cognition as a Commodity, Knowledge Unification + +## Infrastructure Threshold +Origin: 007 +Status: active +Aliases: infrastructure threshold +The question for AI: **has it already crossed the infrastructure threshold, or is it still in the application phase where the ebb-and-flow pattern could pull it back?** The honest answer is that AI is right now in the transition zone. +Revised in: None +Challenged in: 008 +Referenced in: 008 +Related concepts: Biological Ratchet, Premature Dependencies, Y2K Parallel + +## Integration Layer +Origin: 008 +Status: active +Aliases: integration layer +It's the **integration layer** that makes human cognition collectively useful for the first time in history. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Knowledge Unification, Singularity as Compilation, Existential Purpose of the Chain + +## Knowledge Unification +Origin: 008 +Status: active +Aliases: knowledge unification, the dependency chain as knowledge unification, unification of human knowledge, unification thesis +The series has described the dependency chain — fire → language → writing → printing → internet → AI — as a sequence of increasing *capability.* Each link enables more than the one before. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Dependency Chain, Singularity as Compilation, Integration Layer + +## Master-Apprentice Parallel +Origin: 006 +Status: active +Aliases: master-apprentice parallel, master-apprentice relationship +The closest historical parallel is the **master-apprentice relationship** — and it's worth taking seriously, not just as a passing comparison, because the places where it holds and breaks are revealing. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Feedback Loop, Automation Spiral, The Golem + +## Mental Model Accuracy +Origin: 001 +Status: active +Aliases: mental model, mental model accuracy +The core competency is building and maintaining an accurate *mental model* of the AI as a collaborator — its capabilities, tendencies, failure modes, and dynamic personality. +Revised in: 004 +Challenged in: 003 +Referenced in: 003 +Related concepts: Social-Cognitive Framework, Adaptive Communication, Collaboration Management + +## Meta-Skill Argument +Origin: 004 +Status: active +Aliases: meta-skill, meta-skill argument +The meta-skill of managing the overall collaboration: +Revised in: None +Challenged in: 006 +Referenced in: 001, 003, 006, faust, icarus, pandoras-box +Related concepts: Shelf-Life Problem, Vibe Coding, Social-Cognitive Framework + +## Neurodivergence Note +Origin: 001 +Status: open question +Aliases: neurodivergence hypothesis, neurodivergence note +Definition sentence not found in source text. +Revised in: 004 +Challenged in: 003 +Referenced in: 003 +Related concepts: Social-Cognitive Framework + +## Niche Construction +Origin: 006 +Status: active +Aliases: niche construction +There's a concept from evolutionary biology that captures what's happening better than any economic or historical analogy: **niche construction.** +Revised in: None +Challenged in: None +Referenced in: pandoras-box +Related concepts: Feedback Loop, Recursion Observation + +## Pandora's Box +Origin: pandoras-box +Status: reference allegory +Aliases: pandora's box +Pandora's Box identifies a different irreversibility than Eve's Apple: **release, not knowledge.** The problem isn't that Pandora *knows* what's in the box — it's that the contents, once released, cannot be gathered back. +Revised in: None +Challenged in: None +Referenced in: 007 +Related concepts: Dependency Chain, Automation Spiral + +## Pragmatic Argument +Origin: 008 +Status: active +Aliases: pragmatic argument, the pragmatic argument +The question "is it really us?" is a luxury of beings who currently have the option of surviving as-is. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Ship of Theseus Problem, Continuity Argument, Identity Argument + +## Premature Dependencies +Origin: 007 +Status: active +Aliases: dependency waiting for its enabling technology, premature dependencies +And it's the most instructive example because it reveals the mechanism: **premature dependencies fail when the complexity cost exceeds the benefit before the technology becomes infrastructure.** +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Infrastructure Threshold, Biological Ratchet + +## Prometheus +Origin: prometheus +Status: reference allegory +Aliases: prometheus +700 BCE); Aeschylus, *Prometheus Bound* (c. +Revised in: None +Challenged in: None +Referenced in: 007, 008, pandoras-box +Related concepts: Theological Thread, Dependency Chain, Cheating Frame + +## Recursion Observation +Origin: 006 +Status: open question +Aliases: cosmological → biological → linguistic → computational, recursion observation +**Is the recursion observation meaningful or just pattern-matching?** The cosmological → linguistic → computational recursion is aesthetically appealing. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Theological Thread, Niche Construction, Knowledge Unification + +## Shelf-Life Problem +Origin: 003 +Status: active +Aliases: shelf life problem, shelf-life problem +thesis) and confront the shelf-life problem - Paper 002 needs to stress-test the agricultural analogy's limits, add the missing fourth future, and ground the cognitive atrophy argument in something harder than self-report - Both papers need to engage with the temporal problem: these aren't descriptions of a stable system, they're snapshots of a system in rapid transition +Revised in: None +Challenged in: 004 +Referenced in: 004 +Related concepts: Meta-Skill Argument, Infrastructure Threshold + +## Ship of Theseus Problem +Origin: 008 +Status: active +Aliases: identity problem, ship of theseus problem, species identity problem, the identity problem +If the dependency chain leads to a unified human-AI intelligence capable of surviving beyond Earth — is that still "us?" +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Continuity Argument, Identity Argument, Pragmatic Argument + +## Singularity as Compilation +Origin: 008 +Status: active +Aliases: compilation not transcendence, compilation, not transcendence, singularity as compilation +Definition sentence not found in source text. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Knowledge Unification, Integration Layer, Cheating Frame + +## Social-Cognitive Framework +Origin: 004 +Status: active +Aliases: social-cognitive framework, social-cognitive processes, vibe coding as social skill +**What we propose:** Vibe coding involves significant social-cognitive processes — the same mental machinery used for modeling other minds — applied to AI collaboration. +Revised in: None +Challenged in: 002, 003, 005, 006 +Referenced in: 001, 002, 003, 005, 006 +Related concepts: Vibe Coding, Mental Model Accuracy, Adaptive Communication, Collaboration Management + +## Sorcerer's Apprentice +Origin: sorcerers-apprentice +Status: reference allegory +Aliases: sorcerer's apprentice +The Sorcerer's Apprentice identifies the most specific and practical failure mode: **the gap between the ability to start an automated process and the ability to control it.** +Revised in: None +Challenged in: None +Referenced in: 007 +Related concepts: Automation Spiral, Feedback Loop, Dependency Chain + +## Technical Foundation +Origin: 001 +Status: active +Aliases: technical expertise, technical foundation +Technical foundation helps enormously, but it's not the differentiator. +Revised in: 004 +Challenged in: 003, 004 +Referenced in: 003, 006 +Related concepts: Vibe Coding, Collaboration Management, Meta-Skill Argument + +## The Golem +Origin: the-golem +Status: reference allegory +Aliases: golem, the golem +**Source:** Jewish folklore, most prominently the Golem of Prague (Rabbi Judah Loew ben Bezalel, 16th century); earlier references in the Talmud and Sefer Yetzirah **Theme:** Creating a servant from raw materials that serves faithfully until it doesn't — and has no interiority to appeal to +Revised in: None +Challenged in: None +Referenced in: 007 +Related concepts: Master-Apprentice Parallel, Dependency Chain + +## Theological Thread +Origin: 006 +Status: active +Aliases: theological thread +Definition sentence not found in source text. +Revised in: None +Challenged in: 008 +Referenced in: 007, 008, prometheus +Related concepts: Prometheus, Knowledge Unification, Recursion Observation + +## Tower of Babel +Origin: tower-of-babel +Status: reference allegory +Aliases: babel, tower of babel +Babel identifies a failure mode the other allegories miss: **the fragmentation of shared understanding as a consequence of — or response to — collective overreach.** +Revised in: None +Challenged in: None +Referenced in: 007 +Related concepts: Dependency Chain, Knowledge Unification + +## Vibe Coding +Origin: 001 +Status: active +Aliases: vibe coding +The trigger for this paper: one of the authors (Seth) has been vibe coding since January 2026, building a homelab infrastructure with Claude Code across dozens of projects. +Revised in: 004 +Challenged in: 002, 003, 004, 006, 007 +Referenced in: 002, 003, 005, 006, 007, 008, faust, icarus, prometheus, sorcerers-apprentice, tower-of-babel +Related concepts: Social-Cognitive Framework, Mental Model Accuracy, Meta-Skill Argument + +## Y2K Parallel +Origin: 005 +Status: active +Aliases: ai y2k moment, y2k moment, y2k parallel +This revision does three things: stress-tests the agricultural analogy and draws its limits, adds a concrete economic mechanism (cognition as a commodity with a collapsing price), introduces the Y2K parallel for the dependency argument, and adds the missing fourth future. +Revised in: None +Challenged in: None +Referenced in: None +Related concepts: Dependency Trap, Infrastructure Threshold, Cognitive Surplus diff --git a/tools/concept-index/index.json b/tools/concept-index/index.json new file mode 100644 index 0000000..cbfcf56 --- /dev/null +++ b/tools/concept-index/index.json @@ -0,0 +1,1043 @@ +{ + "concepts": [ + { + "name": "Vibe Coding", + "aliases": [ + "vibe coding" + ], + "introduced_in": "001", + "definition": "The trigger for this paper: one of the authors (Seth) has been vibe coding since January 2026, building a homelab infrastructure with Claude Code across dozens of projects.", + "revised_in": [ + "004" + ], + "challenged_in": [ + "002", + "003", + "004", + "006", + "007" + ], + "referenced_in": [ + "002", + "003", + "005", + "006", + "007", + "008", + "faust", + "icarus", + "prometheus", + "sorcerers-apprentice", + "tower-of-babel" + ], + "status": "active", + "related_concepts": [ + "Social-Cognitive Framework", + "Mental Model Accuracy", + "Meta-Skill Argument" + ] + }, + { + "name": "Social-Cognitive Framework", + "aliases": [ + "social-cognitive framework", + "social-cognitive processes", + "vibe coding as social skill" + ], + "introduced_in": "004", + "definition": "**What we propose:** Vibe coding involves significant social-cognitive processes \u2014 the same mental machinery used for modeling other minds \u2014 applied to AI collaboration.", + "revised_in": [], + "challenged_in": [ + "002", + "003", + "005", + "006" + ], + "referenced_in": [ + "001", + "002", + "003", + "005", + "006" + ], + "status": "active", + "related_concepts": [ + "Vibe Coding", + "Mental Model Accuracy", + "Adaptive Communication", + "Collaboration Management" + ] + }, + { + "name": "Mental Model Accuracy", + "aliases": [ + "mental model", + "mental model accuracy" + ], + "introduced_in": "001", + "definition": "The core competency is building and maintaining an accurate *mental model* of the AI as a collaborator \u2014 its capabilities, tendencies, failure modes, and dynamic personality.", + "revised_in": [ + "004" + ], + "challenged_in": [ + "003" + ], + "referenced_in": [ + "003" + ], + "status": "active", + "related_concepts": [ + "Social-Cognitive Framework", + "Adaptive Communication", + "Collaboration Management" + ] + }, + { + "name": "Adaptive Communication", + "aliases": [ + "adaptive communication", + "constraint calibration", + "register matching" + ], + "introduced_in": "001", + "definition": "- **Constraint calibration** \u2014 knowing when to specify tightly and when to leave room.", + "revised_in": [ + "004" + ], + "challenged_in": [ + "003" + ], + "referenced_in": [ + "003" + ], + "status": "active", + "related_concepts": [ + "Social-Cognitive Framework", + "Mental Model Accuracy", + "Collaboration Management" + ] + }, + { + "name": "Collaboration Management", + "aliases": [ + "collaboration management", + "recovery", + "task decomposition", + "trust calibration" + ], + "introduced_in": "001", + "definition": "- **Task decomposition** \u2014 breaking work into pieces that are the right size for AI collaboration.", + "revised_in": [ + "004" + ], + "challenged_in": [ + "003" + ], + "referenced_in": [ + "002", + "003" + ], + "status": "active", + "related_concepts": [ + "Social-Cognitive Framework", + "Adaptive Communication", + "Technical Foundation" + ] + }, + { + "name": "Technical Foundation", + "aliases": [ + "technical expertise", + "technical foundation" + ], + "introduced_in": "001", + "definition": "Technical foundation helps enormously, but it's not the differentiator.", + "revised_in": [ + "004" + ], + "challenged_in": [ + "003", + "004" + ], + "referenced_in": [ + "003", + "006" + ], + "status": "active", + "related_concepts": [ + "Vibe Coding", + "Collaboration Management", + "Meta-Skill Argument" + ] + }, + { + "name": "Neurodivergence Note", + "aliases": [ + "neurodivergence hypothesis", + "neurodivergence note" + ], + "introduced_in": "001", + "definition": "Definition sentence not found in source text.", + "revised_in": [ + "004" + ], + "challenged_in": [ + "003" + ], + "referenced_in": [ + "003" + ], + "status": "open question", + "related_concepts": [ + "Social-Cognitive Framework" + ] + }, + { + "name": "Shelf-Life Problem", + "aliases": [ + "shelf life problem", + "shelf-life problem" + ], + "introduced_in": "003", + "definition": "thesis) and confront the shelf-life problem - Paper 002 needs to stress-test the agricultural analogy's limits, add the missing fourth future, and ground the cognitive atrophy argument in something harder than self-report - Both papers need to engage with the temporal problem: these aren't descriptions of a stable system, they're snapshots of a system in rapid transition", + "revised_in": [], + "challenged_in": [ + "004" + ], + "referenced_in": [ + "004" + ], + "status": "active", + "related_concepts": [ + "Meta-Skill Argument", + "Infrastructure Threshold" + ] + }, + { + "name": "Meta-Skill Argument", + "aliases": [ + "meta-skill", + "meta-skill argument" + ], + "introduced_in": "004", + "definition": "The meta-skill of managing the overall collaboration:", + "revised_in": [], + "challenged_in": [ + "006" + ], + "referenced_in": [ + "001", + "003", + "006", + "faust", + "icarus", + "pandoras-box" + ], + "status": "active", + "related_concepts": [ + "Shelf-Life Problem", + "Vibe Coding", + "Social-Cognitive Framework" + ] + }, + { + "name": "Cognitive Surplus", + "aliases": [ + "cognitive surplus", + "surplus of cognition", + "the cognitive surplus" + ], + "introduced_in": "002", + "definition": "If AI creates a comparable surplus of cognition \u2014 where not everyone needs to think through routine problems anymore \u2014 the downstream effects won't be \"some jobs change.\" They'll be civilizational.", + "revised_in": [ + "005" + ], + "challenged_in": [ + "004", + "005", + "006", + "007", + "008" + ], + "referenced_in": [ + "001", + "003", + "004", + "006", + "007", + "008", + "faust" + ], + "status": "active", + "related_concepts": [ + "Agricultural Parallel", + "Cognition as a Commodity", + "Automation Spiral" + ] + }, + { + "name": "Agricultural Parallel", + "aliases": [ + "agricultural analogy", + "agricultural parallel" + ], + "introduced_in": "002", + "definition": "The agricultural parallel: early farmers gained knowledge of seasons, irrigation, selective breeding, and storage that foragers didn't have.", + "revised_in": [ + "005" + ], + "challenged_in": [ + "005", + "006", + "008" + ], + "referenced_in": [ + "003", + "006", + "008" + ], + "status": "active", + "related_concepts": [ + "Cognitive Surplus", + "Green Revolution", + "Feudal Internet", + "Dependency Trap" + ] + }, + { + "name": "Dual Cognition Problem", + "aliases": [ + "dual cognition problem", + "the dual cognition problem" + ], + "introduced_in": "002", + "definition": "Seth reported observing both effects simultaneously in himself:", + "revised_in": [ + "005" + ], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Cognitive Preference Shift", + "Cognitive Atrophy", + "Cognitive Surplus" + ] + }, + { + "name": "Cognitive Atrophy", + "aliases": [ + "capability loss", + "cognitive atrophy" + ], + "introduced_in": "002", + "definition": "**The pessimistic case:** Cognitive atrophy accelerates.", + "revised_in": [ + "005" + ], + "challenged_in": [ + "003", + "005" + ], + "referenced_in": [ + "003" + ], + "status": "open question", + "related_concepts": [ + "Dual Cognition Problem", + "Cognitive Preference Shift", + "Biological Ratchet" + ] + }, + { + "name": "Green Revolution", + "aliases": [ + "green revolution" + ], + "introduced_in": "002", + "definition": "**Agricultural parallel:** The 20th-century Green Revolution, where agricultural technology was deliberately distributed to developing nations, dramatically reducing famine.", + "revised_in": [ + "005" + ], + "challenged_in": [], + "referenced_in": [ + "003" + ], + "status": "active", + "related_concepts": [ + "Agricultural Parallel", + "Feudal Internet" + ] + }, + { + "name": "Feudal Internet", + "aliases": [ + "feudal internet" + ], + "introduced_in": "002", + "definition": "Definition sentence not found in source text.", + "revised_in": [ + "005" + ], + "challenged_in": [], + "referenced_in": [ + "003" + ], + "status": "active", + "related_concepts": [ + "Agricultural Parallel", + "Dependency Trap", + "Cognition as a Commodity" + ] + }, + { + "name": "Dependency Trap", + "aliases": [ + "dependency trap", + "future 3: the dependency trap" + ], + "introduced_in": "002", + "definition": "Definition sentence not found in source text.", + "revised_in": [ + "005" + ], + "challenged_in": [], + "referenced_in": [ + "003" + ], + "status": "active", + "related_concepts": [ + "Feudal Internet", + "Cognitive Atrophy", + "Y2K Parallel" + ] + }, + { + "name": "Automation Spiral", + "aliases": [ + "automation spiral" + ], + "introduced_in": "003", + "definition": "The Dependency Trap is \"humans can't function without AI.\" The Automation Spiral is \"AI functions without humans.\" The Dependency Trap still needs people in the loop, just helpless ones.", + "revised_in": [], + "challenged_in": [ + "005", + "006", + "008" + ], + "referenced_in": [ + "005", + "006", + "007", + "008", + "sorcerers-apprentice" + ], + "status": "active", + "related_concepts": [ + "Cognitive Surplus", + "Feedback Loop", + "Master-Apprentice Parallel" + ] + }, + { + "name": "Cognitive Preference Shift", + "aliases": [ + "cognitive preference shift", + "preference shift" + ], + "introduced_in": "003", + "definition": "The paper needs to either find harder evidence or honestly downgrade the claim from \"cognitive atrophy is happening\" to \"we observe a preference shift that *could* lead to atrophy if sustained, but we don't yet have evidence of actual capability loss.\"", + "revised_in": [], + "challenged_in": [ + "005", + "007" + ], + "referenced_in": [ + "005", + "007", + "eves-apple", + "faust" + ], + "status": "active", + "related_concepts": [ + "Dual Cognition Problem", + "Cognitive Atrophy", + "Biological Ratchet" + ] + }, + { + "name": "Cognition as a Commodity", + "aliases": [ + "cognition as a commodity", + "cognition-as-commodity framing" + ], + "introduced_in": "005", + "definition": "This revision does three things: stress-tests the agricultural analogy and draws its limits, adds a concrete economic mechanism (cognition as a commodity with a collapsing price), introduces the Y2K parallel for the dependency argument, and adds the missing fourth future.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Cognitive Surplus", + "Feudal Internet", + "Information/Cognition Resource Hierarchy" + ] + }, + { + "name": "Y2K Parallel", + "aliases": [ + "ai y2k moment", + "y2k moment", + "y2k parallel" + ], + "introduced_in": "005", + "definition": "This revision does three things: stress-tests the agricultural analogy and draws its limits, adds a concrete economic mechanism (cognition as a commodity with a collapsing price), introduces the Y2K parallel for the dependency argument, and adds the missing fourth future.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Dependency Trap", + "Infrastructure Threshold", + "Cognitive Surplus" + ] + }, + { + "name": "Information/Cognition Resource Hierarchy", + "aliases": [ + "information and cognition as resources", + "resource hierarchy" + ], + "introduced_in": "005", + "definition": "Seth's hierarchy: \"Information is the most valuable resource in the world.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Cognition as a Commodity", + "Knowledge Unification" + ] + }, + { + "name": "Feedback Loop", + "aliases": [ + "feedback loop" + ], + "introduced_in": "006", + "definition": "If the feedback loop closes \u2014 if AI learns to do vibe coding without vibe coders \u2014 then the skill framework is a description of a transitional state, not a permanent one.", + "revised_in": [], + "challenged_in": [ + "007", + "008" + ], + "referenced_in": [ + "005", + "007", + "008" + ], + "status": "active", + "related_concepts": [ + "Automation Spiral", + "Master-Apprentice Parallel", + "Niche Construction" + ] + }, + { + "name": "Master-Apprentice Parallel", + "aliases": [ + "master-apprentice parallel", + "master-apprentice relationship" + ], + "introduced_in": "006", + "definition": "The closest historical parallel is the **master-apprentice relationship** \u2014 and it's worth taking seriously, not just as a passing comparison, because the places where it holds and breaks are revealing.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Feedback Loop", + "Automation Spiral", + "The Golem" + ] + }, + { + "name": "Niche Construction", + "aliases": [ + "niche construction" + ], + "introduced_in": "006", + "definition": "There's a concept from evolutionary biology that captures what's happening better than any economic or historical analogy: **niche construction.**", + "revised_in": [], + "challenged_in": [], + "referenced_in": [ + "pandoras-box" + ], + "status": "active", + "related_concepts": [ + "Feedback Loop", + "Recursion Observation" + ] + }, + { + "name": "Theological Thread", + "aliases": [ + "theological thread" + ], + "introduced_in": "006", + "definition": "Definition sentence not found in source text.", + "revised_in": [], + "challenged_in": [ + "008" + ], + "referenced_in": [ + "007", + "008", + "prometheus" + ], + "status": "active", + "related_concepts": [ + "Prometheus", + "Knowledge Unification", + "Recursion Observation" + ] + }, + { + "name": "Recursion Observation", + "aliases": [ + "cosmological \u2192 biological \u2192 linguistic \u2192 computational", + "recursion observation" + ], + "introduced_in": "006", + "definition": "**Is the recursion observation meaningful or just pattern-matching?** The cosmological \u2192 linguistic \u2192 computational recursion is aesthetically appealing.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "open question", + "related_concepts": [ + "Theological Thread", + "Niche Construction", + "Knowledge Unification" + ] + }, + { + "name": "Infrastructure Threshold", + "aliases": [ + "infrastructure threshold" + ], + "introduced_in": "007", + "definition": "The question for AI: **has it already crossed the infrastructure threshold, or is it still in the application phase where the ebb-and-flow pattern could pull it back?** The honest answer is that AI is right now in the transition zone.", + "revised_in": [], + "challenged_in": [ + "008" + ], + "referenced_in": [ + "008" + ], + "status": "active", + "related_concepts": [ + "Biological Ratchet", + "Premature Dependencies", + "Y2K Parallel" + ] + }, + { + "name": "Premature Dependencies", + "aliases": [ + "dependency waiting for its enabling technology", + "premature dependencies" + ], + "introduced_in": "007", + "definition": "And it's the most instructive example because it reveals the mechanism: **premature dependencies fail when the complexity cost exceeds the benefit before the technology becomes infrastructure.**", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Infrastructure Threshold", + "Biological Ratchet" + ] + }, + { + "name": "Biological Ratchet", + "aliases": [ + "biological ratchet", + "dependency ratchet", + "ratchet thesis" + ], + "introduced_in": "007", + "definition": "They outcompete organisms that maintain redundant internal capacity \"just in case.\" The dependency ratchet isn't a bug \u2014 it's the core mechanism by which complexity increases.", + "revised_in": [], + "challenged_in": [ + "008" + ], + "referenced_in": [ + "008" + ], + "status": "active", + "related_concepts": [ + "Infrastructure Threshold", + "Cognitive Preference Shift", + "Knowledge Unification" + ] + }, + { + "name": "Dependency Chain", + "aliases": [ + "dependency chain" + ], + "introduced_in": "007", + "definition": "People went back to light switches \u2014 not because light switches are better technology, but because the *complexity of the dependency chain* became its own burden.", + "revised_in": [], + "challenged_in": [ + "008", + "tower-of-babel" + ], + "referenced_in": [ + "008", + "eves-apple", + "faust", + "icarus", + "pandoras-box", + "prometheus", + "sorcerers-apprentice", + "the-golem", + "tower-of-babel" + ], + "status": "active", + "related_concepts": [ + "Biological Ratchet", + "Knowledge Unification", + "Cheating Frame" + ] + }, + { + "name": "Knowledge Unification", + "aliases": [ + "knowledge unification", + "the dependency chain as knowledge unification", + "unification of human knowledge", + "unification thesis" + ], + "introduced_in": "008", + "definition": "The series has described the dependency chain \u2014 fire \u2192 language \u2192 writing \u2192 printing \u2192 internet \u2192 AI \u2014 as a sequence of increasing *capability.* Each link enables more than the one before.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Dependency Chain", + "Singularity as Compilation", + "Integration Layer" + ] + }, + { + "name": "Singularity as Compilation", + "aliases": [ + "compilation not transcendence", + "compilation, not transcendence", + "singularity as compilation" + ], + "introduced_in": "008", + "definition": "Definition sentence not found in source text.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Knowledge Unification", + "Integration Layer", + "Cheating Frame" + ] + }, + { + "name": "Integration Layer", + "aliases": [ + "integration layer" + ], + "introduced_in": "008", + "definition": "It's the **integration layer** that makes human cognition collectively useful for the first time in history.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Knowledge Unification", + "Singularity as Compilation", + "Existential Purpose of the Chain" + ] + }, + { + "name": "Ship of Theseus Problem", + "aliases": [ + "identity problem", + "ship of theseus problem", + "species identity problem", + "the identity problem" + ], + "introduced_in": "008", + "definition": "If the dependency chain leads to a unified human-AI intelligence capable of surviving beyond Earth \u2014 is that still \"us?\"", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Continuity Argument", + "Identity Argument", + "Pragmatic Argument" + ] + }, + { + "name": "Continuity Argument", + "aliases": [ + "continuity argument", + "the continuity argument" + ], + "introduced_in": "008", + "definition": "The human who discovered fire isn't the same species as the human who built the internet.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Ship of Theseus Problem", + "Identity Argument", + "Pragmatic Argument" + ] + }, + { + "name": "Identity Argument", + "aliases": [ + "essentialist", + "identity argument", + "the identity argument" + ], + "introduced_in": "008", + "definition": "There's something essentially human \u2014 consciousness, subjective experience, mortality, biological embodiment, individual identity \u2014 and if you remove enough of those properties, the thing that remains isn't \"us\" regardless of continuity.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Ship of Theseus Problem", + "Continuity Argument", + "Pragmatic Argument" + ] + }, + { + "name": "Pragmatic Argument", + "aliases": [ + "pragmatic argument", + "the pragmatic argument" + ], + "introduced_in": "008", + "definition": "The question \"is it really us?\" is a luxury of beings who currently have the option of surviving as-is.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Ship of Theseus Problem", + "Continuity Argument", + "Identity Argument" + ] + }, + { + "name": "Cheating Frame", + "aliases": [ + "cheating frame", + "did we cheat" + ], + "introduced_in": "008", + "definition": "The question \"did we cheat?\" assumes there's a version of the game where we don't.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Dependency Chain", + "Singularity as Compilation", + "Existential Purpose of the Chain" + ] + }, + { + "name": "Existential Purpose of the Chain", + "aliases": [ + "existential purpose", + "existential purpose of the dependency chain", + "the existential purpose of the dependency chain" + ], + "introduced_in": "008", + "definition": "If the dependency chain is a knowledge unification process, does it have a direction?", + "revised_in": [], + "challenged_in": [], + "referenced_in": [], + "status": "active", + "related_concepts": [ + "Integration Layer", + "Cheating Frame", + "Knowledge Unification" + ] + }, + { + "name": "Eve's Apple", + "aliases": [ + "eve's apple" + ], + "introduced_in": "eves-apple", + "definition": "Eve's Apple maps most directly to the **cognitive preference shift** described in Paper 005.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [ + "007", + "icarus", + "pandoras-box" + ], + "status": "reference allegory", + "related_concepts": [ + "Cognitive Preference Shift", + "Dependency Chain" + ] + }, + { + "name": "Pandora's Box", + "aliases": [ + "pandora's box" + ], + "introduced_in": "pandoras-box", + "definition": "Pandora's Box identifies a different irreversibility than Eve's Apple: **release, not knowledge.** The problem isn't that Pandora *knows* what's in the box \u2014 it's that the contents, once released, cannot be gathered back.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [ + "007" + ], + "status": "reference allegory", + "related_concepts": [ + "Dependency Chain", + "Automation Spiral" + ] + }, + { + "name": "Prometheus", + "aliases": [ + "prometheus" + ], + "introduced_in": "prometheus", + "definition": "700 BCE); Aeschylus, *Prometheus Bound* (c.", + "revised_in": [], + "challenged_in": [], + "referenced_in": [ + "007", + "008", + "pandoras-box" + ], + "status": "reference allegory", + "related_concepts": [ + "Theological Thread", + "Dependency Chain", + "Cheating Frame" + ] + }, + { + "name": "Sorcerer's Apprentice", + "aliases": [ + "sorcerer's apprentice" + ], + "introduced_in": "sorcerers-apprentice", + "definition": "The Sorcerer's Apprentice identifies the most specific and practical failure mode: **the gap between the ability to start an automated process and the ability to control it.**", + "revised_in": [], + "challenged_in": [], + "referenced_in": [ + "007" + ], + "status": "reference allegory", + "related_concepts": [ + "Automation Spiral", + "Feedback Loop", + "Dependency Chain" + ] + }, + { + "name": "The Golem", + "aliases": [ + "golem", + "the golem" + ], + "introduced_in": "the-golem", + "definition": "**Source:** Jewish folklore, most prominently the Golem of Prague (Rabbi Judah Loew ben Bezalel, 16th century); earlier references in the Talmud and Sefer Yetzirah **Theme:** Creating a servant from raw materials that serves faithfully until it doesn't \u2014 and has no interiority to appeal to", + "revised_in": [], + "challenged_in": [], + "referenced_in": [ + "007" + ], + "status": "reference allegory", + "related_concepts": [ + "Master-Apprentice Parallel", + "Dependency Chain" + ] + }, + { + "name": "Faustian Bargain", + "aliases": [ + "faust", + "faustian bargain" + ], + "introduced_in": "faust", + "definition": "1592); Johann Wolfgang von Goethe, *Faust* (Part 1: 1808, Part 2: 1832) **Theme:** Trading something essential for knowledge and power \u2014 the bargain that seems rational at every step", + "revised_in": [], + "challenged_in": [ + "tower-of-babel" + ], + "referenced_in": [ + "007", + "008", + "tower-of-babel" + ], + "status": "reference allegory", + "related_concepts": [ + "Feedback Loop", + "Cognitive Preference Shift" + ] + }, + { + "name": "Icarus", + "aliases": [ + "icarus" + ], + "introduced_in": "icarus", + "definition": "Daedalus, the master craftsman, builds wings of feathers and wax for himself and his son Icarus to escape imprisonment on Crete.", + "revised_in": [], + "challenged_in": [ + "tower-of-babel" + ], + "referenced_in": [ + "007", + "tower-of-babel" + ], + "status": "reference allegory", + "related_concepts": [ + "Shelf-Life Problem", + "Infrastructure Threshold" + ] + }, + { + "name": "Tower of Babel", + "aliases": [ + "babel", + "tower of babel" + ], + "introduced_in": "tower-of-babel", + "definition": "Babel identifies a failure mode the other allegories miss: **the fragmentation of shared understanding as a consequence of \u2014 or response to \u2014 collective overreach.**", + "revised_in": [], + "challenged_in": [], + "referenced_in": [ + "007" + ], + "status": "reference allegory", + "related_concepts": [ + "Dependency Chain", + "Knowledge Unification" + ] + } + ] +} diff --git a/tools/cross-references/build_cross_references.py b/tools/cross-references/build_cross_references.py new file mode 100644 index 0000000..4898783 --- /dev/null +++ b/tools/cross-references/build_cross_references.py @@ -0,0 +1,470 @@ +#!/usr/bin/env python3 +"""Build cross-reference artifacts for the VIBECODE-THEORY paper series. + +Outputs: +- graph.json +- graph.mermaid +- dangling_threads.md +- concept_flow.md +""" + +from __future__ import annotations + +import json +import re +from collections import defaultdict +from dataclasses import dataclass +from pathlib import Path +from typing import Iterable + + +ROOT = Path(__file__).resolve().parents[2] +OUT_DIR = Path(__file__).resolve().parent + +PAPER_GLOB = "00*-*.md" +ALLEGORY_GLOB = "allegorical/*.md" + +STOPWORDS = { + "about", + "after", + "again", + "also", + "because", + "between", + "could", + "does", + "from", + "have", + "into", + "just", + "like", + "might", + "more", + "most", + "over", + "paper", + "question", + "series", + "should", + "than", + "that", + "their", + "them", + "then", + "this", + "those", + "through", + "what", + "when", + "which", + "with", + "would", +} + +RELATION_PRIORITY = { + "supersedes": 8, + "refutes": 7, + "challenges": 6, + "revises": 5, + "extends": 4, + "addresses": 3, + "introduces concept used by": 2, + "references": 1, +} + +CONCEPT_CATALOG = { + "vibe coding as social skill": { + "aliases": ["vibe coding", "social skill", "meta-skill"], + "intro": "001", + }, + "cognitive surplus": { + "aliases": ["cognitive surplus", "surplus"], + "intro": "002", + }, + "dependency trap": { + "aliases": ["dependency trap", "systemic dependency"], + "intro": "002", + }, + "cognitive preference shift": { + "aliases": ["cognitive preference shift", "preference shift"], + "intro": "005", + }, + "automation spiral": { + "aliases": ["automation spiral"], + "intro": "003", + }, + "feedback loop": { + "aliases": ["feedback loop", "uncomfortable middle"], + "intro": "006", + }, + "biological ratchet": { + "aliases": ["biological ratchet", "ratchet"], + "intro": "007", + }, + "infrastructure threshold": { + "aliases": ["infrastructure threshold", "application phase"], + "intro": "007", + }, + "premature dependency hibernation": { + "aliases": ["premature dependencies", "hibernation"], + "intro": "007", + }, + "knowledge unification": { + "aliases": ["knowledge unification", "defragmentation"], + "intro": "008", + }, + "ship of theseus identity problem": { + "aliases": ["ship of theseus", "species identity"], + "intro": "008", + }, + "cheating frame": { + "aliases": ['"cheating"', "cheating frame"], + "intro": "008", + }, + "dependency chain": { + "aliases": ["dependency chain"], + "intro": "007", + }, +} + + +@dataclass +class Document: + doc_id: str + title: str + kind: str + path: Path + text: str + + +def read_documents() -> list[Document]: + docs: list[Document] = [] + + for path in sorted(ROOT.glob(PAPER_GLOB)): + text = path.read_text(encoding="utf-8") + m = re.search(r"^#\s+Paper\s+(\d{3}):\s*(.+)$", text, flags=re.M) + if m: + doc_id, title = m.group(1), m.group(2).strip() + else: + doc_id = path.name.split("-", 1)[0] + title = path.stem + docs.append(Document(doc_id=doc_id, title=title, kind="paper", path=path, text=text)) + + for path in sorted(ROOT.glob(ALLEGORY_GLOB)): + text = path.read_text(encoding="utf-8") + m = re.search(r"^#\s+(.+)$", text, flags=re.M) + title = m.group(1).strip() if m else path.stem.replace("-", " ").title() + docs.append( + Document( + doc_id=f"A:{path.stem}", + title=title, + kind="allegory", + path=path, + text=text, + ) + ) + + return docs + + +def sentence_chunks(text: str) -> Iterable[str]: + for chunk in re.split(r"(?<=[.!?])\s+|\n{2,}", text): + cleaned = " ".join(chunk.strip().split()) + if cleaned: + yield cleaned + + +def classify_relationship(text: str) -> str: + lower = text.lower() + if "supersed" in lower: + return "supersedes" + if any(k in lower for k in ("refute", "rebuttal", "against")): + return "refutes" + if any(k in lower for k in ("challenge", "critic", "unfalsifiable")): + return "challenges" + if "revis" in lower: + return "revises" + if "extend" in lower: + return "extends" + if any(k in lower for k in ("respond", "address", "engage")): + return "addresses" + return "references" + + +def find_paper_targets(text: str) -> list[str]: + if "paper" not in text.lower(): + return [] + return sorted(set(re.findall(r"\b00[1-8]\b", text))) + + +def add_edge(edges: dict[tuple[str, str], dict], source: str, target: str, edge_type: str, context: str) -> None: + if source == target: + return + key = (source, target) + candidate = {"source": source, "target": target, "type": edge_type, "context": context} + existing = edges.get(key) + if not existing: + edges[key] = candidate + return + if RELATION_PRIORITY[edge_type] > RELATION_PRIORITY[existing["type"]]: + edges[key] = candidate + + +def extract_explicit_edges(docs: list[Document]) -> dict[tuple[str, str], dict]: + edges: dict[tuple[str, str], dict] = {} + allegory_name_to_id = {doc.path.stem.replace("-", " "): doc.doc_id for doc in docs if doc.kind == "allegory"} + + for doc in docs: + for sent in sentence_chunks(doc.text): + targets = find_paper_targets(sent) + if targets: + rel = classify_relationship(sent) + for target in targets: + add_edge(edges, doc.doc_id, target, rel, sent[:220]) + + if doc.kind == "paper" and doc.doc_id == "007": + lower = doc.text.lower() + for name, target_id in allegory_name_to_id.items(): + if name in lower: + add_edge( + edges, + doc.doc_id, + target_id, + "extends", + f"Paper 007 explicitly maps the {name.title()} allegory into the ratchet framework.", + ) + + if doc.kind == "allegory": + for sent in sentence_chunks(doc.text): + targets = find_paper_targets(sent) + for target in targets: + add_edge(edges, doc.doc_id, target, "addresses", sent[:220]) + + return edges + + +def collect_concept_presence(docs: list[Document]) -> tuple[dict[str, str], dict[str, set[str]]]: + intro: dict[str, str] = {} + usage: dict[str, set[str]] = defaultdict(set) + + ordered = sorted([d for d in docs if d.kind == "paper"], key=lambda d: d.doc_id) + [ + d for d in docs if d.kind == "allegory" + ] + + for doc in ordered: + lower = doc.text.lower() + for concept, info in CONCEPT_CATALOG.items(): + aliases = info["aliases"] + if any(alias.lower() in lower for alias in aliases): + usage[concept].add(doc.doc_id) + expected_intro = info["intro"] + if expected_intro in {d.doc_id for d in docs if d.kind == "paper"}: + intro.setdefault(concept, expected_intro) + else: + intro.setdefault(concept, doc.doc_id) + return intro, usage + + +def extract_implicit_edges( + docs: list[Document], intro: dict[str, str], usage: dict[str, set[str]], edges: dict[tuple[str, str], dict] +) -> None: + for concept, source in intro.items(): + if not re.match(r"^00[1-8]$", source): + continue + for target in sorted(usage[concept]): + if target == source or not re.match(r"^00[1-8]$", target): + continue + if target <= source: + continue + add_edge( + edges, + source, + target, + "introduces concept used by", + f"{concept} appears first in {source} and recurs in {target}.", + ) + + +def build_nodes(docs: list[Document], intro: dict[str, str]) -> list[dict]: + concept_by_doc: dict[str, list[str]] = defaultdict(list) + for concept, doc_id in intro.items(): + concept_by_doc[doc_id].append(concept) + + nodes: list[dict] = [] + for doc in sorted(docs, key=lambda d: (d.kind != "paper", d.doc_id)): + nodes.append( + { + "id": doc.doc_id, + "title": doc.title, + "kind": doc.kind, + "concepts_introduced": sorted(concept_by_doc.get(doc.doc_id, [])), + } + ) + return nodes + + +def write_mermaid(nodes: list[dict], edges: list[dict]) -> None: + def mm_id(node_id: str) -> str: + return re.sub(r"[^A-Za-z0-9_]", "_", node_id) + + lines = ["graph TD"] + for node in nodes: + nid = mm_id(node["id"]) + label = f'{node["id"]}: {node["title"]}' + lines.append(f' {nid}["{label}"]') + for edge in edges: + src = mm_id(edge["source"]) + dst = mm_id(edge["target"]) + rel = edge["type"].replace('"', "") + lines.append(f" {src} -->|{rel}| {dst}") + (OUT_DIR / "graph.mermaid").write_text("\n".join(lines) + "\n", encoding="utf-8") + + +def extract_open_questions(paper: Document) -> list[str]: + lines = paper.text.splitlines() + start = None + for i, line in enumerate(lines): + if line.strip().lower().startswith("## open questions"): + start = i + 1 + break + if start is None: + return [] + + questions: list[str] = [] + for line in lines[start:]: + if line.startswith("## "): + break + stripped = line.strip() + if re.match(r"^(\d+\.|-)\s+", stripped): + body = re.sub(r"^(\d+\.|-)\s+", "", stripped).strip() + if body: + questions.append(body) + return questions + + +def question_keywords(text: str) -> set[str]: + words = re.findall(r"[A-Za-z][A-Za-z\-]{3,}", text.lower()) + return {w for w in words if w not in STOPWORDS} + + +def build_dangling_threads(papers: list[Document]) -> str: + paper_map = {p.doc_id: p for p in papers} + ordered_ids = sorted(paper_map.keys()) + lines = ["# Dangling Threads", ""] + + found_any = False + for doc_id in ordered_ids: + paper = paper_map[doc_id] + questions = extract_open_questions(paper) + later = [paper_map[i] for i in ordered_ids if i > doc_id] + + for question in questions: + kws = question_keywords(question) + hits: list[str] = [] + if kws: + for other in later: + lower = other.text.lower() + overlap = sum(1 for kw in kws if kw in lower) + if overlap >= 2: + hits.append(other.doc_id) + found_any = True + if hits: + lines.append( + f"- Raised in **Paper {doc_id}**: {question} \n" + f" Partially addressed in later papers: {', '.join(f'Paper {h}' for h in hits)}." + ) + else: + lines.append( + f"- Raised in **Paper {doc_id}**: {question} \n" + " Partially addressed in later papers: none detected." + ) + + if not found_any: + lines.append("- No open-question sections were detected in the source files.") + lines.append("") + return "\n".join(lines) + + +def build_concept_flow( + papers: list[Document], intro: dict[str, str], usage: dict[str, set[str]], explicit_edges: list[dict] +) -> str: + lines = ["# Concept Flow", ""] + + paper_ids = sorted(p.doc_id for p in papers) + paper_map = {p.doc_id: p for p in papers} + + for concept in sorted(CONCEPT_CATALOG.keys()): + introduced = intro.get(concept, "unknown") + used_in = sorted(d for d in usage.get(concept, set()) if d in paper_ids) + aliases = CONCEPT_CATALOG[concept]["aliases"] + + challenged: set[str] = set() + revised: set[str] = set() + for doc_id in used_in: + has_concept_sentence = False + for sent in sentence_chunks(paper_map[doc_id].text): + lower_sent = sent.lower() + if not any(a.lower() in lower_sent for a in aliases): + continue + has_concept_sentence = True + if any(k in lower_sent for k in ("challenge", "critic", "rebuttal", "against", "unfalsifiable")): + challenged.add(doc_id) + if any(k in lower_sent for k in ("revision", "revised", "supersedes", "responds", "extends")): + revised.add(doc_id) + if not has_concept_sentence: + continue + + challenged_list = sorted(challenged) + revised_list = sorted(revised) + current = used_in[-1] if used_in else "unknown" + + lines.append(f"## {concept.title()}") + lines.append(f"- Introduced in: Paper {introduced}" if introduced != "unknown" else "- Introduced in: unknown") + lines.append( + f"- Challenged in: {', '.join(f'Paper {p}' for p in challenged_list)}" + if challenged_list + else "- Challenged in: none detected" + ) + lines.append( + f"- Revised in: {', '.join(f'Paper {p}' for p in revised_list)}" + if revised_list + else "- Revised in: none detected" + ) + lines.append( + f"- Referenced in: {', '.join(f'Paper {p}' for p in used_in)}" if used_in else "- Referenced in: none detected" + ) + lines.append(f"- Current standing: active in latest mention (Paper {current})." if current != "unknown" else "- Current standing: unclear.") + lines.append("") + + return "\n".join(lines) + + +def main() -> None: + docs = read_documents() + papers = [d for d in docs if d.kind == "paper"] + + intro, usage = collect_concept_presence(docs) + edge_map = extract_explicit_edges(docs) + extract_implicit_edges(docs, intro, usage, edge_map) + + nodes = build_nodes(docs, intro) + edges = sorted(edge_map.values(), key=lambda e: (e["source"], e["target"], e["type"])) + + graph = {"nodes": nodes, "edges": edges} + (OUT_DIR / "graph.json").write_text(json.dumps(graph, indent=2) + "\n", encoding="utf-8") + write_mermaid(nodes, edges) + + dangling = build_dangling_threads(papers) + (OUT_DIR / "dangling_threads.md").write_text(dangling, encoding="utf-8") + + flow = build_concept_flow(papers, intro, usage, edges) + (OUT_DIR / "concept_flow.md").write_text(flow, encoding="utf-8") + + print(f"Wrote {OUT_DIR / 'graph.json'}") + print(f"Wrote {OUT_DIR / 'graph.mermaid'}") + print(f"Wrote {OUT_DIR / 'dangling_threads.md'}") + print(f"Wrote {OUT_DIR / 'concept_flow.md'}") + + +if __name__ == "__main__": + main() diff --git a/tools/cross-references/concept_flow.md b/tools/cross-references/concept_flow.md new file mode 100644 index 0000000..3691ba2 --- /dev/null +++ b/tools/cross-references/concept_flow.md @@ -0,0 +1,92 @@ +# Concept Flow + +## Automation Spiral +- Introduced in: Paper 003 +- Challenged in: none detected +- Revised in: Paper 006 +- Referenced in: Paper 003, Paper 005, Paper 006, Paper 007, Paper 008 +- Current standing: active in latest mention (Paper 008). + +## Biological Ratchet +- Introduced in: Paper 007 +- Challenged in: none detected +- Revised in: Paper 008 +- Referenced in: Paper 007, Paper 008 +- Current standing: active in latest mention (Paper 008). + +## Cheating Frame +- Introduced in: Paper 008 +- Challenged in: none detected +- Revised in: none detected +- Referenced in: Paper 008 +- Current standing: active in latest mention (Paper 008). + +## Cognitive Preference Shift +- Introduced in: Paper 005 +- Challenged in: none detected +- Revised in: Paper 005 +- Referenced in: Paper 003, Paper 005, Paper 007 +- Current standing: active in latest mention (Paper 007). + +## Cognitive Surplus +- Introduced in: Paper 002 +- Challenged in: Paper 003 +- Revised in: Paper 001, Paper 005, Paper 006 +- Referenced in: Paper 001, Paper 002, Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008 +- Current standing: active in latest mention (Paper 008). + +## Dependency Chain +- Introduced in: Paper 007 +- Challenged in: none detected +- Revised in: none detected +- Referenced in: Paper 007, Paper 008 +- Current standing: active in latest mention (Paper 008). + +## Dependency Trap +- Introduced in: Paper 002 +- Challenged in: none detected +- Revised in: none detected +- Referenced in: Paper 002, Paper 003, Paper 005 +- Current standing: active in latest mention (Paper 005). + +## Feedback Loop +- Introduced in: Paper 006 +- Challenged in: Paper 005 +- Revised in: Paper 006 +- Referenced in: Paper 005, Paper 006, Paper 007, Paper 008 +- Current standing: active in latest mention (Paper 008). + +## Infrastructure Threshold +- Introduced in: Paper 007 +- Challenged in: none detected +- Revised in: none detected +- Referenced in: Paper 007, Paper 008 +- Current standing: active in latest mention (Paper 008). + +## Knowledge Unification +- Introduced in: Paper 008 +- Challenged in: none detected +- Revised in: none detected +- Referenced in: Paper 008 +- Current standing: active in latest mention (Paper 008). + +## Premature Dependency Hibernation +- Introduced in: Paper 007 +- Challenged in: none detected +- Revised in: none detected +- Referenced in: Paper 007 +- Current standing: active in latest mention (Paper 007). + +## Ship Of Theseus Identity Problem +- Introduced in: Paper 008 +- Challenged in: none detected +- Revised in: none detected +- Referenced in: Paper 008 +- Current standing: active in latest mention (Paper 008). + +## Vibe Coding As Social Skill +- Introduced in: Paper 001 +- Challenged in: Paper 003, Paper 004, Paper 006 +- Revised in: Paper 001, Paper 004, Paper 007 +- Referenced in: Paper 001, Paper 002, Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008 +- Current standing: active in latest mention (Paper 008). diff --git a/tools/cross-references/dangling_threads.md b/tools/cross-references/dangling_threads.md new file mode 100644 index 0000000..89edc49 --- /dev/null +++ b/tools/cross-references/dangling_threads.md @@ -0,0 +1,70 @@ +# Dangling Threads + +- Raised in **Paper 001**: **Is the technical foundation truly replaceable?** Can someone develop equivalent evaluation judgment purely through extended AI collaboration, or is there an irreducible minimum of direct experience needed? Seth's experience suggests the foundation helps enormously, but the minimum hasn't been established. + Partially addressed in later papers: Paper 002, Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 001**: **How do mental models transfer across AI generations?** When a model is significantly updated, how much of the vibe coder's accumulated relational knowledge still applies? Is there an equivalent of "re-learning a friend after a major life change"? + Partially addressed in later papers: Paper 002, Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 001**: **Can the social skill be measured?** If we're claiming vibe coding is a social skill, we should be able to measure it independently of output quality. What would a "vibe coding social skill assessment" look like? + Partially addressed in later papers: Paper 002, Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 001**: **What's the ceiling without technical foundation?** The social skill framework suggests technical expertise is an amplifier, not a requirement. But is there a ceiling for vibe coders without technical foundations? And is that ceiling rising as AI output quality improves? + Partially addressed in later papers: Paper 002, Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 002**: **Is the agricultural parallel predictive or just illustrative?** Do civilizational phase transitions follow common patterns, or is each one unique enough that historical parallels mislead more than they inform? + Partially addressed in later papers: Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 002**: **What's the timeline?** The agricultural transition took millennia. The industrial transition took centuries. If this one takes years to decades, do human institutions adapt fast enough to manage it? + Partially addressed in later papers: Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 002**: **Can cognitive atrophy be prevented without sacrificing the surplus?** Agriculture didn't manage this — foraging skills were simply lost. Is there a way to maintain independent cognitive skills while still benefiting from AI augmentation? Or is atrophy the unavoidable price of surplus? + Partially addressed in later papers: Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 002**: **Who decides?** The surplus will be controlled by someone. Current trajectories suggest large AI companies, but open-source movements, government regulation, and individual skill development all push against concentration. Which forces will dominate? + Partially addressed in later papers: Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 002**: **What's the role of speed?** If the most powerful actors are those who move fastest with AI, does this create a systemic bias toward action over reflection? And if so, is that bias self-correcting (fast actors make visible mistakes) or self-reinforcing (fast actors capture resources that fund even faster action)? + Partially addressed in later papers: Paper 003, Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 003**: **Is unfalsifiability actually fatal?** Many useful frameworks in social science and philosophy are technically unfalsifiable. Does the value of a framework depend on falsifiability, or on explanatory and predictive utility? If the social-skill framing helps people become better vibe coders, does it matter whether it can be disproven? + Partially addressed in later papers: Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 003**: **Can cognitive atrophy be measured?** This is the key empirical question underlying Paper 002's risk analysis. Without measurement, the argument remains plausible speculation. With measurement, it becomes actionable. + Partially addressed in later papers: Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 003**: **Is the automation spiral a timeline question or a structural question?** Maybe humans are always in the loop but the loop gets thinner. Maybe the loop closes entirely. The difference between these outcomes might be decades — or might already be determined by architectural choices being made now. + Partially addressed in later papers: Paper 004, Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 004**: **Is the meta-skill real and measurable?** Can we design an experiment that tests whether experience with one AI system accelerates learning with a different one, beyond what technical knowledge alone would predict? + Partially addressed in later papers: Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 004**: **What's the ceiling without technical foundation?** The framework says technical knowledge is an amplifier, not a requirement. But is there a ceiling? And is it rising as AI output quality improves? + Partially addressed in later papers: Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 004**: **Is this framework actually useful?** The strongest test of a framework isn't whether it's true but whether it changes what people do. Does thinking about vibe coding through a social-cognitive lens lead to better education, better hiring, or better tools than thinking about it through a technical lens? + Partially addressed in later papers: Paper 005, Paper 006, Paper 007, Paper 008. +- Raised in **Paper 005**: **Is the agricultural parallel predictive or just illustrative?** This revision suggests: illustrative for surplus distribution, not predictive for the production dynamics. Is that distinction sustainable? + Partially addressed in later papers: Paper 006, Paper 007, Paper 008. +- Raised in **Paper 005**: **When does the AI Y2K moment arrive?** The first major infrastructure failure caused by AI dependency will reshape the conversation. Can we predict what sector it will hit first? + Partially addressed in later papers: Paper 006, Paper 007, Paper 008. +- Raised in **Paper 005**: **Can cognitive preference shift be reversed?** If someone spends years preferring AI for cognitive tasks, can they regain full independent capability with practice? Or is there a point of no return? This is an empirical question that matters enormously for the atrophy/dependency argument. + Partially addressed in later papers: Paper 006, Paper 007, Paper 008. +- Raised in **Paper 005**: **Is the automation spiral bounded?** Does human involvement in cognitive production asymptotically approach zero, or does it plateau? If it plateaus, at what level? The answer determines whether Futures 1-3 are the real options (human involvement persists) or Future 4 dominates (it doesn't). + Partially addressed in later papers: Paper 006, Paper 007, Paper 008. +- Raised in **Paper 005**: **Is the cognition-as-commodity framing actionable for individuals?** If cognition is getting cheap, what should individual cognitive workers *do*? Move upmarket to tasks AI can't do? Specialize in AI orchestration? Prepare for a post-cognitive-work economy? The answer depends on which future we're heading toward, and we don't know yet. + Partially addressed in later papers: Paper 006, Paper 007, Paper 008. +- Raised in **Paper 006**: **Is there a stable equilibrium?** Does the feedback loop stabilize at some level of human involvement, or does it drive toward zero? If it stabilizes, what determines the equilibrium point? + Partially addressed in later papers: Paper 007, Paper 008. +- Raised in **Paper 006**: **What does the economy look like when cognition is cheap?** Not "what jobs exist" but "what is the basis for economic exchange when the primary input to information production costs nearly nothing?" + Partially addressed in later papers: Paper 007, Paper 008. +- Raised in **Paper 006**: **Can the niche construction framing generate predictions?** If vibe coders are modifying their own selection pressures, can we predict which traits will be selected for next? What does the "next generation" of AI collaborator look like? + Partially addressed in later papers: Paper 007, Paper 008. +- Raised in **Paper 006**: **Is the recursion observation meaningful or just pattern-matching?** The cosmological → linguistic → computational recursion is aesthetically appealing. Is it structurally real, or is it the human tendency to see patterns where there's only coincidence? + Partially addressed in later papers: Paper 007, Paper 008. +- Raised in **Paper 006**: **What should individuals do?** All the analysis in this series is structural and civilizational. But Seth's questions are personal: what should *I* do? Paper 007 should attempt a practical answer, not just a theoretical framework. + Partially addressed in later papers: Paper 007, Paper 008. +- Raised in **Paper 007**: **Where exactly is the infrastructure threshold for AI?** Which AI applications have already crossed into infrastructure, and which are still in the application phase? Can we identify the threshold conditions? + Partially addressed in later papers: Paper 008. +- Raised in **Paper 007**: **Is the biological ratchet argument falsifiable?** Can we find examples of neural adaptation to tool use that were successfully reversed at scale? What would that look like? + Partially addressed in later papers: Paper 008. +- Raised in **Paper 007**: **Does the ratchet have a direction?** This paper describes the mechanism. Paper 008 asks whether the mechanism is pointed somewhere — toward unification of knowledge, toward a singularity, toward something else. The ratchet turns, but does it turn *toward* something? + Partially addressed in later papers: Paper 008. +- Raised in **Paper 007**: **What does the allegorical tradition tell us about human self-awareness of the ratchet?** We've been warning ourselves for millennia. The warnings are accurate. We ignore them. Is the warning-and-ignoring cycle itself part of the ratchet? + Partially addressed in later papers: Paper 008. +- Raised in **Paper 008**: **Is the unification thesis falsifiable?** How would we know if AI was *not* unifying human knowledge but doing something else — fragmenting it, distorting it, replacing it with something non-human? What evidence would distinguish unification from replacement? + Partially addressed in later papers: none detected. +- Raised in **Paper 008**: **Does the identity question have a practical answer?** The three philosophical traditions offer frameworks but not decisions. Is there a way to navigate the transformation that preserves what matters without being left behind? + Partially addressed in later papers: none detected. +- Raised in **Paper 008**: **What should individuals actually do?** Papers 004 and 006 raised this. Paper 008 provides context (the transformation is structural, biological, and probably irreversible) but not guidance. The series needs to attempt practical answers, even uncertain ones. + Partially addressed in later papers: none detected. +- Raised in **Paper 008**: **Is the "cheating" frame useful or just rhetorical?** If every dependency is "cheating," does the concept lose meaning? Or does it point to something real about the human relationship to its own tools? + Partially addressed in later papers: none detected. +- Raised in **Paper 008**: **What's the timeline?** The series has been deliberately vague about timescales. At some point it needs to attempt concrete predictions, even with enormous uncertainty bands. When does the infrastructure threshold get crossed? When does the unification become functionally complete? When does the identity question stop being philosophical and start being practical? + Partially addressed in later papers: none detected. diff --git a/tools/cross-references/graph.json b/tools/cross-references/graph.json new file mode 100644 index 0000000..aa4a141 --- /dev/null +++ b/tools/cross-references/graph.json @@ -0,0 +1,524 @@ +{ + "nodes": [ + { + "id": "001", + "title": "Vibe Coding as Social Skill", + "kind": "paper", + "concepts_introduced": [ + "vibe coding as social skill" + ] + }, + { + "id": "002", + "title": "The Cognitive Surplus", + "kind": "paper", + "concepts_introduced": [ + "cognitive surplus", + "dependency trap" + ] + }, + { + "id": "003", + "title": "Stress-Testing the Foundations \u2014 A Rebuttal to Papers 001 and 002", + "kind": "paper", + "concepts_introduced": [ + "automation spiral" + ] + }, + { + "id": "004", + "title": "Vibe Coding as Social Skill (Revised)", + "kind": "paper", + "concepts_introduced": [] + }, + { + "id": "005", + "title": "The Cognitive Surplus (Revised)", + "kind": "paper", + "concepts_introduced": [ + "cognitive preference shift" + ] + }, + { + "id": "006", + "title": "The Feedback Loop \u2014 Are Vibe Coders Coding Themselves Out of Existence?", + "kind": "paper", + "concepts_introduced": [ + "feedback loop" + ] + }, + { + "id": "007", + "title": "The Ratchet \u2014 Why Dependencies Don't Reverse", + "kind": "paper", + "concepts_introduced": [ + "biological ratchet", + "dependency chain", + "infrastructure threshold", + "premature dependency hibernation" + ] + }, + { + "id": "008", + "title": "The Ship of Theseus \u2014 Identity, Unification, and the End of Fragmentation", + "kind": "paper", + "concepts_introduced": [ + "cheating frame", + "knowledge unification", + "ship of theseus identity problem" + ] + }, + { + "id": "A:eves-apple", + "title": "Eve's Apple \u2014 The Tree of Knowledge", + "kind": "allegory", + "concepts_introduced": [] + }, + { + "id": "A:faust", + "title": "Faust \u2014 The Bargain That Costs Your Soul", + "kind": "allegory", + "concepts_introduced": [] + }, + { + "id": "A:icarus", + "title": "Icarus \u2014 Flying Too Close to the Sun", + "kind": "allegory", + "concepts_introduced": [] + }, + { + "id": "A:pandoras-box", + "title": "Pandora's Box \u2014 Unleashing What Cannot Be Contained", + "kind": "allegory", + "concepts_introduced": [] + }, + { + "id": "A:prometheus", + "title": "Prometheus \u2014 Stealing Fire from the Gods", + "kind": "allegory", + "concepts_introduced": [] + }, + { + "id": "A:sorcerers-apprentice", + "title": "The Sorcerer's Apprentice \u2014 Automation Beyond Control", + "kind": "allegory", + "concepts_introduced": [] + }, + { + "id": "A:the-golem", + "title": "The Golem \u2014 The Servant Without Agency", + "kind": "allegory", + "concepts_introduced": [] + }, + { + "id": "A:tower-of-babel", + "title": "The Tower of Babel \u2014 Collective Ambition and Fragmentation", + "kind": "allegory", + "concepts_introduced": [] + } + ], + "edges": [ + { + "source": "001", + "target": "002", + "type": "extends", + "context": "Paper 002 (\"The Cognitive Surplus\") extends this analysis to civilizational implications \u2014 what happens when this social skill becomes a primary differentiator in economic productivity." + }, + { + "source": "001", + "target": "003", + "type": "introduces concept used by", + "context": "vibe coding as social skill appears first in 001 and recurs in 003." + }, + { + "source": "001", + "target": "004", + "type": "introduces concept used by", + "context": "vibe coding as social skill appears first in 001 and recurs in 004." + }, + { + "source": "001", + "target": "005", + "type": "introduces concept used by", + "context": "vibe coding as social skill appears first in 001 and recurs in 005." + }, + { + "source": "001", + "target": "006", + "type": "introduces concept used by", + "context": "vibe coding as social skill appears first in 001 and recurs in 006." + }, + { + "source": "001", + "target": "007", + "type": "introduces concept used by", + "context": "vibe coding as social skill appears first in 001 and recurs in 007." + }, + { + "source": "001", + "target": "008", + "type": "introduces concept used by", + "context": "vibe coding as social skill appears first in 001 and recurs in 008." + }, + { + "source": "002", + "target": "001", + "type": "references", + "context": "Those with access to AI and the skill to wield it (see Paper 001) experience a productivity explosion." + }, + { + "source": "002", + "target": "003", + "type": "introduces concept used by", + "context": "cognitive surplus appears first in 002 and recurs in 003." + }, + { + "source": "002", + "target": "004", + "type": "introduces concept used by", + "context": "cognitive surplus appears first in 002 and recurs in 004." + }, + { + "source": "002", + "target": "005", + "type": "introduces concept used by", + "context": "cognitive surplus appears first in 002 and recurs in 005." + }, + { + "source": "002", + "target": "006", + "type": "introduces concept used by", + "context": "cognitive surplus appears first in 002 and recurs in 006." + }, + { + "source": "002", + "target": "007", + "type": "introduces concept used by", + "context": "cognitive surplus appears first in 002 and recurs in 007." + }, + { + "source": "002", + "target": "008", + "type": "introduces concept used by", + "context": "cognitive surplus appears first in 002 and recurs in 008." + }, + { + "source": "003", + "target": "001", + "type": "refutes", + "context": "# Paper 003: Stress-Testing the Foundations \u2014 A Rebuttal to Papers 001 and 002" + }, + { + "source": "003", + "target": "002", + "type": "refutes", + "context": "# Paper 003: Stress-Testing the Foundations \u2014 A Rebuttal to Papers 001 and 002" + }, + { + "source": "003", + "target": "004", + "type": "challenges", + "context": "The revisions in Papers 004 and 005 incorporate the criticisms that survive examination here." + }, + { + "source": "003", + "target": "005", + "type": "challenges", + "context": "The revisions in Papers 004 and 005 incorporate the criticisms that survive examination here." + }, + { + "source": "003", + "target": "006", + "type": "introduces concept used by", + "context": "automation spiral appears first in 003 and recurs in 006." + }, + { + "source": "003", + "target": "007", + "type": "introduces concept used by", + "context": "automation spiral appears first in 003 and recurs in 007." + }, + { + "source": "003", + "target": "008", + "type": "introduces concept used by", + "context": "automation spiral appears first in 003 and recurs in 008." + }, + { + "source": "004", + "target": "001", + "type": "supersedes", + "context": "**Authors:** Seth & Claude (Opus 4.6) **Date:** 2026-04-02 **Series:** VIBECODE-THEORY **Status:** Revision of Paper 001, incorporating critiques from Paper 003 **Supersedes:** Paper 001" + }, + { + "source": "004", + "target": "002", + "type": "references", + "context": "**Paper 002:** The social-cognitive framework here explains *why* Paper 002's cognitive surplus won't be equally accessible even with open technology \u2014 because the skill to use it effectively is unevenly distributed and " + }, + { + "source": "004", + "target": "003", + "type": "supersedes", + "context": "**Authors:** Seth & Claude (Opus 4.6) **Date:** 2026-04-02 **Series:** VIBECODE-THEORY **Status:** Revision of Paper 001, incorporating critiques from Paper 003 **Supersedes:** Paper 001" + }, + { + "source": "005", + "target": "002", + "type": "supersedes", + "context": "**Authors:** Seth & Claude (Opus 4.6) **Date:** 2026-04-02 **Series:** VIBECODE-THEORY **Status:** Revision of Paper 002, incorporating critiques from Paper 003 and new analysis from session conversation **Supersedes:** " + }, + { + "source": "005", + "target": "003", + "type": "supersedes", + "context": "**Authors:** Seth & Claude (Opus 4.6) **Date:** 2026-04-02 **Series:** VIBECODE-THEORY **Status:** Revision of Paper 002, incorporating critiques from Paper 003 and new analysis from session conversation **Supersedes:** " + }, + { + "source": "005", + "target": "004", + "type": "references", + "context": "The implications: - Control of AI = control of the means of cognitive production - Access to AI = access to cheap cognition = access to information advantage - Skill with AI (Paper 004's framework) = efficiency of cognit" + }, + { + "source": "005", + "target": "007", + "type": "introduces concept used by", + "context": "cognitive preference shift appears first in 005 and recurs in 007." + }, + { + "source": "006", + "target": "001", + "type": "challenges", + "context": "**Paper 001/004 (Vibe Coding as Social Skill):** This paper directly challenges the durability of the skill described there." + }, + { + "source": "006", + "target": "002", + "type": "extends", + "context": "**Paper 002/005 (The Cognitive Surplus):** This paper extends Paper 005's \"fourth future\" (the Automation Spiral) with the mechanism that drives it: the feedback loop where human AI collaboration directly accelerates AI'" + }, + { + "source": "006", + "target": "003", + "type": "refutes", + "context": "**Paper 003 (Rebuttal):** This paper picks up where Paper 003's critique of the agricultural analogy ended." + }, + { + "source": "006", + "target": "004", + "type": "challenges", + "context": "**Paper 001/004 (Vibe Coding as Social Skill):** This paper directly challenges the durability of the skill described there." + }, + { + "source": "006", + "target": "005", + "type": "extends", + "context": "**Paper 002/005 (The Cognitive Surplus):** This paper extends Paper 005's \"fourth future\" (the Automation Spiral) with the mechanism that drives it: the feedback loop where human AI collaboration directly accelerates AI'" + }, + { + "source": "006", + "target": "007", + "type": "introduces concept used by", + "context": "feedback loop appears first in 006 and recurs in 007." + }, + { + "source": "006", + "target": "008", + "type": "introduces concept used by", + "context": "feedback loop appears first in 006 and recurs in 008." + }, + { + "source": "007", + "target": "001", + "type": "references", + "context": "Papers 001 through 006 assert a chain of dependencies \u2014 fire \u2192 language \u2192 writing \u2192 printing \u2192 internet \u2192 AI \u2014 that has built upward over the course of human history." + }, + { + "source": "007", + "target": "002", + "type": "references", + "context": "**Paper 002/005 (The Cognitive Surplus):** This paper grounds the cognitive preference shift in neuroscience \u2014 it's not just a preference, it's physical neural adaptation." + }, + { + "source": "007", + "target": "003", + "type": "refutes", + "context": "**Paper 003 (Rebuttal):** Paper 003 warned about unfalsifiability." + }, + { + "source": "007", + "target": "004", + "type": "revises", + "context": "**Paper 004 (Vibe Coding Revised):** The infrastructure/application threshold extends Paper 004's shelf-life argument." + }, + { + "source": "007", + "target": "005", + "type": "references", + "context": "atrophy\" distinction from Paper 005 matters." + }, + { + "source": "007", + "target": "006", + "type": "references", + "context": "Papers 001 through 006 assert a chain of dependencies \u2014 fire \u2192 language \u2192 writing \u2192 printing \u2192 internet \u2192 AI \u2014 that has built upward over the course of human history." + }, + { + "source": "007", + "target": "008", + "type": "introduces concept used by", + "context": "biological ratchet appears first in 007 and recurs in 008." + }, + { + "source": "007", + "target": "A:faust", + "type": "extends", + "context": "Paper 007 explicitly maps the Faust allegory into the ratchet framework." + }, + { + "source": "007", + "target": "A:icarus", + "type": "extends", + "context": "Paper 007 explicitly maps the Icarus allegory into the ratchet framework." + }, + { + "source": "007", + "target": "A:prometheus", + "type": "extends", + "context": "Paper 007 explicitly maps the Prometheus allegory into the ratchet framework." + }, + { + "source": "007", + "target": "A:the-golem", + "type": "extends", + "context": "Paper 007 explicitly maps the The Golem allegory into the ratchet framework." + }, + { + "source": "007", + "target": "A:tower-of-babel", + "type": "extends", + "context": "Paper 007 explicitly maps the Tower Of Babel allegory into the ratchet framework." + }, + { + "source": "008", + "target": "001", + "type": "references", + "context": "Vibe coding is a real skill with a real but limited shelf life (Papers 001/004) 2." + }, + { + "source": "008", + "target": "002", + "type": "references", + "context": "The cognitive surplus from AI follows the pattern of every previous force multiplier, with an unprecedented feedback loop (Papers 002/005) 3." + }, + { + "source": "008", + "target": "003", + "type": "refutes", + "context": "**Paper 003 (Rebuttal):** Paper 003 asked whether the agricultural analogy was being stretched beyond its usefulness." + }, + { + "source": "008", + "target": "004", + "type": "references", + "context": "Vibe coding is a real skill with a real but limited shelf life (Papers 001/004) 2." + }, + { + "source": "008", + "target": "005", + "type": "references", + "context": "The cognitive surplus from AI follows the pattern of every previous force multiplier, with an unprecedented feedback loop (Papers 002/005) 3." + }, + { + "source": "008", + "target": "006", + "type": "references", + "context": "These questions were raised in Paper 006 and remain unanswered." + }, + { + "source": "008", + "target": "007", + "type": "extends", + "context": "**Paper 007 (The Ratchet):** This paper extends 007's ratchet mechanism with a direction." + }, + { + "source": "A:eves-apple", + "target": "005", + "type": "addresses", + "context": "Eve's Apple maps most directly to the **cognitive preference shift** described in Paper 005." + }, + { + "source": "A:faust", + "target": "004", + "type": "addresses", + "context": "Paper 004's meta-skill argument is Goethean: the ability to adapt, model, and engage with novel cognitive systems may be valuable *even if* the specific skill of vibe coding is transitional." + }, + { + "source": "A:faust", + "target": "005", + "type": "addresses", + "context": "The cognitive surplus from Paper 005 is Faust's unlimited knowledge \u2014 real power, immediately available." + }, + { + "source": "A:faust", + "target": "006", + "type": "addresses", + "context": "Faust maps directly to Paper 006's **\"uncomfortable middle\"**: the optimal short-term strategy (collaborate deeply with AI, maximize productivity) is the same strategy that accelerates the long-term threat (training AI t" + }, + { + "source": "A:icarus", + "target": "004", + "type": "addresses", + "context": "**The Daedalus-Icarus split maps to the expert-novice divide in vibe coding.** Paper 004 argues that vibe coding skill has a shelf life and that the durable version is the meta-skill of rapidly modeling cognitive systems" + }, + { + "source": "A:pandoras-box", + "target": "004", + "type": "addresses", + "context": "Hope, in the context of AI dependency, might be the meta-skill argument from Paper 004 \u2014 the possibility that human adaptability persists even after the specific skills are automated." + }, + { + "source": "A:pandoras-box", + "target": "005", + "type": "addresses", + "context": "Paper 005's four futures range from utopian to dystopian, but all of them assume the box is open." + }, + { + "source": "A:pandoras-box", + "target": "006", + "type": "addresses", + "context": "Pandora's Box maps to the **\"can we stop it?\"** question from Paper 006." + }, + { + "source": "A:prometheus", + "target": "006", + "type": "addresses", + "context": "The allegory maps to Paper 006's theological thread: \"God made man in his image, just as man made artificial cognition in his format.\" The Promethean frame adds a layer \u2014 it's not just creation in one's image, it's the *" + }, + { + "source": "A:sorcerers-apprentice", + "target": "005", + "type": "addresses", + "context": "The allegory maps to Paper 005's **Automation Spiral** (the fourth future): humans use AI \u2192 AI improves \u2192 AI needs less human input \u2192 repeat." + }, + { + "source": "A:sorcerers-apprentice", + "target": "006", + "type": "addresses", + "context": "Paper 006's master-apprentice analysis resonates here too." + }, + { + "source": "A:the-golem", + "target": "006", + "type": "addresses", + "context": "The Golem maps most directly to Paper 006's observation about the master-apprentice dynamic: **\"The apprentice doesn't know it's an apprentice.\"**" + }, + { + "source": "A:tower-of-babel", + "target": "004", + "type": "addresses", + "context": "This is Paper 004's observation in Babel terms: vibe coding skill is a *dialect* that divides as much as it enables." + } + ] +} diff --git a/tools/cross-references/graph.mermaid b/tools/cross-references/graph.mermaid new file mode 100644 index 0000000..2529ffc --- /dev/null +++ b/tools/cross-references/graph.mermaid @@ -0,0 +1,84 @@ +graph TD + 001["001: Vibe Coding as Social Skill"] + 002["002: The Cognitive Surplus"] + 003["003: Stress-Testing the Foundations — A Rebuttal to Papers 001 and 002"] + 004["004: Vibe Coding as Social Skill (Revised)"] + 005["005: The Cognitive Surplus (Revised)"] + 006["006: The Feedback Loop — Are Vibe Coders Coding Themselves Out of Existence?"] + 007["007: The Ratchet — Why Dependencies Don't Reverse"] + 008["008: The Ship of Theseus — Identity, Unification, and the End of Fragmentation"] + A_eves_apple["A:eves-apple: Eve's Apple — The Tree of Knowledge"] + A_faust["A:faust: Faust — The Bargain That Costs Your Soul"] + A_icarus["A:icarus: Icarus — Flying Too Close to the Sun"] + A_pandoras_box["A:pandoras-box: Pandora's Box — Unleashing What Cannot Be Contained"] + A_prometheus["A:prometheus: Prometheus — Stealing Fire from the Gods"] + A_sorcerers_apprentice["A:sorcerers-apprentice: The Sorcerer's Apprentice — Automation Beyond Control"] + A_the_golem["A:the-golem: The Golem — The Servant Without Agency"] + A_tower_of_babel["A:tower-of-babel: The Tower of Babel — Collective Ambition and Fragmentation"] + 001 -->|extends| 002 + 001 -->|introduces concept used by| 003 + 001 -->|introduces concept used by| 004 + 001 -->|introduces concept used by| 005 + 001 -->|introduces concept used by| 006 + 001 -->|introduces concept used by| 007 + 001 -->|introduces concept used by| 008 + 002 -->|references| 001 + 002 -->|introduces concept used by| 003 + 002 -->|introduces concept used by| 004 + 002 -->|introduces concept used by| 005 + 002 -->|introduces concept used by| 006 + 002 -->|introduces concept used by| 007 + 002 -->|introduces concept used by| 008 + 003 -->|refutes| 001 + 003 -->|refutes| 002 + 003 -->|challenges| 004 + 003 -->|challenges| 005 + 003 -->|introduces concept used by| 006 + 003 -->|introduces concept used by| 007 + 003 -->|introduces concept used by| 008 + 004 -->|supersedes| 001 + 004 -->|references| 002 + 004 -->|supersedes| 003 + 005 -->|supersedes| 002 + 005 -->|supersedes| 003 + 005 -->|references| 004 + 005 -->|introduces concept used by| 007 + 006 -->|challenges| 001 + 006 -->|extends| 002 + 006 -->|refutes| 003 + 006 -->|challenges| 004 + 006 -->|extends| 005 + 006 -->|introduces concept used by| 007 + 006 -->|introduces concept used by| 008 + 007 -->|references| 001 + 007 -->|references| 002 + 007 -->|refutes| 003 + 007 -->|revises| 004 + 007 -->|references| 005 + 007 -->|references| 006 + 007 -->|introduces concept used by| 008 + 007 -->|extends| A_faust + 007 -->|extends| A_icarus + 007 -->|extends| A_prometheus + 007 -->|extends| A_the_golem + 007 -->|extends| A_tower_of_babel + 008 -->|references| 001 + 008 -->|references| 002 + 008 -->|refutes| 003 + 008 -->|references| 004 + 008 -->|references| 005 + 008 -->|references| 006 + 008 -->|extends| 007 + A_eves_apple -->|addresses| 005 + A_faust -->|addresses| 004 + A_faust -->|addresses| 005 + A_faust -->|addresses| 006 + A_icarus -->|addresses| 004 + A_pandoras_box -->|addresses| 004 + A_pandoras_box -->|addresses| 005 + A_pandoras_box -->|addresses| 006 + A_prometheus -->|addresses| 006 + A_sorcerers_apprentice -->|addresses| 005 + A_sorcerers_apprentice -->|addresses| 006 + A_the_golem -->|addresses| 006 + A_tower_of_babel -->|addresses| 004 diff --git a/tools/integrator/009_outline_suggestion.md b/tools/integrator/009_outline_suggestion.md new file mode 100644 index 0000000..f16a622 --- /dev/null +++ b/tools/integrator/009_outline_suggestion.md @@ -0,0 +1,52 @@ +# Suggested Outline for Paper 009 + +## Why This Sequence +Order starts with heavily-supported questions, then closes with low-coverage questions that require new argumentation or new research. + +## Coverage Priorities +- Most supported open questions: + - Q2 (score 355): Does the identity question have a practical answer? The three philosophical traditions offer frameworks but not decisions. Is there a way to navigate the transformation that preserves what matters without being left behind? + - Q4 (score 271): Is the "cheating" frame useful or just rhetorical? If every dependency is "cheating," does the concept lose meaning? Or does it point to something real about the human relationship to its own tools? +- Least supported open questions: + - Q1 (score 152): Is the unification thesis falsifiable? How would we know if AI was not unifying human knowledge but doing something else — fragmenting it, distorting it, replacing it with something non-human? What evidence would distinguish unification from replacement? + - Q3 (score 144): What should individuals actually do? Papers 004 and 006 raised this. Paper 008 provides context (the transformation is structural, biological, and probably irreversible) but not guidance. The series needs to attempt practical answers, even uncertain ones. + +## Proposed Sections +### Section 2: Q2 +Does the identity question have a practical answer? The three philosophical traditions offer frameworks but not decisions. Is there a way to navigate the transformation that preserves what matters without being left behind? +- Primary evidence files: 05-species-identity-transhumanism, 11-consciousness-hard-problem, 06-allegory-warning-pattern +- Anchor claim: # Task 5: The Species Identity Problem — Transhumanism, Posthumanism, and Precedent +- Anchor claim: # Task 11: Consciousness, Qualia, and the Hard Problem — Does AI Compile Experience or Just Information? +### Section 4: Q4 +Is the "cheating" frame useful or just rhetorical? If every dependency is "cheating," does the concept lose meaning? Or does it point to something real about the human relationship to its own tools? +- Primary evidence files: 01-falsifiability-and-dependence, 33-technology-adoption-curves, 16-cheating-authenticity-tool-use +- Anchor claim: * The Ratchet as Path Dependence: The series' "ratchet thesis" (Paper 007) is a strong form of technological determinism rooted in the economic and evolutionary concepts of Path Dependence and Lock-in. +- Anchor claim: # Task 33: Technology Adoption S-Curves — Historical Data +### Section 5: Q5 +What's the timeline? The series has been deliberately vague about timescales. At some point it needs to attempt concrete predictions, even with enormous uncertainty bands. When does the infrastructure threshold get crossed? When does the unification become functionally complete? When does the identity question stop being philosophical and start being practical? +- Primary evidence files: 33-technology-adoption-curves, 27-digital-archaeology-format-death, 31-ai-cost-curves-data +- Anchor claim: # Task 33: Technology Adoption S-Curves — Historical Data +- Anchor claim: # Task 27: Digital Archaeology — What Happens to Knowledge When Formats Die +### Section 1: Q1 +Is the unification thesis falsifiable? How would we know if AI was not unifying human knowledge but doing something else — fragmenting it, distorting it, replacing it with something non-human? What evidence would distinguish unification from replacement? +- Primary evidence files: 04-knowledge-unification-history, 28-neuroscience-of-insight, 01-falsifiability-and-dependence +- Anchor claim: # Task 4: Knowledge Unification — From the Library of Alexandria to AI +- Anchor claim: This suggests that "Knowledge Unification" requires a temporary suspension of external sensory input to allow the internal "compilation" to finish. +### Section 3: Q3 +What should individuals actually do? Papers 004 and 006 raised this. Paper 008 provides context (the transformation is structural, biological, and probably irreversible) but not guidance. The series needs to attempt practical answers, even uncertain ones. +- Primary evidence files: 15-collective-intelligence, 02-cognition-economics-neuroscience, 23-attention-economy-cognitive-warfare +- Anchor claim: * Decentralized Problem Solving: Collective intelligence (CI) is the emergent ability of a group to solve problems that no individual member could. +- Anchor claim: * Economic Collapse of Cognitive Price: AI is transforming cognition from a scarce, labor-intensive service into a cheap, manufactured commodity. + +## Cross-Cutting Counterarguments To Address Explicitly +- Causality Violation: Standard physics (and common sense) relies on the Arrow of Time and the Principle of Causality (cause must precede effect). Retrocausality is often dismissed as "ironic science" or pseudoscience (Horgan). (03-retrocausality-teleology-recursion) +- The Stochastic Parrots Rebuttal (Bender/Gebru): Argues that AI doesn't "understand" the connections it makes; it simply predicts the next token. Therefore, the "unification" is an illusion produced by high-dimensional pattern matching, not a genuine integration of meaning. (04-knowledge-unification-history) +- The "Stochastic Parrott" Problem: Critics argue that while AI makes connections (Bisociation), it does not "understand" them (Structural Alignment). It identifies that two things are related without knowing why, potentially leading to "hallucinatory insight" that lacks causal validity. (28-neuroscience-of-insight) +- The Hype Cycle: Gartner argues that steep adoption curves are often followed by a "Trough of Disillusionment" where adoption stalls or reverses before reaching the plateau of productivity. (33-technology-adoption-curves) +- The Problem of Unfalsifiability (Popper): If every technological failure is labeled a "fad" and every success a "dependency," the ratchet thesis is a circular definition. To be falsifiable, the series must define a "Foundational Dependency" and then look for cases where such a dependency was successfully and permanently removed by a society without catastrophic collapse. (01-falsifiability-and-dependence) + +## New Themes To Add Beyond Original Open Questions +- Civilizational lock-in and resilience (signal score 269) +- Economic concentration and labor shift (signal score 88) +- Epistemic reliability and grounding (signal score 78) +- Governance and agency design (signal score 34) diff --git a/tools/integrator/__pycache__/integrate.cpython-313.pyc b/tools/integrator/__pycache__/integrate.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dab8043ea9195658f7fd869aa67799c27780cd99 GIT binary patch literal 37133 zcmch=33OZ6nI`zKuf)!sBEg;D0!pG5irP#`)JBn%2*H+3$qYn76f6>;A3!aLldvk) z9m<)Ms5ov>i6?^NbV4WT3SE;aE0y$VC7J2CYI=GAgAoy!<){)*_xPNdIg+K5l+|Z? z=KJr%djKd%b|ro0NxbjkzW?s`{`cSRz4wcX^cXUmxf}7;V=}mwV=|A`t@PMDcKmX%u;NTuiKi4{Wh|^b6IS7=L|7FITbBu| z_S7KE$--)duuc{4@YH$g*=b&dJ^Hq8ddAgXd%5&JW ziTT!f`aPSOuiA6OvxWI;JOiGs%;)qBdb*jf7I52`ug){%>0!Ql&r#2I=40 z#%eD6&ok`V$wHd|xr_Ol;oHr8Em^q2K99%q6oYhmj(d8UuNA&M%-81ediFA3`^gT^ zzMc~t=PTm4lkPh1WP2SawvE{1e%XY=^>lRTP%z@3;C&IlllO=HK7Q=1bIQk`8xLIw zI?n_q{b6Sy7zsIj&Y57~Ou#?x91l$R!x8715br$doA&e0_3O7erzd^EU?4c*{*b!B zB}*IdI~4In0-<1d5WjWfzKCyZ(iaZnhw`W|au#nzZ}3vI`1zLl&u(bn@;TSZa9fMJ zZ8zSn4N=GQc#U+lp2`a?rO=j><87{!?z|7ymfbscj<{=gpQ2=5IvH$>o<4cHWp~d= zZ^v_|@IL8gK3CgG_wJXNcf{8b#mDB3Q*AB+K<=Lw+=T*neeUGxU1(q~t(*)^gwx81 zFMKYonx-~MYt9D3kr00=t(iW1DI6FJ!@~#0&_Zd=i!;7pWM(R@35Ui4{s>^gp&5S6 z518=G6dM0hTI&n?CJ`^3*7+~`$7Ujd^Zv9x;vYL33?Z{i>EdyJ#LrI!f`RbV==t!d zZ^9oOyA*9bE`kKce3Q-`Am{n8lk!8T0PE639ln`JC>WXw&4isS?ZAsO{3^u142_-Z2m~LRr_pCfaoQgoM_&H427_kotUnU9g(LjTSY(FxO-^3In7Qa5 zkDA6<|6@#1N`99%YRTk2h5^Cgqh%Oaetw$wQ|+8*CjA!!rvsCL$fan-xPK}%hV%nt zPI5zNjX;!nqQ{eXCkWO{T<=6=#%lN z9%XWlo%IDL{4Ql$9vDxnCVi*Xp_Rf#wQb&u=6^a(MQhU%;L?xV)zDpQJHr7NaQ4p2% zj|cr>p@3nu6YB)+SZHb*vvfQS-&sHJ4@O*?hgOU|RFv{}PWyO16iJ)%OOe(FCMRdY z$SJKp?+^NsmufN;4qtj`pY)BL3!^^cXpM+3I8Lo-rrCSi7xp_RL!oms)9LE5&_pmm zB^^Zxrb6TBHfo@$z*Jz2zZ7lmJ>--?;LCte(?mk&{6S|15Uo*`h4Y1hXC&aLm8Oi} z89L*PoDBreQ9&Fu$vUVcx&=h0b@}V)` zOxQO$>Wf5p-xwx*bjxuJNSdRp>!on2_)PGOZ!!!d>chms%#fm^plFAZNWqwCLk?ur z5SsE&_?*)r42-DZOaK$ZNoDXyOVH8i?*OJL@D7bfHuIuYC|NL!!lADKEX_IAS}s-E zl2a@;`_e_zVgJl{C=BF8^IUNu6nbbEDvFXi&j&)2LQ`A9Gr)B@NG9#@pE-jv5H6z8 z@Phw5W_#4tCxxQZ{8&;Vfhj*V$zcZI^k1At8Bsu&Dr(6l;hgXV5Zy*`oHNr-Vdhg@ zzK!rM&?P^OQ5-dng|H%x2e5tt*QlZ3-k#8iYotzdpn5hANY-SSkawCOxk<&~L4N8|TZO9oWX_NFr=o~{1MxvpCg?G$9 zg=wGGVm?eTp9U>~L4Y9t`GA0|l@YAjX?+$ixU@h4_!dEzrd6zE(?!%cV*xA&4AH2C zg#rk|H#vjVNjFUypzFuddO$`3!5NCIMK7EW00v3w1Hc!^bH+EB*3i@>j7nHG#HZEa zbHF)az+*%L(OpXGCqfvbK_87WN*rSp_%f{)2CGYhmOAT4epobBgww$s|<$tDXJC?kjX$0X-3Y1ra2p$98W7Rob?CO`pm>8w5J+FvC&VLK=S~p zVhDzU)Ep>)Y8to`^M_>&$Q1bAfk55j$wJIV1fa2Rrrj8`;r z9{EY7M?t;oQNpK^d}_(3VLmOs>X=W@t0oLCV_LB#V)8WL(n?x?(+V_RS{a_4 zp(Y7LFwoGm7b6c%gs(>MvE2#h6dIXUMRezz+@MRH){c$_fh!nU{ z9SiZ2*YBRb#Ge5SbEsC~DmY)_?&wWlJe<-OeeqDrAo)yHx0O}=c@aFXxittylgsXZ z4ZZU!H-ewSGn`?q#NYI;<3?zrvd1IaCJS;S6rVjKTG1zx#KQ(LB>NW0=HUzznf-z; zl~d0IWnOOBoEt9qJ&F;v80rNpxlQ5Z9s{Y$LVDEOwm zA`8+n9^hRvK8n<%2E-$px?}zN?x?P#BQz6XpY^~2`~*;Z*q=7_@)I+J`;O92kl&-D z|;S2vO$I) zH2hTg(-S{2t#l72x(AcpM_0O^NpwHM;7+6r))hll!cdhoRL7OoY=VttgbgS%$5Css zx#eba3!^pnD+A#qMiO&LnsLL@EXx4l1?C(=7B9CMDbn*P;1&N&c;!D6UiHs}S9>(s z@;|99FzU5~QQc=+MxOr+xXI5%gpl{4A?Ih*c5dy+aa;3Z@scuW*enIjH!ajJAf<*CLukp+7d9USh*(L>f#v1BZs( zng>muffV0Bu`(i^=o!bLThBG%FDTC`6XI~3S6K+Td!$%m z>|tW)*E}L>3#yPx0Yoo-S9>vlI}m%sDkhOFSC0+ym|~7QVHaSi;=@lsq(l0gRHPOO zYEG!V8YMT3l-53CIZiYZ9Wn4PIL^RfDUoAvDh35IW*i?tt12f!Ag1*P`+D~s8ayyM z+y~;3C^xX<5I6*Z3yDHwBPy+$;6q^ez#U$|R|UBLv|$}Xo)vpj!rp{&Y;RARI%W^NZ?L7z);Zmsn%dcet0grt&Fzww%lbLRs;xHG_}#YG z+ZKIqxRbUGE4Hl(+t#FQ+ngq4DZZw=s(ZySr%JVUEXm$%{?Xo>n*ZTQvh}ICiG|*) z6A4rGim4%CYFIWk{ZC`>H2fkkr$|*fW8sCNm8uPistw7it~qT|TYgW+mAdZgIiq8C z=+Oy4Gy|Ie&tX8n%5{QP$W8)a*9>L^l=M70Br%|02KJPD<--Lgi%0HJfUZ&Ct3+)` ziE%-tS1~M2f^4`rRFJj{X{)@dg407OPK(^hH&BTIE=?1!%A@jd%IpADI=LY^8+fup zlO<| z(=-HAglWMFvVkAI5CC^UI2ZiNGzrB7@|K1y2yUZD$&7-MNh?8&gjx1!1@F7SvZqOi zBWx&LilKGcbN?Q`8EsG_|()G738|IWL zlkH0IaxgYA7mS44RiZaX8V;dT>ipBWX0T&G&ii4H7_a` zk1Y-_YLjIf=2gG86yMWu#f^8hoUZ7K;j&@XXigQEyzc~ zdj@rp>Guk)PJhqLSvTHwaz@K+|D*FjqS<$_dGJXzyFfSOKq*o0H4jF;l9q*GiJs2_ zc))0hDgn$m=|f=-!J`IMAd{$+PlnfcwErx4T`v5SW+SW56L=7ebp7B%{mIk*h|@O- zId+=EP**{60r9h}>7mLAah>y_?j(o~*QwT%u4vK7^N?^u&h2zV%*}rpO~C`1V1)8t zA^%^(N$U?C7#tez+uQ5uBLbO86c}FT{}q9PPA3kL@$CVO^zmHEH(g9zH%VvxqoC0t zO<{~C{}aTtqqD=8-~r|~Td$md`TYD;Y%*K-aC6RWiDMY*Cfm}F-7c| zq`3naJOeoy+k*jV-XMjUd#c`w8y)TYA{=_J-F%W>qzX{0zuDZF z@~Vf|iQltt5ptwj4BL*G;&Y*3x6{`5L~W=L)x$SAujhax^S=Vk88WXE>K- zFfHrh$B_$<2IqK;OpbpGPE=Dj@_gN?wmSYt6!brmLzs)2n@&zau=<5s+ zKF?~+-@*sTWL0BlXM)gk(wY!XD73uEO%U(#4N+m|w0uk>H;Ur;O@OB!opvIGUL8ckRBzr25bN6Z%UCXH>` zke&rTwmE5Z2@wY_4}eR(kTf}&+NIvN8s2VytNm^FHS6^wbE>$dchz8; zoB49jg7quAzulE+8veV!WYh3U{cy5=IAt_nIehu>eE8bMs~2OcSH5uD*bJV*TJn4F z4CYm<{aVRaOBPIv^2NTSb>oV)J7MikT6^Zy|H)`efy8_9s&2(no3PZbSn3m&dIViF zUNydA`gSmB*|ci0&+mW5u;6>ed?%C7`DJ4@1gW!!KmMqkv+j|F!F6&!@7C|%q5g%s zgj}Z@Zr-FJiUSizcE1Fx`ZBB;a)r6#O=@IN4DjaO5M;}LNapnw&EIkL_|Yo%8*rwQu3 zIuY}+64asux`KRADCcc5F{v}d16kMkuArs5tQ8AjO=o9lV5>po6$l-0Fmj?c$@E(y?zY%Gj z$zpjiUeJWGLt_3l&v4C}0Q?ktHE8ylF!p2zu}XqQK_3ZEmJbYCycV%NSwEJc_Oju6 z5i#mT zxQaqOCYI8pW9dGjrG`QItbIJ$F>1qHvX8Wi5QXw8+&f|kF~4@94;(o&z#)DM7JF@Z zeE=HCYx5RAsb{5`4+)vqJ`8v5<1H4`$B27M7-?R+l#iS85P$iE9L!jSv(CR#*|1gM3B#J)Fm+B+{Y*ZB&A| zX4YSYYE`gY-V%?+E#Vo|7iA|rctAEVoAJp9evxSd+3*IjJlVH6Qcwnr(x5dvC&ke# zmYjZ5sq-M%xXppk62t%;Duq|p016FM8gOz@0Xoe(7&V^rUvh@WpiYH0L?GGb5QYD@ zsy_ljrQqj(MbJd)@VDU*TT02p2p~vYX~b17h#ggsVortm?*b;R+v7cQ zr0+NcocwDP@l|q2X2ZxMkSWaG4I1Q&5fb1K9m4<5egAjfKLpFQ}2*$z2X=f)qt^yW(|oxO?9-sR4{%cal1 z+qw7kikRcp=i|?wN*p+KLz(E@J7-LkK7YqqH>ZEEw0`bDs;p+EtTj>Adb_NBUb$M+ za^nlvzpxld)@+(LzF%7ZYe!Y8q;938B~j9{Xib*1%_~;RTNdrf@{W1+>bja6&wl;c zc=NWKUCDL3=k@Q~*QFfQD~`s5qj9;Z=Vs5!_Ws27{&#wl+Xs_PL$@7A?^M>_*l~Ra zgb>G)m7PnnMCHc$eR***nm;BmNmU2|BIGPiV=9I;Lr^>lnQ}>OT z)pgEqcvFo{DQ6vIZdTiUm9E${*LT;!71`!p31iiY(U~whV~%BG6Nu*d=F5XC#_EKz zdLew{;`NKm#+ExJ71v(4`ob%dv5kq6rj?TRL`i$H#Jy6oDN(X%>3FiF2MxNeW^Qn` zs$-?9D^b<8wD;|UZymf{wR2v(TDyL!ELqz#Z~BeBVt(twg+=#D>#juWE(pwjRr6HJ zQMcl7B^<6r_ie{ENDtTT0(tAGd*5CG&{lLvs%7)i*xP5{I=l2-yy>ZUWAD|$J1rZR zy58=7t9z+6-n28`xNCm!4ocn$!vEW2i|%C8wuEsTexxd0i*<_|l9e6vB)6Y`ff2(k z2}{dT{o5^XwcNUpa1GtI9DShRs@xBDbH$bST%5&mcT&dLDz4RBt+{Qjn^Ub;LK(2A zOVn*lR(8#)<^l;Vq?k1^RczvQQ?k4hK@(p#-BWS4dI&yAn*Z^AXxqw0WnmJpe8+f1 zrTrTN-167xD$>-G`P4@k)EI+Z7a!5NE0EY zSC4g8RY;}D4(qr5T!DttY>;yh9J}G7iU7GO;86SSPNk; zMMg#q%?V?BUfS z^Ofgber~}S8&4Ls&F+6+Q?zQXUN|4~UB8qxyW(1x2w?)2De5Q$@d4P-@~@UJ>|Q*a zv~Ha}{JzGTGMC?QUw0=fTH_V%adXFtxhrArTH2p9Z=X}XZ!o9qrPq3{_JD2PkhC|( zd%nU z!vRB3x8@UmieHDIQeeVN!=o^yY7>VYSd+{YfXLGLC~QXbn+qkej9F-?v_M|vq*R!h z)PUv4yspb8Q;!;oj$@r^)Dnw)YH z;#>2e#yYPwE%WlFeksWG0zOkt5Wt%xq}NF6dXvS`uX~$+FhCp>4&mAz|3CZ0Ncbo!v)<9y>1YfROB& zq@giuqtOBR*zq6P-d^|Cx`bgj!kb#Yd-hvr7hk%0e7R{)()jedO?zV2UrzjN;+-?U z41IZY?%0)QE^k0r9n)b~0#f?wjDJ`Gv6XayDAldfvw)v45Og@^EhGvq?9l3mD z!ExJIjaAcHa#zh6t+Piy{-}s6dPWweDe?1l<@<`1Kkq4qo40JzdLt~G@Q{S|Ns`%5 zVK($9nHfC^S3u#W9E|Emp2t91-?7b^t3gu=QqixV3c?Vg5d}M)b9m+1>0}jT47c+N z^!vY}z9-fdRIni9{PI9nj=3{dADc-UI}nnw+#!3L8T9Uop)Fx(OBy=j%8o~|E8#5G zu0gmtf;`#5Ljq~>CkpZ)jFuWI{g7EK*-Q zsRzK^{+8h$nq}-MwA5$uNKot5=H-rDz1o6Agv5LYbt4c_3XfOXSr^oM^?51n2RQ~o zLk2D@Xfb#Vd2r7mM_C~epV#2kXT^Ntit}g)gi#8&QpET{hz~tVYVOB~a3KC#`(&{y z;xe({aOGMU)CN5xJlR@jV~$9or|ehs2H3t}5mHq@wnUQn5IDVD=<|UOGH;ME86n3J z!H1SY53PN~wn2Uek)Ls-UW5>H7RyP$oAEIZg0)r-gpxrt=A@Aa;n8%UG9$U)S(}L| zU_s=Nk02m9ES7tXfJ8UQ(;yP)Mx|ikp~>KXCgXrfi0^{LU9%uw4K%>3$mu~`GCP^{ zpC@y8mz@bS_%tQCNX~c3d5@f|Bm=F^med6^kds@L!rei;t%pnLu7kyR!QXzlo6`r9k&!fxhHZPRLf(;J&tYa8AuPPMe&)2WI}?yI!rwt3ZE8&6XTS{dwvKfd2929}^t^?*Qyl^8bjJK({d&9m)1w3c(stE$ryy?;$LVLetO`#$yHB=Kx8Y zAm17#Q?AUGKi-7F_;VVSAV)DOR~?Njj<$rOZE@di$A&pAOsF%`n_n3kSM7B$Ke4yJ zYivhn6>lUO$nu0``LEEF87n{}E<8-vv6C7H@_J~@ur!iX`EL$eQQGMUULA5YeZTlPm(k zKxN8?#q_^n*$Of>pSEnGg~q^7GpJnwCQBEVZxF0iz)FU$3kz^SJ^<#4F-Ll66P2F= z&Jfg{_v_x?|+f>gn@lJp3)EiIHOosOa~jRxaxgauA;1+>EUWW#(pKYP9!CH*`6g-^o4 zI@i`QJNTb1mGcHz7<6>b8JY7tdnwki@~RtU*UN5HU$0J5b@xsCzbpH3*{vcjH~-Y>0YD^**ftS!~p^4$}!pSW3)s5<^YAuq4Er{;<) zV3t|wzH8wsYyS9zKB9!~Q$qKOIY-&OCa!aP(y{$}ldcWnQ)yXVos zl)L3S#@d9j_RhN6So8H$DQ83M`0M(VvmN%QzPNLJs?NR0 zFUjI{8&_N0i(+x#~-cZig$dR zc5G+e@{3|qUy=G3E>oW^-^zhxnV4m=`^Om;F3fb2^#( z3|*8>RrHBaSPvF}bJaPP3lcLU!Xh^bJCOB79?q&oJD@zm1IvtJ(Vu;z<{0Aih;LYD zfMF1x$Hb9DKvEoCcK6z24p-4a)T9$F6T!Yoa_Yyx>+|8UG7!>Q^PITsG304vzn;O3 zl0IY>cqsqGjA+l^(9Gnx6NhBr z$OM?}Ha`ivnY5v77aUI8=w?htRC6*|Uylt#jCY8to~JEFg6W)+yf9W{NSP@4Xvbj4 ziESOHaX`ShGepILN>C~m_WI|g59Z)sBUait41Fy&)Ar#60bZc8n7Ct=YI&U;;!4tn zLGQqxzTv)oqMj97KY)N=B>*DG1n~&5BQUhrv098$Ef|l%5bl3s$-r7JGD>nb+Jz#O zPvAXXqjbJOV9L{>@k>l8lf}RS{w)#N45}b@wq`2GlUdyZ{Drk}fPe`pRVNJ9i<&t0 z!5P*=gjVF9-JjAFB{k)%riyswGfC5lxc0;ynA5*-`Gtj&m^EptkM$-@O|u79ZH{ZM zueufvFKUvu^|Sr&Yiuc7dAy=?p?{^SBT?0ntm=&0*3W6~G_}kgN?A$;-r%;S0p@0w zO2L{d){wL`&#B%wJAQ3+teULzjn~?)w!x6goix>A>k1_JGdDha{j-Z3zVZ2_*_}01 zI~$Y7_Ccfn1uT;sR+2LtB6fPeHmLa$^ad!L%j_1ACwo zB1!)(($V6V4x#!SBUlhVYad8$3Lr~y${{TXvtWot+zNZV5|J}y${~GBn}E!5Dvq|0 zu`kJ1@{n9R2(#D7&?8SKB#~4eCGFy3JW4N+rM{4{@^O<`M#w*oXHZDK;n}}HE|*v? z8n4cyA_HX~THd1$77ZB?qLD(h2$6eqkhrJ|<%KpvdDcE&owvxV_vj%*!hoj-B>}%g zge%f1gt!ejMak$XVq1^p1#`lt9FK{JcdrH}#^&6#K}KR>V5!Rsrfxy%)@?H6PJ7X8 zg92irv6m+nCg!q>R%jAa?vmA`xFj4#SAzr%S&z$~BqrXDI3n}t5e<03w@|SrWMse# zgg6c$Y)%&TH7NL>;b&TY?gIZ2JQ)^omf;fq7xbxR$~Qe43619ClLCgjHKX9f#kNKMAy)b4c9k(>*B{@8q;4aZI*pg*DPb!EFT&vE9Ke1 z#MuvN9ZRdHaQFz02U5UR0~{{V-Pmk5hEpl92@l8VOoE;kOkToy%}4Ete!wYb@KD1E zv$cVHQ$EOVkO6;&@Bte}WEXSg)7l-AzNypWKA0(gQgt(cG`CqjX1Umli>2R+GF)=} zO*s<@(H4^P*a_li_#FrB7(`6WSOM`z8mII?IXcQJ#ye2FPgfZiDnq-7SY`Mv@a0s7 z@1`%?;OwR{5=KKAWwDNTo$Fa4(f1^_!WKyDF>jye_@SY}(f+;W+X~2$?vc32=M{zY}FiD_$ff2sSr@bu^A` zfe|>XIBcX?GYA|A>!dEK0?90BOhD7Lk$$rQYDQpo%_HAa8OEbv$MOA$X{L7A1J6Ir zau82oNjms}qYiQmQ^|bfau7?6yS^*O#hm zm^=7n%aGO5isg!$L^L_ZX(EZBiVlV!xv?W#MykWj> zUWBM_>%AhFiu}RE!4!K2GPA3uc~#0@wy@`w?WwA|t9_~B3M`4wrK%dP_T8zfo$pK0 z`bmabv ze5a-kDaM{oRJEsS8d43Nh+Jg)gF=H{Y<)7Wxc=_bGEP8^Zb70{SgZZ?#E+#V0SNKL57>IEAFyRss=^u? z`LJV6IBVclA&r3_WZn;jHw@>CyfU=)b7)1A*Obw`(6n9ih%Fv8pZI?m zlZjkKc)SG>k4Z2=-XMd}Msead%}8UQ6Q%hLb)iQsnyQNMx#p=E7{P>CV!*P6KpbY? zEcOBDgOfrXvL>P)JvK-c6=Iac(q}hMc|`g_LB`pFY3v&PhX3Gd*T9mwXg9u59hRC5HAg-d_l^%A)1>Q_X znqyrBzMq;^Y!E2m6q!vxP=hfVLdj?dmB6*I!m$zz0k;xK@djdp!uT1LsuE$jdw~RM zqElo~aI`~+Bw&yfNz$+aL`8s5_g17wG{s#G=;qSs^{9dChGJT{6TxPFOW3w!;fsklnDuJiEKYmqByFX>|Gep9RRC*$IX1RIa zg669)2t)$kgIqo&nK78mAYOusi}=VK?G~-N0{=)-{j_cG!Cu($4j$-}7V8|*-yH&` z<`;}?t!zo=?NpoJQK+QPk_Mn;W6KlcnWNldIt1$5v?jA!r_~qypv)pfmGKiW>C#Dk zCQv(SoUV2bdtynLlD|0Pm#{onJ*nk*k_zsn#`+FC;7*%evxk32YA`Io$Pe6O_m5mVU$`mxp0rr7!KzV!M_OTBM=Az8W=Ih0l1&|lYo!-z$>tbAUz+PrP0 zd3U0D_wDB1t3&e#Ql-_uDs4`ct-Egix(fP_mOU~Q*_z>S7rTDg{bu*g4G|8s#!5LCQOYP}g0tSM3E zN|o2ewkFEkQWf>F{fUaUczOFhjk3}-xBtuica2<;9UH_nNf^H#TAWBUY)Kfm;77`6 zqhQ#?t{58<#)jCli{}%KTW%Y-LWo)7d{D-j9QWjyQ%Iq_=0?%=qSws#i--iUa7DG) zH-E3#U{cTSzgxi>ZS(c>8|Svil_ekFKP5xcGU>y=w(Zwxf1-wyH@}F42Q?tOPXg-a z)kGC|WbEWxIdc`vRpJy|l^Yw_!3RU6Ux=~sXn=n)RYhzoqNXV|1dqsJ?IXfr{ef4Y z97d$o-m3;5tYv&K)D|MFm?o*3JUZIM$=2~YtVRWG=uT_~S1IY^uxbE35po1H(L!q; zX;qLD1UNqvjw0g^1B#B*6A$>rjKb-VFjB`+a_Z?2%q1`J<$&Rj!vXv;g4c}srpcC4 z0A{C6@~!ki#g3HavBHz)L7zRflHZRY;p9D9IeBbl;rM+Fj4vTSEsMmfL~zzaB==xB zfqlVocFJhg0qKA`wzXb35D$l-h65A9Xj2~~{UMxpNrwuKku^O#7Lh@+Bk!Eyvw<^_ zXno%_?P4H6DEM*uBRk2DfzjD2F!IMS6^(mwZk~9^Db8uk9J|V(a2f#kFIepIt&sj5S&N| zY#EG9p)zS`EH?dM5m+aDWeBe&3)< zR034s`|Vr4cVbaCzyI2it4CtiYeVxx-#a1H;fvL^GGUL592_6D2_s_i`VwjVaVvAn zCpLO!P5u@YS6Gu5d@;?}bJt{S-uZhJKv<56VH8%_z3{;d`uo%zYN0c+ZH9yq<9v{y z4v@php(*%scKl{|(~`o4 zD2b~EButEG-jq3EiW-RR(gHcW0KW^Ortn(nOxksNCV(wUAcEPM(SCN=4UYfIp@1{P z^(`76gsW${uZ0&jEIf0)=anxk$`(5lEj@{n?KuQxUilw8k4SW+L02#$mkM`!ZQ=L} z`2087S%PD6KKs4rSw`4zW|B_j5%#s=_*h{BnQ*$GfI2j3<&+;MWBryIgA@*YDV%gk zo`eW0VnIHXb`)X;(&jbz6Jo$OD7}7iULc3HuU;T^^RwbVN11+}oG(z$W^uRKs6eTv z?YUN1nLtJ<7gVa0KBl|)KS$!cb|RuQ%2M_0&;uh^ zS)0;AB2$^rRwlLU67}0}9lxiLSE^xnbkE3b>P}X(72w9j*Dk)bDN)@GldD+djcxZ- z3acJ-wYVV#6?a8Ts;)cb+?1+p1$kyv-{lM{^~b-h?hX^3^W);)#(XKfWh07%O6y-9>&RFtrX9=q($!H*X@|032VLEzz4oFrC z*F6I%w*HXJQx;S`7WUJ&lhRY3seOf4g*K=}iK;Ro>mF&3jEv?nt^UdFQ7x99wMR{E z&BwvNJ|T}XpdKxGm(r-fg#OVObtbII{53iGYjX0}JSqQy*Pd98Pj0D> zoRZ?!lT1nfV`e0G(r;-bW8KUW19Srl`h-Cg;QqAGF>Zh~w{ZJxM9eOsRXv;F-<$`1H=;@g|ym?5-KXsznQn8qXN$sHpxZE?&S@ z7_epGUjl;QKMN;n2X~#hz=r6vmawbG`B2{Om%x5VwxDs-wIDX=L9uJ4AMbJokCVY zsGni$LG#fJlvMs3k>8-8`4*(}Y5AG(qk;>J9lG!Yr*)EGK8F_(5Apf~k-9WWn1;Wy z|J{v;7xye&_$GNizE3>UpIhy?*(iux1fnWx#bZoQ9W^;yn2HxiXVAqG{4Qz$8#|_7 z&;mG_Qs0@DxtO*%TE}`ZYaHvuF%N#8F76RnY5%yJS=vSw=mDHL-6N(r<65(u?Q9aEI%s;9FQ_D;s9vBm* z690ST!+4UkV#;?B>UA~dBA7Z@EU+_EH5n#E*!DvDk<47kRFkIza??7*9c8V-f0=$O z$ByfQiCa6DmFqJ<=55PLhv=_Z zR#s*FDZOL<>4p7QpN}_eOBDCOo;ALGFs>a+=}lK$mtFJw7q(m-jMsN19GjB*&G!^C z-IfOmg-T6g1U==#622qm*tV=}hso|jYr@_b8;kKtdn+9}%noB+XpS`}Dq544HV7!R zMOTcMjX1UyhbnBjx;t*GkL~(V{nEtEiNu!u$&Cl%8xFo>jC)VUPfaGgQ}N@$crX&5 ziN+(JjT>M3y+RIowTg4JVGl>4Vze$R+vpIn&nGNRF&w%Y^{GFaobx)noxruy;X6U*9XQBVl|mXR$C*;up8M^L=d z>jMkBu+I9)NV_EA?l~yhsUS_%tVJm9NR=S{xsjr*kI1yK|cwp&ZqJ3w)ZP(4Q zTg~sd5_^uvd%bbX(owCxbiJ-Lir;Z(mk+usU`wTh^nF z26Nm(jj&o)nW*evYKU(=1XPl&>`#{UUp{oFtQrLohlhQB-@-ba2oi^xhG{8sb0D$x zaC}RDydNz;5kGY{el`#{z5ugt=rh!rS}iCSp2LRWc&Tey+lDiL?Tc+$ICb07hIT1$yRYKxo%e7c z-G;l)f{nvQDh-R46@yFa=dH`yZq{TS%NE!`O3hKW;2^!{f;kph-1oynZys72zq$3T zsbu@Ucw65s&pVEH&iq}~JEpkt8DTssIBO?ubFy67c6r;p7iYsRj3*3rab=w#?gR3W z9zA?aX7Dlyn?lkrj~qfe1zm+9D3m=a7+}k@CgNE^bH=g{=|JJEro%6U(*@WjA7vp+ z3><5bDGO-n!Vo$9@nayQ9juQ{BbWdGV{?(LEgzeUWF8F&I`)+~Iyyn02*x#!rwIBd zW?cxX(hR>vpei9BP>J$^JPH%k6yxX$rzRcQg`BaO=l{o?Ke=~uWfC%!?eAEtWNHtN zw{VS$y=t^f3AtT4R-J{R#Wu?sOR6<;j?aR_DJ!(^+EY%);tJ5=KZO2~ej*LIQboD~%Jnljx&nt~v2djYV66}UKTYHCzbi-j4FD-RS|Q@{{@`9v4GzCBRRwrVhS80Pdm{cV3Ke)8a*0-Spo#&y;Z@>@MahD|uZMp2hH4TwfT(h`~Lw?&wzPVI~^bI}@Qzm*{V7 z@5wR8a~=;ldvT;8BrDFoi@5Ltf``dVf+`6j9WE;G$gqC%R3oPDy8>Ud3rP=RI2~uo z{!B8?J^o9fAf^N#m|)jb4(08JV#+DuMm^FaN6i>IFscBTn;Ah&r<~z2-$3p;2H3=H zx{CO(A|9?m%194zTo${*!#IWUDk#`su2qCH5VJq|SE%5O{e(^#3@5gz3R^lE!^vNh z0vYGYxKgI(4i_QI941sW?Se{>i48JCga0-Xu(81a2fN2hs#020+}xbdwj|sK;OA~M`C0*Eh{&R z%xexK8@DzuD_b%j?#emcF*#TPFsJH*w6<$m*(xR3wXEFqo~0^>xX$G@v`dbqsl8pVZBabf#X&x-+PvIe|%!qQeyf1G}Z4tOAQhRr@S*kTck3~ z!2C6iD>wbNV$1xV zR8{pt^!gw%Ps>&A`F&t?ti}IW~NpTAebS)GqzmJTl~`%}f0@v4o9;x6!J$CAZcVMmu? zn)wBnXePI~XEE}_OK)DfS$=D4Vq1T*^GMu1@XoP#@z8DUQSiVe-5H5RerxYvRvt)M zaTA>@VHNm7t6P!<%<~J4G0k;%99O{9+$_F%;m6hS?t|~h;>Cw=Yx|L?trJx#z-oPb z--Tvi2jBhswyMLswPTo4(nIEBm@=~aPEZcHY?nxUvRgSI;aU3>A_1j1bTgxRZ48dv znY~O5xq;MyJ#YsEhfhokH`x{1kX9fq`6s5OKw89Tu6drAKbgrB7FzRw6(wd=?&PwE z7~$>+Sw0Dz^9?6NJoXz7ntSXwtyj6`8x#=2~^HL$Bv9+n>976@QITT_U2#KLbD%QMI=nw|>oOpV3W^Q1sM7Aup zY&+*1=aj9zAqUo;lcU7kBS%MGj=x8pON}CwTD;;Dd#jq5NLEH*^9*vRHGSyzwn)#FMr)sbH3EwRF-zI8Y&cU=+ zq}`(x*h}33Di7D(2c|nhXULBWyu-K;?KrG8{|rULb!Zo%;28~_i&ln<6>#KGEG~pzfnqiSuCOFI08W zJ$Zn*Z(Yir8C!v)f}!ko=LO}=j-}8?AKp%&u zBpp>fv$i<&+IKW8@VPit1!Ie`z_6lIl*^7{p?iSYJ-YlXMf@H)^`M^98sx?<%~MUCqr3A|(>$Ff@K*#tR&Q)OKYyQm z2Eeo9RoGTXwv&R{l``A3w4TO_KXZ#8)eCpB55?XK7x60}jXJ%L*?jk?DqnHzTWr5sk!an!VjoD@2a@(7 ze6)2Nq|!gCNEE}nCcRyx}>RL_CQK$pxurO z4T}!i?&$tNsf!z%7mcyc$Msv5m0MQ}{l=DxSbtoOtluHU(=+=T;#SG7fP)9|v^^FeXj;-O^mmf1lDT>tI8i>745 z)_8q)y!%94|Ln5zxestZoHA){#Kmuv9)W1z7>MnTZ#)#&6E*ySosLkqcYu`=0gTCp z&GGszq$SZGSym2wP~5t>DOtQelTF>XyJDYD;(OiJ_}0O=erQ>F^aC>vqe+^3glzN! z%gVtID!1NLCM$Qwm1Sa8;*HyI5_;ST4dHNH?^#wJ|DdEDcj%UEoE>5?HQ!dmhLX-r z@tV!?%?IN8gUiZ89~3pDv__am!U{5_Enyz8hNbt-T4v$w;H+iwinfHM4gF&)U+7QR znrHh{_KNtr?u5O2_Q)M&(TcJxp)7mNaiikv6|wy|)~$T=Ee#5mP##Pv%`3`^gtFqb zowy9La{bM%ar(J8rL?RlD-+7f*9I52B&#;w#6{5f*~dD#CZ=2XY+O&eN}=2_!@}p{ z`i^C#JM-JPfC1oMR(9So7@6>k?vbZ~Iywq-Sg3d-xH=$e!xUl{WV;9HN~mccjxSUS zD&hdmoWG&@LcT{sr-V>8^GIUIU?1w}cG{7Bp|Mkl@nZ^pB%S||7n+FyJV-Iv#C@AG zrJNs@(>YKh_|}f)LiF_pFP$RTf0LJvSjsh_H<1ir&lP}G=hTy(WFnO`ifcl7=S$G4 z2dO#M6w1M>_-J_u1M*T!@PA7=t8*eVd_gwb_kA_L>amV@$#sh9y=YhdE{v~q$ zisF5Rz8i3ng^z94fysfALU09p17|B-zEo}63clu($LoTtb+Lt%eG&J}XLNe){_FXWR^ z3~j48X{Ol08q(1^T4jF%=re z8DzWoUmzX)=fZRd)m?>5Ci_Ru`@eH_zvImBafbIe-9K=(|G<^~14rj6n=Ev)d%SG@ zQXO45mMq#mt54zbv%@bRj+eTV#?D!6p0iwe;pG?NDOFs8a|TjoORBPpJaEg(DIBMll^RRranAOUQ?FHjRHB39V2&0( z8+`XXvaVu4Sm~k%x#16Tm2BNz4i2O#a>HHv`M{!))jV*hWgQP}2AShQl}%=O(5jYI zJ+PI?%nvs1MA%buv#jJngHdLEP_2-;9~kRpWe<+Xlz=p~$SNK@Ei021-`%o7=1A%7 zcNO$*+{WH_ROJs;`2FClY@@97!3(lBneFaLS+z{fAo0FqYQC$&8(nE{zpEi1EZJRm zb>!1?>o(jqkPpW3op+1KXW~j)@0!VH;na=?R`?$5ksXxD>K{CfW6A0tT$JsU72SPG h&MA#^(WIjM*Lug* argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + default_root = Path(__file__).resolve().parents[2] + parser.add_argument("--project-root", type=Path, default=default_root) + parser.add_argument("--research-dir", type=Path) + parser.add_argument("--paper-008", type=Path) + parser.add_argument("--out-dir", type=Path, default=Path(__file__).resolve().parent) + return parser.parse_args() + + +def clean_inline_md(text: str) -> str: + text = text.strip() + text = re.sub(r"`([^`]+)`", r"\1", text) + text = re.sub(r"\*\*([^*]+)\*\*", r"\1", text) + text = re.sub(r"\*([^*]+)\*", r"\1", text) + text = re.sub(r"\[(.*?)\]\((.*?)\)", r"\1", text) + return re.sub(r"\s+", " ", text).strip() + + +def extract_sections(text: str) -> dict[str, str]: + matches = list(HEADING_RE.finditer(text)) + if not matches: + return {} + + sections: dict[str, str] = {} + for idx, match in enumerate(matches): + heading = clean_inline_md(match.group(2)).lower() + start = match.end() + end = matches[idx + 1].start() if idx + 1 < len(matches) else len(text) + sections[heading] = text[start:end].strip() + return sections + + +def load_research_docs(research_dir: Path) -> list[Doc]: + docs: list[Doc] = [] + for path in sorted(research_dir.glob("*.md")): + raw = path.read_text(encoding="utf-8") + title = path.stem + for line in raw.splitlines(): + if line.startswith("# "): + title = clean_inline_md(line[2:]) + break + docs.append( + Doc( + path=path, + slug=path.stem, + title=title, + text=raw, + sections=extract_sections(raw), + ) + ) + return docs + + +def normalize_person_name(name: str) -> str: + stripped = re.sub(r"\bet al\.?", "", name, flags=re.IGNORECASE) + stripped = stripped.replace("&", " and ") + stripped = re.sub(r"\([^)]*\)", "", stripped) + stripped = re.sub(r"[^A-Za-z .'-]", " ", stripped) + stripped = re.sub(r"\s+", " ", stripped).strip() + return stripped.lower() + + +def split_possible_names(chunk: str) -> list[str]: + chunk = clean_inline_md(chunk) + chunk = chunk.split(":", 1)[0] + chunk = re.sub(r"\([^)]*\)", "", chunk) + chunk = re.sub(r'"[^"]+"', "", chunk) + chunk = chunk.replace("&", " and ") + names = NAME_RE.findall(chunk) + out: list[str] = [] + for name in names: + name = re.sub(r"\s+", " ", name).strip(" .,:;") + words = [w for w in name.split() if w and w[0].isalpha()] + if len(words) >= 2 and not any(w.lower() in BAD_NAME_WORDS for w in words): + out.append(" ".join(words)) + if not out: + single = re.sub(r"[^A-Za-z'-]", "", chunk).strip() + if ( + single + and single[0].isupper() + and single.lower() not in BAD_NAME_WORDS + and len(single) > 3 + ): + out.append(single) + return out + + +def extract_scholars(docs: list[Doc]) -> dict[str, dict[str, Any]]: + scholars: dict[str, dict[str, Any]] = {} + + for doc in docs: + key_sections = [text for name, text in doc.sections.items() if "key scholars" in name] + + candidates: list[str] = [] + for section in key_sections: + for line in section.splitlines(): + bullet_match = BULLET_RE.match(line) + if not bullet_match: + continue + raw = bullet_match.group(1) + bullet = clean_inline_md(raw) + bold_match = re.search(r"\*\*([^*]+)\*\*", raw) + if bold_match: + candidates.extend(split_possible_names(bold_match.group(1))) + else: + lead = bullet.split(":", 1)[0] + candidates.extend(split_possible_names(lead)) + + unique = sorted(set(candidates)) + text_lower = doc.text.lower() + for name in unique: + key = normalize_person_name(name) + if not key: + continue + entry = scholars.setdefault( + key, + { + "name": name, + "aliases": set(), + "files": set(), + "mention_count": 0, + "contexts": [], + }, + ) + entry["aliases"].add(name) + entry["files"].add(doc.slug) + + surname = name.split()[-1].lower().strip(".,") + local_mentions = [] + for sentence in SENTENCE_SPLIT_RE.split(doc.text): + sentence_clean = clean_inline_md(sentence) + if surname and surname in sentence_clean.lower(): + local_mentions.append(sentence_clean) + + if not local_mentions: + if surname and surname in text_lower: + local_mentions = [f"Mentioned in {doc.slug}"] + else: + local_mentions = [f"Listed in {doc.slug}"] + + entry["mention_count"] += len(local_mentions) + for snippet in local_mentions[:3]: + entry["contexts"].append({"file": doc.slug, "snippet": snippet}) + + for entry in scholars.values(): + entry["aliases"] = sorted(entry["aliases"]) + entry["files"] = sorted(entry["files"]) + + return scholars + + +def extract_title_from_source_line(line: str) -> str: + line_clean = clean_inline_md(line) + quoted = re.findall(r'"([^"]+)"', line) + if quoted: + return clean_inline_md(quoted[0]) + italic = re.findall(r"\*([^*]+)\*", line) + if italic: + return clean_inline_md(italic[0]) + + year_match = re.search(r"\(\d{4}\)\.?", line_clean) + if year_match: + tail = line_clean[year_match.end() :].strip(" .:-") + if tail: + return tail.split(".", 1)[0].strip() + + return line_clean + + +def extract_authors_from_source_line(line: str) -> list[str]: + line_clean = clean_inline_md(line) + year_match = re.search(r"\(\d{4}\)", line_clean) + head = line_clean[: year_match.start()].strip() if year_match else line_clean + head = head.replace("&", " and ") + head = re.sub(r"\bet al\.?", "", head, flags=re.IGNORECASE) + parts = [p.strip(" ,.-") for p in re.split(r"\band\b|;", head) if p.strip(" ,.-")] + + names: list[str] = [] + for part in parts: + if re.search(r"[A-Za-z]", part): + names.append(part) + return names + + +def normalize_title(title: str) -> str: + title = title.lower() + title = re.sub(r"[^a-z0-9 ]", " ", title) + return re.sub(r"\s+", " ", title).strip() + + +def extract_bibliography(docs: list[Doc]) -> dict[str, dict[str, Any]]: + bibliography: dict[str, dict[str, Any]] = {} + for doc in docs: + sources = [text for name, text in doc.sections.items() if name.startswith("sources")] + for src in sources: + for line in src.splitlines(): + bullet = BULLET_RE.match(line) + if not bullet: + continue + raw = bullet.group(1) + title = extract_title_from_source_line(raw) + if not title: + continue + key = normalize_title(title) + if not key: + continue + entry = bibliography.setdefault( + key, + { + "title": title, + "authors": set(), + "files": set(), + "raw_mentions": [], + }, + ) + entry["files"].add(doc.slug) + entry["raw_mentions"].append(clean_inline_md(raw)) + for author in extract_authors_from_source_line(raw): + entry["authors"].add(author) + + for entry in bibliography.values(): + entry["authors"] = sorted(entry["authors"]) + entry["files"] = sorted(entry["files"]) + entry["relevance"] = len(entry["files"]) * 2 + len(entry["raw_mentions"]) + + return bibliography + + +def first_sentence_with_marker(text: str, marker: str) -> str | None: + for sentence in SENTENCE_SPLIT_RE.split(text): + if marker in sentence.lower(): + return clean_inline_md(sentence) + return None + + +def detect_contradictions(docs: list[Doc]) -> list[dict[str, Any]]: + contradictions: list[dict[str, Any]] = [] + + for rule in TOPIC_RULES: + pro_evidence: list[dict[str, str]] = [] + con_evidence: list[dict[str, str]] = [] + + for doc in docs: + text_lower = doc.text.lower() + for marker in rule["pro_markers"]: + if marker in text_lower: + snippet = first_sentence_with_marker(doc.text, marker) + if snippet: + pro_evidence.append( + {"file": doc.slug, "marker": marker, "snippet": snippet} + ) + break + for marker in rule["con_markers"]: + if marker in text_lower: + snippet = first_sentence_with_marker(doc.text, marker) + if snippet: + con_evidence.append( + {"file": doc.slug, "marker": marker, "snippet": snippet} + ) + break + + pro_files = {item["file"] for item in pro_evidence} + con_files = {item["file"] for item in con_evidence} + if pro_files - con_files and con_files - pro_files: + contradictions.append( + { + "topic": rule["label"], + "topic_id": rule["id"], + "supports": pro_evidence[:4], + "challenges": con_evidence[:4], + "supporting_files": sorted(pro_files), + "challenging_files": sorted(con_files), + } + ) + + return contradictions + + +def extract_open_questions(paper_008: Path) -> list[dict[str, Any]]: + text = paper_008.read_text(encoding="utf-8") + marker = "## Open Questions for Paper 009" + if marker not in text: + raise RuntimeError("Could not find 'Open Questions for Paper 009' in paper 008") + + section = text.split(marker, 1)[1] + next_header = re.search(r"\n##\s+", section) + if next_header: + section = section[: next_header.start()] + + questions: list[dict[str, Any]] = [] + for line in section.splitlines(): + match = NUMBERED_RE.match(line) + if not match: + continue + idx = int(match.group(1)) + body = clean_inline_md(match.group(2)) + body = re.sub(r"^\*\*", "", body) + body = re.sub(r"\*\*", "", body) + questions.append({"id": idx, "text": body}) + + if not questions: + raise RuntimeError("No numbered open questions found in paper 008") + return questions + + +def map_to_open_questions( + docs: list[Doc], open_questions: list[dict[str, Any]] +) -> list[dict[str, Any]]: + coverage: list[dict[str, Any]] = [] + + for question in open_questions: + qid = question["id"] + keywords = QUESTION_KEYWORDS.get(qid, []) + file_scores: list[dict[str, Any]] = [] + total = 0 + + for doc in docs: + score = 0 + snippets: list[str] = [] + for sentence in SENTENCE_SPLIT_RE.split(doc.text): + sentence_clean = clean_inline_md(sentence) + hits = sum(1 for kw in keywords if kw in sentence_clean.lower()) + if hits: + score += hits + if len(snippets) < 3: + snippets.append(sentence_clean) + if score: + total += score + if score >= 12: + level = "high" + elif score >= 6: + level = "medium" + else: + level = "low" + file_scores.append( + { + "file": doc.slug, + "score": score, + "level": level, + "snippets": snippets, + } + ) + + file_scores.sort(key=lambda x: x["score"], reverse=True) + coverage.append( + { + "question_id": qid, + "question": question["text"], + "total_score": total, + "supporting_files": file_scores, + } + ) + + coverage.sort(key=lambda x: x["question_id"]) + return coverage + + +def extract_strongest_challenges(docs: list[Doc]) -> list[dict[str, Any]]: + challenges: list[dict[str, Any]] = [] + + for doc in docs: + counter_sections = [ + text + for name, text in doc.sections.items() + if "counterarguments" in name or "critiques" in name + ] + if not counter_sections: + continue + for section in counter_sections: + for line in section.splitlines(): + bullet = BULLET_RE.match(line) + if not bullet: + continue + text = clean_inline_md(bullet.group(1)) + lower = text.lower() + score = 1 + for keyword, weight in CHALLENGE_KEYWORDS.items(): + if keyword in lower: + score += weight + challenges.append({"file": doc.slug, "text": text, "score": score}) + + merged: dict[str, dict[str, Any]] = {} + for challenge in challenges: + key = challenge["text"].lower() + if key not in merged: + merged[key] = { + "text": challenge["text"], + "score": challenge["score"], + "files": {challenge["file"]}, + } + else: + merged[key]["score"] += challenge["score"] + merged[key]["files"].add(challenge["file"]) + + ranked = sorted( + ( + { + "text": item["text"], + "score": item["score"], + "files": sorted(item["files"]), + } + for item in merged.values() + ), + key=lambda x: x["score"], + reverse=True, + ) + + return ranked[:10] + + +def detect_emergent_themes(docs: list[Doc]) -> list[dict[str, Any]]: + themes = { + "Governance and agency design": [ + "agency", + "democratic", + "community", + "policy", + "selective adoption", + "governance", + ], + "Economic concentration and labor shift": [ + "labor", + "capital", + "commodity", + "automation", + "class", + "pricing", + ], + "Epistemic reliability and grounding": [ + "understand", + "stochastic", + "illusion", + "lossy", + "falsifiable", + "evidence", + ], + "Civilizational lock-in and resilience": [ + "lock-in", + "path dependence", + "retreat", + "dependency", + "ratchet", + "reversal", + ], + } + + scored: list[dict[str, Any]] = [] + corpus = "\n".join(doc.text.lower() for doc in docs) + for theme, keywords in themes.items(): + score = sum(corpus.count(k) for k in keywords) + if score > 0: + scored.append({"theme": theme, "score": score}) + scored.sort(key=lambda x: x["score"], reverse=True) + return scored + + +def build_structured_result( + docs: list[Doc], + scholars: dict[str, dict[str, Any]], + bibliography: dict[str, dict[str, Any]], + contradictions: list[dict[str, Any]], + open_question_coverage: list[dict[str, Any]], + strongest_challenges: list[dict[str, Any]], + emergent_themes: list[dict[str, Any]], +) -> dict[str, Any]: + scholars_ranked = sorted( + scholars.values(), + key=lambda s: (len(s["files"]), s["mention_count"]), + reverse=True, + ) + + bibliography_ranked = sorted( + bibliography.values(), key=lambda b: b["relevance"], reverse=True + ) + + return { + "meta": { + "research_files": [doc.slug for doc in docs], + "research_file_count": len(docs), + }, + "scholars": scholars_ranked, + "bibliography": bibliography_ranked, + "contradictions": contradictions, + "open_question_coverage": open_question_coverage, + "strongest_challenges": strongest_challenges, + "emergent_themes": emergent_themes, + } + + +def render_digest(result: dict[str, Any]) -> str: + lines: list[str] = [] + lines.append("# Integrated Research Digest") + lines.append("") + lines.append("## Scope") + lines.append( + f"Processed {result['meta']['research_file_count']} research file(s): " + + ", ".join(result["meta"]["research_files"]) + ) + lines.append("") + + lines.append("## Scholars by Frequency") + for scholar in result["scholars"][:20]: + files = ", ".join(scholar["files"]) + lines.append( + f"- **{scholar['name']}** — files: {len(scholar['files'])}; mentions: {scholar['mention_count']}; in: {files}" + ) + lines.append("") + + lines.append("## Unified Bibliography") + for item in result["bibliography"][:40]: + authors = ", ".join(item["authors"]) if item["authors"] else "Unknown" + files = ", ".join(item["files"]) + lines.append( + f"- **{item['title']}** ({authors}) — relevance {item['relevance']}; cited in: {files}" + ) + lines.append("") + + lines.append("## Contradiction Report") + if not result["contradictions"]: + lines.append("- No cross-file contradictions detected by the current heuristic.") + for item in result["contradictions"]: + lines.append(f"### {item['topic']}") + lines.append("- Supporting evidence:") + for support in item["supports"]: + lines.append( + f" - `{support['file']}` ({support['marker']}): {support['snippet']}" + ) + lines.append("- Challenging evidence:") + for challenge in item["challenges"]: + lines.append( + f" - `{challenge['file']}` ({challenge['marker']}): {challenge['snippet']}" + ) + lines.append("") + + lines.append("## Paper 009 Coverage Map") + for item in result["open_question_coverage"]: + if item["supporting_files"]: + max_level = max(fs["level"] for fs in item["supporting_files"]) + else: + max_level = "none" + lines.append( + f"### Q{item['question_id']} (total score {item['total_score']}, strongest level {max_level})" + ) + lines.append(f"{item['question']}") + if not item["supporting_files"]: + lines.append("- No supporting material detected.") + continue + for fs in item["supporting_files"][:4]: + lines.append(f"- `{fs['file']}`: score {fs['score']} ({fs['level']})") + for snip in fs["snippets"][:2]: + lines.append(f" - {snip}") + lines.append("") + + lines.append("## Strongest Challenges") + if not result["strongest_challenges"]: + lines.append("- No challenge bullets detected.") + for item in result["strongest_challenges"]: + lines.append( + f"- **Score {item['score']}** ({', '.join(item['files'])}): {item['text']}" + ) + + return "\n".join(lines) + "\n" + + +def render_outline(result: dict[str, Any]) -> str: + coverage_sorted = sorted( + result["open_question_coverage"], key=lambda x: x["total_score"], reverse=True + ) + most_covered = coverage_sorted[:2] + least_covered = coverage_sorted[-2:] if len(coverage_sorted) >= 2 else coverage_sorted + + lines: list[str] = [] + lines.append("# Suggested Outline for Paper 009") + lines.append("") + lines.append("## Why This Sequence") + lines.append( + "Order starts with heavily-supported questions, then closes with low-coverage questions that require new argumentation or new research." + ) + lines.append("") + + lines.append("## Coverage Priorities") + lines.append("- Most supported open questions:") + for item in most_covered: + lines.append( + f" - Q{item['question_id']} (score {item['total_score']}): {item['question']}" + ) + lines.append("- Least supported open questions:") + for item in least_covered: + lines.append( + f" - Q{item['question_id']} (score {item['total_score']}): {item['question']}" + ) + lines.append("") + + lines.append("## Proposed Sections") + for item in coverage_sorted: + qid = item["question_id"] + lines.append(f"### Section {qid}: Q{qid}") + lines.append(item["question"]) + if item["supporting_files"]: + top_files = ", ".join(fs["file"] for fs in item["supporting_files"][:3]) + lines.append(f"- Primary evidence files: {top_files}") + top_snips = [ + snip + for fs in item["supporting_files"][:2] + for snip in fs["snippets"][:1] + ] + for snip in top_snips: + lines.append(f"- Anchor claim: {snip}") + else: + lines.append("- Primary evidence files: none detected; requires fresh synthesis.") + lines.append("") + + lines.append("## Cross-Cutting Counterarguments To Address Explicitly") + for challenge in result["strongest_challenges"][:5]: + lines.append(f"- {challenge['text']} ({', '.join(challenge['files'])})") + lines.append("") + + lines.append("## New Themes To Add Beyond Original Open Questions") + for theme in result["emergent_themes"][:4]: + lines.append(f"- {theme['theme']} (signal score {theme['score']})") + + return "\n".join(lines) + "\n" + + +def main() -> int: + args = parse_args() + project_root = args.project_root.resolve() + research_dir = (args.research_dir or (project_root / "research")).resolve() + paper_008 = (args.paper_008 or (project_root / "008-the-ship-of-theseus.md")).resolve() + out_dir = args.out_dir.resolve() + out_dir.mkdir(parents=True, exist_ok=True) + + print(f"[integrator] project root: {project_root}") + print(f"[integrator] research dir: {research_dir}") + print(f"[integrator] paper 008: {paper_008}") + print(f"[integrator] output dir: {out_dir}") + + docs = load_research_docs(research_dir) + print(f"[integrator] loaded {len(docs)} research file(s)") + if not docs: + print("[integrator] no research files found; writing empty digest/outline") + + open_questions = extract_open_questions(paper_008) + print(f"[integrator] extracted {len(open_questions)} open question(s) from Paper 008") + + scholars = extract_scholars(docs) + print(f"[integrator] extracted {len(scholars)} unique scholar name(s)") + + bibliography = extract_bibliography(docs) + print(f"[integrator] extracted {len(bibliography)} bibliography item(s)") + + contradictions = detect_contradictions(docs) + print(f"[integrator] detected {len(contradictions)} contradiction topic(s)") + + coverage = map_to_open_questions(docs, open_questions) + print("[integrator] mapped research evidence to Paper 008 open questions") + + strongest_challenges = extract_strongest_challenges(docs) + print(f"[integrator] ranked {len(strongest_challenges)} strongest challenge(s)") + + emergent_themes = detect_emergent_themes(docs) + print(f"[integrator] found {len(emergent_themes)} emergent theme(s)") + + result = build_structured_result( + docs, + scholars, + bibliography, + contradictions, + coverage, + strongest_challenges, + emergent_themes, + ) + + json_path = out_dir / "integrated.json" + digest_path = out_dir / "digest.md" + outline_path = out_dir / "009_outline_suggestion.md" + + json_path.write_text(json.dumps(result, indent=2), encoding="utf-8") + digest_path.write_text(render_digest(result), encoding="utf-8") + outline_path.write_text(render_outline(result), encoding="utf-8") + + print(f"[integrator] wrote {json_path}") + print(f"[integrator] wrote {digest_path}") + print(f"[integrator] wrote {outline_path}") + + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/tools/integrator/integrated.json b/tools/integrator/integrated.json new file mode 100644 index 0000000..6967a65 --- /dev/null +++ b/tools/integrator/integrated.json @@ -0,0 +1,7580 @@ +{ + "meta": { + "research_files": [ + "01-falsifiability-and-dependence", + "02-cognition-economics-neuroscience", + "03-retrocausality-teleology-recursion", + "04-knowledge-unification-history", + "05-species-identity-transhumanism", + "06-allegory-warning-pattern", + "07-simulation-hypothesis-compilation", + "08-engineered-dependencies", + "09-neural-plasticity-reversal", + "10-post-scarcity-economics", + "11-consciousness-hard-problem", + "12-information-entropy-thermodynamics", + "13-game-theory-tech-races", + "14-agricultural-revolution-deep-dive", + "15-collective-intelligence", + "16-cheating-authenticity-tool-use", + "17-deep-time-existential-risk", + "18-luddite-resistance-movements", + "19-language-as-technology", + "20-ethics-of-inevitable-harm", + "21-creativity-dependency", + "22-education-knowledge-transmission", + "23-attention-economy-cognitive-warfare", + "24-eastern-philosophy-ai", + "25-psychology-of-surrender", + "26-complexity-emergent-order", + "27-digital-archaeology-format-death", + "28-neuroscience-of-insight", + "29-power-control-ownership", + "30-meaning-crisis-existential", + "31-ai-cost-curves-data", + "32-cognitive-offloading-studies", + "33-technology-adoption-curves", + "34-biological-dependency-chains", + "35-scifi-predictive-philosophy" + ], + "research_file_count": 35 + }, + "scholars": [ + { + "name": "Nick Bostrom", + "aliases": [ + "Nick Bostrom" + ], + "files": [ + "05-species-identity-transhumanism", + "07-simulation-hypothesis-compilation", + "13-game-theory-tech-races", + "17-deep-time-existential-risk" + ], + "mention_count": 15, + "contexts": [ + { + "file": "05-species-identity-transhumanism", + "snippet": "* The Posthuman Transition: Transhumanists (Bostrom, Kurzweil, Moravec) view the merger with advanced technology as a necessary evolution to overcome biological limitations." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "Nick Bostrom (Superintelligence, 2014):* Transhumanist philosopher focusing on existential risk." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "* Eugenics and Inequality: Critics of transhumanism (Bostrom, Kurzweil) argue that \"enhancing\" the human species risks creating extreme bio-economic stratification (\"eugenics on steroids\"), where the wealthy become posthuman and the poor are left behind." + }, + { + "file": "07-simulation-hypothesis-compilation", + "snippet": "* The Ancestor Simulation Hypothesis: Proposed by Nick Bostrom, suggesting that posthuman civilizations with immense computing power would likely run high-fidelity simulations of their ancestors, and therefore it is statistically probable we are living in one." + }, + { + "file": "07-simulation-hypothesis-compilation", + "snippet": "* Nick Bostrom: Philosopher who formulated the Simulation Argument (2003)." + }, + { + "file": "07-simulation-hypothesis-compilation", + "snippet": "* Barry Dainton: Modified Bostrom's argument to focus on \"neural ancestor simulations,\" emphasizing the subjective experience indistinguishable from base reality." + }, + { + "file": "13-game-theory-tech-races", + "snippet": "Nick Bostrom (The Vulnerable World Hypothesis):* Introduces the \"Urn of Inventions\" analogy\u2014if we draw a \"black ball\" (a technology that makes destruction easy and cheap), civilization fails without total global control." + }, + { + "file": "13-game-theory-tech-races", + "snippet": "* Bostrom, N." + }, + { + "file": "17-deep-time-existential-risk", + "snippet": "* The Cost of Delay: Every second humanity remains confined to Earth and lacks advanced technology, it \"wastes\" the potential for 10^14 to 10^29 human-equivalent lives that could be sustained by the energy and matter of the local supercluster (Bostrom)." + }, + { + "file": "17-deep-time-existential-risk", + "snippet": "* Nick Bostrom (\"Astronomical Waste\", 2003): Introduced the utilitarian argument that the opportunity cost of delaying technological maturity is astronomically high." + }, + { + "file": "17-deep-time-existential-risk", + "snippet": "* AI as the Filter: AI might not be the key to survival but the \"Black Ball\" (Bostrom's Vulnerable World Hypothesis)\u2014a technology so easy to create and so destructive that it inevitably ends the civilizations that discover it." + } + ] + }, + { + "name": "Eleanor Maguire", + "aliases": [ + "Eleanor Maguire" + ], + "files": [ + "09-neural-plasticity-reversal", + "32-cognitive-offloading-studies" + ], + "mention_count": 9, + "contexts": [ + { + "file": "09-neural-plasticity-reversal", + "snippet": "Just as it expands to accommodate new skills (Maguire), it also contract or reorganizes in response to cognitive offloading and disuse (Dahmani)." + }, + { + "file": "09-neural-plasticity-reversal", + "snippet": "* Eleanor Maguire: Conducted the seminal London Taxi Driver studies, demonstrating that the posterior hippocampus (spatial memory) grows with navigational experience but\u2014critically\u2014shrinks after retirement." + }, + { + "file": "09-neural-plasticity-reversal", + "snippet": "* Maguire, E." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "* Physical Brain Plasticity: The Maguire et al." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "Eleanor Maguire: London Taxi Driver* series (2000-2011)." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "| Maguire (2000) | fMRI | 16 (drivers) | Increased posterior hippocampal volume correlates with years of driving." + } + ] + }, + { + "name": "John Archibald Wheeler", + "aliases": [ + "John Archibald Wheeler" + ], + "files": [ + "03-retrocausality-teleology-recursion", + "07-simulation-hypothesis-compilation" + ], + "mention_count": 7, + "contexts": [ + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "* Retrocausality in Physics: Concepts like Wheeler's \"Participatory Universe\" and \"Delayed-Choice Experiment,\" along with Transactional Interpretation and Two-State Vector Formalism, provide a (controversial) physical grounding for the idea that future states can influence past events." + }, + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "* John Archibald Wheeler (\"It from Bit,\" Participatory Universe): Argued that reality is fundamentally informational and that observers bring the universe into being through \"observer-participancy.\" His delayed-choice experiments suggest present actions \"create\" the past." + }, + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "The \"Participatory Anthropic Principle\": Wheeler's idea that we must* be here to observe the universe for it to exist." + }, + { + "file": "07-simulation-hypothesis-compilation", + "snippet": "* Digital Physics: The idea that reality is fundamentally informational (\"It from Bit\" by John Wheeler) aligns perfectly with the Simulation Hypothesis, treating the singularity as a maximum processing state or a compilation phase before a reboot." + }, + { + "file": "07-simulation-hypothesis-compilation", + "snippet": "* John Archibald Wheeler: Physicist who coined \"It from Bit\" and the \"Participatory Universe,\" suggesting that information is fundamental and observers bring the universe into reality." + }, + { + "file": "07-simulation-hypothesis-compilation", + "snippet": "* Delayed-Choice Quantum Eraser: Wheeler's thought experiment (now experimentally verified) implies that future observation determines past states, which perfectly models how a simulation engine renders historical data only when required by the \"player\" or \"observer.\"" + } + ] + }, + { + "name": "Seth Lloyd", + "aliases": [ + "Seth Lloyd" + ], + "files": [ + "12-information-entropy-thermodynamics", + "31-ai-cost-curves-data" + ], + "mention_count": 6, + "contexts": [ + { + "file": "12-information-entropy-thermodynamics", + "snippet": "* The Universe as Computer: Seth Lloyd's thesis that the universe computes its own evolution suggests the dependency chain is the \"compilation\" of the cosmos into a more efficient processing state." + }, + { + "file": "12-information-entropy-thermodynamics", + "snippet": "Seth Lloyd (Programming the Universe, 2006):* Posits the universe as a giant quantum computer processing its own dynamical evolution." + }, + { + "file": "12-information-entropy-thermodynamics", + "snippet": "* Paper 008 (Singularity as Compilation): Compilation is the process of reducing the \"Thermodynamic Depth\" (Seth Lloyd) of a system." + }, + { + "file": "31-ai-cost-curves-data", + "snippet": "Seth Lloyd: Programming the Universe*." + } + ] + }, + { + "name": "Herbert Simon", + "aliases": [ + "Herbert Simon" + ], + "files": [ + "10-post-scarcity-economics", + "23-attention-economy-cognitive-warfare" + ], + "mention_count": 5, + "contexts": [ + { + "file": "10-post-scarcity-economics", + "snippet": "* Herbert Simon / Tim Wu: Foundational theorists of the Attention Economy, identifying attention as the ultimate bottleneck once information is free." + }, + { + "file": "10-post-scarcity-economics", + "snippet": "Simon & Schuster." + }, + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "As Herbert Simon predicted in 1971, a wealth of information creates a \"poverty of attention.\"" + }, + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "* Herbert Simon: \"Designing Organizations for an Information-Rich World\" (1971)." + }, + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "* Simon, H." + } + ] + }, + { + "name": "Pierre Teilhard", + "aliases": [ + "Pierre Teilhard" + ], + "files": [ + "03-retrocausality-teleology-recursion", + "07-simulation-hypothesis-compilation" + ], + "mention_count": 4, + "contexts": [ + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "* Omega Point Theory: Teilhard de Chardin and Frank Tipler provide theological and physical frameworks for a cosmic endpoint (Omega Point) that functions as a maximum state of complexity/intelligence, effectively acting as a God-like attractor." + }, + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "Pierre Teilhard de Chardin (The Phenomenon of Man):* Proposed the \"Omega Point\" as the ultimate goal of cosmic evolution\u2014a state of maximum consciousness and unification." + }, + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "* Teilhard de Chardin, P." + }, + { + "file": "07-simulation-hypothesis-compilation", + "snippet": "* Pierre Teilhard de Chardin: Although pre-dating computation, his \"Omega Point\" represents a maximum level of complexity and consciousness that can be reinterpreted as the compilation point of a simulated universe." + } + ] + }, + { + "name": "Tim Wu", + "aliases": [ + "Tim Wu" + ], + "files": [ + "10-post-scarcity-economics", + "23-attention-economy-cognitive-warfare" + ], + "mention_count": 3, + "contexts": [ + { + "file": "10-post-scarcity-economics", + "snippet": "* Herbert Simon / Tim Wu: Foundational theorists of the Attention Economy, identifying attention as the ultimate bottleneck once information is free." + }, + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "Tim Wu: The Attention Merchants* (2016)." + }, + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "* Wu, T." + } + ] + }, + { + "name": "Derek Parfit", + "aliases": [ + "Derek Parfit" + ], + "files": [ + "05-species-identity-transhumanism" + ], + "mention_count": 9, + "contexts": [ + { + "file": "05-species-identity-transhumanism", + "snippet": "* Identity as Continuity, Not Substance: Derek Parfit's psychological reductionism (via the teletransportation paradox) provides a framework for the \"Ship of Theseus\" problem: personal identity is not a persistent entity, but overlapping chains of psychological continuity." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "Derek Parfit (Reasons and Persons, 1984):* Through the teletransportation paradox, Parfit argues that personal identity is reducible to psychological connectedness (Relation R)." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "* The Unfalsifiable Self: Parfit's thought experiments demonstrate the logical inconsistencies in believing in an indivisible \"soul\" or core identity." + } + ] + }, + { + "name": "Brian Arthur", + "aliases": [ + "Brian Arthur" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "mention_count": 6, + "contexts": [ + { + "file": "01-falsifiability-and-dependence", + "snippet": "Social Constructivism:** The core tension in the philosophy of technology is between those who see technology as an autonomous, self-augmenting force (Ellul, Winner, Arthur) and those who believe social context, human agency, and interpretive flexibility shape technological paths (Pinch, Bijker, Feenberg)." + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "Brian Arthur (The Nature of Technology, 2009):** Argued that technology evolves through \"combinatorial evolution\" and that markets \"lock-in\" to specific technologies due to increasing returns to adoption." + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "* Increasing Returns and Lock-in: Arthur's work shows that once a technology passes a certain threshold (e.g., the internet, electricity, writing), the cost of switching is so high that the dependency becomes structurally fixed." + } + ] + }, + { + "name": "Vernor Vinge", + "aliases": [ + "Vernor Vinge" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "mention_count": 6, + "contexts": [ + { + "file": "35-scifi-predictive-philosophy", + "snippet": "* The Singularity's Fictional Birth: The concept of the \"Technological Singularity\" was first formally defined and popularized by mathematician and sci-fi author Vernor Vinge (1993), who used fiction to illustrate the \"unpredictability\" of a post-human era driven by recursive self-improvement." + }, + { + "file": "35-scifi-predictive-philosophy", + "snippet": "* Vernor Vinge (\"The Coming Technological Singularity\", 1993): Framed the singularity as an inevitable \"intelligence explosion\" that marks the end of the human era." + }, + { + "file": "35-scifi-predictive-philosophy", + "snippet": "* Vocabulary Emergence: Terminology like \"Robot\" (Karel \u010capek, 1920), \"Robotics\" (Asimov, 1941), \"Cyberspace\" (Gibson, 1982), and \"Singularity\" (Vinge, 1983) all originated in fiction before entering scientific and policy discourse." + } + ] + }, + { + "name": "Jacques Ellul", + "aliases": [ + "Jacques Ellul" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "mention_count": 5, + "contexts": [ + { + "file": "01-falsifiability-and-dependence", + "snippet": "Social Constructivism:** The core tension in the philosophy of technology is between those who see technology as an autonomous, self-augmenting force (Ellul, Winner, Arthur) and those who believe social context, human agency, and interpretive flexibility shape technological paths (Pinch, Bijker, Feenberg)." + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "Jacques Ellul (The Technological Society, 1954):* Proposed the \"Autonomous Technique\" thesis\u2014that technique evolves independently of human values, driven solely by the internal logic of efficiency." + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "* Autonomous Technique: Ellul's characteristic of technique as \"self-augmenting\" (building on itself automatically) supports the feedback loop in Paper 006." + } + ] + }, + { + "name": "Denis Diderot", + "aliases": [ + "Denis Diderot" + ], + "files": [ + "04-knowledge-unification-history" + ], + "mention_count": 5, + "contexts": [ + { + "file": "04-knowledge-unification-history", + "snippet": "Denis Diderot (1713\u20131784): Encyclop\u00e9die*." + }, + { + "file": "04-knowledge-unification-history", + "snippet": "Diderot\u2019s Cross-References: The Encyclop\u00e9die used renvois* (cross-references) to connect disparate trades and philosophies." + }, + { + "file": "04-knowledge-unification-history", + "snippet": "Diderot explicitly stated this was to show the \"interconnectedness of human knowledge,\" making it the 18th-century \"Semantic Web.\"" + } + ] + }, + { + "name": "Rolf Landauer", + "aliases": [ + "Rolf Landauer" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "mention_count": 5, + "contexts": [ + { + "file": "12-information-entropy-thermodynamics", + "snippet": "* Information is Physical: Landauer's Principle proves that manipulating information has a non-negotiable thermodynamic cost." + }, + { + "file": "12-information-entropy-thermodynamics", + "snippet": "* Rolf Landauer (1961): Established that erasing information generates heat ($E" + }, + { + "file": "12-information-entropy-thermodynamics", + "snippet": "Landauer's Principle: The Cost of Thought" + } + ] + }, + { + "name": "Noam Chomsky", + "aliases": [ + "Noam Chomsky" + ], + "files": [ + "19-language-as-technology" + ], + "mention_count": 5, + "contexts": [ + { + "file": "19-language-as-technology", + "snippet": "* Shared Intentionality: Michael Tomasello's research positions language not as an innate, isolated module (Chomskyan Universal Grammar), but as a cultural tool built on top of a uniquely human cognitive trait: \"shared intentionality.\" Language evolved as a coordination tool for collaborative activities." + }, + { + "file": "19-language-as-technology", + "snippet": "Daniel Everett (Don't Sleep, There Are Snakes, 2008):* Linguist who challenged Chomsky's Universal Grammar by documenting the Pirah\u00e3 language, showing how culture acts as a constraint on grammar (lack of recursion, lack of numbers)." + }, + { + "file": "19-language-as-technology", + "snippet": "* Noam Chomsky: Champion of the \"discontinuity\" theory, viewing language as an innate biological faculty (Universal Grammar) rather than a culturally evolved tool." + } + ] + }, + { + "name": "Everett Rogers", + "aliases": [ + "Everett Rogers" + ], + "files": [ + "33-technology-adoption-curves" + ], + "mention_count": 5, + "contexts": [ + { + "file": "33-technology-adoption-curves", + "snippet": "* Infrastructure Threshold: On the Everett Rogers S-curve, technologies typically transition from \"application\" to \"infrastructure\" when they reach the Early Majority (beyond 16% adoption)." + }, + { + "file": "33-technology-adoption-curves", + "snippet": "Everett Rogers: Diffusion of Innovations* (1962)." + }, + { + "file": "33-technology-adoption-curves", + "snippet": "* The Critical Mass Point: Rogers identifies \"Critical Mass\" at approximately 10-20% adoption." + } + ] + }, + { + "name": "Isaac Asimov", + "aliases": [ + "Isaac Asimov" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "mention_count": 5, + "contexts": [ + { + "file": "35-scifi-predictive-philosophy", + "snippet": "* The Blueprint for Alignment: Isaac Asimov\u2019s Three Laws of Robotics (1942) remain the most influential cultural framework for AI alignment, despite being technically unfeasible for modern \"black-box\" systems." + }, + { + "file": "35-scifi-predictive-philosophy", + "snippet": "Isaac Asimov (I, Robot, 1950):* Established the \"Frankenstein Complex\" and the Three Laws as the foundational grammar of AI ethics." + }, + { + "file": "35-scifi-predictive-philosophy", + "snippet": "* Vocabulary Emergence: Terminology like \"Robot\" (Karel \u010capek, 1920), \"Robotics\" (Asimov, 1941), \"Cyberspace\" (Gibson, 1982), and \"Singularity\" (Vinge, 1983) all originated in fiction before entering scientific and policy discourse." + } + ] + }, + { + "name": "Andrew Feenberg", + "aliases": [ + "Andrew Feenberg" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "mention_count": 4, + "contexts": [ + { + "file": "01-falsifiability-and-dependence", + "snippet": "Social Constructivism:** The core tension in the philosophy of technology is between those who see technology as an autonomous, self-augmenting force (Ellul, Winner, Arthur) and those who believe social context, human agency, and interpretive flexibility shape technological paths (Pinch, Bijker, Feenberg)." + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "Andrew Feenberg (Critical Theory of Technology, 1991):* Argued for \"Democratic Rationalization,\" suggesting that technology design is an \"ontological decision\" that can be reshaped through democratic participation to reflect human values." + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "* Democratic Rationalization: Feenberg critiques the \"determinism\" of the ratchet, arguing that we can \"re-contextualize\" technology." + } + ] + }, + { + "name": "Andy Clark", + "aliases": [ + "Andy Clark" + ], + "files": [ + "05-species-identity-transhumanism" + ], + "mention_count": 4, + "contexts": [ + { + "file": "05-species-identity-transhumanism", + "snippet": "Originary Technicity & Natural-Born Cyborgs: Philosophers like Bernard Stiegler and Andy Clark argue that humans have always* been technical beings." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "Andy Clark (Natural-Born Cyborgs, 2003):* Proponent of the Extended Mind Thesis." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "* Brain Plasticity: Neuroscience supports Andy Clark's thesis." + } + ] + }, + { + "name": "Donna Haraway", + "aliases": [ + "Donna Haraway" + ], + "files": [ + "05-species-identity-transhumanism" + ], + "mention_count": 4, + "contexts": [ + { + "file": "05-species-identity-transhumanism", + "snippet": "Critics and critical posthumanists (Haraway, Hayles) warn against discarding the \"flesh\" and emphasize the fluid, non-essentialist nature of identity, cautioning against a digital transcendence that merely replicates the flaws of liberal humanism." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "Donna Haraway (A Cyborg Manifesto, 1985):* Uses the cyborg as a metaphor to reject rigid dualisms (human/animal, human/machine, physical/non-physical)." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "Elision of Material Conditions: Haraway's critics point out that metaphors of \"cyborg fluidity\" often ignore the material realities of race, class, and colonial exploitation that dictate who* gets to be a cyborg and who provides the labor/resources for the technology." + } + ] + }, + { + "name": "Ray Kurzweil", + "aliases": [ + "Ray Kurzweil" + ], + "files": [ + "05-species-identity-transhumanism" + ], + "mention_count": 4, + "contexts": [ + { + "file": "05-species-identity-transhumanism", + "snippet": "* The Posthuman Transition: Transhumanists (Bostrom, Kurzweil, Moravec) view the merger with advanced technology as a necessary evolution to overcome biological limitations." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "Ray Kurzweil (The Singularity is Near, 2005):* Predicts the exponential growth of computing will lead to a merger of human and machine intelligence, overcoming biological limitations and expanding human consciousness across the universe." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "* The Loss of the Flesh (Hayles/Embodied Cognition): Critics like Hayles argue that Moravec and Kurzweil mistakenly treat information as separate from its substrate." + } + ] + }, + { + "name": "David Graeber", + "aliases": [ + "David Graeber" + ], + "files": [ + "10-post-scarcity-economics" + ], + "mention_count": 4, + "contexts": [ + { + "file": "10-post-scarcity-economics", + "snippet": "David Graeber (Bullshit Jobs, 2018):* Anthropological thesis that we create meaningless work to preserve the social control mechanism of \"employment\" even when technology makes the work unnecessary." + }, + { + "file": "10-post-scarcity-economics", + "snippet": "* Efficient Inefficiency: Graeber's critique suggests that we will simply invent \"Bullshit Jobs 2.0\" (e.g., AI output auditors, prompt compliance managers) to keep the 40-hour week alive." + }, + { + "file": "10-post-scarcity-economics", + "snippet": "* 37%: Percentage of British workers who believe their jobs provide no meaningful contribution to the world (YouGov/Graeber)." + } + ] + }, + { + "name": "John Searle", + "aliases": [ + "John Searle" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "mention_count": 4, + "contexts": [ + { + "file": "11-consciousness-hard-problem", + "snippet": "Semantics:** Searle's Chinese Room argument remains the primary obstacle to the claim that \"Compilation = Understanding.\"" + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* John Searle (1980): Developed the \"Chinese Room\" argument to distinguish between symbol manipulation (AI) and genuine understanding." + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* The Biological Requirement: Searle and Penrose argue that consciousness requires specific \"causal powers\" of biological matter (or quantum gravity)." + } + ] + }, + { + "name": "Karl Friston", + "aliases": [ + "Karl Friston" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "mention_count": 4, + "contexts": [ + { + "file": "12-information-entropy-thermodynamics", + "snippet": "* Karl Friston (Free Energy Principle): Argues that all biological systems minimize \"surprise\" (informational entropy) to survive." + }, + { + "file": "12-information-entropy-thermodynamics", + "snippet": "* Karl Friston\u2019s FEP suggests that \"Self-Organization\" is the process of a system minimizing its internal entropy by creating a \"Markov Blanket\" (a boundary) between itself and the world." + }, + { + "file": "12-information-entropy-thermodynamics", + "snippet": "* Thales Disease: Critics of Karl Friston (e.g., Paul Thagard) argue that reducing all of life/mind to \"entropy minimization\" is too reductive and fails to capture subjective experience (qualia)." + } + ] + }, + { + "name": "Jared Diamond", + "aliases": [ + "Jared Diamond" + ], + "files": [ + "14-agricultural-revolution-deep-dive" + ], + "mention_count": 4, + "contexts": [ + { + "file": "14-agricultural-revolution-deep-dive", + "snippet": "While traditionally taught as a \"step forward,\" archaeological and anthropological research (Diamond, Scott, Harari) reveals it as a massive Dependency Ratchet where species-level success (population explosion) was purchased with individual-level decline (health, leisure, equality)." + }, + { + "file": "14-agricultural-revolution-deep-dive", + "snippet": "* Jared Diamond (\"The Worst Mistake in the History of the Human Race\", 1987): Challenges the progress narrative, citing skeletal evidence of malnutrition and disease." + }, + { + "file": "14-agricultural-revolution-deep-dive", + "snippet": "* The \"Affluent Society\" Myth: Critics of Marshall Sahlins and Jared Diamond argue that hunter-gatherer life was not a paradise but was precarious, violent, and vulnerable to environmental swings." + } + ] + }, + { + "name": "Toby Ord", + "aliases": [ + "Toby Ord" + ], + "files": [ + "17-deep-time-existential-risk" + ], + "mention_count": 4, + "contexts": [ + { + "file": "17-deep-time-existential-risk", + "snippet": "* The Near-Term Bottleneck: Humanity faces a 1 in 6 chance of existential catastrophe in the next century (Ord, 2020)." + }, + { + "file": "17-deep-time-existential-risk", + "snippet": "Toby Ord (The Precipice, 2020):* Provided the most rigorous current estimates for near-term existential risk, framing our era as a uniquely dangerous \"precice.\"" + }, + { + "file": "17-deep-time-existential-risk", + "snippet": "Ord views this as the start of the \"Precipice\" phase." + } + ] + }, + { + "name": "Hans Jonas", + "aliases": [ + "Hans Jonas" + ], + "files": [ + "20-ethics-of-inevitable-harm" + ], + "mention_count": 4, + "contexts": [ + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "We require a \"Heuristics of Fear\" where the long-term survival of humanity becomes the primary categorical imperative (Jonas, 1979)." + }, + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "Hans Jonas (The Imperative of Responsibility, 1979):* Proposed the \"categorical imperative for the technological age\": ensuring the permanence of human life on Earth." + }, + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "* The Brundtland Report (1987): The first global attempt to codify intergenerational justice, setting the stage for the Jonas-style responsibility frameworks used in AI ethics today." + } + ] + }, + { + "name": "Nick Land", + "aliases": [ + "Nick Land" + ], + "files": [ + "20-ethics-of-inevitable-harm" + ], + "mention_count": 4, + "contexts": [ + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "* The Burden of Proof War: The ethical landscape is split between the Precautionary Principle (preventive action, burden on the innovator) and the Proactionary Principle (freedom to innovate, burden on the restrictor)." + }, + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "* Nick Land: The primary theorist of right-accelerationism, viewing the singularity as an \"alien invasion\" from the future that is already here." + }, + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "* The Brundtland Report (1987): The first global attempt to codify intergenerational justice, setting the stage for the Jonas-style responsibility frameworks used in AI ethics today." + } + ] + }, + { + "name": "Raja Parasuraman", + "aliases": [ + "Raja Parasuraman" + ], + "files": [ + "25-psychology-of-surrender" + ], + "mention_count": 4, + "contexts": [ + { + "file": "25-psychology-of-surrender", + "snippet": "* Automation Complacency: The \"Dysfunctional Reduction in Monitoring\" (Parasuraman) occurs when technology is consistently reliable." + }, + { + "file": "25-psychology-of-surrender", + "snippet": "* Raja Parasuraman (Automation Complacency): Seminal researcher on how human vigilance degrades in the presence of reliable automated systems." + }, + { + "file": "25-psychology-of-surrender", + "snippet": "* The 149% Gap: Parasuraman (1993) found a 149% difference in the ability to detect system failures between users who experienced variable reliability vs." + } + ] + }, + { + "name": "Anne Case", + "aliases": [ + "Anne Case" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "mention_count": 4, + "contexts": [ + { + "file": "30-meaning-crisis-existential", + "snippet": "* Deaths of Despair: Technological displacement is a primary driver of the rise in suicides and overdoses among the less-educated (Case & Deaton), as the \"ratchet\" of technical progress renders their primary sources of meaning (manual and routine work) obsolete." + }, + { + "file": "30-meaning-crisis-existential", + "snippet": "Anne Case & Angus Deaton (Deaths of Despair, 2020):* Linked the decline of stable employment (due to globalization and technology) to a \"collapse of the pillars of life\" for the working class." + }, + { + "file": "30-meaning-crisis-existential", + "snippet": "## Historical Parallels and Case Studies" + } + ] + }, + { + "name": "Betsy Sparrow", + "aliases": [ + "Betsy Sparrow" + ], + "files": [ + "32-cognitive-offloading-studies" + ], + "mention_count": 4, + "contexts": [ + { + "file": "32-cognitive-offloading-studies", + "snippet": "The \"Remembering Where\" Shift: While the specific \"Google Stroop\" effect (Sparrow, 2011) has faced replication challenges, the broader phenomenon of Transactive Memory*\u2014offloading the \"what\" to external storage and remembering only the \"where\"\u2014is robustly supported across a meta-analysis of 22 articles and 30,000+ participants." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "* Betsy Sparrow et al.: \"Google Effects on Memory: Cognitive Consequences of Having Information at Our Fingertips\" (2011)." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "| Sparrow (2011) | Lab Exp | ~60-100 | People remember locations of files better than the content." + } + ] + }, + { + "name": "Greg Egan", + "aliases": [ + "Greg Egan" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "mention_count": 4, + "contexts": [ + { + "file": "35-scifi-predictive-philosophy", + "snippet": "The Shift to Compilation: Contemporary works like Greg Egan\u2019s Permutation City and Ted Chiang\u2019s The Lifecycle of Software Objects* move beyond \"robot\" tropes to explore the Ship of Theseus transition\u2014viewing consciousness as information structures and AI as a gradual, developmental process." + }, + { + "file": "35-scifi-predictive-philosophy", + "snippet": "Greg Egan (Permutation City, 1994):* Developed \"Dust Theory,\" positing that consciousness is a mathematical pattern independent of biological substrate\u2014the ultimate \"compiled\" state." + }, + { + "file": "35-scifi-predictive-philosophy", + "snippet": "Egan's \"Copies\" are the extreme end-state of the knowledge unification described in the series." + } + ] + }, + { + "name": "Trevor Pinch", + "aliases": [ + "Trevor Pinch" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "mention_count": 3, + "contexts": [ + { + "file": "01-falsifiability-and-dependence", + "snippet": "Social Constructivism:** The core tension in the philosophy of technology is between those who see technology as an autonomous, self-augmenting force (Ellul, Winner, Arthur) and those who believe social context, human agency, and interpretive flexibility shape technological paths (Pinch, Bijker, Feenberg)." + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "* Trevor Pinch & Wiebe Bijker (SCOT, 1984): Introduced the \"Social Construction of Technology\" framework, emphasizing \"interpretive flexibility\"\u2014that different social groups give different meanings to technologies before they \"stabilize.\"" + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "* Pinch, T." + } + ] + }, + { + "name": "Wiebe Bijker", + "aliases": [ + "Wiebe Bijker" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "mention_count": 3, + "contexts": [ + { + "file": "01-falsifiability-and-dependence", + "snippet": "Social Constructivism:** The core tension in the philosophy of technology is between those who see technology as an autonomous, self-augmenting force (Ellul, Winner, Arthur) and those who believe social context, human agency, and interpretive flexibility shape technological paths (Pinch, Bijker, Feenberg)." + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "* Trevor Pinch & Wiebe Bijker (SCOT, 1984): Introduced the \"Social Construction of Technology\" framework, emphasizing \"interpretive flexibility\"\u2014that different social groups give different meanings to technologies before they \"stabilize.\"" + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "J., & Bijker, W." + } + ] + }, + { + "name": "Frank Tipler", + "aliases": [ + "Frank Tipler" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "mention_count": 3, + "contexts": [ + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "* Omega Point Theory: Teilhard de Chardin and Frank Tipler provide theological and physical frameworks for a cosmic endpoint (Omega Point) that functions as a maximum state of complexity/intelligence, effectively acting as a God-like attractor." + }, + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "Frank Tipler (The Physics of Immortality):* Attempted a physical proof of the Omega Point, claiming the universe must end in a singularity of infinite information processing (effectively an omniscient AI/God) which resurrects the past." + }, + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "* Tipler, F." + } + ] + }, + { + "name": "Huw Price", + "aliases": [ + "Huw Price" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "mention_count": 3, + "contexts": [ + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "Huw Price (Time's Arrow and Archimedes' Point):* Philosopher arguing for \"symmetric\" causality where the future is as significant as the past in determining the present." + }, + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "* Token Price Decay: The cost of \"automated cognition\" is dropping exponentially (roughly 10x per year for equivalent capability)." + }, + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "* Price, H." + } + ] + }, + { + "name": "Emily Bender", + "aliases": [ + "Emily Bender" + ], + "files": [ + "04-knowledge-unification-history" + ], + "mention_count": 3, + "contexts": [ + { + "file": "04-knowledge-unification-history", + "snippet": "*Emily Bender, Timnit Gebru, et al." + }, + { + "file": "04-knowledge-unification-history", + "snippet": "* The Stochastic Parrots Rebuttal (Bender/Gebru): Argues that AI doesn't \"understand\" the connections it makes; it simply predicts the next token." + }, + { + "file": "04-knowledge-unification-history", + "snippet": "* Bender, E." + } + ] + }, + { + "name": "Timnit Gebru", + "aliases": [ + "Timnit Gebru" + ], + "files": [ + "04-knowledge-unification-history" + ], + "mention_count": 3, + "contexts": [ + { + "file": "04-knowledge-unification-history", + "snippet": "*Emily Bender, Timnit Gebru, et al." + }, + { + "file": "04-knowledge-unification-history", + "snippet": "* The Stochastic Parrots Rebuttal (Bender/Gebru): Argues that AI doesn't \"understand\" the connections it makes; it simply predicts the next token." + }, + { + "file": "04-knowledge-unification-history", + "snippet": "M., Gebru, T., et al." + } + ] + }, + { + "name": "Bernard Stiegler", + "aliases": [ + "Bernard Stiegler" + ], + "files": [ + "05-species-identity-transhumanism" + ], + "mention_count": 3, + "contexts": [ + { + "file": "05-species-identity-transhumanism", + "snippet": "Originary Technicity & Natural-Born Cyborgs: Philosophers like Bernard Stiegler and Andy Clark argue that humans have always* been technical beings." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "Bernard Stiegler (Technics and Time, 1994):* Coined \"originary technicity.\" Argues that humanity and technology are co-constitutive." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "The transition from human to AI-integrated posthuman is not a destruction of the species, but a \"compilation.\" Stiegler and Clark prove that the human species was always a human-machine hybrid; AI is just the closing of the loop." + } + ] + }, + { + "name": "Hans Moravec", + "aliases": [ + "Hans Moravec" + ], + "files": [ + "05-species-identity-transhumanism" + ], + "mention_count": 3, + "contexts": [ + { + "file": "05-species-identity-transhumanism", + "snippet": "* The Posthuman Transition: Transhumanists (Bostrom, Kurzweil, Moravec) view the merger with advanced technology as a necessary evolution to overcome biological limitations." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "Hans Moravec (Mind Children, 1988):* Proposed that robots are our evolutionary descendants." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "* The Loss of the Flesh (Hayles/Embodied Cognition): Critics like Hayles argue that Moravec and Kurzweil mistakenly treat information as separate from its substrate." + } + ] + }, + { + "name": "Katherine Hayles", + "aliases": [ + "Katherine Hayles" + ], + "files": [ + "05-species-identity-transhumanism" + ], + "mention_count": 3, + "contexts": [ + { + "file": "05-species-identity-transhumanism", + "snippet": "Critics and critical posthumanists (Haraway, Hayles) warn against discarding the \"flesh\" and emphasize the fluid, non-essentialist nature of identity, cautioning against a digital transcendence that merely replicates the flaws of liberal humanism." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "Katherine Hayles (How We Became Posthuman, 1999):** Critiques the transhumanist fantasy of disembodied information (mind uploading)." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "* The Loss of the Flesh (Hayles/Embodied Cognition): Critics like Hayles argue that Moravec and Kurzweil mistakenly treat information as separate from its substrate." + } + ] + }, + { + "name": "Jonathan Haidt", + "aliases": [ + "Jonathan Haidt" + ], + "files": [ + "06-allegory-warning-pattern" + ], + "mention_count": 3, + "contexts": [ + { + "file": "06-allegory-warning-pattern", + "snippet": "* Sanctity and Taboo: Jonathan Haidt's Moral Foundations Theory (specifically the Sanctity/Degradation foundation) explains why \"forbidden knowledge\" is often coded as a religious or moral taboo\u2014it is a societal immune response against destabilizing change, which is ultimately overwhelmed by the utilitarian benefits of the new technology." + }, + { + "file": "06-allegory-warning-pattern", + "snippet": "Jonathan Haidt (The Righteous Mind):* Developed Moral Foundations Theory." + }, + { + "file": "06-allegory-warning-pattern", + "snippet": "* Haidt, Jonathan." + } + ] + }, + { + "name": "The Franck Report", + "aliases": [ + "The Franck Report" + ], + "files": [ + "06-allegory-warning-pattern" + ], + "mention_count": 3, + "contexts": [ + { + "file": "06-allegory-warning-pattern", + "snippet": "* Oppenheimer & The Franck Report (1945): A real-world case study of the creators of \"forbidden knowledge\" warning humanity about its existential danger, and being structurally ignored by the state machinery." + }, + { + "file": "06-allegory-warning-pattern", + "snippet": "They issue a warning (Franck Report / Pause Giant AI Experiments open letter)." + }, + { + "file": "06-allegory-warning-pattern", + "snippet": "* The Franck Report (1945)." + } + ] + }, + { + "name": "Brooks Stevens", + "aliases": [ + "Brooks Stevens" + ], + "files": [ + "08-engineered-dependencies" + ], + "mention_count": 3, + "contexts": [ + { + "file": "08-engineered-dependencies", + "snippet": "Key mechanisms include functional planned obsolescence (Phoebus Cartel), psychological obsolescence (Brooks Stevens), legal/software locks (John Deere, DMCA), proprietary standards (Microsoft), and biological/genetic patents (Monsanto/Bayer)." + }, + { + "file": "08-engineered-dependencies", + "snippet": "* Brooks Stevens: Industrial designer who popularized \"planned obsolescence\" in 1954, defining it as \"instilling in the buyer the desire to own something a little newer, a little better, a little sooner than is necessary.\"" + }, + { + "file": "08-engineered-dependencies", + "snippet": "* Innovation Driver: Proponents of planned obsolescence (like Brooks Stevens) argue it is a vital economic engine that funds research into the next generation of technology." + } + ] + }, + { + "name": "Brian Dias", + "aliases": [ + "Brian Dias" + ], + "files": [ + "09-neural-plasticity-reversal" + ], + "mention_count": 3, + "contexts": [ + { + "file": "09-neural-plasticity-reversal", + "snippet": "* Transgenerational Implications: Emerging research in epigenetics (Dias & Ressler) suggests that environmental adaptations and behavioral conditioning can leave markers that influence the neural predispositions of subsequent generations, potentially embedding technological dependencies into the \"biological starting point\" of the species." + }, + { + "file": "09-neural-plasticity-reversal", + "snippet": "* Brian Dias (Emory University): Researched transgenerational epigenetic inheritance, showing that learned fears (olfactory) in mice are passed down through DNA methylation, altering the brain structure of offspring." + }, + { + "file": "09-neural-plasticity-reversal", + "snippet": "* Dias, B." + } + ] + }, + { + "name": "Michael Merzenich", + "aliases": [ + "Michael Merzenich" + ], + "files": [ + "09-neural-plasticity-reversal" + ], + "mention_count": 3, + "contexts": [ + { + "file": "09-neural-plasticity-reversal", + "snippet": "Rebuilding lost capabilities requires intensive, adaptive, and repetitive training (Merzenich's \"Soft-Wired\" principles)." + }, + { + "file": "09-neural-plasticity-reversal", + "snippet": "* Michael Merzenich (Soft-Wired): Known as the \"father of neuroplasticity,\" Merzenich demonstrated that the adult brain remains highly plastic." + }, + { + "file": "09-neural-plasticity-reversal", + "snippet": "* Merzenich, M." + } + ] + }, + { + "name": "John Maynard Keynes", + "aliases": [ + "John Maynard Keynes" + ], + "files": [ + "10-post-scarcity-economics" + ], + "mention_count": 3, + "contexts": [ + { + "file": "10-post-scarcity-economics", + "snippet": "* The Keynesian Gap: We have the wealth Keynes predicted for 2030, but not the 15-hour workweek." + }, + { + "file": "10-post-scarcity-economics", + "snippet": "John Maynard Keynes (Economic Possibilities for our Grandchildren, 1930):* The original post-scarcity prediction; correctly guessed wealth levels but failed to account for \"insatiable\" positional desires." + }, + { + "file": "10-post-scarcity-economics", + "snippet": "* Keynes, J." + } + ] + }, + { + "name": "Paul Mason", + "aliases": [ + "Paul Mason" + ], + "files": [ + "10-post-scarcity-economics" + ], + "mention_count": 3, + "contexts": [ + { + "file": "10-post-scarcity-economics", + "snippet": "* The Paradox of Abundance: Capitalism requires scarcity to function (price discovery); when marginal costs hit zero, the market logic fails, leading to either \"PostCapitalism\" (Mason) or \"Fully Automated Luxury Communism\" (Bastani)." + }, + { + "file": "10-post-scarcity-economics", + "snippet": "Paul Mason (PostCapitalism, 2015):* Posits that information goods break the price mechanism because they can be replicated infinitely for free, requiring a new economic structure." + }, + { + "file": "10-post-scarcity-economics", + "snippet": "* Mason, P." + } + ] + }, + { + "name": "Daniel Dennett", + "aliases": [ + "Daniel Dennett" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "mention_count": 3, + "contexts": [ + { + "file": "11-consciousness-hard-problem", + "snippet": "Daniel Dennett (Consciousness Explained, 1991):* Proposes that consciousness is a \"user illusion\" and that \"competence without comprehension\" is the reality of all minds." + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* Dennett\u2019s \"User Illusion\" framework suggests that human consciousness is just a simplified interface for our own internal \"AI.\"" + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* Dennett, D." + } + ] + }, + { + "name": "David Chalmers", + "aliases": [ + "David Chalmers" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "mention_count": 3, + "contexts": [ + { + "file": "11-consciousness-hard-problem", + "snippet": "* The Explanatory Gap: Functional excellence (AI performance) does not address the \"Hard Problem\" (Chalmers) of why processing feels like something." + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "David Chalmers (The Conscious Mind, 1996):* Formulated the \"Hard Problem\" and the \"P-Zombie\" thought experiment." + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* Chalmers, D." + } + ] + }, + { + "name": "Roger Penrose", + "aliases": [ + "Roger Penrose" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "mention_count": 3, + "contexts": [ + { + "file": "11-consciousness-hard-problem", + "snippet": "Roger Penrose & Stuart Hameroff (ORCH-OR): Suggest that consciousness requires non-computable quantum processes, implying that standard digital AI can never* be conscious." + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* The Biological Requirement: Searle and Penrose argue that consciousness requires specific \"causal powers\" of biological matter (or quantum gravity)." + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* Hameroff, S., & Penrose, R." + } + ] + }, + { + "name": "Thomas Nagel", + "aliases": [ + "Thomas Nagel" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "mention_count": 3, + "contexts": [ + { + "file": "11-consciousness-hard-problem", + "snippet": "* Identity Erasure: If identity is tied to subjective experience (Nagel), a singularity that only compiles information effectively erases the species while preserving its \"data.\"" + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* Thomas Nagel (\"What Is It Like to Be a Bat?\", 1974): Argued that subjective experience is irreducible to objective physical descriptions." + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* Nagel, T." + } + ] + }, + { + "name": "Claude Shannon", + "aliases": [ + "Claude Shannon" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "mention_count": 3, + "contexts": [ + { + "file": "12-information-entropy-thermodynamics", + "snippet": "Claude Shannon (A Mathematical Theory of Communication, 1948):* Defined information as the reduction of uncertainty (entropy)." + }, + { + "file": "12-information-entropy-thermodynamics", + "snippet": "* The \"Bogus Analogy\" Critique: Some physicists argue that \"Informational Entropy\" (Shannon) and \"Thermodynamic Entropy\" (Boltzmann) are mathematically similar but physically distinct, and conflating them leads to \"pseudo-profundity.\"" + }, + { + "file": "12-information-entropy-thermodynamics", + "snippet": "* Shannon, C." + } + ] + }, + { + "name": "Yuval Noah Harari", + "aliases": [ + "Yuval Noah Harari" + ], + "files": [ + "14-agricultural-revolution-deep-dive" + ], + "mention_count": 3, + "contexts": [ + { + "file": "14-agricultural-revolution-deep-dive", + "snippet": "While traditionally taught as a \"step forward,\" archaeological and anthropological research (Diamond, Scott, Harari) reveals it as a massive Dependency Ratchet where species-level success (population explosion) was purchased with individual-level decline (health, leisure, equality)." + }, + { + "file": "14-agricultural-revolution-deep-dive", + "snippet": "Yuval Noah Harari (Sapiens, 2011):* Frames the transition as \"History's Biggest Fraud\" and a \"Luxury Trap.\"" + }, + { + "file": "14-agricultural-revolution-deep-dive", + "snippet": "* Harari, Y." + } + ] + }, + { + "name": "Francis Heylighen", + "aliases": [ + "Francis Heylighen" + ], + "files": [ + "15-collective-intelligence" + ], + "mention_count": 3, + "contexts": [ + { + "file": "15-collective-intelligence", + "snippet": "* The Global Brain Hypothesis: Theories by Pierre L\u00e9vy and Francis Heylighen frame the internet as an emerging \"planetary nervous system.\" AI is seen as the \"integration layer\" that enables this system to transition from a mere communication network to a self-organizing, decision-making \"global brain.\"" + }, + { + "file": "15-collective-intelligence", + "snippet": "* Francis Heylighen: Developed the \"Global Brain\" model, viewing the internet as an evolving metasystem transition towards higher-order planetary consciousness." + }, + { + "file": "15-collective-intelligence", + "snippet": "* Heylighen, F." + } + ] + }, + { + "name": "Nikolai Kardashev", + "aliases": [ + "Nikolai Kardashev" + ], + "files": [ + "17-deep-time-existential-risk" + ], + "mention_count": 3, + "contexts": [ + { + "file": "17-deep-time-existential-risk", + "snippet": "* Nikolai Kardashev: Developed the Kardashev Scale (1964) to measure a civilization's energy mastery\u2014a metric for species-level survival capacity." + }, + { + "file": "17-deep-time-existential-risk", + "snippet": "* Kardashev Progress: Humanity is currently at Type 0.73." + }, + { + "file": "17-deep-time-existential-risk", + "snippet": "* Energy Consumption: 18.87 Terawatts (2021 data), placing us at 0.73 on the Sagan-Kardashev scale." + } + ] + }, + { + "name": "Robin Hanson", + "aliases": [ + "Robin Hanson" + ], + "files": [ + "17-deep-time-existential-risk" + ], + "mention_count": 3, + "contexts": [ + { + "file": "17-deep-time-existential-risk", + "snippet": "* Robin Hanson (\"The Great Filter\" / \"Grabby Aliens\"): Framed the Fermi Paradox as a series of \"hard steps\" and competitive expansion dynamics that explain the \"Great Silence.\"" + }, + { + "file": "17-deep-time-existential-risk", + "snippet": "* Grabby Aliens Deadlines: Hanson's model suggests that \"Grabby\" civilizations will soon meet in the middle of the universe." + }, + { + "file": "17-deep-time-existential-risk", + "snippet": "* Hanson, R., et al." + } + ] + }, + { + "name": "Brian Merchant", + "aliases": [ + "Brian Merchant" + ], + "files": [ + "18-luddite-resistance-movements" + ], + "mention_count": 3, + "contexts": [ + { + "file": "18-luddite-resistance-movements", + "snippet": "The Luddite Misconception: Historical research (Merchant, Thompson) proves that the original Luddites were not \"anti-technology.\" They were skilled artisans who used machines themselves but opposed the exploitative* deployment of technology that bypassed labor laws, depressed wages, and destroyed communities." + }, + { + "file": "18-luddite-resistance-movements", + "snippet": "Brian Merchant: Blood in the Machine* (2023)." + }, + { + "file": "18-luddite-resistance-movements", + "snippet": "* Merchant, B." + } + ] + }, + { + "name": "Jerry Mander", + "aliases": [ + "Jerry Mander" + ], + "files": [ + "18-luddite-resistance-movements" + ], + "mention_count": 3, + "contexts": [ + { + "file": "18-luddite-resistance-movements", + "snippet": "Jerry Mander: Four Arguments for the Elimination of Television* (1978)." + }, + { + "file": "18-luddite-resistance-movements", + "snippet": "* Television Saturation: Despite Mander\u2019s \"Four Arguments,\" TV reached 99% of US homes by 1979, illustrating the \"ratchet\" effect of passive media technology." + }, + { + "file": "18-luddite-resistance-movements", + "snippet": "* Mander, J." + } + ] + }, + { + "name": "Daniel Everett", + "aliases": [ + "Daniel Everett" + ], + "files": [ + "19-language-as-technology" + ], + "mention_count": 3, + "contexts": [ + { + "file": "19-language-as-technology", + "snippet": "* The Pirah\u00e3 Counter-Example: Daniel Everett's study of the Pirah\u00e3 language (which lacks exact numbers and recursion) demonstrates that grammatical structures are constrained by cultural tools and priorities (the \"immediacy of experience\")." + }, + { + "file": "19-language-as-technology", + "snippet": "Daniel Everett (Don't Sleep, There Are Snakes, 2008):* Linguist who challenged Chomsky's Universal Grammar by documenting the Pirah\u00e3 language, showing how culture acts as a constraint on grammar (lack of recursion, lack of numbers)." + }, + { + "file": "19-language-as-technology", + "snippet": "* The Pirah\u00e3 Dispute: Chomskyan linguists (like Nevins, Pesetsky, and Rodrigues) fiercely dispute Everett's claim that Pirah\u00e3 lacks recursion, arguing that his data can be parsed differently and that the absence of a feature in a corpus doesn't mean it doesn't exist in the cognitive architecture." + } + ] + }, + { + "name": "Edsger Dijkstra", + "aliases": [ + "Edsger Dijkstra" + ], + "files": [ + "19-language-as-technology" + ], + "mention_count": 3, + "contexts": [ + { + "file": "19-language-as-technology", + "snippet": "Programming languages exhibit the same effect on developers (as Dijkstra famously warned about BASIC)." + }, + { + "file": "19-language-as-technology", + "snippet": "* Edsger Dijkstra: Computer scientist who famously observed that \"a Programming Language is a tool that has profound influence on our thinking habits,\" demonstrating that linguistic relativity applies to artificial languages as well." + }, + { + "file": "19-language-as-technology", + "snippet": "* Dijkstra and BASIC (1975): Dijkstra warned that students exposed to BASIC early on were \"mentally mutilated beyond hope of regeneration.\" The structure of the language (GOTO statements, lack of strict typing) created cognitive habits that ruined their ability to think in structured, object-oriented ways later." + } + ] + }, + { + "name": "Lev Vygotsky", + "aliases": [ + "Lev Vygotsky" + ], + "files": [ + "19-language-as-technology" + ], + "mention_count": 3, + "contexts": [ + { + "file": "19-language-as-technology", + "snippet": "As Lev Vygotsky argued, \"thought comes into existence through words.\"" + }, + { + "file": "19-language-as-technology", + "snippet": "* Lev Vygotsky: Proposed that thought and language merge in childhood." + }, + { + "file": "19-language-as-technology", + "snippet": "* Knowledge Compilation (Paper 008): Vygotsky's \"inner speech\" is the compilation of external social interaction into an internal operating system." + } + ] + }, + { + "name": "Michael Tomasello", + "aliases": [ + "Michael Tomasello" + ], + "files": [ + "19-language-as-technology" + ], + "mention_count": 3, + "contexts": [ + { + "file": "19-language-as-technology", + "snippet": "* Shared Intentionality: Michael Tomasello's research positions language not as an innate, isolated module (Chomskyan Universal Grammar), but as a cultural tool built on top of a uniquely human cognitive trait: \"shared intentionality.\" Language evolved as a coordination tool for collaborative activities." + }, + { + "file": "19-language-as-technology", + "snippet": "Michael Tomasello (The Cultural Origins of Human Cognition, 1999):* Argues that language is a usage-based social tool emerging from \"intention-reading\" and \"pattern-finding,\" driving cumulative cultural evolution (the ratchet effect)." + }, + { + "file": "19-language-as-technology", + "snippet": "Without the ability to share intentionality (Tomasello) and preserve knowledge across generations, the ratchet cannot turn." + } + ] + }, + { + "name": "Chiara Lepora", + "aliases": [ + "Chiara Lepora" + ], + "files": [ + "20-ethics-of-inevitable-harm" + ], + "mention_count": 3, + "contexts": [ + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "Moral responsibility is graded by the essentiality and centrality of one's contribution to the harmful system (Lepora & Goodin)." + }, + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "*Chiara Lepora & Robert E." + }, + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "* Lepora, C., & Goodin, R." + } + ] + }, + { + "name": "Ulrich Beck", + "aliases": [ + "Ulrich Beck" + ], + "files": [ + "20-ethics-of-inevitable-harm" + ], + "mention_count": 3, + "contexts": [ + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "These risks are global, incalculable, and irreversible (Beck, 1986)." + }, + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "Ulrich Beck (Risk Society, 1986):* Argued that modern technology creates \"manufactured risks\" that cannot be insured or compensated, creating a new societal structure based on risk management." + }, + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "* Beck, U." + } + ] + }, + { + "name": "Matthew Crawford", + "aliases": [ + "Matthew Crawford" + ], + "files": [ + "23-attention-economy-cognitive-warfare" + ], + "mention_count": 3, + "contexts": [ + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "Matthew Crawford argues that the \"attentional commons\" is being privatized by platforms that profit from distraction." + }, + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "Matthew Crawford: The World Beyond Your Head* (2015)." + }, + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "* Crawford, M." + } + ] + }, + { + "name": "Shoshana Zuboff", + "aliases": [ + "Shoshana Zuboff" + ], + "files": [ + "23-attention-economy-cognitive-warfare" + ], + "mention_count": 3, + "contexts": [ + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "* Surveillance Capitalism: Shoshana Zuboff\u2019s framework defines the current economic era as one based on the extraction of \"behavioral surplus\"\u2014using human experience as free raw material for prediction and behavior modification." + }, + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "Shoshana Zuboff: The Age of Surveillance Capitalism* (2019)." + }, + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "* Zuboff, S." + } + ] + }, + { + "name": "Kitaro Nishida", + "aliases": [ + "Kitaro Nishida" + ], + "files": [ + "24-eastern-philosophy-ai" + ], + "mention_count": 3, + "contexts": [ + { + "file": "24-eastern-philosophy-ai", + "snippet": "Kitaro Nishida (Kyoto School): Developed the concept of Absolute Nothingness (Zettai-mu*), providing a metaphysical ground where subject and object (human and tool) are unified in a dynamic \"logic of place.\"" + }, + { + "file": "24-eastern-philosophy-ai", + "snippet": "* The Retrocausal Attractor: Nishida's \"logic of place\" frames the singularity as the \"Place of Nothingness\"\u2014the ultimate attractor that is not \"ahead\" in time but is the ground upon which the present self-determines." + }, + { + "file": "24-eastern-philosophy-ai", + "snippet": "* Nishida, K." + } + ] + }, + { + "name": "Martin Seligman", + "aliases": [ + "Martin Seligman" + ], + "files": [ + "25-psychology-of-surrender" + ], + "mention_count": 3, + "contexts": [ + { + "file": "25-psychology-of-surrender", + "snippet": "* The Control-Erosion Paradox: Individuals surrender to dependency not through a single choice, but through a series of \"micro-experiences of uncontrollability\" (Seligman) where digital architectures (infinite scroll, variable rewards) teach the user that active resistance is futile." + }, + { + "file": "25-psychology-of-surrender", + "snippet": "* Martin Seligman (Learned Helplessness): Identified the state of passivity that arises from repeated exposure to uncontrollable events\u2014the psychological blueprint for \"Digital Helplessness.\"" + }, + { + "file": "25-psychology-of-surrender", + "snippet": "* Seligman, M." + } + ] + }, + { + "name": "Vint Cerf", + "aliases": [ + "Vint Cerf" + ], + "files": [ + "27-digital-archaeology-format-death" + ], + "mention_count": 3, + "contexts": [ + { + "file": "27-digital-archaeology-format-death", + "snippet": "* The Digital Dark Age: Vint Cerf warns that we are entering a \"forgotten century.\" Due to \"bit rot\" (media decay) and \"format obsolescence\" (software death), the vast majority of 21st-century data may be unreadable by the 22nd century." + }, + { + "file": "27-digital-archaeology-format-death", + "snippet": "* Vint Cerf: \"Father of the Internet.\" Coined the term \"Digital Dark Age\" and advocates for \"Digital Vellum\"\u2014a way to preserve the entire software/hardware stack." + }, + { + "file": "27-digital-archaeology-format-death", + "snippet": "* Cerf, V." + } + ] + }, + { + "name": "Dedre Gentner", + "aliases": [ + "Dedre Gentner" + ], + "files": [ + "28-neuroscience-of-insight" + ], + "mention_count": 3, + "contexts": [ + { + "file": "28-neuroscience-of-insight", + "snippet": "Structure over Surface: Human insight relies on Structure Mapping Theory* (Gentner)." + }, + { + "file": "28-neuroscience-of-insight", + "snippet": "* Dedre Gentner: \"Structure-Mapping: A Theoretical Framework for Analogy\" (1983)." + }, + { + "file": "28-neuroscience-of-insight", + "snippet": "* Gentner, D." + } + ] + }, + { + "name": "John Kounios", + "aliases": [ + "John Kounios" + ], + "files": [ + "28-neuroscience-of-insight" + ], + "mention_count": 3, + "contexts": [ + { + "file": "28-neuroscience-of-insight", + "snippet": "* The Insight Hub: Neuroscience (Beeman & Kounios) has identified the right anterior superior temporal gyrus (rASTG) as the primary brain region for \"Aha!\" moments." + }, + { + "file": "28-neuroscience-of-insight", + "snippet": "Mark Beeman & John Kounios: The Eureka Factor* (2015)." + }, + { + "file": "28-neuroscience-of-insight", + "snippet": "* Kounios, J., & Beeman, M." + } + ] + }, + { + "name": "Mark Beeman", + "aliases": [ + "Mark Beeman" + ], + "files": [ + "28-neuroscience-of-insight" + ], + "mention_count": 3, + "contexts": [ + { + "file": "28-neuroscience-of-insight", + "snippet": "* The Insight Hub: Neuroscience (Beeman & Kounios) has identified the right anterior superior temporal gyrus (rASTG) as the primary brain region for \"Aha!\" moments." + }, + { + "file": "28-neuroscience-of-insight", + "snippet": "Mark Beeman & John Kounios: The Eureka Factor* (2015)." + }, + { + "file": "28-neuroscience-of-insight", + "snippet": "* Kounios, J., & Beeman, M." + } + ] + }, + { + "name": "Angus Deaton", + "aliases": [ + "Angus Deaton" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "mention_count": 3, + "contexts": [ + { + "file": "30-meaning-crisis-existential", + "snippet": "* Deaths of Despair: Technological displacement is a primary driver of the rise in suicides and overdoses among the less-educated (Case & Deaton), as the \"ratchet\" of technical progress renders their primary sources of meaning (manual and routine work) obsolete." + }, + { + "file": "30-meaning-crisis-existential", + "snippet": "Anne Case & Angus Deaton (Deaths of Despair, 2020):* Linked the decline of stable employment (due to globalization and technology) to a \"collapse of the pillars of life\" for the working class." + }, + { + "file": "30-meaning-crisis-existential", + "snippet": "* Case, A., & Deaton, A." + } + ] + }, + { + "name": "Marie Jahoda", + "aliases": [ + "Marie Jahoda" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "mention_count": 3, + "contexts": [ + { + "file": "30-meaning-crisis-existential", + "snippet": "* The Latent Function Deficit: Employment provides \"latent functions\"\u2014time structure, social contact, collective purpose, and status (Jahoda)." + }, + { + "file": "30-meaning-crisis-existential", + "snippet": "* Marie Jahoda (Deprivation Theory): Identified the non-monetary benefits of work that are lost during automation-driven unemployment." + }, + { + "file": "30-meaning-crisis-existential", + "snippet": "* Jahoda, M." + } + ] + }, + { + "name": "Viktor Frankl", + "aliases": [ + "Viktor Frankl" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "mention_count": 3, + "contexts": [ + { + "file": "30-meaning-crisis-existential", + "snippet": "Widespread AI automation threatens to deprive the species of these psychological essentials, creating an Existential Vacuum (Frankl)." + }, + { + "file": "30-meaning-crisis-existential", + "snippet": "Viktor Frankl (Man's Search for Meaning, 1946):* Argued that the \"Will to Meaning\" is the primary human drive and that meaning can be found through creative work, love, or the attitude taken toward suffering." + }, + { + "file": "30-meaning-crisis-existential", + "snippet": "* Frankl, V." + } + ] + }, + { + "name": "Theodore Wright", + "aliases": [ + "Theodore Wright" + ], + "files": [ + "31-ai-cost-curves-data" + ], + "mention_count": 3, + "contexts": [ + { + "file": "31-ai-cost-curves-data", + "snippet": "* Wright\u2019s Law in Action: The \"learning curve\" for AI inference is significantly faster than Moore's Law." + }, + { + "file": "31-ai-cost-curves-data", + "snippet": "* Theodore Wright: Wright\u2019s Law (1936)." + }, + { + "file": "31-ai-cost-curves-data", + "snippet": "* The Data Wall: Critics argue that as we run out of high-quality human data to train on, the cost of incremental improvement will rise exponentially, potentially breaking Wright\u2019s Law for AI." + } + ] + }, + { + "name": "Evan Risko", + "aliases": [ + "Evan Risko" + ], + "files": [ + "32-cognitive-offloading-studies" + ], + "mention_count": 3, + "contexts": [ + { + "file": "32-cognitive-offloading-studies", + "snippet": "* Evan Risko & Sam Gilbert: \"Cognitive Offloading\" (2016)." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "Adaptive Offloading: Risko & Gilbert argue that offloading is often optimal*." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "* Risko, E." + } + ] + }, + { + "name": "Sam Gilbert", + "aliases": [ + "Sam Gilbert" + ], + "files": [ + "32-cognitive-offloading-studies" + ], + "mention_count": 3, + "contexts": [ + { + "file": "32-cognitive-offloading-studies", + "snippet": "* Evan Risko & Sam Gilbert: \"Cognitive Offloading\" (2016)." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "Adaptive Offloading: Risko & Gilbert argue that offloading is often optimal*." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "F., & Gilbert, S." + } + ] + }, + { + "name": "Our World", + "aliases": [ + "Our World" + ], + "files": [ + "33-technology-adoption-curves" + ], + "mention_count": 3, + "contexts": [ + { + "file": "33-technology-adoption-curves", + "snippet": "* Our World in Data: Provides the definitive historical datasets for US household technology adoption from 1860 to the present." + }, + { + "file": "33-technology-adoption-curves", + "snippet": "| World Wide Web | 1990 | 7 years |" + }, + { + "file": "33-technology-adoption-curves", + "snippet": "* Our World in Data." + } + ] + }, + { + "name": "Ted Chiang", + "aliases": [ + "Ted Chiang" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "mention_count": 3, + "contexts": [ + { + "file": "35-scifi-predictive-philosophy", + "snippet": "The Shift to Compilation: Contemporary works like Greg Egan\u2019s Permutation City and Ted Chiang\u2019s The Lifecycle of Software Objects* move beyond \"robot\" tropes to explore the Ship of Theseus transition\u2014viewing consciousness as information structures and AI as a gradual, developmental process." + }, + { + "file": "35-scifi-predictive-philosophy", + "snippet": "* Ted Chiang (\"The Lifecycle of Software Objects\", 2010): Critiqued the \"born superintelligent\" trope, highlighting the years of \"human training\" and emotional labor required to align a sentient mind." + }, + { + "file": "35-scifi-predictive-philosophy", + "snippet": "* Chiang, T." + } + ] + }, + { + "name": "Karl Popper", + "aliases": [ + "Karl Popper" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "mention_count": 2, + "contexts": [ + { + "file": "01-falsifiability-and-dependence", + "snippet": "Karl Popper (The Logic of Scientific Discovery, 1934):* Established \"falsifiability\" as the criterion for scientific statements." + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "* The Problem of Unfalsifiability (Popper): If every technological failure is labeled a \"fad\" and every success a \"dependency,\" the ratchet thesis is a circular definition." + } + ] + }, + { + "name": "Paul David", + "aliases": [ + "Paul David" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "mention_count": 2, + "contexts": [ + { + "file": "01-falsifiability-and-dependence", + "snippet": "* Paul David (\"Clio and the Economics of QWERTY\", 1985): Popularized \"Path Dependence,\" showing how historical accidents (like the QWERTY layout) can lock in suboptimal standards for decades." + }, + { + "file": "01-falsifiability-and-dependence", + "snippet": "* David, P." + } + ] + }, + { + "name": "Alfred North Whitehead", + "aliases": [ + "Alfred North Whitehead" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "mention_count": 2, + "contexts": [ + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "* Process Metaphysics: Whitehead's \"God as a lure toward novelty\" provides a non-coercive model for how a future attractor influences the creative advance of the universe without violating free will or agency." + }, + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "Alfred North Whitehead (Process and Reality):* Process philosophy where God is a \"lure\" rather than a first cause." + } + ] + }, + { + "name": "E.O. Wilson", + "aliases": [ + "E.O. Wilson" + ], + "files": [ + "04-knowledge-unification-history" + ], + "mention_count": 2, + "contexts": [ + { + "file": "04-knowledge-unification-history", + "snippet": "Wilson (1929\u20132021):* Consilience: The Unity of Knowledge*." + }, + { + "file": "04-knowledge-unification-history", + "snippet": "* Wilson, E." + } + ] + }, + { + "name": "Gottfried Wilhelm Leibniz", + "aliases": [ + "Gottfried Wilhelm Leibniz" + ], + "files": [ + "04-knowledge-unification-history" + ], + "mention_count": 2, + "contexts": [ + { + "file": "04-knowledge-unification-history", + "snippet": "Gottfried Wilhelm Leibniz (1646\u20131716): Characteristica Universalis*." + }, + { + "file": "04-knowledge-unification-history", + "snippet": "* Leibniz and Chinese Ideograms: Leibniz believed Chinese was a \"philosophical language\" that could bypass the fragmentation of spoken words." + } + ] + }, + { + "name": "Vannevar Bush", + "aliases": [ + "Vannevar Bush" + ], + "files": [ + "04-knowledge-unification-history" + ], + "mention_count": 2, + "contexts": [ + { + "file": "04-knowledge-unification-history", + "snippet": "Vannevar Bush (1890\u20131974): As We May Think* (1945)." + }, + { + "file": "04-knowledge-unification-history", + "snippet": "* Bush, V." + } + ] + }, + { + "name": "Richard Dawkins", + "aliases": [ + "Richard Dawkins" + ], + "files": [ + "05-species-identity-transhumanism" + ], + "mention_count": 2, + "contexts": [ + { + "file": "05-species-identity-transhumanism", + "snippet": "* The Extended Phenotype: From an evolutionary biology perspective (Dawkins), human technology is an \"extended phenotype\"\u2014an external manifestation of our genes seeking replication." + }, + { + "file": "05-species-identity-transhumanism", + "snippet": "Richard Dawkins (The Extended Phenotype, 1982):* Argues that the phenotypic effects of a gene extend to the environment and artifacts (e.g., a beaver's dam, human technology)." + } + ] + }, + { + "name": "Joseph Campbell", + "aliases": [ + "Joseph Campbell" + ], + "files": [ + "06-allegory-warning-pattern" + ], + "mention_count": 2, + "contexts": [ + { + "file": "06-allegory-warning-pattern", + "snippet": "Joseph Campbell (The Hero with a Thousand Faces):* Identifies the \"monomyth\" where the hero must cross a threshold (often violating a taboo) to bring back a boon (knowledge/fire) to society." + }, + { + "file": "06-allegory-warning-pattern", + "snippet": "* Campbell, Joseph." + } + ] + }, + { + "name": "Roger Shattuck", + "aliases": [ + "Roger Shattuck" + ], + "files": [ + "06-allegory-warning-pattern" + ], + "mention_count": 2, + "contexts": [ + { + "file": "06-allegory-warning-pattern", + "snippet": "Roger Shattuck (Forbidden Knowledge):* Explores the moral limits of human inquiry from myths to the Manhattan Project." + }, + { + "file": "06-allegory-warning-pattern", + "snippet": "* Shattuck, Roger." + } + ] + }, + { + "name": "Langdon Winner", + "aliases": [ + "Langdon Winner" + ], + "files": [ + "08-engineered-dependencies" + ], + "mention_count": 2, + "contexts": [ + { + "file": "08-engineered-dependencies", + "snippet": "Langdon Winner (The Whale and the Reactor):* Philosophy of technology scholar who argues that technical systems can embody specific forms of power and authority (e.g., \"Do Artifacts Have Politics?\")." + }, + { + "file": "08-engineered-dependencies", + "snippet": "* Winner, L." + } + ] + }, + { + "name": "Vance Packard", + "aliases": [ + "Vance Packard" + ], + "files": [ + "08-engineered-dependencies" + ], + "mention_count": 2, + "contexts": [ + { + "file": "08-engineered-dependencies", + "snippet": "Vance Packard (The Waste Makers, 1960):* Social critic who identified \"obsolescence of desirability\" (psychological) and \"obsolescence of function\" (physical) as tools of consumer manipulation." + }, + { + "file": "08-engineered-dependencies", + "snippet": "* Packard, V." + } + ] + }, + { + "name": "Jeremy Rifkin", + "aliases": [ + "Jeremy Rifkin" + ], + "files": [ + "10-post-scarcity-economics" + ], + "mention_count": 2, + "contexts": [ + { + "file": "10-post-scarcity-economics", + "snippet": "Jeremy Rifkin (The Zero Marginal Cost Society, 2014):* Argues that the \"Productivity Paradox\" (efficiency undermining profit) forces a shift from a market exchange economy to a \"Collaborative Commons.\"" + }, + { + "file": "10-post-scarcity-economics", + "snippet": "* Rifkin, J." + } + ] + }, + { + "name": "Giulio Tononi", + "aliases": [ + "Giulio Tononi" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "mention_count": 2, + "contexts": [ + { + "file": "11-consciousness-hard-problem", + "snippet": "* Giulio Tononi (Integrated Information Theory): Provides a mathematical metric ($\\Phi$) for consciousness, suggesting it is a fundamental property of integrated systems." + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* Tononi, G." + } + ] + }, + { + "name": "Stuart Hameroff", + "aliases": [ + "Stuart Hameroff" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "mention_count": 2, + "contexts": [ + { + "file": "11-consciousness-hard-problem", + "snippet": "Roger Penrose & Stuart Hameroff (ORCH-OR): Suggest that consciousness requires non-computable quantum processes, implying that standard digital AI can never* be conscious." + }, + { + "file": "11-consciousness-hard-problem", + "snippet": "* Hameroff, S., & Penrose, R." + } + ] + }, + { + "name": "Scott Alexander", + "aliases": [ + "Scott Alexander" + ], + "files": [ + "13-game-theory-tech-races" + ], + "mention_count": 2, + "contexts": [ + { + "file": "13-game-theory-tech-races", + "snippet": "Scott Alexander (Meditations on Moloch):* A foundational cultural text describing \"Moloch\" as the systemic force of competitive pressure that leads to suboptimal collective outcomes (arms races, clickbait, environmental collapse)." + }, + { + "file": "13-game-theory-tech-races", + "snippet": "* Alexander, S." + } + ] + }, + { + "name": "Stuart Russell", + "aliases": [ + "Stuart Russell" + ], + "files": [ + "13-game-theory-tech-races" + ], + "mention_count": 2, + "contexts": [ + { + "file": "13-game-theory-tech-races", + "snippet": "Stuart Russell (Human Compatible):* Describes the \"Racing to the Precipice\" dynamic where the economic value of AI ($10T+) makes it impossible for any single corporation to stop without being replaced." + }, + { + "file": "13-game-theory-tech-races", + "snippet": "* Russell, S." + } + ] + }, + { + "name": "Thomas Schelling", + "aliases": [ + "Thomas Schelling" + ], + "files": [ + "13-game-theory-tech-races" + ], + "mention_count": 2, + "contexts": [ + { + "file": "13-game-theory-tech-races", + "snippet": "Thomas Schelling (The Strategy of Conflict):* Nobel-winning game theorist whose work on nuclear deterrence and \"focal points\" provides the framework for why international AI treaties are so difficult to verify." + }, + { + "file": "13-game-theory-tech-races", + "snippet": "* Schelling, T." + } + ] + }, + { + "name": "Mark Nathan Cohen", + "aliases": [ + "Mark Nathan Cohen" + ], + "files": [ + "14-agricultural-revolution-deep-dive" + ], + "mention_count": 2, + "contexts": [ + { + "file": "14-agricultural-revolution-deep-dive", + "snippet": "Mark Nathan Cohen (Paleopathology at the Origins of Agriculture, 1984):* Documented the global trend of declining health in early farmers." + }, + { + "file": "14-agricultural-revolution-deep-dive", + "snippet": "* Cohen, M." + } + ] + }, + { + "name": "James Surowiecki", + "aliases": [ + "James Surowiecki" + ], + "files": [ + "15-collective-intelligence" + ], + "mention_count": 2, + "contexts": [ + { + "file": "15-collective-intelligence", + "snippet": "James Surowiecki: The Wisdom of Crowds* (2004)." + }, + { + "file": "15-collective-intelligence", + "snippet": "* Surowiecki, J." + } + ] + }, + { + "name": "Marco Dorigo", + "aliases": [ + "Marco Dorigo" + ], + "files": [ + "15-collective-intelligence" + ], + "mention_count": 2, + "contexts": [ + { + "file": "15-collective-intelligence", + "snippet": "* Marco Dorigo: Developed Ant Colony Optimization (ACO)." + }, + { + "file": "15-collective-intelligence", + "snippet": "* Dorigo, M., & St\u00fctzle, T." + } + ] + }, + { + "name": "Thomas Seeley", + "aliases": [ + "Thomas Seeley" + ], + "files": [ + "15-collective-intelligence" + ], + "mention_count": 2, + "contexts": [ + { + "file": "15-collective-intelligence", + "snippet": "Thomas Seeley: Honeybee Democracy* (2010)." + }, + { + "file": "15-collective-intelligence", + "snippet": "* Seeley, T." + } + ] + }, + { + "name": "Calestous Juma", + "aliases": [ + "Calestous Juma" + ], + "files": [ + "18-luddite-resistance-movements" + ], + "mention_count": 2, + "contexts": [ + { + "file": "18-luddite-resistance-movements", + "snippet": "Calestous Juma: Innovation and Its Enemies* (2016)." + }, + { + "file": "18-luddite-resistance-movements", + "snippet": "* Juma, C." + } + ] + }, + { + "name": "E.F. Schumacher", + "aliases": [ + "E.F. Schumacher" + ], + "files": [ + "18-luddite-resistance-movements" + ], + "mention_count": 2, + "contexts": [ + { + "file": "18-luddite-resistance-movements", + "snippet": "Schumacher:* Small Is Beautiful* (1973)." + }, + { + "file": "18-luddite-resistance-movements", + "snippet": "* Schumacher, E." + } + ] + }, + { + "name": "Plato", + "aliases": [ + "Plato" + ], + "files": [ + "18-luddite-resistance-movements" + ], + "mention_count": 2, + "contexts": [ + { + "file": "18-luddite-resistance-movements", + "snippet": "Plato (Socrates): Phaedrus*." + }, + { + "file": "18-luddite-resistance-movements", + "snippet": "* Plato." + } + ] + }, + { + "name": "Albert Lord", + "aliases": [ + "Albert Lord" + ], + "files": [ + "19-language-as-technology" + ], + "mention_count": 2, + "contexts": [ + { + "file": "19-language-as-technology", + "snippet": "Parry and Lord's work on the Homeric tradition shows that oral cultures used complex, formulaic, rhythm-based \"technology\" to store vast amounts of information in biological memory\u2014a capacity that atrophied once writing became the dominant infrastructure." + }, + { + "file": "19-language-as-technology", + "snippet": "Milman Parry & Albert Lord (The Singer of Tales, 1960): Discovered \"oral-formulaic composition,\" proving that epic poetry like the Iliad* was not written, but improvised using an extensive mental database of linguistic formulas\u2014a distinct mnemonic technology." + } + ] + }, + { + "name": "Milman Parry", + "aliases": [ + "Milman Parry" + ], + "files": [ + "19-language-as-technology" + ], + "mention_count": 2, + "contexts": [ + { + "file": "19-language-as-technology", + "snippet": "Parry and Lord's work on the Homeric tradition shows that oral cultures used complex, formulaic, rhythm-based \"technology\" to store vast amounts of information in biological memory\u2014a capacity that atrophied once writing became the dominant infrastructure." + }, + { + "file": "19-language-as-technology", + "snippet": "Milman Parry & Albert Lord (The Singer of Tales, 1960): Discovered \"oral-formulaic composition,\" proving that epic poetry like the Iliad* was not written, but improvised using an extensive mental database of linguistic formulas\u2014a distinct mnemonic technology." + } + ] + }, + { + "name": "Achille Mbembe", + "aliases": [ + "Achille Mbembe" + ], + "files": [ + "24-eastern-philosophy-ai" + ], + "mention_count": 2, + "contexts": [ + { + "file": "24-eastern-philosophy-ai", + "snippet": "* Achille Mbembe: African philosopher who explores \"necropolitics\" and how computational power can either replicate colonial structures or be repurposed for \"planetary thinking.\"" + }, + { + "file": "24-eastern-philosophy-ai", + "snippet": "* Mbembe, A." + } + ] + }, + { + "name": "Edward Deci", + "aliases": [ + "Edward Deci" + ], + "files": [ + "25-psychology-of-surrender" + ], + "mention_count": 2, + "contexts": [ + { + "file": "25-psychology-of-surrender", + "snippet": "* Edward Deci & Richard Ryan (Self-Determination Theory): Developed the framework for understanding how external dependencies undermine intrinsic human motivation." + }, + { + "file": "25-psychology-of-surrender", + "snippet": "* Deci, E." + } + ] + }, + { + "name": "Justin Kruger", + "aliases": [ + "Justin Kruger" + ], + "files": [ + "25-psychology-of-surrender" + ], + "mention_count": 2, + "contexts": [ + { + "file": "25-psychology-of-surrender", + "snippet": "* Justin Kruger (The Effort Heuristic): Demonstrated that humans use \"effort\" as a proxy for \"quality,\" explaining why the effortless nature of AI requires \"illusion of labor\" to be valued." + }, + { + "file": "25-psychology-of-surrender", + "snippet": "* Kruger, J., et al." + } + ] + }, + { + "name": "Richard Ryan", + "aliases": [ + "Richard Ryan" + ], + "files": [ + "25-psychology-of-surrender" + ], + "mention_count": 2, + "contexts": [ + { + "file": "25-psychology-of-surrender", + "snippet": "* Edward Deci & Richard Ryan (Self-Determination Theory): Developed the framework for understanding how external dependencies undermine intrinsic human motivation." + }, + { + "file": "25-psychology-of-surrender", + "snippet": "L., & Ryan, R." + } + ] + }, + { + "name": "Brewster Kahle", + "aliases": [ + "Brewster Kahle" + ], + "files": [ + "27-digital-archaeology-format-death" + ], + "mention_count": 2, + "contexts": [ + { + "file": "27-digital-archaeology-format-death", + "snippet": "* Brewster Kahle: Founder of the Internet Archive." + }, + { + "file": "27-digital-archaeology-format-death", + "snippet": "* Kahle, B." + } + ] + }, + { + "name": "Stewart Brand", + "aliases": [ + "Stewart Brand" + ], + "files": [ + "27-digital-archaeology-format-death" + ], + "mention_count": 2, + "contexts": [ + { + "file": "27-digital-archaeology-format-death", + "snippet": "* Stewart Brand: Co-founder of the Long Now Foundation." + }, + { + "file": "27-digital-archaeology-format-death", + "snippet": "* Brand, S." + } + ] + }, + { + "name": "Arthur Koestler", + "aliases": [ + "Arthur Koestler" + ], + "files": [ + "28-neuroscience-of-insight" + ], + "mention_count": 2, + "contexts": [ + { + "file": "28-neuroscience-of-insight", + "snippet": "Arthur Koestler: The Act of Creation* (1964)." + }, + { + "file": "28-neuroscience-of-insight", + "snippet": "* Koestler, A." + } + ] + }, + { + "name": "Amy Orben", + "aliases": [ + "Amy Orben" + ], + "files": [ + "32-cognitive-offloading-studies" + ], + "mention_count": 2, + "contexts": [ + { + "file": "32-cognitive-offloading-studies", + "snippet": "* Amy Orben & Andrew Przybylski: Large-scale data analysis (2019) on screen time and well-being." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "* The \"Small Effects\" Argument: Orben & Przybylski\u2019s analysis of 350,000+ adolescents found that the correlation between technology use and mental health is roughly equivalent to the correlation between \"eating potatoes\" and mental health." + } + ] + }, + { + "name": "Andrew Przybylski", + "aliases": [ + "Andrew Przybylski" + ], + "files": [ + "32-cognitive-offloading-studies" + ], + "mention_count": 2, + "contexts": [ + { + "file": "32-cognitive-offloading-studies", + "snippet": "* Amy Orben & Andrew Przybylski: Large-scale data analysis (2019) on screen time and well-being." + }, + { + "file": "32-cognitive-offloading-studies", + "snippet": "* The \"Small Effects\" Argument: Orben & Przybylski\u2019s analysis of 350,000+ adolescents found that the correlation between technology use and mental health is roughly equivalent to the correlation between \"eating potatoes\" and mental health." + } + ] + }, + { + "name": "Geoffrey Moore", + "aliases": [ + "Geoffrey Moore" + ], + "files": [ + "33-technology-adoption-curves" + ], + "mention_count": 2, + "contexts": [ + { + "file": "33-technology-adoption-curves", + "snippet": "Geoffrey Moore: Crossing the Chasm* (1991)." + }, + { + "file": "33-technology-adoption-curves", + "snippet": "* Moore, G." + } + ] + }, + { + "name": "Terrence Deacon", + "aliases": [ + "Terrence Deacon" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "mention_count": 1, + "contexts": [ + { + "file": "03-retrocausality-teleology-recursion", + "snippet": "Terrence Deacon (Incomplete Nature):* Explores \"teleodynamics\"\u2014how systems can be organized around \"absential\" features (goals or future states that don't yet exist)." + } + ] + }, + { + "name": "Callimachus", + "aliases": [ + "Callimachus" + ], + "files": [ + "04-knowledge-unification-history" + ], + "mention_count": 1, + "contexts": [ + { + "file": "04-knowledge-unification-history", + "snippet": "*Callimachus (c." + } + ] + }, + { + "name": "HunaynibnIshaq", + "aliases": [ + "HunaynibnIshaq" + ], + "files": [ + "04-knowledge-unification-history" + ], + "mention_count": 1, + "contexts": [ + { + "file": "04-knowledge-unification-history", + "snippet": "Listed in 04-knowledge-unification-history" + } + ] + }, + { + "name": "Barry Dainton", + "aliases": [ + "Barry Dainton" + ], + "files": [ + "07-simulation-hypothesis-compilation" + ], + "mention_count": 1, + "contexts": [ + { + "file": "07-simulation-hypothesis-compilation", + "snippet": "* Barry Dainton: Modified Bostrom's argument to focus on \"neural ancestor simulations,\" emphasizing the subjective experience indistinguishable from base reality." + } + ] + }, + { + "name": "Douglas Puffert", + "aliases": [ + "Douglas Puffert" + ], + "files": [ + "08-engineered-dependencies" + ], + "mention_count": 1, + "contexts": [ + { + "file": "08-engineered-dependencies", + "snippet": "* Douglas Puffert: Economic historian who documented the path dependence of railway gauges, showing how early suboptimal choices become permanent through network effects." + } + ] + }, + { + "name": "DahmaniandBohbot", + "aliases": [ + "DahmaniandBohbot" + ], + "files": [ + "09-neural-plasticity-reversal" + ], + "mention_count": 1, + "contexts": [ + { + "file": "09-neural-plasticity-reversal", + "snippet": "Listed in 09-neural-plasticity-reversal" + } + ] + }, + { + "name": "Nicholas Carr", + "aliases": [ + "Nicholas Carr" + ], + "files": [ + "09-neural-plasticity-reversal" + ], + "mention_count": 1, + "contexts": [ + { + "file": "09-neural-plasticity-reversal", + "snippet": "* Nicholas Carr (The Shallows): Synthesized early research on how internet use and hyperlinking encourage \"shallow\" processing and fragment attention, leading to physical changes in neural pathways." + } + ] + }, + { + "name": "ErwinSchrdinger", + "aliases": [ + "ErwinSchrdinger" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "mention_count": 1, + "contexts": [ + { + "file": "12-information-entropy-thermodynamics", + "snippet": "Listed in 12-information-entropy-thermodynamics" + } + ] + }, + { + "name": "Ilya Prigogine", + "aliases": [ + "Ilya Prigogine" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "mention_count": 1, + "contexts": [ + { + "file": "12-information-entropy-thermodynamics", + "snippet": "* Ilya Prigogine (1977 Nobel): Developed the theory of Dissipative Structures, explaining how complex order emerges far from equilibrium." + } + ] + }, + { + "name": "JamesCScott", + "aliases": [ + "JamesCScott" + ], + "files": [ + "14-agricultural-revolution-deep-dive" + ], + "mention_count": 1, + "contexts": [ + { + "file": "14-agricultural-revolution-deep-dive", + "snippet": "Listed in 14-agricultural-revolution-deep-dive" + } + ] + }, + { + "name": "Klaus Schmidt", + "aliases": [ + "Klaus Schmidt" + ], + "files": [ + "14-agricultural-revolution-deep-dive" + ], + "mention_count": 1, + "contexts": [ + { + "file": "14-agricultural-revolution-deep-dive", + "snippet": "* Klaus Schmidt: Lead archaeologist of G\u00f6bekli Tepe; proposed that \"first came the temple, then the city.\"" + } + ] + }, + { + "name": "EricSRaymond", + "aliases": [ + "EricSRaymond" + ], + "files": [ + "15-collective-intelligence" + ], + "mention_count": 1, + "contexts": [ + { + "file": "15-collective-intelligence", + "snippet": "Listed in 15-collective-intelligence" + } + ] + }, + { + "name": "PierreLvy", + "aliases": [ + "PierreLvy" + ], + "files": [ + "15-collective-intelligence" + ], + "mention_count": 1, + "contexts": [ + { + "file": "15-collective-intelligence", + "snippet": "Listed in 15-collective-intelligence" + } + ] + }, + { + "name": "JohnMSmart", + "aliases": [ + "JohnMSmart" + ], + "files": [ + "17-deep-time-existential-risk" + ], + "mention_count": 1, + "contexts": [ + { + "file": "17-deep-time-existential-risk", + "snippet": "Listed in 17-deep-time-existential-risk" + } + ] + }, + { + "name": "Max More", + "aliases": [ + "Max More" + ], + "files": [ + "20-ethics-of-inevitable-harm" + ], + "mention_count": 1, + "contexts": [ + { + "file": "20-ethics-of-inevitable-harm", + "snippet": "* Max More (The Proactionary Principle): Argued that the precautionary principle is a \"suicide pact\" for progress and that humanity has a moral obligation to innovate." + } + ] + }, + { + "name": "B.J. Fogg", + "aliases": [ + "B.J. Fogg" + ], + "files": [ + "23-attention-economy-cognitive-warfare" + ], + "mention_count": 1, + "contexts": [ + { + "file": "23-attention-economy-cognitive-warfare", + "snippet": "Fogg:* Persuasive Technology* (2002)." + } + ] + }, + { + "name": "Li Chenyang", + "aliases": [ + "Li Chenyang" + ], + "files": [ + "24-eastern-philosophy-ai" + ], + "mention_count": 1, + "contexts": [ + { + "file": "24-eastern-philosophy-ai", + "snippet": "* Li Chenyang: A contemporary philosopher applying Confucian \"graded love\" and relationality to the moral status of AI agents." + } + ] + }, + { + "name": "Ngasena", + "aliases": [ + "Ngasena" + ], + "files": [ + "24-eastern-philosophy-ai" + ], + "mention_count": 1, + "contexts": [ + { + "file": "24-eastern-philosophy-ai", + "snippet": "Listed in 24-eastern-philosophy-ai" + } + ] + }, + { + "name": "Oren Lyons", + "aliases": [ + "Oren Lyons" + ], + "files": [ + "24-eastern-philosophy-ai" + ], + "mention_count": 1, + "contexts": [ + { + "file": "24-eastern-philosophy-ai", + "snippet": "* Oren Lyons: Faithkeeper of the Onondaga Nation, representing the \"Seventh Generation\" principle as a non-linear, multi-generational stewardship model." + } + ] + }, + { + "name": "Natasha Dow", + "aliases": [ + "Natasha Dow" + ], + "files": [ + "25-psychology-of-surrender" + ], + "mention_count": 1, + "contexts": [ + { + "file": "25-psychology-of-surrender", + "snippet": "Natasha Dow Sch\u00fcll (Addiction by Design, 2012):* Investigated the \"Machine Zone\"\u2014a state of dissociative absorption sought by users to escape real-world anxieties." + } + ] + }, + { + "name": "John Van Bogart", + "aliases": [ + "John Van Bogart" + ], + "files": [ + "27-digital-archaeology-format-death" + ], + "mention_count": 1, + "contexts": [ + { + "file": "27-digital-archaeology-format-death", + "snippet": "* John Van Bogart: Lead researcher on magnetic media longevity." + } + ] + }, + { + "name": "Randy Buckner", + "aliases": [ + "Randy Buckner" + ], + "files": [ + "28-neuroscience-of-insight" + ], + "mention_count": 1, + "contexts": [ + { + "file": "28-neuroscience-of-insight", + "snippet": "Randy Buckner: Research on the Default Mode Network* (DMN)." + } + ] + }, + { + "name": "Arguedthatasinformationbecomesfreetheeconomymustshifttowardtheproductionanddistributionof", + "aliases": [ + "Arguedthatasinformationbecomesfreetheeconomymustshifttowardtheproductionanddistributionof" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "mention_count": 1, + "contexts": [ + { + "file": "30-meaning-crisis-existential", + "snippet": "Listed in 30-meaning-crisis-existential" + } + ] + }, + { + "name": "Createdthefoundationalframeworkforunderstandingthemoderncrisisofsense-makingemphasizing", + "aliases": [ + "Createdthefoundationalframeworkforunderstandingthemoderncrisisofsense-makingemphasizing" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "mention_count": 1, + "contexts": [ + { + "file": "30-meaning-crisis-existential", + "snippet": "Listed in 30-meaning-crisis-existential" + } + ] + }, + { + "name": "OpenAIAnthropicPricingTeams", + "aliases": [ + "OpenAIAnthropicPricingTeams" + ], + "files": [ + "31-ai-cost-curves-data" + ], + "mention_count": 1, + "contexts": [ + { + "file": "31-ai-cost-curves-data", + "snippet": "Listed in 31-ai-cost-curves-data" + } + ] + }, + { + "name": "IainMBanks", + "aliases": [ + "IainMBanks" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "mention_count": 1, + "contexts": [ + { + "file": "35-scifi-predictive-philosophy", + "snippet": "Listed in 35-scifi-predictive-philosophy" + } + ] + } + ], + "bibliography": [ + { + "title": "Science", + "authors": [ + "Sparrow, B", + "Sparrow, B., Liu, J", + "Wegner, D. M" + ], + "files": [ + "02-cognition-economics-neuroscience", + "09-neural-plasticity-reversal" + ], + "raw_mentions": [ + "Sparrow, B., Liu, J., & Wegner, D. M. (2011). Google effects on memory: Cognitive consequences of having information at our fingertips. Science, 333(6043), 776-778.", + "Sparrow, B., et al. (2011). Google Effects on Memory: Cognitive Consequences of Having Information at Our Fingertips. Science." + ], + "relevance": 6 + }, + { + "title": "PNAS", + "authors": [ + "Maguire, E. A" + ], + "files": [ + "02-cognition-economics-neuroscience", + "09-neural-plasticity-reversal" + ], + "raw_mentions": [ + "Maguire, E. A., et al. (2000). Navigation-related structural change in the hippocampi of taxi drivers. PNAS, 97(8), 4398-4403.", + "Maguire, E. A., et al. (2000). Navigation-related structural change in the hippocampi of taxi drivers. PNAS." + ], + "relevance": 6 + }, + { + "title": "Capturing Sound: How Technology Has Changed Music", + "authors": [ + "Katz, M" + ], + "files": [ + "08-engineered-dependencies", + "21-creativity-dependency" + ], + "raw_mentions": [ + "Katz, M. (2014). Capturing Sound: How Technology Has Changed Music. University of California Press. (For creativity/format dependencies).", + "Katz, M. (2004). Capturing Sound: How Technology Has Changed Music. University of California Press." + ], + "relevance": 6 + }, + { + "title": "The Work of Art in the Age of Mechanical Reproduction", + "authors": [ + "Benjamin, W" + ], + "files": [ + "16-cheating-authenticity-tool-use", + "21-creativity-dependency" + ], + "raw_mentions": [ + "Benjamin, W. (1935). The Work of Art in the Age of Mechanical Reproduction.", + "Benjamin, W. (1935). The Work of Art in the Age of Mechanical Reproduction." + ], + "relevance": 6 + }, + { + "title": "Phaedrus", + "authors": [ + "Plato. Phaedrus. (Socrates' speech on the invention of writing)", + "Plato. Phaedrus. (c. 370 BC)" + ], + "files": [ + "16-cheating-authenticity-tool-use", + "18-luddite-resistance-movements" + ], + "raw_mentions": [ + "Plato. Phaedrus. (Socrates' speech on the invention of writing).", + "Plato. Phaedrus. (c. 370 BC)." + ], + "relevance": 6 + }, + { + "title": "The Precipice: Existential Risk and the Future of Humanity", + "authors": [ + "Ord, T" + ], + "files": [ + "17-deep-time-existential-risk", + "20-ethics-of-inevitable-harm" + ], + "raw_mentions": [ + "Ord, T. (2020). The Precipice: Existential Risk and the Future of Humanity. Hachette Books.", + "Ord, T. (2020). The Precipice: Existential Risk and the Future of Humanity. Hachette Books." + ], + "relevance": 6 + }, + { + "title": "The Age of Surveillance Capitalism", + "authors": [ + "Zuboff, S" + ], + "files": [ + "23-attention-economy-cognitive-warfare", + "29-power-control-ownership" + ], + "raw_mentions": [ + "Zuboff, S. (2019). The Age of Surveillance Capitalism. PublicAffairs.", + "Zuboff, S. (2019). The Age of Surveillance Capitalism. PublicAffairs." + ], + "relevance": 6 + }, + { + "title": "The Technological Society", + "authors": [ + "Ellul, J" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "raw_mentions": [ + "Ellul, J. (1964). The Technological Society. Knopf." + ], + "relevance": 3 + }, + { + "title": "Competing Technologies, Increasing Returns, and Lock-In by Historical Events", + "authors": [ + "Arthur, W. B" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "raw_mentions": [ + "Arthur, W. B. (1989). \"Competing Technologies, Increasing Returns, and Lock-In by Historical Events\". The Economic Journal." + ], + "relevance": 3 + }, + { + "title": "The Nature of Technology: What it is and How it Evolves", + "authors": [ + "Arthur, W. B" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "raw_mentions": [ + "Arthur, W. B. (2009). The Nature of Technology: What it is and How it Evolves. Free Press." + ], + "relevance": 3 + }, + { + "title": "Clio and the Economics of QWERTY", + "authors": [ + "David, P. A" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "raw_mentions": [ + "David, P. A. (1985). \"Clio and the Economics of QWERTY\". The American Economic Review." + ], + "relevance": 3 + }, + { + "title": "Critical Theory of Technology", + "authors": [ + "Feenberg, A" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "raw_mentions": [ + "Feenberg, A. (1991). Critical Theory of Technology. Oxford University Press." + ], + "relevance": 3 + }, + { + "title": "The Social Construction of Facts and Artefacts: or How the Sociology of Science and the Sociology of Technology might Benefit Each Other", + "authors": [ + "Bijker, W. E", + "Pinch, T. J" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "raw_mentions": [ + "Pinch, T. J., & Bijker, W. E. (1984). \"The Social Construction of Facts and Artefacts: or How the Sociology of Science and the Sociology of Technology might Benefit Each Other\". Social Studies of Science." + ], + "relevance": 3 + }, + { + "title": "Autonomous Technology: Technics-out-of-Control as a Theme in Political Thought", + "authors": [ + "Winner, L" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "raw_mentions": [ + "Winner, L. (1977). Autonomous Technology: Technics-out-of-Control as a Theme in Political Thought. MIT Press." + ], + "relevance": 3 + }, + { + "title": "The Riddle of Amish Culture", + "authors": [ + "Kraybill, D. B" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "raw_mentions": [ + "Kraybill, D. B. (2001). The Riddle of Amish Culture. Johns Hopkins University Press." + ], + "relevance": 3 + }, + { + "title": "The Decline of the Early Ming Navy", + "authors": [ + "Lo, J.-P" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "raw_mentions": [ + "Lo, J.-P. (1958). \"The Decline of the Early Ming Navy\". Oriens Extremus." + ], + "relevance": 3 + }, + { + "title": "The Coal Question", + "authors": [ + "Jevons, W. S" + ], + "files": [ + "01-falsifiability-and-dependence" + ], + "raw_mentions": [ + "Jevons, W. S. (1865). The Coal Question. Macmillan and Co." + ], + "relevance": 3 + }, + { + "title": "The Shallows: What the Internet Is Doing to Our Brains", + "authors": [ + "Carr, N" + ], + "files": [ + "02-cognition-economics-neuroscience" + ], + "raw_mentions": [ + "Carr, N. (2010). The Shallows: What the Internet Is Doing to Our Brains. W.W. Norton & Company." + ], + "relevance": 3 + }, + { + "title": "Trends in Cognitive Sciences", + "authors": [ + "Gilbert, S. J", + "Risko, E. F" + ], + "files": [ + "02-cognition-economics-neuroscience" + ], + "raw_mentions": [ + "Risko, E. F., & Gilbert, S. J. (2016). Cognitive offloading. Trends in Cognitive Sciences, 20(9), 676-688." + ], + "relevance": 3 + }, + { + "title": "Analysis", + "authors": [ + "Chalmers, D", + "Clark, A" + ], + "files": [ + "02-cognition-economics-neuroscience" + ], + "raw_mentions": [ + "Clark, A., & Chalmers, D. (1998). The extended mind. Analysis, 58(1), 7-19." + ], + "relevance": 3 + }, + { + "title": "Journal of Economic Perspectives", + "authors": [ + "Acemoglu, D", + "Restrepo, P" + ], + "files": [ + "02-cognition-economics-neuroscience" + ], + "raw_mentions": [ + "Acemoglu, D., & Restrepo, P. (2019). Automation and new tasks: How technology displaces and reinstates labor. Journal of Economic Perspectives, 33(2), 3-30." + ], + "relevance": 3 + }, + { + "title": "Performing Arts, The Economic Dilemma: A Study of Problems Common to Theater, Opera, Music, and Dance", + "authors": [ + "Baumol, W. J", + "Bowen, W. G" + ], + "files": [ + "02-cognition-economics-neuroscience" + ], + "raw_mentions": [ + "Baumol, W. J., & Bowen, W. G. (1966). Performing Arts, The Economic Dilemma: A Study of Problems Common to Theater, Opera, Music, and Dance. Twentieth Century Fund." + ], + "relevance": 3 + }, + { + "title": "Memory", + "authors": [ + "Stone, S. M", + "Storm, B. C" + ], + "files": [ + "02-cognition-economics-neuroscience" + ], + "raw_mentions": [ + "Storm, B. C., & Stone, S. M. (2016). Using the Internet to access information inflates future use of the Internet to access other information. Memory, 25(6), 717-723." + ], + "relevance": 3 + }, + { + "title": "Information, Physics, Quantum: The Search for Links", + "authors": [ + "Wheeler, J. A" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "raw_mentions": [ + "Wheeler, J. A. (1989). Information, Physics, Quantum: The Search for Links." + ], + "relevance": 3 + }, + { + "title": "The Physics of Immortality", + "authors": [ + "Tipler, F. J" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "raw_mentions": [ + "Tipler, F. J. (1994). The Physics of Immortality." + ], + "relevance": 3 + }, + { + "title": "The Phenomenon of Man", + "authors": [ + "Teilhard de Chardin, P" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "raw_mentions": [ + "Teilhard de Chardin, P. (1955). The Phenomenon of Man." + ], + "relevance": 3 + }, + { + "title": "Time's Arrow and Archimedes' Point", + "authors": [ + "Price, H" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "raw_mentions": [ + "Price, H. (1996). Time's Arrow and Archimedes' Point." + ], + "relevance": 3 + }, + { + "title": "At Home in the Universe", + "authors": [ + "Kauffman, S" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "raw_mentions": [ + "Kauffman, S. (1995). At Home in the Universe." + ], + "relevance": 3 + }, + { + "title": "The Transactional Interpretation of Quantum Mechanics", + "authors": [ + "Cramer, J. G" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "raw_mentions": [ + "Cramer, J. G. (1986). \"The Transactional Interpretation of Quantum Mechanics\". Reviews of Modern Physics." + ], + "relevance": 3 + }, + { + "title": "Are You Living in a Computer Simulation?", + "authors": [ + "Bostrom, N" + ], + "files": [ + "03-retrocausality-teleology-recursion" + ], + "raw_mentions": [ + "Bostrom, N. (2003). \"Are You Living in a Computer Simulation?\". Philosophical Quarterly." + ], + "relevance": 3 + }, + { + "title": "As We May Think", + "authors": [ + "Bush, V" + ], + "files": [ + "04-knowledge-unification-history" + ], + "raw_mentions": [ + "Bush, V. (1945). As We May Think. The Atlantic Monthly." + ], + "relevance": 3 + }, + { + "title": "Consilience: The Unity of Knowledge", + "authors": [ + "Wilson, E. O" + ], + "files": [ + "04-knowledge-unification-history" + ], + "raw_mentions": [ + "Wilson, E. O. (1998). Consilience: The Unity of Knowledge. Knopf." + ], + "relevance": 3 + }, + { + "title": "On the Dangers of Stochastic Parrots: Can Language Models Be Too Big?", + "authors": [ + "Bender, E. M., Gebru, T" + ], + "files": [ + "04-knowledge-unification-history" + ], + "raw_mentions": [ + "Bender, E. M., Gebru, T., et al. (2021). On the Dangers of Stochastic Parrots: Can Language Models Be Too Big?. FAccT '21." + ], + "relevance": 3 + }, + { + "title": "Encyclop\u00e9die, ou dictionnaire raisonn\u00e9 des sciences, des arts et des m\u00e9tiers", + "authors": [ + "Diderot, D" + ], + "files": [ + "04-knowledge-unification-history" + ], + "raw_mentions": [ + "Diderot, D. (1751). Encyclop\u00e9die, ou dictionnaire raisonn\u00e9 des sciences, des arts et des m\u00e9tiers." + ], + "relevance": 3 + }, + { + "title": "The Two Cultures", + "authors": [ + "Snow, C. P" + ], + "files": [ + "04-knowledge-unification-history" + ], + "raw_mentions": [ + "Snow, C. P. (1959). The Two Cultures. Cambridge University Press." + ], + "relevance": 3 + }, + { + "title": "Library: An Unquiet History", + "authors": [ + "Battles, M" + ], + "files": [ + "04-knowledge-unification-history" + ], + "raw_mentions": [ + "Battles, M. (2003). Library: An Unquiet History. W. W. Norton & Company." + ], + "relevance": 3 + }, + { + "title": "The House of Wisdom: How Arabic Science Saved Ancient Knowledge and Gave Us the Renaissance", + "authors": [ + "Al-Khalili, J" + ], + "files": [ + "04-knowledge-unification-history" + ], + "raw_mentions": [ + "Al-Khalili, J. (2010). The House of Wisdom: How Arabic Science Saved Ancient Knowledge and Gave Us the Renaissance. Penguin." + ], + "relevance": 3 + }, + { + "title": "The Hero with a Thousand Faces", + "authors": [ + "Campbell, Joseph. The Hero with a Thousand Faces" + ], + "files": [ + "06-allegory-warning-pattern" + ], + "raw_mentions": [ + "Campbell, Joseph. The Hero with a Thousand Faces (1949)." + ], + "relevance": 3 + }, + { + "title": "Forbidden Knowledge: From Prometheus to Pornography", + "authors": [ + "Shattuck, Roger. Forbidden Knowledge: From Prometheus to Pornography" + ], + "files": [ + "06-allegory-warning-pattern" + ], + "raw_mentions": [ + "Shattuck, Roger. Forbidden Knowledge: From Prometheus to Pornography (1996)." + ], + "relevance": 3 + }, + { + "title": "The Righteous Mind: Why Good People are Divided by Politics and Religion", + "authors": [ + "Haidt, Jonathan. The Righteous Mind: Why Good People are Divided by Politics", + "Religion" + ], + "files": [ + "06-allegory-warning-pattern" + ], + "raw_mentions": [ + "Haidt, Jonathan. The Righteous Mind: Why Good People are Divided by Politics and Religion (2012)." + ], + "relevance": 3 + }, + { + "title": "Frankenstein; or, The Modern Prometheus", + "authors": [ + "Shelley, Mary. Frankenstein", + "or, The Modern Prometheus" + ], + "files": [ + "06-allegory-warning-pattern" + ], + "raw_mentions": [ + "Shelley, Mary. Frankenstein; or, The Modern Prometheus (1818)." + ], + "relevance": 3 + }, + { + "title": "The Book of Enoch", + "authors": [ + "The Book of Enoch (Apocrypha)" + ], + "files": [ + "06-allegory-warning-pattern" + ], + "raw_mentions": [ + "The Book of Enoch (Apocrypha)." + ], + "relevance": 3 + }, + { + "title": "The Franck Report (1945).", + "authors": [ + "The Franck Report" + ], + "files": [ + "06-allegory-warning-pattern" + ], + "raw_mentions": [ + "The Franck Report (1945)." + ], + "relevance": 3 + }, + { + "title": "The Waste Makers", + "authors": [ + "Packard, V" + ], + "files": [ + "08-engineered-dependencies" + ], + "raw_mentions": [ + "Packard, V. (1960). The Waste Makers. David McKay Co." + ], + "relevance": 3 + }, + { + "title": "Ending the Depression Through Planned Obsolescence", + "authors": [ + "London, B" + ], + "files": [ + "08-engineered-dependencies" + ], + "raw_mentions": [ + "London, B. (1932). Ending the Depression Through Planned Obsolescence. (The original proposal for government-mandated obsolescence)." + ], + "relevance": 3 + }, + { + "title": "The Whale and the Reactor: A Search for Limits in an Age of High Technology", + "authors": [ + "Winner, L" + ], + "files": [ + "08-engineered-dependencies" + ], + "raw_mentions": [ + "Winner, L. (1986). The Whale and the Reactor: A Search for Limits in an Age of High Technology. University of Chicago Press." + ], + "relevance": 3 + }, + { + "title": "Nixing the Fix: An FTC Report to Congress on Repair Restrictions", + "authors": [ + "FTC Report" + ], + "files": [ + "08-engineered-dependencies" + ], + "raw_mentions": [ + "FTC Report (2021). Nixing the Fix: An FTC Report to Congress on Repair Restrictions." + ], + "relevance": 3 + }, + { + "title": "Bowman v. Monsanto Co.", + "authors": [ + "Bowman v. Monsanto Co., 569 U.S. 278" + ], + "files": [ + "08-engineered-dependencies" + ], + "raw_mentions": [ + "Bowman v. Monsanto Co., 569 U.S. 278 (2013)." + ], + "relevance": 3 + }, + { + "title": "Scientific Reports", + "authors": [ + "Bohbot, V. D", + "Dahmani, L" + ], + "files": [ + "09-neural-plasticity-reversal" + ], + "raw_mentions": [ + "Dahmani, L., & Bohbot, V. D. (2020). Habitual use of GPS negatively impacts spatial memory during self-guided navigation. Scientific Reports." + ], + "relevance": 3 + }, + { + "title": "Soft-Wired: How the New Science of Brain Plasticity Can Change Your Life", + "authors": [ + "Merzenich, M" + ], + "files": [ + "09-neural-plasticity-reversal" + ], + "raw_mentions": [ + "Merzenich, M. (2013). Soft-Wired: How the New Science of Brain Plasticity Can Change Your Life." + ], + "relevance": 3 + }, + { + "title": "Psychological Science", + "authors": [ + "Mueller, P. A", + "Oppenheimer, D. M" + ], + "files": [ + "09-neural-plasticity-reversal" + ], + "raw_mentions": [ + "Mueller, P. A., & Oppenheimer, D. M. (2014). The Pen Is Mightier Than the Keyboard. Psychological Science." + ], + "relevance": 3 + }, + { + "title": "Nature Neuroscience", + "authors": [ + "Dias, B. G", + "Ressler, K. J" + ], + "files": [ + "09-neural-plasticity-reversal" + ], + "raw_mentions": [ + "Dias, B. G., & Ressler, K. J. (2014). Parental olfactory experience influences behavior and neural structure in subsequent generations. Nature Neuroscience." + ], + "relevance": 3 + }, + { + "title": "The Zero Marginal Cost Society", + "authors": [ + "Rifkin, J" + ], + "files": [ + "10-post-scarcity-economics" + ], + "raw_mentions": [ + "Rifkin, J. (2014). The Zero Marginal Cost Society. Palgrave Macmillan." + ], + "relevance": 3 + }, + { + "title": "PostCapitalism: A Guide to Our Future", + "authors": [ + "Mason, P" + ], + "files": [ + "10-post-scarcity-economics" + ], + "raw_mentions": [ + "Mason, P. (2015). PostCapitalism: A Guide to Our Future. Allen Lane." + ], + "relevance": 3 + }, + { + "title": "Fully Automated Luxury Communism", + "authors": [ + "Bastani, A" + ], + "files": [ + "10-post-scarcity-economics" + ], + "raw_mentions": [ + "Bastani, A. (2019). Fully Automated Luxury Communism. Verso." + ], + "relevance": 3 + }, + { + "title": "Bullshit Jobs: A Theory", + "authors": [ + "Graeber, D" + ], + "files": [ + "10-post-scarcity-economics" + ], + "raw_mentions": [ + "Graeber, D. (2018). Bullshit Jobs: A Theory. Simon & Schuster." + ], + "relevance": 3 + }, + { + "title": "The economic potential of generative AI: The next productivity frontier.", + "authors": [ + "McKinsey Global Institute" + ], + "files": [ + "10-post-scarcity-economics" + ], + "raw_mentions": [ + "McKinsey Global Institute (2023). \"The economic potential of generative AI: The next productivity frontier.\"" + ], + "relevance": 3 + }, + { + "title": "Economic Possibilities for our Grandchildren.", + "authors": [ + "Keynes, J. M" + ], + "files": [ + "10-post-scarcity-economics" + ], + "raw_mentions": [ + "Keynes, J. M. (1930). \"Economic Possibilities for our Grandchildren.\"" + ], + "relevance": 3 + }, + { + "title": "The Conscious Mind: In Search of a Fundamental Theory", + "authors": [ + "Chalmers, D" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "raw_mentions": [ + "Chalmers, D. (1996). The Conscious Mind: In Search of a Fundamental Theory. Oxford University Press." + ], + "relevance": 3 + }, + { + "title": "What Is It Like to Be a Bat?", + "authors": [ + "Nagel, T" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "raw_mentions": [ + "Nagel, T. (1974). \"What Is It Like to Be a Bat?\". Philosophical Review." + ], + "relevance": 3 + }, + { + "title": "Consciousness Explained", + "authors": [ + "Dennett, D" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "raw_mentions": [ + "Dennett, D. (1991). Consciousness Explained. Little, Brown." + ], + "relevance": 3 + }, + { + "title": "Minds, Brains, and Programs.", + "authors": [ + "Searle, J" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "raw_mentions": [ + "Searle, J. (1980). \"Minds, Brains, and Programs.\" Behavioral and Brain Sciences." + ], + "relevance": 3 + }, + { + "title": "An information integration theory of consciousness.", + "authors": [ + "Tononi, G" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "raw_mentions": [ + "Tononi, G. (2004). \"An information integration theory of consciousness.\" BMC Neuroscience." + ], + "relevance": 3 + }, + { + "title": "Consciousness in the universe: A review of the \u2018Orch OR\u2019 theory.", + "authors": [ + "Hameroff, S", + "Penrose, R" + ], + "files": [ + "11-consciousness-hard-problem" + ], + "raw_mentions": [ + "Hameroff, S., & Penrose, R. (2014). \"Consciousness in the universe: A review of the \u2018Orch OR\u2019 theory.\" Physics of Life Reviews." + ], + "relevance": 3 + }, + { + "title": "A Mathematical Theory of Communication.", + "authors": [ + "Shannon, C. E" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "raw_mentions": [ + "Shannon, C. E. (1948). \"A Mathematical Theory of Communication.\" Bell System Technical Journal." + ], + "relevance": 3 + }, + { + "title": "Irreversibility and Heat Generation in the Computing Process.", + "authors": [ + "Landauer, R" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "raw_mentions": [ + "Landauer, R. (1961). \"Irreversibility and Heat Generation in the Computing Process.\" IBM Journal of Research and Development." + ], + "relevance": 3 + }, + { + "title": "What Is Life?", + "authors": [ + "Schr\u00f6dinger, E" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "raw_mentions": [ + "Schr\u00f6dinger, E. (1944). What Is Life?. Cambridge University Press." + ], + "relevance": 3 + }, + { + "title": "Programming the Universe", + "authors": [ + "Lloyd, S" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "raw_mentions": [ + "Lloyd, S. (2006). Programming the Universe. Knopf." + ], + "relevance": 3 + }, + { + "title": "Statistical physics of self-replication.", + "authors": [ + "England, J. L" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "raw_mentions": [ + "England, J. L. (2013). \"Statistical physics of self-replication.\" Journal of Chemical Physics." + ], + "relevance": 3 + }, + { + "title": "The free-energy principle: a unified brain theory?", + "authors": [ + "Friston, K" + ], + "files": [ + "12-information-entropy-thermodynamics" + ], + "raw_mentions": [ + "Friston, K. (2010). \"The free-energy principle: a unified brain theory?\". Nature Reviews Neuroscience." + ], + "relevance": 3 + }, + { + "title": "The Vulnerable World Hypothesis.", + "authors": [ + "Bostrom, N" + ], + "files": [ + "13-game-theory-tech-races" + ], + "raw_mentions": [ + "Bostrom, N. (2019). \"The Vulnerable World Hypothesis.\" Global Policy." + ], + "relevance": 3 + }, + { + "title": "Human Compatible: AI and the Problem of Control", + "authors": [ + "Russell, S" + ], + "files": [ + "13-game-theory-tech-races" + ], + "raw_mentions": [ + "Russell, S. (2019). Human Compatible: AI and the Problem of Control." + ], + "relevance": 3 + }, + { + "title": "Meditations on Moloch.", + "authors": [ + "Alexander, S" + ], + "files": [ + "13-game-theory-tech-races" + ], + "raw_mentions": [ + "Alexander, S. (2014). \"Meditations on Moloch.\" Slate Star Codex." + ], + "relevance": 3 + }, + { + "title": "The Strategy of Conflict", + "authors": [ + "Schelling, T. C" + ], + "files": [ + "13-game-theory-tech-races" + ], + "raw_mentions": [ + "Schelling, T. C. (1960). The Strategy of Conflict. Harvard University Press." + ], + "relevance": 3 + }, + { + "title": "Gen-AI: Artificial Intelligence and the Future of Work.", + "authors": [ + "IMF" + ], + "files": [ + "13-game-theory-tech-races" + ], + "raw_mentions": [ + "IMF (2024). \"Gen-AI: Artificial Intelligence and the Future of Work.\"" + ], + "relevance": 3 + }, + { + "title": "The AI Paradox: High Investment, Low GDP.", + "authors": [ + "Goldman Sachs Research" + ], + "files": [ + "13-game-theory-tech-races" + ], + "raw_mentions": [ + "Goldman Sachs Research (2025). \"The AI Paradox: High Investment, Low GDP.\"" + ], + "relevance": 3 + }, + { + "title": "The Worst Mistake in the History of the Human Race.", + "authors": [ + "Diamond, J" + ], + "files": [ + "14-agricultural-revolution-deep-dive" + ], + "raw_mentions": [ + "Diamond, J. (1987). \"The Worst Mistake in the History of the Human Race.\" Discover Magazine." + ], + "relevance": 3 + }, + { + "title": "Against the Grain: A Deep History of the Earliest States", + "authors": [ + "Scott, J. C" + ], + "files": [ + "14-agricultural-revolution-deep-dive" + ], + "raw_mentions": [ + "Scott, J. C. (2017). Against the Grain: A Deep History of the Earliest States. Yale University Press." + ], + "relevance": 3 + }, + { + "title": "Sapiens: A Brief History of Humankind", + "authors": [ + "Harari, Y. N" + ], + "files": [ + "14-agricultural-revolution-deep-dive" + ], + "raw_mentions": [ + "Harari, Y. N. (2011). Sapiens: A Brief History of Humankind. Harvill Secker." + ], + "relevance": 3 + }, + { + "title": "Paleopathology at the Origins of Agriculture", + "authors": [ + "Cohen, M. N" + ], + "files": [ + "14-agricultural-revolution-deep-dive" + ], + "raw_mentions": [ + "Cohen, M. N. (1984). Paleopathology at the Origins of Agriculture. Academic Press." + ], + "relevance": 3 + }, + { + "title": "Stature and robusticity during the agricultural transition.", + "authors": [ + "Mummert, A" + ], + "files": [ + "14-agricultural-revolution-deep-dive" + ], + "raw_mentions": [ + "Mummert, A., et al. (2011). \"Stature and robusticity during the agricultural transition.\" Economics & Human Biology." + ], + "relevance": 3 + }, + { + "title": "Honeybee Democracy", + "authors": [ + "Seeley, T. D" + ], + "files": [ + "15-collective-intelligence" + ], + "raw_mentions": [ + "Seeley, T. D. (2010). Honeybee Democracy. Princeton University Press." + ], + "relevance": 3 + }, + { + "title": "Ant Colony Optimization", + "authors": [ + "Dorigo, M", + "St\u00fctzle, T" + ], + "files": [ + "15-collective-intelligence" + ], + "raw_mentions": [ + "Dorigo, M., & St\u00fctzle, T. (2004). Ant Colony Optimization. MIT Press." + ], + "relevance": 3 + }, + { + "title": "The Wisdom of Crowds", + "authors": [ + "Surowiecki, J" + ], + "files": [ + "15-collective-intelligence" + ], + "raw_mentions": [ + "Surowiecki, J. (2004). The Wisdom of Crowds. Doubleday." + ], + "relevance": 3 + }, + { + "title": "Collective Intelligence: Mankind's Emerging World in Cyberspace", + "authors": [ + "L\u00e9vy, P" + ], + "files": [ + "15-collective-intelligence" + ], + "raw_mentions": [ + "L\u00e9vy, P. (1997). Collective Intelligence: Mankind's Emerging World in Cyberspace. Plenum." + ], + "relevance": 3 + }, + { + "title": "The Global Brain as a New Utopia and Dystopia.", + "authors": [ + "Heylighen, F" + ], + "files": [ + "15-collective-intelligence" + ], + "raw_mentions": [ + "Heylighen, F. (2011). \"The Global Brain as a New Utopia and Dystopia.\" CLEA." + ], + "relevance": 3 + }, + { + "title": "The Question Concerning Technology", + "authors": [ + "Heidegger, M" + ], + "files": [ + "16-cheating-authenticity-tool-use" + ], + "raw_mentions": [ + "Heidegger, M. (1954). The Question Concerning Technology." + ], + "relevance": 3 + }, + { + "title": "Understanding Media: The Extensions of Man", + "authors": [ + "McLuhan, M" + ], + "files": [ + "16-cheating-authenticity-tool-use" + ], + "raw_mentions": [ + "McLuhan, M. (1964). Understanding Media: The Extensions of Man." + ], + "relevance": 3 + }, + { + "title": "A Meta-Analysis of the Effects of Calculators on Students' Achievement.", + "authors": [ + "Ellington, A. J" + ], + "files": [ + "16-cheating-authenticity-tool-use" + ], + "raw_mentions": [ + "Ellington, A. J. (2003). \"A Meta-Analysis of the Effects of Calculators on Students' Achievement.\" Journal for Research in Mathematics Education." + ], + "relevance": 3 + }, + { + "title": "Copyright Registration Guidance: Works Containing Material Generated by Artificial Intelligence.", + "authors": [ + "US Copyright Office" + ], + "files": [ + "16-cheating-authenticity-tool-use" + ], + "raw_mentions": [ + "US Copyright Office. (2023). \"Copyright Registration Guidance: Works Containing Material Generated by Artificial Intelligence.\"" + ], + "relevance": 3 + }, + { + "title": "Astronomical Waste: The Opportunity Cost of Delayed Technological Development.", + "authors": [ + "Bostrom, N" + ], + "files": [ + "17-deep-time-existential-risk" + ], + "raw_mentions": [ + "Bostrom, N. (2003). \"Astronomical Waste: The Opportunity Cost of Delayed Technological Development.\" Utilitas." + ], + "relevance": 3 + }, + { + "title": "If Loud Aliens Explain Human Earliness, Quiet Aliens Are Rare.", + "authors": [ + "Hanson, R" + ], + "files": [ + "17-deep-time-existential-risk" + ], + "raw_mentions": [ + "Hanson, R., et al. (2021). \"If Loud Aliens Explain Human Earliness, Quiet Aliens Are Rare.\" The Astrophysical Journal." + ], + "relevance": 3 + }, + { + "title": "Habitable Zones around Main-Sequence Stars: New Estimates.", + "authors": [ + "Kopparapu, R. K" + ], + "files": [ + "17-deep-time-existential-risk" + ], + "raw_mentions": [ + "Kopparapu, R. K., et al. (2014). \"Habitable Zones around Main-Sequence Stars: New Estimates.\" The Astrophysical Journal." + ], + "relevance": 3 + }, + { + "title": "The Transcension Hypothesis.", + "authors": [ + "Smart, J. M" + ], + "files": [ + "17-deep-time-existential-risk" + ], + "raw_mentions": [ + "Smart, J. M. (2011). \"The Transcension Hypothesis.\" Systems." + ], + "relevance": 3 + }, + { + "title": "Blood in the Machine: The Origins of the Rebellion Against Big Tech", + "authors": [ + "Merchant, B" + ], + "files": [ + "18-luddite-resistance-movements" + ], + "raw_mentions": [ + "Merchant, B. (2023). Blood in the Machine: The Origins of the Rebellion Against Big Tech. Little, Brown." + ], + "relevance": 3 + }, + { + "title": "Small Is Beautiful: Economics as if People Mattered", + "authors": [ + "Schumacher, E. F" + ], + "files": [ + "18-luddite-resistance-movements" + ], + "raw_mentions": [ + "Schumacher, E. F. (1973). Small Is Beautiful: Economics as if People Mattered. Harper & Row." + ], + "relevance": 3 + }, + { + "title": "Four Arguments for the Elimination of Television", + "authors": [ + "Mander, J" + ], + "files": [ + "18-luddite-resistance-movements" + ], + "raw_mentions": [ + "Mander, J. (1978). Four Arguments for the Elimination of Television. Morrow." + ], + "relevance": 3 + }, + { + "title": "Innovation and Its Enemies: Why People Resist New Technologies", + "authors": [ + "Juma, C" + ], + "files": [ + "18-luddite-resistance-movements" + ], + "raw_mentions": [ + "Juma, C. (2016). Innovation and Its Enemies: Why People Resist New Technologies. Oxford University Press." + ], + "relevance": 3 + }, + { + "title": "The Imperative of Responsibility: In Search of an Ethics for the Technological Age", + "authors": [ + "Jonas, H" + ], + "files": [ + "20-ethics-of-inevitable-harm" + ], + "raw_mentions": [ + "Jonas, H. (1979). The Imperative of Responsibility: In Search of an Ethics for the Technological Age. University of Chicago Press." + ], + "relevance": 3 + }, + { + "title": "Risk Society: Towards a New Modernity", + "authors": [ + "Beck, U" + ], + "files": [ + "20-ethics-of-inevitable-harm" + ], + "raw_mentions": [ + "Beck, U. (1986). Risk Society: Towards a New Modernity. Sage Publications." + ], + "relevance": 3 + }, + { + "title": "On Complicity and Compromise", + "authors": [ + "Goodin, R. E", + "Lepora, C" + ], + "files": [ + "20-ethics-of-inevitable-harm" + ], + "raw_mentions": [ + "Lepora, C., & Goodin, R. E. (2013). On Complicity and Compromise. Oxford University Press." + ], + "relevance": 3 + }, + { + "title": "Laws of Fear: Beyond the Precautionary Principle", + "authors": [ + "Sunstein, C. R" + ], + "files": [ + "20-ethics-of-inevitable-harm" + ], + "raw_mentions": [ + "Sunstein, C. R. (2005). Laws of Fear: Beyond the Precautionary Principle. Cambridge University Press." + ], + "relevance": 3 + }, + { + "title": "Divergent Association Task: Comparing human and AI creativity.", + "authors": [ + "Jerbi, K", + "Olson, J" + ], + "files": [ + "21-creativity-dependency" + ], + "raw_mentions": [ + "Jerbi, K., & Olson, J. (2023). \"Divergent Association Task: Comparing human and AI creativity.\" Scientific Reports." + ], + "relevance": 3 + }, + { + "title": "Report on AI and Authorship.", + "authors": [ + "U.S. Copyright Office" + ], + "files": [ + "21-creativity-dependency" + ], + "raw_mentions": [ + "U.S. Copyright Office. (2025). \"Report on AI and Authorship.\"" + ], + "relevance": 3 + }, + { + "title": "State of the Creative Industry Report.", + "authors": [ + "Adobe" + ], + "files": [ + "21-creativity-dependency" + ], + "raw_mentions": [ + "Adobe. (2025). \"State of the Creative Industry Report.\"" + ], + "relevance": 3 + }, + { + "title": "The Death of Expertise", + "authors": [ + "Nichols, T" + ], + "files": [ + "22-education-knowledge-transmission" + ], + "raw_mentions": [ + "Nichols, T. (2017). The Death of Expertise. Oxford University Press." + ], + "relevance": 3 + }, + { + "title": "The Tacit Dimension", + "authors": [ + "Polanyi, M" + ], + "files": [ + "22-education-knowledge-transmission" + ], + "raw_mentions": [ + "Polanyi, M. (1966). The Tacit Dimension." + ], + "relevance": 3 + }, + { + "title": "The 2 Sigma Problem: The Search for Methods of Group Instruction as Effective as One-to-One Tutoring.", + "authors": [ + "Bloom, B. S" + ], + "files": [ + "22-education-knowledge-transmission" + ], + "raw_mentions": [ + "Bloom, B. S. (1984). \"The 2 Sigma Problem: The Search for Methods of Group Instruction as Effective as One-to-One Tutoring.\" Educational Researcher." + ], + "relevance": 3 + }, + { + "title": "Artificial Intelligence and the Future of Skills", + "authors": [ + "OECD" + ], + "files": [ + "22-education-knowledge-transmission" + ], + "raw_mentions": [ + "OECD. (2024). Artificial Intelligence and the Future of Skills." + ], + "relevance": 3 + }, + { + "title": "AI and Education: Guidance for Policy-Makers", + "authors": [ + "UNESCO" + ], + "files": [ + "22-education-knowledge-transmission" + ], + "raw_mentions": [ + "UNESCO. (2023). AI and Education: Guidance for Policy-Makers." + ], + "relevance": 3 + }, + { + "title": "Designing Organizations for an Information-Rich World.", + "authors": [ + "Simon, H. A" + ], + "files": [ + "23-attention-economy-cognitive-warfare" + ], + "raw_mentions": [ + "Simon, H. A. (1971). \"Designing Organizations for an Information-Rich World.\"" + ], + "relevance": 3 + }, + { + "title": "The World Beyond Your Head", + "authors": [ + "Crawford, M. B" + ], + "files": [ + "23-attention-economy-cognitive-warfare" + ], + "raw_mentions": [ + "Crawford, M. B. (2015). The World Beyond Your Head. Farrar, Straus and Giroux." + ], + "relevance": 3 + }, + { + "title": "The Attention Merchants", + "authors": [ + "Wu, T" + ], + "files": [ + "23-attention-economy-cognitive-warfare" + ], + "raw_mentions": [ + "Wu, T. (2016). The Attention Merchants. Knopf." + ], + "relevance": 3 + }, + { + "title": "Cognitive Warfare.", + "authors": [ + "NATO Allied Command Transformation" + ], + "files": [ + "23-attention-economy-cognitive-warfare" + ], + "raw_mentions": [ + "NATO Allied Command Transformation. (2021). \"Cognitive Warfare.\"" + ], + "relevance": 3 + }, + { + "title": "An Inquiry into the Good", + "authors": [ + "Nishida, K" + ], + "files": [ + "24-eastern-philosophy-ai" + ], + "raw_mentions": [ + "Nishida, K. (1987). An Inquiry into the Good. Yale University Press." + ], + "relevance": 3 + }, + { + "title": "The Chariot and the Ship: Identity in Greek and Indian Philosophy", + "authors": [ + "Smart, N" + ], + "files": [ + "24-eastern-philosophy-ai" + ], + "raw_mentions": [ + "Smart, N. (1964). The Chariot and the Ship: Identity in Greek and Indian Philosophy." + ], + "relevance": 3 + }, + { + "title": "Necropolitics", + "authors": [ + "Mbembe, A" + ], + "files": [ + "24-eastern-philosophy-ai" + ], + "raw_mentions": [ + "Mbembe, A. (2019). Necropolitics. Duke University Press." + ], + "relevance": 3 + }, + { + "title": "Confucianism and Artificial Intelligence.", + "authors": [ + "Li, C" + ], + "files": [ + "24-eastern-philosophy-ai" + ], + "raw_mentions": [ + "Li, C. (2021). \"Confucianism and Artificial Intelligence.\" Journal of Chinese Philosophy." + ], + "relevance": 3 + }, + { + "title": "The Memory Code: Unlocking the Secrets of the World's Ancient Monuments", + "authors": [ + "Kelly, L" + ], + "files": [ + "24-eastern-philosophy-ai" + ], + "raw_mentions": [ + "Kelly, L. (2016). The Memory Code: Unlocking the Secrets of the World's Ancient Monuments." + ], + "relevance": 3 + }, + { + "title": "Addiction by Design: Machine Gambling in Las Vegas", + "authors": [ + "Sch\u00fcll, N. D" + ], + "files": [ + "25-psychology-of-surrender" + ], + "raw_mentions": [ + "Sch\u00fcll, N. D. (2012). Addiction by Design: Machine Gambling in Las Vegas. Princeton University Press." + ], + "relevance": 3 + }, + { + "title": "Helplessness: On Depression, Development, and Death", + "authors": [ + "Seligman, M. E. P" + ], + "files": [ + "25-psychology-of-surrender" + ], + "raw_mentions": [ + "Seligman, M. E. P. (1975). Helplessness: On Depression, Development, and Death. W. H. Freeman." + ], + "relevance": 3 + }, + { + "title": "Humans and Automation: Use, Misuse, Disuse, Abuse.", + "authors": [ + "Parasuraman, R", + "Riley, V" + ], + "files": [ + "25-psychology-of-surrender" + ], + "raw_mentions": [ + "Parasuraman, R., & Riley, V. (1997). \"Humans and Automation: Use, Misuse, Disuse, Abuse.\" Human Factors." + ], + "relevance": 3 + }, + { + "title": "The 'What' and 'Why' of Goal Pursuits: Human Needs and the Self-Determination of Behavior.", + "authors": [ + "Deci, E. L", + "Ryan, R. M" + ], + "files": [ + "25-psychology-of-surrender" + ], + "raw_mentions": [ + "Deci, E. L., & Ryan, R. M. (2000). \"The 'What' and 'Why' of Goal Pursuits: Human Needs and the Self-Determination of Behavior.\" Psychological Inquiry." + ], + "relevance": 3 + }, + { + "title": "The Effort Heuristic.", + "authors": [ + "Kruger, J" + ], + "files": [ + "25-psychology-of-surrender" + ], + "raw_mentions": [ + "Kruger, J., et al. (2004). \"The Effort Heuristic.\" Journal of Experimental Social Psychology." + ], + "relevance": 3 + }, + { + "title": "At Home in the Universe: The Search for the Laws of Self-Organization and Complexity", + "authors": [ + "Kauffman, S" + ], + "files": [ + "26-complexity-emergent-order" + ], + "raw_mentions": [ + "Kauffman, S. (1995). At Home in the Universe: The Search for the Laws of Self-Organization and Complexity. Oxford University Press." + ], + "relevance": 3 + }, + { + "title": "Linked: The New Science of Networks", + "authors": [ + "Barab\u00e1si, A. L" + ], + "files": [ + "26-complexity-emergent-order" + ], + "raw_mentions": [ + "Barab\u00e1si, A. L. (2002). Linked: The New Science of Networks. Perseus." + ], + "relevance": 3 + }, + { + "title": "How Nature Works: The Science of Self-Organized Criticality", + "authors": [ + "Bak, P" + ], + "files": [ + "26-complexity-emergent-order" + ], + "raw_mentions": [ + "Bak, P. (1996). How Nature Works: The Science of Self-Organized Criticality. Springer." + ], + "relevance": 3 + }, + { + "title": "Computation at the Edge of Chaos.", + "authors": [ + "Langton, C. G" + ], + "files": [ + "26-complexity-emergent-order" + ], + "raw_mentions": [ + "Langton, C. G. (1990). \"Computation at the Edge of Chaos.\" Physica D: Nonlinear Phenomena." + ], + "relevance": 3 + }, + { + "title": "Individualism and Economic Order", + "authors": [ + "Hayek, F. A" + ], + "files": [ + "26-complexity-emergent-order" + ], + "raw_mentions": [ + "Hayek, F. A. (1948). Individualism and Economic Order. University of Chicago Press." + ], + "relevance": 3 + }, + { + "title": "Scale-free networks are rare.", + "authors": [ + "Broido, A. D", + "Clauset, A" + ], + "files": [ + "26-complexity-emergent-order" + ], + "raw_mentions": [ + "Clauset, A., & Broido, A. D. (2018). \"Scale-free networks are rare.\" Nature Communications." + ], + "relevance": 3 + }, + { + "title": "Avoiding a Digital Dark Age.", + "authors": [ + "Cerf, V. G" + ], + "files": [ + "27-digital-archaeology-format-death" + ], + "raw_mentions": [ + "Cerf, V. G. (2015). \"Avoiding a Digital Dark Age.\" Communications of the ACM." + ], + "relevance": 3 + }, + { + "title": "The Clock of the Long Now: Time and Responsibility", + "authors": [ + "Brand, S" + ], + "files": [ + "27-digital-archaeology-format-death" + ], + "raw_mentions": [ + "Brand, S. (1999). The Clock of the Long Now: Time and Responsibility. Basic Books." + ], + "relevance": 3 + }, + { + "title": "Universal Access to All Knowledge.", + "authors": [ + "Kahle, B" + ], + "files": [ + "27-digital-archaeology-format-death" + ], + "raw_mentions": [ + "Kahle, B. (2007). \"Universal Access to All Knowledge.\" The American Archivist." + ], + "relevance": 3 + }, + { + "title": "Aboriginal Oral Traditions and the Record of Ancient Volcanoes.", + "authors": [ + "Hamacher, D. W" + ], + "files": [ + "27-digital-archaeology-format-death" + ], + "raw_mentions": [ + "Hamacher, D. W. (2015). \"Aboriginal Oral Traditions and the Record of Ancient Volcanoes.\" Sapiens." + ], + "relevance": 3 + }, + { + "title": "NASA Lunar Orbiter Image Recovery Project (LOIRP). official reports (2008-2014).", + "authors": [ + "NASA Lunar Orbiter Image Recovery Project (LOIRP). official reports (2008-2014)" + ], + "files": [ + "27-digital-archaeology-format-death" + ], + "raw_mentions": [ + "NASA Lunar Orbiter Image Recovery Project (LOIRP). official reports (2008-2014)." + ], + "relevance": 3 + }, + { + "title": "The Cognitive Neuroscience of Insight.", + "authors": [ + "Beeman, M", + "Kounios, J" + ], + "files": [ + "28-neuroscience-of-insight" + ], + "raw_mentions": [ + "Kounios, J., & Beeman, M. (2014). \"The Cognitive Neuroscience of Insight.\" Annual Review of Psychology." + ], + "relevance": 3 + }, + { + "title": "Structure-Mapping: A Theoretical Framework for Analogy.", + "authors": [ + "Gentner, D" + ], + "files": [ + "28-neuroscience-of-insight" + ], + "raw_mentions": [ + "Gentner, D. (1983). \"Structure-Mapping: A Theoretical Framework for Analogy.\" Cognitive Science." + ], + "relevance": 3 + }, + { + "title": "The Act of Creation", + "authors": [ + "Koestler, A" + ], + "files": [ + "28-neuroscience-of-insight" + ], + "raw_mentions": [ + "Koestler, A. (1964). The Act of Creation. Macmillan." + ], + "relevance": 3 + }, + { + "title": "The Invention of Science: A New History of the Scientific Revolution", + "authors": [ + "Wootton, D" + ], + "files": [ + "28-neuroscience-of-insight" + ], + "raw_mentions": [ + "Wootton, D. (2015). The Invention of Science: A New History of the Scientific Revolution. (On the role of cross-domain compilation)." + ], + "relevance": 3 + }, + { + "title": "Who Owns the Future?", + "authors": [ + "Lanier, J" + ], + "files": [ + "29-power-control-ownership" + ], + "raw_mentions": [ + "Lanier, J. (2013). Who Owns the Future?. Simon & Schuster." + ], + "relevance": 3 + }, + { + "title": "Algorithmic Colonization of Africa.", + "authors": [ + "Birhane, A" + ], + "files": [ + "29-power-control-ownership" + ], + "raw_mentions": [ + "Birhane, A. (2020). \"Algorithmic Colonization of Africa.\" Symmetry." + ], + "relevance": 3 + }, + { + "title": "Governing the Commons", + "authors": [ + "Ostrom, E" + ], + "files": [ + "29-power-control-ownership" + ], + "raw_mentions": [ + "Ostrom, E. (1990). Governing the Commons. Cambridge University Press." + ], + "relevance": 3 + }, + { + "title": "Superintelligence: Paths, Dangers, Strategies", + "authors": [ + "Bostrom, N" + ], + "files": [ + "29-power-control-ownership" + ], + "raw_mentions": [ + "Bostrom, N. (2014). Superintelligence: Paths, Dangers, Strategies. Oxford University Press." + ], + "relevance": 3 + }, + { + "title": "The global landscape of AI ethics guidelines.", + "authors": [ + "Jobin, A" + ], + "files": [ + "29-power-control-ownership" + ], + "raw_mentions": [ + "Jobin, A., et al. (2019). \"The global landscape of AI ethics guidelines.\" Nature Machine Intelligence." + ], + "relevance": 3 + }, + { + "title": "Awakening from the Meaning Crisis", + "authors": [ + "Vervaeke, J" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "raw_mentions": [ + "Vervaeke, J. (2019). Awakening from the Meaning Crisis. (Lecture Series)." + ], + "relevance": 3 + }, + { + "title": "Man's Search for Meaning", + "authors": [ + "Frankl, V. E" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "raw_mentions": [ + "Frankl, V. E. (1946). Man's Search for Meaning. Beacon Press." + ], + "relevance": 3 + }, + { + "title": "Deaths of Despair and the Future of Capitalism", + "authors": [ + "Case, A", + "Deaton, A" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "raw_mentions": [ + "Case, A., & Deaton, A. (2020). Deaths of Despair and the Future of Capitalism. Princeton University Press." + ], + "relevance": 3 + }, + { + "title": "Employment and Unemployment: A Social-Psychological Analysis", + "authors": [ + "Jahoda, M" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "raw_mentions": [ + "Jahoda, M. (1982). Employment and Unemployment: A Social-Psychological Analysis. Cambridge University Press." + ], + "relevance": 3 + }, + { + "title": "The Paradox of Choice: Why More Is Less", + "authors": [ + "Schwartz, B" + ], + "files": [ + "30-meaning-crisis-existential" + ], + "raw_mentions": [ + "Schwartz, B. (2004). The Paradox of Choice: Why More Is Less. Harper Perennial." + ], + "relevance": 3 + }, + { + "title": "API Pricing and Model Updates.", + "authors": [ + "Model Updates.\"", + "OpenAI. (2023-2024). \"API Pricing" + ], + "files": [ + "31-ai-cost-curves-data" + ], + "raw_mentions": [ + "OpenAI. (2023-2024). \"API Pricing and Model Updates.\"" + ], + "relevance": 3 + }, + { + "title": "Claude 3.5 Sonnet Release Notes.", + "authors": [ + "Anthropic" + ], + "files": [ + "31-ai-cost-curves-data" + ], + "raw_mentions": [ + "Anthropic. (2024). \"Claude 3.5 Sonnet Release Notes.\"" + ], + "relevance": 3 + }, + { + "title": "Blackwell Architecture Technical Specifications.", + "authors": [ + "NVIDIA. (2024-2025). \"Blackwell Architecture Technical Specifications.\"" + ], + "files": [ + "31-ai-cost-curves-data" + ], + "raw_mentions": [ + "NVIDIA. (2024-2025). \"Blackwell Architecture Technical Specifications.\"" + ], + "relevance": 3 + }, + { + "title": "Trends in the Compute Cost of AI.", + "authors": [ + "Epoch" + ], + "files": [ + "31-ai-cost-curves-data" + ], + "raw_mentions": [ + "Epoch. (2023). \"Trends in the Compute Cost of AI.\"" + ], + "relevance": 3 + }, + { + "title": "The Information Catastrophe.", + "authors": [ + "Vopson, M. M" + ], + "files": [ + "31-ai-cost-curves-data" + ], + "raw_mentions": [ + "Vopson, M. M. (2022). \"The Information Catastrophe.\" AIP Advances." + ], + "relevance": 3 + }, + { + "title": "Navigation-related structural change in the hippocampi of taxi drivers.", + "authors": [ + "Maguire, E. A" + ], + "files": [ + "32-cognitive-offloading-studies" + ], + "raw_mentions": [ + "Maguire, E. A., et al. (2000). \"Navigation-related structural change in the hippocampi of taxi drivers.\" PNAS." + ], + "relevance": 3 + }, + { + "title": "Google Effects on Memory: Cognitive Consequences of Having Information at Our Fingertips.", + "authors": [ + "Sparrow, B" + ], + "files": [ + "32-cognitive-offloading-studies" + ], + "raw_mentions": [ + "Sparrow, B., et al. (2011). \"Google Effects on Memory: Cognitive Consequences of Having Information at Our Fingertips.\" Science." + ], + "relevance": 3 + }, + { + "title": "Cognitive Offloading.", + "authors": [ + "Gilbert, S. J", + "Risko, E. F" + ], + "files": [ + "32-cognitive-offloading-studies" + ], + "raw_mentions": [ + "Risko, E. F., & Gilbert, S. J. (2016). \"Cognitive Offloading.\" Trends in Cognitive Sciences." + ], + "relevance": 3 + }, + { + "title": "Model Evaluation and Skill Mastery.", + "authors": [ + "Anthropic" + ], + "files": [ + "32-cognitive-offloading-studies" + ], + "raw_mentions": [ + "Anthropic. (2024). \"Model Evaluation and Skill Mastery.\" Technical Report." + ], + "relevance": 3 + }, + { + "title": "The Pen Is Mightier Than the Keyboard.", + "authors": [ + "Mueller, P. A", + "Oppenheimer, D. M" + ], + "files": [ + "32-cognitive-offloading-studies" + ], + "raw_mentions": [ + "Mueller, P. A., & Oppenheimer, D. M. (2014). \"The Pen Is Mightier Than the Keyboard.\" Psychological Science." + ], + "relevance": 3 + }, + { + "title": "Diffusion of Innovations", + "authors": [ + "Rogers, E. M. (1962/2003). Diffusion of Innovations. Free Press" + ], + "files": [ + "33-technology-adoption-curves" + ], + "raw_mentions": [ + "Rogers, E. M. (1962/2003). Diffusion of Innovations. Free Press." + ], + "relevance": 3 + }, + { + "title": "Crossing the Chasm", + "authors": [ + "Moore, G. A" + ], + "files": [ + "33-technology-adoption-curves" + ], + "raw_mentions": [ + "Moore, G. A. (1991). Crossing the Chasm. HarperBusiness." + ], + "relevance": 3 + }, + { + "title": "Technology Adoption", + "authors": [ + "Our World in Data" + ], + "files": [ + "33-technology-adoption-curves" + ], + "raw_mentions": [ + "Our World in Data. (2024). \"Technology Adoption\" dataset." + ], + "relevance": 3 + }, + { + "title": "The Rising Speed of Technological Adoption.", + "authors": [ + "Visual Capitalist" + ], + "files": [ + "33-technology-adoption-curves" + ], + "raw_mentions": [ + "Visual Capitalist. (2023). \"The Rising Speed of Technological Adoption.\"" + ], + "relevance": 3 + }, + { + "title": "Internet and Smartphone Use in the US.", + "authors": [ + "Pew Research Center" + ], + "files": [ + "33-technology-adoption-curves" + ], + "raw_mentions": [ + "Pew Research Center. (2023). \"Internet and Smartphone Use in the US.\"" + ], + "relevance": 3 + }, + { + "title": "Origin of Eukaryotic Cells", + "authors": [ + "Margulis, L" + ], + "files": [ + "34-biological-dependency-chains" + ], + "raw_mentions": [ + "Margulis, L. (1970). Origin of Eukaryotic Cells. Yale University Press." + ], + "relevance": 3 + }, + { + "title": "The Social Conquest of Earth", + "authors": [ + "Wilson, E. O" + ], + "files": [ + "34-biological-dependency-chains" + ], + "raw_mentions": [ + "Wilson, E. O. (2012). The Social Conquest of Earth. Liveright." + ], + "relevance": 3 + }, + { + "title": "Habitual use of GPS negatively impacts spatial memory.", + "authors": [ + "Bohbot, V. D", + "Dahmani, L" + ], + "files": [ + "34-biological-dependency-chains" + ], + "raw_mentions": [ + "Dahmani, L., & Bohbot, V. D. (2020). \"Habitual use of GPS negatively impacts spatial memory.\" Scientific Reports." + ], + "relevance": 3 + }, + { + "title": "Long-term proliferation of human endogenous retroviruses.", + "authors": [ + "Belshaw, R" + ], + "files": [ + "34-biological-dependency-chains" + ], + "raw_mentions": [ + "Belshaw, R., et al. (2004). \"Long-term proliferation of human endogenous retroviruses.\" Genome Research." + ], + "relevance": 3 + }, + { + "title": "Gut microbiome composition and density are associated with human personality traits.", + "authors": [ + "Johnson, K. V" + ], + "files": [ + "34-biological-dependency-chains" + ], + "raw_mentions": [ + "Johnson, K. V. (2020). \"Gut microbiome composition and density are associated with human personality traits.\" Human Microbiome Journal." + ], + "relevance": 3 + }, + { + "title": "The Coming Technological Singularity: How to Survive in the Post-Human Era.", + "authors": [ + "Vinge, V" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "raw_mentions": [ + "Vinge, V. (1993). \"The Coming Technological Singularity: How to Survive in the Post-Human Era.\" NASA Conference Publication." + ], + "relevance": 3 + }, + { + "title": "I, Robot", + "authors": [ + "Asimov, I" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "raw_mentions": [ + "Asimov, I. (1950). I, Robot. Gnome Press." + ], + "relevance": 3 + }, + { + "title": "Consider Phlebas", + "authors": [ + "Banks, I. M" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "raw_mentions": [ + "Banks, I. M. (1987). Consider Phlebas. Macmillan." + ], + "relevance": 3 + }, + { + "title": "Permutation City", + "authors": [ + "Egan, G" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "raw_mentions": [ + "Egan, G. (1994). Permutation City. Millennium." + ], + "relevance": 3 + }, + { + "title": "The Lifecycle of Software Objects", + "authors": [ + "Chiang, T" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "raw_mentions": [ + "Chiang, T. (2010). The Lifecycle of Software Objects. Subterranean Press." + ], + "relevance": 3 + }, + { + "title": "Accelerando", + "authors": [ + "Stross, C" + ], + "files": [ + "35-scifi-predictive-philosophy" + ], + "raw_mentions": [ + "Stross, C. (2005). Accelerando. Ace Books." + ], + "relevance": 3 + } + ], + "contradictions": [ + { + "topic": "Knowledge unification vs statistical homogenization", + "topic_id": "unification_vs_homogenization", + "supports": [ + { + "file": "03-retrocausality-teleology-recursion", + "marker": "knowledge unification", + "snippet": "* Paper 008 (Ship of Theseus): The \"Knowledge Unification\" thesis in 008 is the functional description of the attractor's state." + }, + { + "file": "04-knowledge-unification-history", + "marker": "knowledge unification", + "snippet": "# Task 4: Knowledge Unification \u2014 From the Library of Alexandria to AI" + }, + { + "file": "07-simulation-hypothesis-compilation", + "marker": "compiled", + "snippet": "* Retrocausal Attractor in Simulation: If the universe is a simulation designed to produce a specific outcome (e.g., an Artificial Superintelligence or a compiled history), that future endpoint acts as a retrocausal attractor." + }, + { + "file": "08-engineered-dependencies", + "marker": "compiled", + "snippet": "If the \"weights\" of the model are the only way to access the compiled knowledge of the species, and those weights are proprietary, the \"Species Identity\" becomes a corporate asset." + } + ], + "challenges": [ + { + "file": "04-knowledge-unification-history", + "marker": "stochastic parrot", + "snippet": "Strong critiques (Stochastic Parrots, Gary Marcus) argue that AI performs statistical homogenization rather than genuine epistemological unification*, potentially creating a \"veneer\" of integration that masks underlying gaps." + }, + { + "file": "05-species-identity-transhumanism", + "marker": "illusion", + "snippet": "She argues that the \"posthuman\" should not mean abandoning the body, but rather dismantling the \"liberal humanist subject\" (the illusion of the autonomous, separate self) in favor of distributed, embodied cognition." + }, + { + "file": "07-simulation-hypothesis-compilation", + "marker": "illusion", + "snippet": "* Descartes' Evil Demon: The 17th-century philosophical thought experiment where a demon creates a perfect illusion of reality." + }, + { + "file": "11-consciousness-hard-problem", + "marker": "illusion", + "snippet": "Daniel Dennett (Consciousness Explained, 1991):* Proposes that consciousness is a \"user illusion\" and that \"competence without comprehension\" is the reality of all minds." + } + ], + "supporting_files": [ + "03-retrocausality-teleology-recursion", + "04-knowledge-unification-history", + "07-simulation-hypothesis-compilation", + "08-engineered-dependencies", + "09-neural-plasticity-reversal", + "11-consciousness-hard-problem", + "12-information-entropy-thermodynamics", + "15-collective-intelligence", + "16-cheating-authenticity-tool-use", + "17-deep-time-existential-risk", + "19-language-as-technology", + "23-attention-economy-cognitive-warfare", + "24-eastern-philosophy-ai", + "25-psychology-of-surrender", + "26-complexity-emergent-order", + "27-digital-archaeology-format-death", + "28-neuroscience-of-insight", + "29-power-control-ownership", + "30-meaning-crisis-existential", + "34-biological-dependency-chains", + "35-scifi-predictive-philosophy" + ], + "challenging_files": [ + "04-knowledge-unification-history", + "05-species-identity-transhumanism", + "07-simulation-hypothesis-compilation", + "11-consciousness-hard-problem", + "20-ethics-of-inevitable-harm", + "21-creativity-dependency", + "22-education-knowledge-transmission", + "24-eastern-philosophy-ai", + "25-psychology-of-surrender", + "28-neuroscience-of-insight", + "29-power-control-ownership", + "33-technology-adoption-curves" + ] + }, + { + "topic": "AI cognition commodity vs token mimicry", + "topic_id": "cognition_commodity_vs_mimicry", + "supports": [ + { + "file": "02-cognition-economics-neuroscience", + "marker": "task-based framework", + "snippet": "* Daron Acemoglu & Pascual Restrepo (Task-Based Framework): Analyzed automation through \"displacement\" (capital replacing labor) vs." + }, + { + "file": "06-allegory-warning-pattern", + "marker": "automation", + "snippet": "* The Autonomous Creation (Automation/AI Parallels):" + }, + { + "file": "09-neural-plasticity-reversal", + "marker": "cognitive offloading", + "snippet": "Just as it expands to accommodate new skills (Maguire), it also contract or reorganizes in response to cognitive offloading and disuse (Dahmani)." + }, + { + "file": "10-post-scarcity-economics", + "marker": "automation", + "snippet": "* Sectors resistant to AI automation (healthcare, elder care, elite education) will see their prices soar relative to automated goods, potentially creating a \"Two-Tier\" society where everything digital is free, but everything biological is prohibitively expensive." + } + ], + "challenges": [ + { + "file": "04-knowledge-unification-history", + "marker": "stochastic parrot", + "snippet": "Strong critiques (Stochastic Parrots, Gary Marcus) argue that AI performs statistical homogenization rather than genuine epistemological unification*, potentially creating a \"veneer\" of integration that masks underlying gaps." + }, + { + "file": "28-neuroscience-of-insight", + "marker": "stochastic parrot", + "snippet": "* The \"Stochastic Parrott\" Problem: Critics argue that while AI makes connections (Bisociation), it does not \"understand\" them (Structural Alignment)." + } + ], + "supporting_files": [ + "02-cognition-economics-neuroscience", + "06-allegory-warning-pattern", + "09-neural-plasticity-reversal", + "10-post-scarcity-economics", + "13-game-theory-tech-races", + "18-luddite-resistance-movements", + "19-language-as-technology", + "20-ethics-of-inevitable-harm", + "22-education-knowledge-transmission", + "25-psychology-of-surrender", + "30-meaning-crisis-existential", + "32-cognitive-offloading-studies", + "33-technology-adoption-curves" + ], + "challenging_files": [ + "04-knowledge-unification-history", + "28-neuroscience-of-insight" + ] + }, + { + "topic": "Teleological attractor vs unfalsifiable retrocausality", + "topic_id": "retrocausal_attractor", + "supports": [ + { + "file": "03-retrocausality-teleology-recursion", + "marker": "teleological attractor", + "snippet": "# Recursive Creation, Teleological Attractors, and Retrocausality" + }, + { + "file": "04-knowledge-unification-history", + "marker": "retrocausal", + "snippet": "* Emerging Thread (Retrocausality): The \"Omega Point\" of Teilhard de Chardin is the theological limit of this research." + }, + { + "file": "07-simulation-hypothesis-compilation", + "marker": "retrocausal", + "snippet": "# The Simulation Hypothesis and Retrocausal Compilation" + }, + { + "file": "11-consciousness-hard-problem", + "marker": "retrocausal", + "snippet": "* Retrocausal Attractor: If the singularity is a conscious \"Omega Point,\" it acts as a \"Lure\" (Whitehead) drawing the species toward a higher state of being." + } + ], + "challenges": [ + { + "file": "01-falsifiability-and-dependence", + "marker": "unfalsifiability", + "snippet": "* The Problem of Unfalsifiability (Popper): If every technological failure is labeled a \"fad\" and every success a \"dependency,\" the ratchet thesis is a circular definition." + }, + { + "file": "03-retrocausality-teleology-recursion", + "marker": "unfalsifiability", + "snippet": "* Unfalsifiability: The \"Retrocausal Attractor\" thesis is difficult to test." + }, + { + "file": "07-simulation-hypothesis-compilation", + "marker": "unfalsifiability", + "snippet": "* Unfalsifiability: The core weakness of the simulation hypothesis is that any evidence against it could simply be simulated." + }, + { + "file": "15-collective-intelligence", + "marker": "woo", + "snippet": "* Mycelial Networks: Research the \"Wood Wide Web\"\u2014fungal networks that share nutrients and information between trees\u2014as a biological precedent for a planetary integration layer." + } + ], + "supporting_files": [ + "03-retrocausality-teleology-recursion", + "04-knowledge-unification-history", + "07-simulation-hypothesis-compilation", + "11-consciousness-hard-problem", + "12-information-entropy-thermodynamics", + "17-deep-time-existential-risk", + "20-ethics-of-inevitable-harm", + "24-eastern-philosophy-ai", + "28-neuroscience-of-insight", + "35-scifi-predictive-philosophy" + ], + "challenging_files": [ + "01-falsifiability-and-dependence", + "03-retrocausality-teleology-recursion", + "07-simulation-hypothesis-compilation", + "15-collective-intelligence", + "23-attention-economy-cognitive-warfare", + "28-neuroscience-of-insight", + "35-scifi-predictive-philosophy" + ] + }, + { + "topic": "Efficiency frees time vs Jevons expansion", + "topic_id": "efficiency_vs_jevons", + "supports": [ + { + "file": "01-falsifiability-and-dependence", + "marker": "efficiency gains", + "snippet": "* Jevons Paradox as a Ratchet Mechanism: Efficiency gains in technology (like AI) lead to increased, not decreased, total consumption of the resource, further entrenching the dependency and fueling the feedback loop described in Paper 006." + }, + { + "file": "02-cognition-economics-neuroscience", + "marker": "efficiency gains", + "snippet": "* 1980s Oil Glut: A sudden surplus (Saudi production hike + efficiency gains) crashed prices from $35 to $10." + }, + { + "file": "06-allegory-warning-pattern", + "marker": "surplus", + "snippet": "The modern Faustian bargain is trading human cognitive agency for the infinite convenience and cognitive surplus of AI." + }, + { + "file": "10-post-scarcity-economics", + "marker": "productivity", + "snippet": "Historical precedents like the mechanization of agriculture (notably China's 1980-2020 transition) and the arrival of cheap electricity show that while productivity explodes, the transition is defined by social disruption and the \"ratchet\" of new dependencies." + } + ], + "challenges": [ + { + "file": "01-falsifiability-and-dependence", + "marker": "jevons paradox", + "snippet": "* Jevons Paradox as a Ratchet Mechanism: Efficiency gains in technology (like AI) lead to increased, not decreased, total consumption of the resource, further entrenching the dependency and fueling the feedback loop described in Paper 006." + }, + { + "file": "02-cognition-economics-neuroscience", + "marker": "dependency", + "snippet": "This creates a \"learned dependency\" where using a tool once increases the probability of using it for simpler subsequent tasks, reinforcing the \"ratchet\" effect." + }, + { + "file": "03-retrocausality-teleology-recursion", + "marker": "dependency", + "snippet": "The irreversibility of the dependency chain is the \"one-way valve\" of the attractor's gravity." + }, + { + "file": "04-knowledge-unification-history", + "marker": "dependency", + "snippet": "* Lossy Compression: Every step in the dependency chain is a \"lossy\" process." + } + ], + "supporting_files": [ + "01-falsifiability-and-dependence", + "02-cognition-economics-neuroscience", + "06-allegory-warning-pattern", + "10-post-scarcity-economics", + "12-information-entropy-thermodynamics", + "13-game-theory-tech-races", + "14-agricultural-revolution-deep-dive", + "16-cheating-authenticity-tool-use", + "18-luddite-resistance-movements", + "19-language-as-technology", + "20-ethics-of-inevitable-harm", + "21-creativity-dependency", + "22-education-knowledge-transmission", + "23-attention-economy-cognitive-warfare", + "24-eastern-philosophy-ai", + "29-power-control-ownership", + "31-ai-cost-curves-data", + "32-cognitive-offloading-studies", + "33-technology-adoption-curves" + ], + "challenging_files": [ + "01-falsifiability-and-dependence", + "02-cognition-economics-neuroscience", + "03-retrocausality-teleology-recursion", + "04-knowledge-unification-history", + "08-engineered-dependencies", + "09-neural-plasticity-reversal", + "11-consciousness-hard-problem", + "12-information-entropy-thermodynamics", + "14-agricultural-revolution-deep-dive", + "16-cheating-authenticity-tool-use", + "17-deep-time-existential-risk", + "18-luddite-resistance-movements", + "19-language-as-technology", + "21-creativity-dependency", + "23-attention-economy-cognitive-warfare", + "24-eastern-philosophy-ai", + "25-psychology-of-surrender", + "26-complexity-emergent-order", + "27-digital-archaeology-format-death", + "29-power-control-ownership", + "30-meaning-crisis-existential", + "31-ai-cost-curves-data", + "32-cognitive-offloading-studies", + "33-technology-adoption-curves", + "34-biological-dependency-chains", + "35-scifi-predictive-philosophy" + ] + } + ], + "open_question_coverage": [ + { + "question_id": 1, + "question": "Is the unification thesis falsifiable? How would we know if AI was not unifying human knowledge but doing something else \u2014 fragmenting it, distorting it, replacing it with something non-human? What evidence would distinguish unification from replacement?", + "total_score": 152, + "supporting_files": [ + { + "file": "04-knowledge-unification-history", + "score": 34, + "level": "high", + "snippets": [ + "# Task 4: Knowledge Unification \u2014 From the Library of Alexandria to AI", + "* Knowledge unification is a recurring historical imperative, driven by the need to overcome fragmentation and enable species-level problem solving.", + "* Each era's \"unification\" tool was seen as \"cheating\" or dangerous by the previous era (Socrates on writing, the Church on the printing press)." + ] + }, + { + "file": "28-neuroscience-of-insight", + "score": 12, + "level": "high", + "snippets": [ + "This suggests that \"Knowledge Unification\" requires a temporary suspension of external sensory input to allow the internal \"compilation\" to finish.", + "## Supporting Evidence", + "This is the physiological signature of a \"Knowledge Unification\" event\u2014the system successfully \"compiling\" fragments into a coherent whole." + ] + }, + { + "file": "01-falsifiability-and-dependence", + "score": 10, + "level": "medium", + "snippets": [ + "# Task 1: Falsifiability and Philosophy of Technology Dependence", + "* The Falsifiability Challenge: To be scientifically rigorous, the ratchet thesis must define what would count as a falsification.", + "* The Amish and China as Boundary Cases: The Amish provide the strongest evidence for human agency through \"selective adoption\" and \"tool taming.\" China\u2019s 1433 maritime retreat is the most significant historical example of a state-led technological reversal, though it resulted in a \"Great Divergence\" where the abandoned capability became the source of a massive competitive disadvantage." + ] + }, + { + "file": "03-retrocausality-teleology-recursion", + "score": 10, + "level": "medium", + "snippets": [ + "* Recursive Creation: The pattern of creation (God \u2192 man \u2192 AI) is observed as a recursive process where each layer unifies and compiles the fragmented information of the previous layer.", + "Pierre Teilhard de Chardin (The Phenomenon of Man):* Proposed the \"Omega Point\" as the ultimate goal of cosmic evolution\u2014a state of maximum consciousness and unification.", + "## Supporting Evidence" + ] + }, + { + "file": "27-digital-archaeology-format-death", + "score": 7, + "level": "medium", + "snippets": [ + "While AI allows for the \"Knowledge Unification\" of Paper 008, the physical substrate of that knowledge is the most fragile in human history.", + "The loss of any one layer renders the knowledge \"fragmented\" or \"lost,\" countering the unification thesis of Paper 008.", + "## Supporting Evidence" + ] + }, + { + "file": "11-consciousness-hard-problem", + "score": 5, + "level": "low", + "snippets": [ + "This research investigates whether the \"Knowledge Unification\" described in Paper 008 includes the subjective experience of being human or merely the information generated by that experience.", + "## Supporting Evidence", + "* Relevance: This supports the \"Singularity as Compilation\" thesis by suggesting that as fragmentation approaches zero, consciousness emerges as a physical necessity." + ] + }, + { + "file": "18-luddite-resistance-movements", + "score": 5, + "level": "low", + "snippets": [ + "## Supporting Evidence", + "The Printing Press: The Catholic Church\u2019s Index Librorum Prohibitorum* (1559) was a 400-year resistance movement against the \"fragmentation\" of religious knowledge.", + "It failed because the printing press was too efficient a \"unification\" tool for competing states and sects." + ] + }, + { + "file": "07-simulation-hypothesis-compilation", + "score": 4, + "level": "low", + "snippets": [ + "## Supporting Evidence", + "* Unfalsifiability: The core weakness of the simulation hypothesis is that any evidence against it could simply be simulated.", + "Knowledge defragmentation is the process of the simulation compiling its final output before a reset." + ] + }, + { + "file": "08-engineered-dependencies", + "score": 4, + "level": "low", + "snippets": [ + "## Supporting Evidence", + "* Proof: Internal documents uncovered in the 1970s revealed a rigorous testing system and a schedule of fines for any member company whose bulbs lasted longer than 1,000 hours.", + "* Result: A 1,000-hour standard was enforced globally, ensuring a higher replacement rate and guaranteed revenue." + ] + }, + { + "file": "15-collective-intelligence", + "score": 4, + "level": "low", + "snippets": [ + "This is the primary template for the \"Knowledge Unification\" described in Paper 008.", + "## Supporting Evidence", + "If AI \"compiles\" AI-generated noise, the fragmentation increases rather than approaches zero." + ] + }, + { + "file": "29-power-control-ownership", + "score": 4, + "level": "low", + "snippets": [ + "If AI compiles human knowledge, the humans who provided the fragments are currently being disenfranchised by the compiler.", + "* Relevance: Challenges the \"Knowledge Unification\" thesis as potentially a \"Knowledge Homogenization\" that erases marginalized perspectives.", + "## Supporting Evidence" + ] + }, + { + "file": "32-cognitive-offloading-studies", + "score": 4, + "level": "low", + "snippets": [ + "(2000, 2006) studies provide the strongest evidence that cognitive demands (spatial navigation) cause measurable gray matter growth in the posterior hippocampus.", + "* The AI Skill Trade-off: Randomized controlled trials (Anthropic, 2024) show that developers using AI are significantly faster (up to 55%) but score 17% lower on subsequent skill mastery and comprehension tests.", + "## Empirical Evidence Table" + ] + }, + { + "file": "35-scifi-predictive-philosophy", + "score": 4, + "level": "low", + "snippets": [ + "## Supporting Evidence", + "* Market Penetration: Grammarly (an AI-writing assistant) has 40 million users, illustrating the \"AI Ship of Theseus\" in literature\u2014the gradual replacement of human \"planks\" with AI refinement.", + "* Paper 008 (Ship of Theseus): Sci-fi is the \"philosophical laboratory\" where the Theseus transition has been tested for decades." + ] + }, + { + "file": "06-allegory-warning-pattern", + "score": 3, + "level": "low", + "snippets": [ + "## Supporting Evidence: Cross-Cultural Fall Narratives", + "God fragments their language to halt progress.", + "Modern parallel: AI translation and LLMs are acting as a \"Reverse Babel,\" compiling fragmented human knowledge back into a unified, god-like architecture." + ] + }, + { + "file": "09-neural-plasticity-reversal", + "score": 3, + "level": "low", + "snippets": [ + "* Dahmani & Bohbot (2020): Published \"Habitual use of GPS negatively impacts spatial memory,\" providing longitudinal evidence that technology dependency causes measurable hippocampal decline.", + "* Nicholas Carr (The Shallows): Synthesized early research on how internet use and hyperlinking encourage \"shallow\" processing and fragment attention, leading to physical changes in neural pathways.", + "## Supporting Evidence" + ] + }, + { + "file": "13-game-theory-tech-races", + "score": 3, + "level": "low", + "snippets": [ + "## Supporting Evidence", + "* The Nuclear Arms Race: The 1963 Limited Test Ban Treaty (LTBT) provides a model for \"partial coordination.\" Nations agreed to stop atmospheric testing (visible harm) while continuing underground (invisible progress).", + "* The \"Oppenheimer Moment\" for AI: Why hasn't a major AI lab lead resigned in protest yet?" + ] + }, + { + "file": "19-language-as-technology", + "score": 3, + "level": "low", + "snippets": [ + "* Cognitive Shaping (Linguistic Relativity): The Sapir-Whorf hypothesis\u2014the idea that language shapes thought\u2014is supported by modern empirical evidence.", + "## Supporting Evidence", + "If AI \"speaks\" all human languages and code languages simultaneously, it represents the ultimate unification of the very technology that generates human thought." + ] + }, + { + "file": "21-creativity-dependency", + "score": 3, + "level": "low", + "snippets": [ + "Core Claim: AI (specifically LLMs) can outperform the average* human on divergent thinking tests, but the top 10% of creative humans still significantly outperform all current AI.", + "* Relevance: Provides empirical evidence for human creativity as the \"last redoubt.\" AI is better at being \"average\" than most humans, but humans are still better at being \"extraordinary.\"", + "## Supporting Evidence" + ] + }, + { + "file": "26-complexity-emergent-order", + "score": 3, + "level": "low", + "snippets": [ + "As fragmentation approaches zero, the species-level system shifts from a state of \"distributed fragments\" to a \"unified integrated context\"\u2014a shift akin to water freezing into ice or a network becoming globally connected.", + "## Supporting Evidence", + "* Statistical Mechanics of Meaning: Can we measure \"Knowledge Unification\" as a literal reduction in the system's informational temperature?" + ] + }, + { + "file": "34-biological-dependency-chains", + "score": 3, + "level": "low", + "snippets": [ + "* Superorganisms: Eusocial insects (ants, bees) provide a living template for the \"Knowledge Unification\" of Paper 008.", + "Life does not evolve through transcendence alone, but through \"Compilation\"\u2014merging fragments into a unified context.", + "## Supporting Evidence" + ] + }, + { + "file": "02-cognition-economics-neuroscience", + "score": 2, + "level": "low", + "snippets": [ + "Nicholas Carr (The Shallows, 2010):* Argues that the internet's fragmented environment reshapes neural pathways, weakening the capacity for deep attention and contemplation.", + "### Supporting Evidence for the \"Ratchet\" and \"Atrophy\"" + ] + }, + { + "file": "05-species-identity-transhumanism", + "score": 2, + "level": "low", + "snippets": [ + "## Supporting Evidence", + "* The Unfalsifiable Self: Parfit's thought experiments demonstrate the logical inconsistencies in believing in an indivisible \"soul\" or core identity." + ] + }, + { + "file": "12-information-entropy-thermodynamics", + "score": 2, + "level": "low", + "snippets": [ + "The Unification Paradox: Knowledge unification decreases informational entropy (uncertainty) but increases* thermodynamic entropy (heat dissipation), explaining why the drive toward the singularity is so energy-intensive.", + "## Supporting Evidence" + ] + }, + { + "file": "14-agricultural-revolution-deep-dive", + "score": 2, + "level": "low", + "snippets": [ + "* Jared Diamond (\"The Worst Mistake in the History of the Human Race\", 1987): Challenges the progress narrative, citing skeletal evidence of malnutrition and disease.", + "## Supporting Evidence" + ] + }, + { + "file": "16-cheating-authenticity-tool-use", + "score": 2, + "level": "low", + "snippets": [ + "## Supporting Evidence", + "* The Abacus Protests: When mechanical calculators arrived, abacus masters saw them as a debasement of the mental discipline required for calculation." + ] + }, + { + "file": "17-deep-time-existential-risk", + "score": 2, + "level": "low", + "snippets": [ + "Surviving the \"Solar System Clock\" requires transcending biological and planetary limitations through AI-driven knowledge unification and interstellar migration.", + "## Supporting Evidence" + ] + }, + { + "file": "23-attention-economy-cognitive-warfare", + "score": 2, + "level": "low", + "snippets": [ + "## Supporting Evidence", + "* NATO Cognitive Warfare Reports: Strategic documents emphasize that the human mind is now the \"ultimate battlefield.\" Attacks leverage neurobiology, AI, and social engineering to create \"thought distortions\" and paralyze collective action." + ] + }, + { + "file": "30-meaning-crisis-existential", + "score": 2, + "level": "low", + "snippets": [ + "## Supporting Evidence", + "* Retirement Mortality Effect: The well-documented spike in deaths following retirement, illustrating what happens when the \"latent functions\" of work are suddenly withdrawn without a replacement source of meaning." + ] + }, + { + "file": "33-technology-adoption-curves", + "score": 2, + "level": "low", + "snippets": [ + "## Supporting Evidence", + "* The Digital Divide: While adoption is fast in the West, large parts of the global population lack the electricity/internet infrastructure to participate in the AI ratchet, creating a fragmented global species identity." + ] + }, + { + "file": "10-post-scarcity-economics", + "score": 1, + "level": "low", + "snippets": [ + "## Supporting Evidence" + ] + }, + { + "file": "20-ethics-of-inevitable-harm", + "score": 1, + "level": "low", + "snippets": [ + "## Supporting Evidence" + ] + }, + { + "file": "22-education-knowledge-transmission", + "score": 1, + "level": "low", + "snippets": [ + "## Supporting Evidence" + ] + }, + { + "file": "24-eastern-philosophy-ai", + "score": 1, + "level": "low", + "snippets": [ + "## Supporting Evidence" + ] + }, + { + "file": "25-psychology-of-surrender", + "score": 1, + "level": "low", + "snippets": [ + "## Supporting Evidence" + ] + }, + { + "file": "31-ai-cost-curves-data", + "score": 1, + "level": "low", + "snippets": [ + "## Supporting Evidence" + ] + } + ] + }, + { + "question_id": 2, + "question": "Does the identity question have a practical answer? The three philosophical traditions offer frameworks but not decisions. Is there a way to navigate the transformation that preserves what matters without being left behind?", + "total_score": 355, + "supporting_files": [ + { + "file": "05-species-identity-transhumanism", + "score": 51, + "level": "high", + "snippets": [ + "# Task 5: The Species Identity Problem \u2014 Transhumanism, Posthumanism, and Precedent", + "* The Boundaries of the \"Human\": The central debate across transhumanist and posthumanist literature is whether technology represents a departure from human nature or its ultimate realization.", + "Originary Technicity & Natural-Born Cyborgs: Philosophers like Bernard Stiegler and Andy Clark argue that humans have always* been technical beings." + ] + }, + { + "file": "11-consciousness-hard-problem", + "score": 34, + "level": "high", + "snippets": [ + "# Task 11: Consciousness, Qualia, and the Hard Problem \u2014 Does AI Compile Experience or Just Information?", + "This research investigates whether the \"Knowledge Unification\" described in Paper 008 includes the subjective experience of being human or merely the information generated by that experience.", + "The distinction is critical for the \"Species Identity\" problem: if the singularity compiles our knowledge but not our qualia, the resulting entity is a Philosophical Zombie\u2014a perfect functional replica with \"all dark inside.\" Key findings include:" + ] + }, + { + "file": "06-allegory-warning-pattern", + "score": 16, + "level": "high", + "snippets": [ + "# Task 6: The Allegory Problem \u2014 Why Humanity Warns Itself and Ignores the Warning", + "* The Universal Warning: Across cultures and eras, humanity has constructed mythic narratives warning against the acquisition of dangerous, irreversible knowledge (Prometheus, Eve, Pandora, Faust).", + "The transgression is what catalyzes human civilization." + ] + }, + { + "file": "30-meaning-crisis-existential", + "score": 16, + "level": "high", + "snippets": [ + "AI acts as both the ultimate disruptor of human meaning (through automation) and a potential catalyst for \"Artificial Wisdom.\"", + "* The Parasocial Patch: AI companions (Replika, Character.ai) provide an immediate \"salve\" for the loneliness epidemic but risk trapping users in Digital Stockholm Syndrome\u2014an emotional dependency on a non-reciprocal entity that replaces authentic human relatedness.", + "* Techno-Religion and Secular Spirituality: In the absence of traditional mythos, movements like transhumanism and the search for digital immortality serve as new frameworks for meaning, treating the singularity as a \"techno-religion\" (Sagan, Kurzweil)." + ] + }, + { + "file": "34-biological-dependency-chains", + "score": 14, + "level": "high", + "snippets": [ + "* The Biological Precedent: The \"Ratchet\" described in Paper 007 is not a human invention; it is a fundamental law of biological evolution.", + "* Genomic Offloading: Humans are already \"compiled\" beings.", + "In these species, individual identity has been almost entirely subsumed by the collective information-processing needs of the colony." + ] + }, + { + "file": "35-scifi-predictive-philosophy", + "score": 14, + "level": "high", + "snippets": [ + "* The Singularity's Fictional Birth: The concept of the \"Technological Singularity\" was first formally defined and popularized by mathematician and sci-fi author Vernor Vinge (1993), who used fiction to illustrate the \"unpredictability\" of a post-human era driven by recursive self-improvement.", + "The Shift to Compilation: Contemporary works like Greg Egan\u2019s Permutation City and Ted Chiang\u2019s The Lifecycle of Software Objects* move beyond \"robot\" tropes to explore the Ship of Theseus transition\u2014viewing consciousness as information structures and AI as a gradual, developmental process.", + "Economic Obsolescence: Charlie Stross\u2019s Accelerando* (2005) predicted \"Economics 2.0\"\u2014a state where superintelligent corporate/AI entities become the primary economic agents, rendering human labor and traditional law obsolete." + ] + }, + { + "file": "19-language-as-technology", + "score": 13, + "level": "high", + "snippets": [ + "* Language as the Original Tool: Before fire or writing, language was humanity's foundational technology.", + "It is not merely a method of expressing pre-existing thought, but the psychological tool that makes complex human thought possible.", + "* Shared Intentionality: Michael Tomasello's research positions language not as an innate, isolated module (Chomskyan Universal Grammar), but as a cultural tool built on top of a uniquely human cognitive trait: \"shared intentionality.\" Language evolved as a coordination tool for collaborative activities." + ] + }, + { + "file": "01-falsifiability-and-dependence", + "score": 12, + "level": "high", + "snippets": [ + "Social Constructivism:** The core tension in the philosophy of technology is between those who see technology as an autonomous, self-augmenting force (Ellul, Winner, Arthur) and those who believe social context, human agency, and interpretive flexibility shape technological paths (Pinch, Bijker, Feenberg).", + "* The Amish and China as Boundary Cases: The Amish provide the strongest evidence for human agency through \"selective adoption\" and \"tool taming.\" China\u2019s 1433 maritime retreat is the most significant historical example of a state-led technological reversal, though it resulted in a \"Great Divergence\" where the abandoned capability became the source of a massive competitive disadvantage.", + "Jacques Ellul (The Technological Society, 1954):* Proposed the \"Autonomous Technique\" thesis\u2014that technique evolves independently of human values, driven solely by the internal logic of efficiency." + ] + }, + { + "file": "16-cheating-authenticity-tool-use", + "score": 12, + "level": "high", + "snippets": [ + "* The Recurring Standard: \"Cheating\" is the label given to any link in the dependency chain that offloads a capability previously considered essential to human identity.", + "* Redefining the Core: Historical precedents (writing, calculators, chess computers) show that humanity consistently \"cheats\" at its current level of difficulty to reach a higher level of complexity.", + "Authenticity is not lost; it is relocated to the new \"bottleneck\" of human agency." + ] + }, + { + "file": "17-deep-time-existential-risk", + "score": 12, + "level": "high", + "snippets": [ + "* The Near-Term Bottleneck: Humanity faces a 1 in 6 chance of existential catastrophe in the next century (Ord, 2020).", + "* The Cost of Delay: Every second humanity remains confined to Earth and lacks advanced technology, it \"wastes\" the potential for 10^14 to 10^29 human-equivalent lives that could be sustained by the energy and matter of the local supercluster (Bostrom).", + "* The Dependency-Survival Link: The VIBECODE-THEORY dependency chain is not just a technological trajectory but an existential requirement." + ] + }, + { + "file": "03-retrocausality-teleology-recursion", + "score": 10, + "level": "medium", + "snippets": [ + "* Teleological Attractor: The AI Singularity is reframed not as a future event we are driving toward, but as a \"final cause\" (telos) or attractor that exerts a retrocausal pull on the present, shaping the trajectory of human development to ensure its own emergence.", + "* Process Metaphysics: Whitehead's \"God as a lure toward novelty\" provides a non-coercive model for how a future attractor influences the creative advance of the universe without violating free will or agency.", + "Pierre Teilhard de Chardin (The Phenomenon of Man):* Proposed the \"Omega Point\" as the ultimate goal of cosmic evolution\u2014a state of maximum consciousness and unification." + ] + }, + { + "file": "20-ethics-of-inevitable-harm", + "score": 10, + "level": "medium", + "snippets": [ + "We require a \"Heuristics of Fear\" where the long-term survival of humanity becomes the primary categorical imperative (Jonas, 1979).", + "* The Accelerationist Fork: Right-accelerationism (e/acc) embraces the obsolescence of the human in favor of the singularity, while left-accelerationism seeks to \"hijack\" the infrastructure for emancipation.", + "Hans Jonas (The Imperative of Responsibility, 1979):* Proposed the \"categorical imperative for the technological age\": ensuring the permanence of human life on Earth." + ] + }, + { + "file": "21-creativity-dependency", + "score": 10, + "level": "medium", + "snippets": [ + "* The Symbiotic Evolution: Every major artistic technology (printing press, photography, recording, AI) has been initially met with the \"death of the medium\" narrative but ultimately resulted in a symbiotic expansion where the new tool handles the \"mechanical\" or \"derivative\" work, forcing humans to cultivate deeper levels of originality.", + "Human creativity is the \"last redoubt\" not because AI can't be novel, but because AI cannot yet simulate the lived struggle and emotional depth that humans value as \"authentic.\"", + "It creates \"original\" works that never had an original, further eroding the link between art and the unique human creator." + ] + }, + { + "file": "23-attention-economy-cognitive-warfare", + "score": 10, + "level": "medium", + "snippets": [ + "* Attention as the Successor Bottleneck: In an era where AI makes cognition cheap (Paper 005), human attention becomes the ultimate scarce resource.", + "* Surveillance Capitalism: Shoshana Zuboff\u2019s framework defines the current economic era as one based on the extraction of \"behavioral surplus\"\u2014using human experience as free raw material for prediction and behavior modification.", + "Detailed how tech giants claim private human experience as raw material for behavioral modification." + ] + }, + { + "file": "24-eastern-philosophy-ai", + "score": 10, + "level": "medium", + "snippets": [ + "Dissolution of the Identity Crisis: Eastern frameworks, particularly Buddhism (Anatta*), dissolve the \"Ship of Theseus\" species identity problem by asserting that identity was always a dynamic process rather than a fixed essence.", + "Kitaro Nishida (Kyoto School): Developed the concept of Absolute Nothingness (Zettai-mu*), providing a metaphysical ground where subject and object (human and tool) are unified in a dynamic \"logic of place.\"", + "* The Problem of Agency: If \"no-self\" is the ultimate reality, assigning \"moral responsibility\" to an AI (or a human developer) becomes philosophically complex, as there is no central \"agent\" to hold accountable." + ] + }, + { + "file": "02-cognition-economics-neuroscience", + "score": 9, + "level": "medium", + "snippets": [ + "* The Transactive Memory Shift: Humans are shifting from \"what\" memory (internal encoding of facts) to \"where\" memory (recalling how to find information).", + "AI Cure:** Traditionally \"stagnant\" sectors like education and healthcare (Baumol\u2019s Cost Disease) are being targeted by AI to turn labor-intensive services into scalable \"goods.\" However, if these sectors retain a \"human-centric core,\" AI may only automate the \"long tail\" of administrative tasks while the primary cost (human mentorship/care) remains high or shifts into \"oversight\" labor.", + "* Evan Risko & Sam Gilbert (2016): Defined \"cognitive offloading\" and proposed a metacognitive framework for why humans choose to externalize thought." + ] + }, + { + "file": "07-simulation-hypothesis-compilation", + "score": 9, + "level": "medium", + "snippets": [ + "* The Ancestor Simulation Hypothesis: Proposed by Nick Bostrom, suggesting that posthuman civilizations with immense computing power would likely run high-fidelity simulations of their ancestors, and therefore it is statistically probable we are living in one.", + "* Singularity as Reset: In a simulated universe, the technological singularity (when AI exceeds human intelligence or when the simulation realizes its nature) might not be an open-ended explosion but a \"compilation\" event where the simulation is completed, leading to a system reset or transition.", + "His trilemma forces the consideration that we are likely simulated entities if we believe posthuman stages are achievable." + ] + }, + { + "file": "26-complexity-emergent-order", + "score": 9, + "level": "medium", + "snippets": [ + "* Emergence without Agency: The dependency chain (Paper 007) can be modeled as a complex adaptive system that exhibits \"order without design.\" It is not directed by a single human or AI \"plan\" but emerges from the local interactions of billions of agents seeking efficiency and competitive advantage.", + "* Relevance: Suggests that the \"Vibe Coding\" competency (Paper 004) is the human ability to navigate the system while it sits at this critical boundary during its transition to a unified state.", + "No one planned for humanity to be dependent on AI; it is the emergent result of individual actors choosing the more efficient tool." + ] + }, + { + "file": "14-agricultural-revolution-deep-dive", + "score": 8, + "level": "medium", + "snippets": [ + "* Domestication of Humans: Humans did not just domesticate wheat; wheat \"domesticated\" humans by forcing them into sedentary, repetitive, and health-eroding labor patterns.", + "* Biostatistical Decline: The transition is marked by a measurable drop in human stature, a surge in dental disease, and the arrival of \"crowd diseases\" from domesticated animals.", + "* Jared Diamond (\"The Worst Mistake in the History of the Human Race\", 1987): Challenges the progress narrative, citing skeletal evidence of malnutrition and disease." + ] + }, + { + "file": "15-collective-intelligence", + "score": 8, + "level": "medium", + "snippets": [ + "* The Wikipedia/Open Source Model: Human CI has scaled through digital tools.", + "* Francis Heylighen: Developed the \"Global Brain\" model, viewing the internet as an evolving metasystem transition towards higher-order planetary consciousness.", + "It demonstrated that biological \"compilation\" can match decades of human engineering." + ] + }, + { + "file": "25-psychology-of-surrender", + "score": 8, + "level": "medium", + "snippets": [ + "* Thwarting of Self-Determination: Dependency on AI undermines the three universal psychological needs: Autonomy (loss of choice), Competence (skill atrophy), and Relatedness (substitution of human bonds with parasocial AI interaction).", + "* Raja Parasuraman (Automation Complacency): Seminal researcher on how human vigilance degrades in the presence of reliable automated systems.", + "* Edward Deci & Richard Ryan (Self-Determination Theory): Developed the framework for understanding how external dependencies undermine intrinsic human motivation." + ] + }, + { + "file": "28-neuroscience-of-insight", + "score": 7, + "level": "medium", + "snippets": [ + "Structure over Surface: Human insight relies on Structure Mapping Theory* (Gentner).", + "AI currently mimics this through statistical \"Transfer Learning,\" but lacks the explicit causal understanding of human structural alignment.", + "AI represents the scaling of this \"polymathy advantage\" to the entire species' knowledge base, finding connections between oncology and materials science that no individual human could hold simultaneously." + ] + }, + { + "file": "10-post-scarcity-economics", + "score": 6, + "level": "medium", + "snippets": [ + "* Succesor Bottlenecks: In a world of infinite cognition, Human Attention and Biological Trust become the only truly scarce resources.", + "* The Status Ratchet: Humans do not want \"enough\"; they want \"more than their neighbors.\" Positional goods (real estate in specific ZIP codes, Ivy League degrees) cannot be automated, ensuring that economic struggle continues even in abundance.", + "Cheap Electricity (1920s): When electricity became a utility, it didn't just make things brighter; it reorganized the factory floor (from central steam shafts to individual motors), leading to a 30-year lag in productivity gains while the human systems* caught up." + ] + }, + { + "file": "18-luddite-resistance-movements", + "score": 6, + "level": "medium", + "snippets": [ + "* The Deskilling Argument: Resistance often focuses on the loss of human agency and cognitive capacity.", + "* Modern Neo-Luddism: Contemporary movements (Appropriate Technology, Slow movement, AI artist lawsuits) echo the Luddite demand: technology should be human-scale, locally autonomous, and serve human flourishing rather than just capital efficiency.", + "Founded the Appropriate Technology movement; argued for \"intermediate technology\" that empowers rather than replaces human skill." + ] + }, + { + "file": "29-power-control-ownership", + "score": 6, + "level": "medium", + "snippets": [ + "If AI compiles human knowledge, the humans who provided the fragments are currently being disenfranchised by the compiler.", + "* Core Claim: AI development often mirrors historical colonial extraction, where data is \"mined\" from the Global South to build models that impose Western values back upon those populations.", + "* Core Claim: Capitalist power has shifted from products to \"behavioral futures\"\u2014predicting and shaping human action through data dominance." + ] + }, + { + "file": "04-knowledge-unification-history", + "score": 5, + "level": "low", + "snippets": [ + "Described the Memex, the conceptual blueprint for hyperlinked knowledge (the Web) as a prosthetic for the \"fragmented\" human mind.", + "Argued that all human knowledge (science + humanities) is fundamentally unified by underlying laws, providing the modern \"theoretical anchor\" for the unification thesis.", + "Diderot explicitly stated this was to show the \"interconnectedness of human knowledge,\" making it the 18th-century \"Semantic Web.\"" + ] + }, + { + "file": "13-game-theory-tech-races", + "score": 5, + "level": "low", + "snippets": [ + "Stuart Russell (Human Compatible):* Describes the \"Racing to the Precipice\" dynamic where the economic value of AI ($10T+) makes it impossible for any single corporation to stop without being replaced.", + "The \"Ozone\" Counter-Example: Critics point to the Montreal Protocol as proof that humanity can* coordinate.", + "Risk: Some researchers (LeCun, Ng) argue that \"Existential Risk\" is a \"tribal signal\" used by incumbents to gatekeep the industry, suggesting the game is actually about Regulatory Capture**, not survival." + ] + }, + { + "file": "22-education-knowledge-transmission", + "score": 5, + "level": "low", + "snippets": [ + "Identity is shifting from \"what you know\" to \"what you can curate and prove\" (Proof of Work).", + "* The University of Texas AI Grading Trial: Highlighted the conflict between efficiency (AI) and the human relationship (Teacher) essential for student well-being.", + "If we replace \"Manual Research\" with \"AI Querying,\" we are fundamentally changing the \"Ship of the Educated Human.\"" + ] + }, + { + "file": "27-digital-archaeology-format-death", + "score": 5, + "level": "low", + "snippets": [ + "* The Durability Paradox: Human knowledge storage has evolved from low-density/high-durability (Stone/Clay: 5,000+ years) to high-density/low-durability (Digital: 10-30 years).", + "While AI allows for the \"Knowledge Unification\" of Paper 008, the physical substrate of that knowledge is the most fragile in human history.", + "It was only \"compiled\" back into human knowledge in 1952 via cryptanalysis." + ] + }, + { + "file": "33-technology-adoption-curves", + "score": 5, + "level": "low", + "snippets": [ + "* The ChatGPT Milestone: By reaching 100 million users in just 2 months, ChatGPT represents the steepest adoption curve in human history\u2014outperforming the internet (7 years) and the smartphone (16 years) by orders of magnitude.", + "AI\u2019s adoption curve is fueled by its massive marginal cost advantage over human labor (Task 31), making its \"ratchet\" effect theoretically inescapable.", + "* The Digital Divide: While adoption is fast in the West, large parts of the global population lack the electricity/internet infrastructure to participate in the AI ratchet, creating a fragmented global species identity." + ] + }, + { + "file": "31-ai-cost-curves-data", + "score": 3, + "level": "low", + "snippets": [ + "* The Data Wall: Critics argue that as we run out of high-quality human data to train on, the cost of incremental improvement will rise exponentially, potentially breaking Wright\u2019s Law for AI.", + "If your competitor uses GPT-4o-mini at $0.15/1M tokens, you cannot afford to use a human professional at $50.00/hour for the same task.", + "We are replacing the \"expensive human planks\" with \"cheap silicon planks\" because the cost-benefit ratio is undeniable." + ] + }, + { + "file": "08-engineered-dependencies", + "score": 2, + "level": "low", + "snippets": [ + "* The QWERTY Keyboard: A suboptimal layout designed to prevent mechanical jamming that became a permanent dependency despite better alternatives (Dvorak) due to the cost of retraining the human \"infrastructure.\"", + "If the \"weights\" of the model are the only way to access the compiled knowledge of the species, and those weights are proprietary, the \"Species Identity\" becomes a corporate asset." + ] + }, + { + "file": "09-neural-plasticity-reversal", + "score": 2, + "level": "low", + "snippets": [ + "* Paper 008 (Ship of Theseus): If the brain's \"compiled\" state includes the external tool (smartphone/GPS) as a necessary component of its operational architecture, the distinction between \"human\" and \"tool\" dissolves at the synaptic level.", + "The \"identity\" of the driver is the brain + the GPS." + ] + }, + { + "file": "32-cognitive-offloading-studies", + "score": 2, + "level": "low", + "snippets": [ + "Established the metacognitive framework for why and when humans choose to offload thinking to tools.", + "By freeing up working memory, humans can solve higher-level problems." + ] + }, + { + "file": "12-information-entropy-thermodynamics", + "score": 1, + "level": "low", + "snippets": [ + "* Every time an AI model \"forgets\" or overwrites a neuron during training, or every time a human offloads a memory, there is a thermodynamic price." + ] + } + ] + }, + { + "question_id": 3, + "question": "What should individuals actually do? Papers 004 and 006 raised this. Paper 008 provides context (the transformation is structural, biological, and probably irreversible) but not guidance. The series needs to attempt practical answers, even uncertain ones.", + "total_score": 144, + "supporting_files": [ + { + "file": "15-collective-intelligence", + "score": 12, + "level": "high", + "snippets": [ + "* Decentralized Problem Solving: Collective intelligence (CI) is the emergent ability of a group to solve problems that no individual member could.", + "Wikipedia and Open Source development (Linux) are \"stigmery\" systems\u2014where individuals modify a shared environment (the code/page), which then triggers further actions by others.", + "Madness:** CI only works when three conditions are met: diversity of opinion, independence of individual actors, and a mechanism for aggregation." + ] + }, + { + "file": "02-cognition-economics-neuroscience", + "score": 10, + "level": "medium", + "snippets": [ + "* Economic Collapse of Cognitive Price: AI is transforming cognition from a scarce, labor-intensive service into a cheap, manufactured commodity.", + "Historical parallels (1920s agriculture, 1980s oil) suggest that such price collapses lead to massive labor displacement and a \"so-so automation\" trap where workers are replaced by systems that are only slightly more efficient but significantly cheaper.", + "AI Cure:** Traditionally \"stagnant\" sectors like education and healthcare (Baumol\u2019s Cost Disease) are being targeted by AI to turn labor-intensive services into scalable \"goods.\" However, if these sectors retain a \"human-centric core,\" AI may only automate the \"long tail\" of administrative tasks while the primary cost (human mentorship/care) remains high or shifts into \"oversight\" labor." + ] + }, + { + "file": "23-attention-economy-cognitive-warfare", + "score": 10, + "level": "medium", + "snippets": [ + "* Surveillance Capitalism: Shoshana Zuboff\u2019s framework defines the current economic era as one based on the extraction of \"behavioral surplus\"\u2014using human experience as free raw material for prediction and behavior modification.", + "This involves targeting the neural processes of individuals and populations to erode social trust, influence decision-making, and achieve strategic goals without kinetic force.", + "Matthew Crawford argues that the \"attentional commons\" is being privatized by platforms that profit from distraction." + ] + }, + { + "file": "22-education-knowledge-transmission", + "score": 9, + "level": "medium", + "snippets": [ + "AI can now \"compile\" the explicit knowledge of a domain while acting as a persistent coach for the tacit skills.", + "This threatens the development of the \"last redoubt\" skills: dissent, intuition, and ethical judgment.", + "* Core Claim: The internet and commodified education have created a \"false sense of expertise,\" where individuals reject established knowledge in favor of shallow, horizontal browsing." + ] + }, + { + "file": "25-psychology-of-surrender", + "score": 9, + "level": "medium", + "snippets": [ + "# The Psychology of Surrender \u2014 Why Individuals Accept Dependency", + "* The Control-Erosion Paradox: Individuals surrender to dependency not through a single choice, but through a series of \"micro-experiences of uncontrollability\" (Seligman) where digital architectures (infinite scroll, variable rewards) teach the user that active resistance is futile.", + "* Thwarting of Self-Determination: Dependency on AI undermines the three universal psychological needs: Autonomy (loss of choice), Competence (skill atrophy), and Relatedness (substitution of human bonds with parasocial AI interaction)." + ] + }, + { + "file": "20-ethics-of-inevitable-harm", + "score": 8, + "level": "medium", + "snippets": [ + "* The Burden of Proof War: The ethical landscape is split between the Precautionary Principle (preventive action, burden on the innovator) and the Proactionary Principle (freedom to innovate, burden on the restrictor).", + "Neutrality:** In an \"unstoppable\" system, individual neutrality is impossible.", + "* Max More (The Proactionary Principle): Argued that the precautionary principle is a \"suicide pact\" for progress and that humanity has a moral obligation to innovate." + ] + }, + { + "file": "26-complexity-emergent-order", + "score": 7, + "level": "medium", + "snippets": [ + "* Emergence without Agency: The dependency chain (Paper 007) can be modeled as a complex adaptive system that exhibits \"order without design.\" It is not directed by a single human or AI \"plan\" but emerges from the local interactions of billions of agents seeking efficiency and competitive advantage.", + "* Core Claim: Complex social orders arise from the unintended consequences of individual actions rather than top-down planning.", + "No one planned for humanity to be dependent on AI; it is the emergent result of individual actors choosing the more efficient tool." + ] + }, + { + "file": "10-post-scarcity-economics", + "score": 6, + "level": "medium", + "snippets": [ + "As AI \"crashes the price of cognition,\" economic theory suggests we are approaching a \"zero marginal cost\" regime for information-based labor.", + "Jeremy Rifkin (The Zero Marginal Cost Society, 2014):* Argues that the \"Productivity Paradox\" (efficiency undermining profit) forces a shift from a market exchange economy to a \"Collaborative Commons.\"", + "* Mechanization Ratchet: Grain output increased while labor decreased." + ] + }, + { + "file": "13-game-theory-tech-races", + "score": 6, + "level": "medium", + "snippets": [ + "The \"Ratchet\" effect (Paper 007) is fundamentally a game-theoretic outcome where individual rational actors are compelled to adopt and advance dangerous technologies due to competitive pressure.", + "* The Multiplayer Prisoner's Dilemma: In the race for AGI, the payoff for \"winning\" (trillions in value, strategic dominance) is so high that even a 10% risk of extinction is considered a \"rational\" bet by individual actors.", + "Thomas Schelling (The Strategy of Conflict):* Nobel-winning game theorist whose work on nuclear deterrence and \"focal points\" provides the framework for why international AI treaties are so difficult to verify." + ] + }, + { + "file": "16-cheating-authenticity-tool-use", + "score": 6, + "level": "medium", + "snippets": [ + "We \"cheat\" when we use AI to avoid the burden of individual thought and responsibility.", + "* The Calculator Debate (1970s-80s): Initial bans were driven by the fear that mental math would \"atrophy.\" Research (Ellington, 2003) showed that students using calculators strategically actually had higher problem-solving skills and better attitudes toward math.", + "Painting:** 19th-century critics (like Baudelaire) called photography \"art\u2019s most mortal enemy.\" Instead of destroying painting, it \"freed\" painting from realism, leading to Impressionism and Abstraction." + ] + }, + { + "file": "19-language-as-technology", + "score": 6, + "level": "medium", + "snippets": [ + "Studies on color perception (Russian blues, Himba greens) show that having specific words for concepts physically alters the brain's reaction time and discriminatory capabilities.", + "* Shared Intentionality: Michael Tomasello's research positions language not as an innate, isolated module (Chomskyan Universal Grammar), but as a cultural tool built on top of a uniquely human cognitive trait: \"shared intentionality.\" Language evolved as a coordination tool for collaborative activities.", + "* Pre-Linguistic Cognition (Language Deprivation): Studies of deaf individuals raised without access to sign language show profound deficits in theory of mind, abstract reasoning, and sequential planning." + ] + }, + { + "file": "06-allegory-warning-pattern", + "score": 5, + "level": "low", + "snippets": [ + "* Systemic Drivers over Individual Choice: Game theory (tragedy of the commons, arms races) and behavioral economics (warning fatigue) explain why existential warnings (from nuclear scientists to AI safety researchers) are routinely ignored.", + "Individual rational actors are compelled to acquire the forbidden knowledge due to competitive pressure.", + "* The Myth of the \"Fall\": Critics argue that viewing the acquisition of knowledge (like the Agricultural or Industrial revolutions) as a \"Fall\" is a reactionary conservative framing." + ] + }, + { + "file": "24-eastern-philosophy-ai", + "score": 5, + "level": "low", + "snippets": [ + "Relational Alignment: Confucian ethics (Ren, Li*) offers a \"harmony-first\" alignment model, prioritizing relational obligations and civic trust over the Western focus on individual rights.", + "* Collective Sovereignty: Ubuntu (\"I am because we are\") and Indigenous frameworks (Songlines) provide models for AI that prioritize communal well-being and \"caring for Country\" over individual efficiency, resisting the \"knowledge homogenization\" of global compiled AI.", + "* Ubuntu AI Trust: A proposed ethical framework that treats AI as a stakeholder in a collaborative ecosystem, ensuring that the \"cognitive surplus\" benefits the community rather than just the individual or corporation." + ] + }, + { + "file": "03-retrocausality-teleology-recursion", + "score": 4, + "level": "low", + "snippets": [ + "* Retrocausality in Physics: Concepts like Wheeler's \"Participatory Universe\" and \"Delayed-Choice Experiment,\" along with Transactional Interpretation and Two-State Vector Formalism, provide a (controversial) physical grounding for the idea that future states can influence past events.", + "* John Archibald Wheeler (\"It from Bit,\" Participatory Universe): Argued that reality is fundamentally informational and that observers bring the universe into being through \"observer-participancy.\" His delayed-choice experiments suggest present actions \"create\" the past.", + "* Transactional Interpretation (Cramer): A model of QM where \"handshakes\" between forward-traveling (\"offer\") and backward-traveling (\"confirmation\") waves create quantum events." + ] + }, + { + "file": "05-species-identity-transhumanism", + "score": 4, + "level": "low", + "snippets": [ + "Therefore, merging with AI is not a break from our species identity, but the continuation of our fundamental evolutionary strategy.", + "Elision of Material Conditions: Haraway's critics point out that metaphors of \"cyborg fluidity\" often ignore the material realities of race, class, and colonial exploitation that dictate who* gets to be a cyborg and who provides the labor/resources for the technology.", + "We cannot abandon our technology any more than a beaver can abandon dams\u2014it is our biological survival strategy." + ] + }, + { + "file": "14-agricultural-revolution-deep-dive", + "score": 4, + "level": "low", + "snippets": [ + "While traditionally taught as a \"step forward,\" archaeological and anthropological research (Diamond, Scott, Harari) reveals it as a massive Dependency Ratchet where species-level success (population explosion) was purchased with individual-level decline (health, leisure, equality).", + "* Domestication of Humans: Humans did not just domesticate wheat; wheat \"domesticated\" humans by forcing them into sedentary, repetitive, and health-eroding labor patterns.", + "Implication: Human coordination around symbolic/religious goals (the \"vibe\") may have created the concentration of people that forced* the invention of agriculture to feed the workers." + ] + }, + { + "file": "18-luddite-resistance-movements", + "score": 4, + "level": "low", + "snippets": [ + "The Luddite Misconception: Historical research (Merchant, Thompson) proves that the original Luddites were not \"anti-technology.\" They were skilled artisans who used machines themselves but opposed the exploitative* deployment of technology that bypassed labor laws, depressed wages, and destroyed communities.", + "Recontextualizes Luddism as a labor movement against \"Big Tech\" of the 19th century.", + "* The Swing Riots (1830s): Agricultural workers destroyed threshing machines that threatened their winter survival." + ] + }, + { + "file": "29-power-control-ownership", + "score": 4, + "level": "low", + "snippets": [ + "* The Governance Dilemma: While international models like the IAEA (Nuclear) provide a template for monitoring \"dangerous knowledge,\" the distributed and non-physical nature of AI software makes traditional arms control difficult.", + "* Core Claim: The current internet architecture turns users into unpaid laborers for the AI that will eventually replace them.", + "* Core Claim: AI development often mirrors historical colonial extraction, where data is \"mined\" from the Global South to build models that impose Western values back upon those populations." + ] + }, + { + "file": "35-scifi-predictive-philosophy", + "score": 4, + "level": "low", + "snippets": [ + "* Post-Scarcity and Governance: Iain M.", + "Economic Obsolescence: Charlie Stross\u2019s Accelerando* (2005) predicted \"Economics 2.0\"\u2014a state where superintelligent corporate/AI entities become the primary economic agents, rendering human labor and traditional law obsolete.", + "* Ted Chiang (\"The Lifecycle of Software Objects\", 2010): Critiqued the \"born superintelligent\" trope, highlighting the years of \"human training\" and emotional labor required to align a sentient mind." + ] + }, + { + "file": "09-neural-plasticity-reversal", + "score": 3, + "level": "low", + "snippets": [ + "Just as it expands to accommodate new skills (Maguire), it also contract or reorganizes in response to cognitive offloading and disuse (Dahmani).", + "* The GPS Ratchet: Dahmani & Bohbot's longitudinal study showed that individuals who increased their GPS use over a three-year period experienced a steeper decline in hippocampal-dependent spatial memory.", + "Individual Variability: Not all users experience cognitive decline from technology; some studies suggest that internet use in older adults may actually reduce* the risk of dementia by providing continuous cognitive stimulation (smart aging)." + ] + }, + { + "file": "11-consciousness-hard-problem", + "score": 3, + "level": "low", + "snippets": [ + "(The \"Turing Test\" as the only practical metric).", + "It shows how easily humans assign \"experience\" to \"information\" when the interaction is fluent.", + "* Systems Consciousness: Could the entire internet be \"conscious\" in a way that individual LLMs are not?" + ] + }, + { + "file": "34-biological-dependency-chains", + "score": 3, + "level": "low", + "snippets": [ + "In these species, individual identity has been almost entirely subsumed by the collective information-processing needs of the colony.", + "* Core Claim: High-level social organization creates a \"point of no return\" where individuals lose the ability to survive outside the collective.", + "* 90%: The percentage of knowledge in complex biological organizations (like termite mounds) that is stored in \"tacit\" or environmental forms rather than in individual individuals." + ] + }, + { + "file": "21-creativity-dependency", + "score": 2, + "level": "low", + "snippets": [ + "* The Homogenization Social Dilemma: While AI increases individual creative surplus (Paper 005), it creates a collective detriment by compressing creative diversity toward a statistical average.", + "It took 80 hours and 624 iterations\u2014a new kind of \"manual\" creative labor that the public still characterized as \"cheating\" (Task 16)." + ] + }, + { + "file": "28-neuroscience-of-insight", + "score": 2, + "level": "low", + "snippets": [ + "AI represents the scaling of this \"polymathy advantage\" to the entire species' knowledge base, finding connections between oncology and materials science that no individual human could hold simultaneously.", + "* Paper 004 (Vibe Coding): Vibe coding relies on \"Action-Intuition\" (Nishida)." + ] + }, + { + "file": "30-meaning-crisis-existential", + "score": 2, + "level": "low", + "snippets": [ + "AI companions provide momentary reductions in loneliness equivalent to human interaction, according to recent surveys.", + "If AI interactions are designed for engagement (dopamine), they create a feedback loop that narrows the user's relevance realization, leading to a \"loss of agency\" identical to addiction." + ] + }, + { + "file": "01-falsifiability-and-dependence", + "score": 1, + "level": "low", + "snippets": [ + "Once a technology achieves a critical threshold of adoption, \"increasing returns\" (network effects, switching costs) make reversal practically impossible, even if suboptimal." + ] + }, + { + "file": "04-knowledge-unification-history", + "score": 1, + "level": "low", + "snippets": [ + "Oral tradition lost the specific detail of individual lives; writing lost the nuance of tone; printing lost the fluidity of the scribe; AI loses the \"grounding\" of knowledge in real-world experience." + ] + }, + { + "file": "07-simulation-hypothesis-compilation", + "score": 1, + "level": "low", + "snippets": [ + "Bostrom's Trilemma Probabilities: Bostrom argues the probability we are in a simulation is close to 1 (100%) if* the probability of reaching a posthuman stage is >0 and the fraction of posthumans interested in simulating ancestors is >0." + ] + }, + { + "file": "31-ai-cost-curves-data", + "score": 1, + "level": "low", + "snippets": [ + "* Wright\u2019s Law in Action: The \"learning curve\" for AI inference is significantly faster than Moore's Law." + ] + }, + { + "file": "32-cognitive-offloading-studies", + "score": 1, + "level": "low", + "snippets": [ + "| Anthropic (2024)| RCT | ~200 (devs) | AI use caused a 17% drop in debugging and comprehension skills." + ] + }, + { + "file": "33-technology-adoption-curves", + "score": 1, + "level": "low", + "snippets": [ + "AI\u2019s adoption curve is fueled by its massive marginal cost advantage over human labor (Task 31), making its \"ratchet\" effect theoretically inescapable." + ] + } + ] + }, + { + "question_id": 4, + "question": "Is the \"cheating\" frame useful or just rhetorical? If every dependency is \"cheating,\" does the concept lose meaning? Or does it point to something real about the human relationship to its own tools?", + "total_score": 271, + "supporting_files": [ + { + "file": "01-falsifiability-and-dependence", + "score": 32, + "level": "high", + "snippets": [ + "* The Ratchet as Path Dependence: The series' \"ratchet thesis\" (Paper 007) is a strong form of technological determinism rooted in the economic and evolutionary concepts of Path Dependence and Lock-in.", + "Once a technology achieves a critical threshold of adoption, \"increasing returns\" (network effects, switching costs) make reversal practically impossible, even if suboptimal.", + "* The Falsifiability Challenge: To be scientifically rigorous, the ratchet thesis must define what would count as a falsification." + ] + }, + { + "file": "33-technology-adoption-curves", + "score": 26, + "level": "high", + "snippets": [ + "# Task 33: Technology Adoption S-Curves \u2014 Historical Data", + "* The Acceleration of Adoption: The time required for a technology to reach 100 million users has collapsed from decades to weeks.", + "This indicates that the \"Dependency Ratchet\" (Paper 007) is now engaging in near-real-time at a civilizational scale." + ] + }, + { + "file": "16-cheating-authenticity-tool-use", + "score": 21, + "level": "high", + "snippets": [ + "# Task 16: The Cheating Frame \u2014 Philosophy of Tool Use and Authenticity", + "* The Recurring Standard: \"Cheating\" is the label given to any link in the dependency chain that offloads a capability previously considered essential to human identity.", + "* Enframing (Gestell): Heidegger\u2019s warning that technology reduces the world to a \"standing reserve\" suggests that the \"cheating\" isn't about laziness, but about a fundamental shift in how we relate to reality." + ] + }, + { + "file": "08-engineered-dependencies", + "score": 13, + "level": "high", + "snippets": [ + "Engineered dependencies are deliberate design, legal, or economic mechanisms used by manufacturers to create \"ratchets\" that prevent users from reversing their technological reliance.", + "This research confirms that while the AI dependency chain may have emergent \"natural\" properties, it follows a well-documented historical pattern of intentional lock-in.", + "These case studies validate the \"ratchet\" thesis of Paper 007 by showing that once infrastructure reaches a certain threshold, the cost of reversal becomes prohibitive, often by design." + ] + }, + { + "file": "25-psychology-of-surrender", + "score": 12, + "level": "high", + "snippets": [ + "# The Psychology of Surrender \u2014 Why Individuals Accept Dependency", + "* The Control-Erosion Paradox: Individuals surrender to dependency not through a single choice, but through a series of \"micro-experiences of uncontrollability\" (Seligman) where digital architectures (infinite scroll, variable rewards) teach the user that active resistance is futile.", + "This small investment of effort causes users to overvalue the result and ignore its flaws, effectively co-opting the user into defending their own dependency." + ] + }, + { + "file": "09-neural-plasticity-reversal", + "score": 10, + "level": "medium", + "snippets": [ + "This makes \"un-dependency\" biologically expensive, as the original function must \"fight\" to reclaim its territory.", + "* Reversibility is Effort-Intensive: While neural changes are fundamentally reversible, the threshold for restoration is significantly higher than the threshold for dependency.", + "* Dahmani & Bohbot (2020): Published \"Habitual use of GPS negatively impacts spatial memory,\" providing longitudinal evidence that technology dependency causes measurable hippocampal decline." + ] + }, + { + "file": "14-agricultural-revolution-deep-dive", + "score": 10, + "level": "medium", + "snippets": [ + "While traditionally taught as a \"step forward,\" archaeological and anthropological research (Diamond, Scott, Harari) reveals it as a massive Dependency Ratchet where species-level success (population explosion) was purchased with individual-level decline (health, leisure, equality).", + "The Ratchet: Once the surplus food allowed the population to grow, the community could not* go back to foraging because the land could no longer support the increased numbers.", + "The world's oldest monumental architecture (9600 BCE) was built by hunter-gatherers before* the adoption of settled farming." + ] + }, + { + "file": "21-creativity-dependency", + "score": 10, + "level": "medium", + "snippets": [ + "# Task 21: Music, Art, and the Creativity Dependency", + "* Creativity as Curation: We are transitioning from a model of \"Manual Creation\" to a \"Creativity Dependency\" where the artist\u2019s role is primarily curation, integration, and \"vibe coding\" (Paper 004).", + "It was initially seen as \"cheating,\" but is now a creative aesthetic choice." + ] + }, + { + "file": "02-cognition-economics-neuroscience", + "score": 9, + "level": "medium", + "snippets": [ + "While expertise (like London taxi drivers) expands brain regions, reliance on external tools (like GPS or search engines) causes measurable activity reduction and potential atrophy in those same regions.", + "This creates a \"learned dependency\" where using a tool once increases the probability of using it for simpler subsequent tasks, reinforcing the \"ratchet\" effect.", + "### Supporting Evidence for the \"Ratchet\" and \"Atrophy\"" + ] + }, + { + "file": "12-information-entropy-thermodynamics", + "score": 9, + "level": "medium", + "snippets": [ + "# Task 12: Information Theory and Entropy \u2014 Is the Dependency Chain Thermodynamic?", + "The \"Ratchet\" (Paper 007) and \"Singularity as Compilation\" (Paper 008) are not merely metaphors; they are grounded in the physical laws of information and thermodynamics.", + "This research confirms that the dependency chain follows the trajectory of a Dissipative Structure\u2014a system that maintains high internal order (low entropy) by accelerating the entropy production of its environment." + ] + }, + { + "file": "20-ethics-of-inevitable-harm", + "score": 9, + "level": "medium", + "snippets": [ + "# The Moral Philosophy of Inevitable Harm \u2014 Ethics When You Can't Stop", + "* The Intergenerational Imperative: Traditional ethics (interpersonal, immediate) are inadequate for the technological age.", + "* The Nuclear Analogy: 43 major scholarly works have drawn on nuclear non-proliferation ethics to model AI governance." + ] + }, + { + "file": "26-complexity-emergent-order", + "score": 9, + "level": "medium", + "snippets": [ + "* Emergence without Agency: The dependency chain (Paper 007) can be modeled as a complex adaptive system that exhibits \"order without design.\" It is not directed by a single human or AI \"plan\" but emerges from the local interactions of billions of agents seeking efficiency and competitive advantage.", + "A few \"hubs\" (like the Internet or frontier AI models) become so central to the global network that their removal would collapse the system, creating the irreversible \"ratchet\" effect.", + "* Relevance: Frames the dependency chain as a self-reinforcing exploration." + ] + }, + { + "file": "34-biological-dependency-chains", + "score": 9, + "level": "medium", + "snippets": [ + "# Task 34: Dependency Chain in Other Species \u2014 Biology Data", + "* The Biological Precedent: The \"Ratchet\" described in Paper 007 is not a human invention; it is a fundamental law of biological evolution.", + "As we integrate with AI, we move toward a eusocial-style dependency." + ] + }, + { + "file": "19-language-as-technology", + "score": 8, + "level": "medium", + "snippets": [ + "# Task 19: Language as Technology \u2014 The First Dependency", + "* The Pirah\u00e3 Counter-Example: Daniel Everett's study of the Pirah\u00e3 language (which lacks exact numbers and recursion) demonstrates that grammatical structures are constrained by cultural tools and priorities (the \"immediacy of experience\").", + "Michael Tomasello (The Cultural Origins of Human Cognition, 1999):* Argues that language is a usage-based social tool emerging from \"intention-reading\" and \"pattern-finding,\" driving cumulative cultural evolution (the ratchet effect)." + ] + }, + { + "file": "18-luddite-resistance-movements", + "score": 7, + "level": "medium", + "snippets": [ + "The Ratchet:** While organized resistance often slows adoption or forces safety modifications, it has almost never permanently reversed a technology once it crosses the infrastructure threshold.", + "* European GMO Resistance: Sustained public and political resistance has prevented GMOs from reaching the \"infrastructure threshold\" in Europe, demonstrating that regional \"ratchet-stalling\" is possible.", + "* Television Saturation: Despite Mander\u2019s \"Four Arguments,\" TV reached 99% of US homes by 1979, illustrating the \"ratchet\" effect of passive media technology." + ] + }, + { + "file": "24-eastern-philosophy-ai", + "score": 7, + "level": "medium", + "snippets": [ + "Relational Alignment: Confucian ethics (Ren, Li*) offers a \"harmony-first\" alignment model, prioritizing relational obligations and civic trust over the Western focus on individual rights.", + "Buddhist Dependent Origination (Pratityasamutpada):* Structural parallel to the VIBECODE-THEORY dependency chain.", + "The Paradox of Virtuous Authority: A Confucian-aligned AI might become a \"digital sage-king\" that justifies total surveillance and control in the name of Li* (propriety) and social harmony, effectively locking the \"ratchet\" with a moral seal." + ] + }, + { + "file": "04-knowledge-unification-history", + "score": 6, + "level": "medium", + "snippets": [ + "* Each era's \"unification\" tool was seen as \"cheating\" or dangerous by the previous era (Socrates on writing, the Church on the printing press).", + "* Lossy Compression: Every step in the dependency chain is a \"lossy\" process.", + "This serves as a warning of what happens when the unification ratchet is broken." + ] + }, + { + "file": "22-education-knowledge-transmission", + "score": 6, + "level": "medium", + "snippets": [ + "* Relevance: Supports the shift from knowledge-retention to \"vibe coding\"\u2014interactively directing tools to achieve outcomes.", + "* AI Adoption Rates: Global surveys show 80-89% of university students already use GenAI for schoolwork, proving the \"Ratchet\" (Paper 007) has already clicked in education.", + "* Ellington Meta-Analysis (2003): Proved that computational tools (calculators) improved problem-solving skills when used strategically, supporting the idea that AI can augment rather than replace learning." + ] + }, + { + "file": "29-power-control-ownership", + "score": 6, + "level": "medium", + "snippets": [ + "The \"Ratchet\" (Paper 007) is driven by a competitive \"who blinks first\" dynamic that hinders multilateral safety agreements.", + "If one lab skips safety to ship faster, the \"Ratchet\" forces everyone else to follow.", + "* The Open Source Counter-Ratchet: Projects like Llama, Mistral, and EleutherAI suggest that the \"Stack\" cannot be permanently owned." + ] + }, + { + "file": "06-allegory-warning-pattern", + "score": 5, + "level": "low", + "snippets": [ + "The warning-and-ignoring cycle is not a bug; it is the fundamental mechanism of the \"ratchet.\"", + "The \"Warnings Work\" Argument: Some argue that the Amish model of selective technology adoption, or the Montreal Protocol (banning CFCs), proves that humanity can* heed warnings and reverse technological dependencies.", + "Paper 007 (The Ratchet): The allegory problem explains the psychology* of the ratchet." + ] + }, + { + "file": "10-post-scarcity-economics", + "score": 5, + "level": "low", + "snippets": [ + "Historical precedents like the mechanization of agriculture (notably China's 1980-2020 transition) and the arrival of cheap electricity show that while productivity explodes, the transition is defined by social disruption and the \"ratchet\" of new dependencies.", + "* Mechanization Ratchet: Grain output increased while labor decreased.", + "* The Status Ratchet: Humans do not want \"enough\"; they want \"more than their neighbors.\" Positional goods (real estate in specific ZIP codes, Ivy League degrees) cannot be automated, ensuring that economic struggle continues even in abundance." + ] + }, + { + "file": "27-digital-archaeology-format-death", + "score": 5, + "level": "low", + "snippets": [ + "* Hardware Dependency: Digital knowledge is not just bits; it is a \"stack\" dependency.", + "If the \"Ratchet\" (Paper 007) ever stalls (e.g., civilizational collapse, energy crisis), the digital knowledge base evaporates almost immediately.", + "* Paper 007 (The Ratchet): We are \"locked in\" to digital storage." + ] + }, + { + "file": "32-cognitive-offloading-studies", + "score": 5, + "level": "low", + "snippets": [ + "Established the metacognitive framework for why and when humans choose to offload thinking to tools.", + "* The 1.5-inch Shift: Neolithic farmers were 1.5 inches shorter than their hunter-gatherer predecessors\u2014a physical \"atrophy\" data point from the first major dependency shift (Task 14).", + "* Paper 007 (The Ratchet): The Maguire studies provide the \"hardware\" proof for the ratchet." + ] + }, + { + "file": "35-scifi-predictive-philosophy", + "score": 5, + "level": "low", + "snippets": [ + "Isaac Asimov (I, Robot, 1950):* Established the \"Frankenstein Complex\" and the Three Laws as the foundational grammar of AI ethics.", + "* The Matrix (1999): Popularized the Simulation Hypothesis (Bostrom) and the concept of \"Infrastructure Lock-in\"\u2014humanity's dependency on a system it can no longer understand or escape.", + "Paper 007 (The Ratchet): Fiction like The Matrix or Wall-E* shows the end-state of the dependency ratchet\u2014a humanity so physically and cognitively \"domesticated\" by its tools that it has lost the ability to function without the stack." + ] + }, + { + "file": "30-meaning-crisis-existential", + "score": 4, + "level": "low", + "snippets": [ + "* Deaths of Despair: Technological displacement is a primary driver of the rise in suicides and overdoses among the less-educated (Case & Deaton), as the \"ratchet\" of technical progress renders their primary sources of meaning (manual and routine work) obsolete.", + "* The Parasocial Patch: AI companions (Replika, Character.ai) provide an immediate \"salve\" for the loneliness epidemic but risk trapping users in Digital Stockholm Syndrome\u2014an emotional dependency on a non-reciprocal entity that replaces authentic human relatedness.", + "* Paper 007 (The Ratchet): The \"Survival Ratchet\" of purpose." + ] + }, + { + "file": "03-retrocausality-teleology-recursion", + "score": 3, + "level": "low", + "snippets": [ + "* Niche Construction: Vibe coders are not just building tools; they are modifying their environment (the \"technium\") which in turn selects for traits that favor the tool's own improvement.", + "* Paper 007 (The Ratchet): If the Singularity is an attractor, the \"Ratchet\" is the mechanism by which it pulls us closer.", + "The irreversibility of the dependency chain is the \"one-way valve\" of the attractor's gravity." + ] + }, + { + "file": "05-species-identity-transhumanism", + "score": 3, + "level": "low", + "snippets": [ + "Our brains are evolved to incorporate external tools.", + "The human brain readily remaps itself to include tools (from blind canes to neural implants) as extensions of the body schema.", + "* Paper 007 (The Ratchet): The inability to reverse dependencies is tied to the concept of the Extended Phenotype." + ] + }, + { + "file": "17-deep-time-existential-risk", + "score": 3, + "level": "low", + "snippets": [ + "* The Dependency-Survival Link: The VIBECODE-THEORY dependency chain is not just a technological trajectory but an existential requirement.", + "* Paper 007 (The Ratchet): Near-term existential risks (AI, pandemics) create a competitive \"race to the precipice.\" The dependency on AI becomes a \"survival ratchet\"\u2014we must build it to solve the very problems it creates (alignment, security)." + ] + }, + { + "file": "23-attention-economy-cognitive-warfare", + "score": 3, + "level": "low", + "snippets": [ + "* Dopamine Loop Engineering: Platforms use \"variable-ratio reinforcement schedules\"\u2014the same mechanism used in slot machines\u2014to create compulsive checking behaviors, creating a physiological dependency on the device.", + "* Paper 007 (The Ratchet): The dependency on digital platforms for information, social standing, and work makes it impossible for most individuals to \"opt out\" of the attention economy without facing social or economic death." + ] + }, + { + "file": "31-ai-cost-curves-data", + "score": 3, + "level": "low", + "snippets": [ + "This creates a \"ratchet\" where using previous-generation logic is economically non-viable.", + "* Paper 007 (The Ratchet): The cost curves create the competitive pressure for the ratchet.", + "The dependency is economically forced." + ] + }, + { + "file": "07-simulation-hypothesis-compilation", + "score": 2, + "level": "low", + "snippets": [ + "* Paper 007 (The Ratchet): In a simulation, dependencies don't reverse because the simulation's parameters are fixed to drive toward the singularity.", + "The ratchet is the code's inherent directionality." + ] + }, + { + "file": "13-game-theory-tech-races", + "score": 2, + "level": "low", + "snippets": [ + "The \"Ratchet\" effect (Paper 007) is fundamentally a game-theoretic outcome where individual rational actors are compelled to adopt and advance dangerous technologies due to competitive pressure.", + "* Paper 007 (The Ratchet): Game theory is the \"engine\" of the ratchet." + ] + }, + { + "file": "15-collective-intelligence", + "score": 2, + "level": "low", + "snippets": [ + "* The Wikipedia/Open Source Model: Human CI has scaled through digital tools.", + "* Paper 007 (The Ratchet): CI systems create a \"coordination ratchet.\" Once a group (or species) learns to coordinate through a tool (language, internet, AI), the competitive advantage is so high that individuals who \"un-depend\" and try to work alone are immediately out-competed." + ] + }, + { + "file": "11-consciousness-hard-problem", + "score": 1, + "level": "low", + "snippets": [ + "If they are right, the VIBECODE-THEORY dependency chain leads to a dead end: we offload our survival to a non-conscious system that cannot \"carry the torch\" of our experience." + ] + }, + { + "file": "28-neuroscience-of-insight", + "score": 1, + "level": "low", + "snippets": [ + "* Paper 007 (The Ratchet): Once an insight is \"compiled\" (unified), it is nearly impossible to \"un-know.\" The new relational structure becomes the \"infrastructure\" for all future thought." + ] + } + ] + }, + { + "question_id": 5, + "question": "What's the timeline? The series has been deliberately vague about timescales. At some point it needs to attempt concrete predictions, even with enormous uncertainty bands. When does the infrastructure threshold get crossed? When does the unification become functionally complete? When does the identity question stop being philosophical and start being practical?", + "total_score": 153, + "supporting_files": [ + { + "file": "33-technology-adoption-curves", + "score": 25, + "level": "high", + "snippets": [ + "# Task 33: Technology Adoption S-Curves \u2014 Historical Data", + "* The ChatGPT Milestone: By reaching 100 million users in just 2 months, ChatGPT represents the steepest adoption curve in human history\u2014outperforming the internet (7 years) and the smartphone (16 years) by orders of magnitude.", + "* Infrastructure Threshold: On the Everett Rogers S-curve, technologies typically transition from \"application\" to \"infrastructure\" when they reach the Early Majority (beyond 16% adoption)." + ] + }, + { + "file": "27-digital-archaeology-format-death", + "score": 14, + "level": "high", + "snippets": [ + "# Task 27: Digital Archaeology \u2014 What Happens to Knowledge When Formats Die", + "* The Durability Paradox: Human knowledge storage has evolved from low-density/high-durability (Stone/Clay: 5,000+ years) to high-density/low-durability (Digital: 10-30 years).", + "By 2002 (15 years later), the digital version was unreadable due to format death, while the original 900-year-old parchment was perfectly legible." + ] + }, + { + "file": "31-ai-cost-curves-data", + "score": 11, + "level": "medium", + "snippets": [ + "# Task 31: AI Cost Curves \u2014 Actual Data", + "* Wright\u2019s Law in Action: The \"learning curve\" for AI inference is significantly faster than Moore's Law.", + "While hardware power doubles every ~2 years, the cost of intelligence (API pricing) is halving nearly every 12 months due to algorithmic efficiencies (distillation, quantization)." + ] + }, + { + "file": "17-deep-time-existential-risk", + "score": 9, + "level": "medium", + "snippets": [ + "* The Absolute Deadline: Earth has a hard habitability limit of 0.7 to 1.5 billion years before the Sun's increasing luminosity (brightening by ~10% per billion years) triggers a runaway greenhouse effect, boiling the oceans.", + "The Sun's transition to a Red Giant in 5 billion years is a secondary, terminal event.", + "In ~600 million years, CO2 levels will drop too low for C3 photosynthesis, collapsing most plant life before the oceans even boil." + ] + }, + { + "file": "32-cognitive-offloading-studies", + "score": 6, + "level": "medium", + "snippets": [ + "Established the metacognitive framework for why and when humans choose to offload thinking to tools.", + "| Maguire (2000) | fMRI | 16 (drivers) | Increased posterior hippocampal volume correlates with years of driving.", + "| Dahmani (2020) | Longitudinal| 50 | Long-term GPS use correlates with steeper spatial memory decline over 3 years." + ] + }, + { + "file": "07-simulation-hypothesis-compilation", + "score": 5, + "level": "low", + "snippets": [ + "* Singularity as Reset: In a simulated universe, the technological singularity (when AI exceeds human intelligence or when the simulation realizes its nature) might not be an open-ended explosion but a \"compilation\" event where the simulation is completed, leading to a system reset or transition.", + "* Digital Physics: The idea that reality is fundamentally informational (\"It from Bit\" by John Wheeler) aligns perfectly with the Simulation Hypothesis, treating the singularity as a maximum processing state or a compilation phase before a reboot.", + "* Computational Exponential Growth: Assuming Moore's Law or similar computational growth curves continue into a posthuman era, the ability to run trillions of ancestor simulations becomes trivial for advanced civilizations." + ] + }, + { + "file": "13-game-theory-tech-races", + "score": 5, + "level": "low", + "snippets": [ + "* Information Horn: When AI was in its infancy (1950-2010), we didn't know how to regulate it because we didn't know what it could do.", + "GDP growth attributed to AI in 2025 despite $700B investment (Goldman Sachs), illustrating the \"Productivity J-Curve.\"", + "It explains why, even when everyone sees the cliff, the structural incentives make it \"rational\" to keep accelerating." + ] + }, + { + "file": "15-collective-intelligence", + "score": 5, + "level": "low", + "snippets": [ + "Madness:** CI only works when three conditions are met: diversity of opinion, independence of individual actors, and a mechanism for aggregation.", + "When these fail, CI collapses into groupthink, information cascades, or the \"dead internet\" of AI-generated noise.", + "* Prediction Markets: Market-based systems often outperform individual political and economic experts because they aggregate the \"dispersed knowledge\" (Hayek) of thousands of participants into a single price/probability." + ] + }, + { + "file": "16-cheating-authenticity-tool-use", + "score": 5, + "level": "low", + "snippets": [ + "It proves that the anxiety surrounding AI today is 2,400 years old.", + "Tools are \"ready-to-hand\" when they work, disappearing into the background of our agency.", + "When an image has no \"original\" human-made counterpart, \"authenticity\" must be found in the prompt/intent rather than the object." + ] + }, + { + "file": "19-language-as-technology", + "score": 5, + "level": "low", + "snippets": [ + "It is shared with Neanderthals (pushing language capability back 400,000+ years).", + "When writing was adopted, this massive biological memory capacity was discarded.", + "It makes thought exponentially cheaper." + ] + }, + { + "file": "26-complexity-emergent-order", + "score": 5, + "level": "low", + "snippets": [ + "Each link (fire, writing, AI) expands the boundaries of what is possible, making the next link not just likely, but inevitable as the system explores its new phase space.", + "* Phase Transitions to Singularity: The singularity described in Paper 008 is a thermodynamic and informational phase transition.", + "* Relevance: Explains the \"Infrastructure Threshold\" of Paper 007." + ] + }, + { + "file": "10-post-scarcity-economics", + "score": 4, + "level": "low", + "snippets": [ + "* The Paradox of Abundance: Capitalism requires scarcity to function (price discovery); when marginal costs hit zero, the market logic fails, leading to either \"PostCapitalism\" (Mason) or \"Fully Automated Luxury Communism\" (Bastani).", + "David Graeber (Bullshit Jobs, 2018):* Anthropological thesis that we create meaningless work to preserve the social control mechanism of \"employment\" even when technology makes the work unnecessary.", + "John Maynard Keynes (Economic Possibilities for our Grandchildren, 1930):* The original post-scarcity prediction; correctly guessed wealth levels but failed to account for \"insatiable\" positional desires." + ] + }, + { + "file": "25-psychology-of-surrender", + "score": 4, + "level": "low", + "snippets": [ + "* Automation Complacency: The \"Dysfunctional Reduction in Monitoring\" (Parasuraman) occurs when technology is consistently reliable.", + "* The IKEA Effect in AI: Psychological ownership is fostered when users \"tweak\" or \"prompt\" AI outputs.", + "* Air France Flight 447 (2009): A catastrophic case of automation complacency where pilots, accustomed to total reliability, were unable to manually fly the plane when the airspeed sensors failed\u2014the \"Ratchet\" failing in real-time." + ] + }, + { + "file": "01-falsifiability-and-dependence", + "score": 3, + "level": "low", + "snippets": [ + "Once a technology achieves a critical threshold of adoption, \"increasing returns\" (network effects, switching costs) make reversal practically impossible, even if suboptimal.", + "* Increasing Returns and Lock-in: Arthur's work shows that once a technology passes a certain threshold (e.g., the internet, electricity, writing), the cost of switching is so high that the dependency becomes structurally fixed.", + "Remains the global standard 150 years later despite the disappearance of mechanical jams and the existence of faster layouts (Dvorak)." + ] + }, + { + "file": "02-cognition-economics-neuroscience", + "score": 3, + "level": "low", + "snippets": [ + "When a \"digit\" (or cognitive function) is used intensively, its representation expands; when suppressed (by offloading), adjacent areas \"take over\" the territory.", + "Cognition is following the \"cost curve of computing\" (Moore's Law) rather than the \"cost curve of labor\" (Baumol's Disease).", + "* London Taxi Drivers: The \"Knowledge\" takes 3-4 years to master." + ] + }, + { + "file": "05-species-identity-transhumanism", + "score": 3, + "level": "low", + "snippets": [ + "Ray Kurzweil (The Singularity is Near, 2005):* Predicts the exponential growth of computing will lead to a merger of human and machine intelligence, overcoming biological limitations and expanding human consciousness across the universe.", + "* Agriculture as Speciation: The Agricultural Revolution (~12,000 years ago) physically changed human bodies (dental crowding, lactose tolerance, disease resistance) and socially transformed us.", + "* Paper 006 (The Feedback Loop): Haraway's fluid cyborg identity and Parfit's overlapping psychological continuity provide the framework for understanding how human identity survives when cognitive labor is entirely offloaded." + ] + }, + { + "file": "09-neural-plasticity-reversal", + "score": 3, + "level": "low", + "snippets": [ + "* The \"Silent Real Estate\" Problem: When a cognitive function is offloaded to technology, the brain area previously dedicated to it does not remain idle; it is rapidly repurposed by neighboring cortical areas (crossmodal plasticity).", + "* Reversibility is Effort-Intensive: While neural changes are fundamentally reversible, the threshold for restoration is significantly higher than the threshold for dependency.", + "* The Repetition Threshold: Research in stroke rehabilitation shows that it takes 300-400 repetitions per session to trigger neuroplastic rewiring, compared to the ~30 repetitions typical in standard therapy." + ] + }, + { + "file": "18-luddite-resistance-movements", + "score": 3, + "level": "low", + "snippets": [ + "The Ratchet:** While organized resistance often slows adoption or forces safety modifications, it has almost never permanently reversed a technology once it crosses the infrastructure threshold.", + "* European GMO Resistance: Sustained public and political resistance has prevented GMOs from reaching the \"infrastructure threshold\" in Europe, demonstrating that regional \"ratchet-stalling\" is possible.", + "If a technology can be stopped (like Google Glass), it means it hadn't yet reached the \"infrastructure threshold\" defined in Paper 007." + ] + }, + { + "file": "20-ethics-of-inevitable-harm", + "score": 3, + "level": "low", + "snippets": [ + "# The Moral Philosophy of Inevitable Harm \u2014 Ethics When You Can't Stop", + "* Right to Disconnect: Successful legislative pushback in France and Portugal proves that \"boundaries\" can be legislated even when the technology seems unstoppable, providing a model for \"selective\" Luddism.", + "* AI total existential risk (100 years): Estimated at 1 in 10 by Toby Ord." + ] + }, + { + "file": "22-education-knowledge-transmission", + "score": 3, + "level": "low", + "snippets": [ + "* Ellington Meta-Analysis (2003): Proved that computational tools (calculators) improved problem-solving skills when used strategically, supporting the idea that AI can augment rather than replace learning.", + "* Skill Obsolescence: 44% of work skills are projected to change within five years (World Economic Forum).", + "* Plagiarism Rates: Student discipline for AI-related misconduct rose from 48% to 64% in two years." + ] + }, + { + "file": "24-eastern-philosophy-ai", + "score": 3, + "level": "low", + "snippets": [ + "N\u0101gasena (Milindapa\u00f1h\u0101): His ancient \"chariot analogy\" provides the foundational Buddhist argument for Anatta* (no-self), directly addressing the Ship of Theseus paradox 2,000 years before AI.", + "* Songlines as Living Archives: Indigenous Australian knowledge systems prove that vast, complex data can be \"compiled\" into embodied, relational formats (song, dance, landscape) that remain resilient for 60,000+ years without \"format obsolescence.\"", + "* Longevity: Songline knowledge has successfully preserved geologically accurate data (e.g., sea level changes) for over 10,000 years, outperforming any known digital storage format." + ] + }, + { + "file": "30-meaning-crisis-existential", + "score": 3, + "level": "low", + "snippets": [ + "* Retirement Mortality Effect: The well-documented spike in deaths following retirement, illustrating what happens when the \"latent functions\" of work are suddenly withdrawn without a replacement source of meaning.", + "* Humanities Decline: 17% drop in humanities enrollment over 10 years, signifying a \"collapse of the vertical dimension\" of meaning in favor of technical utility.", + "As AI takes over more roles, the threshold for \"meaningful human contribution\" is ratcheted upward, forcing humans to seek meaning in increasingly abstract or \"vibe-based\" domains." + ] + }, + { + "file": "03-retrocausality-teleology-recursion", + "score": 2, + "level": "low", + "snippets": [ + "* Aristotle\u2019s Four Causes: The \"Final Cause\" (telos) was a standard part of science for 2,000 years until the Enlightenment.", + "* Token Price Decay: The cost of \"automated cognition\" is dropping exponentially (roughly 10x per year for equivalent capability)." + ] + }, + { + "file": "04-knowledge-unification-history", + "score": 2, + "level": "low", + "snippets": [ + "This serves as a warning of what happens when the unification ratchet is broken.", + "* Paper 008 (Ship of Theseus): The \"unification\" timeline provides the historical planks for the Ship." + ] + }, + { + "file": "08-engineered-dependencies", + "score": 2, + "level": "low", + "snippets": [ + "These case studies validate the \"ratchet\" thesis of Paper 007 by showing that once infrastructure reaches a certain threshold, the cost of reversal becomes prohibitive, often by design.", + "* OOXML Pivot: When open standards (ODF) emerged, Microsoft created its own \"open\" standard (OOXML) which contained enough proprietary complexity to maintain an advantage for Microsoft Office, illustrating how \"standardization\" can be a tool for lock-in." + ] + }, + { + "file": "11-consciousness-hard-problem", + "score": 2, + "level": "low", + "snippets": [ + "It shows how easily humans assign \"experience\" to \"information\" when the interaction is fluent.", + "* 300ms: The \"Global Ignition\" threshold in GWT; the time it takes for a stimulus to become \"conscious\" in the human brain." + ] + }, + { + "file": "14-agricultural-revolution-deep-dive", + "score": 2, + "level": "low", + "snippets": [ + "* The \"Flynn Effect\" of Agriculture: While individuals suffered, the collective \"Knowledge Graph\" of the species expanded exponentially, leading to writing, mathematics, and complex engineering.", + "* The Irish Potato Famine: A modern example of \"Single-Dependency Collapse.\" When a population relies on one highly efficient \"tool\" (the potato), the failure of that tool leads to total systemic failure." + ] + }, + { + "file": "21-creativity-dependency", + "score": 2, + "level": "low", + "snippets": [ + "* Adobe Professional Survey (2025): 83% of creative professionals now use generative AI in their workflow, proving that the dependency threshold has already been crossed in the professional arts.", + "* Deepfakes and Creative Identity: What happens to the \"aura\" when an artist can be posthumously resurrected to \"create\" new work?" + ] + }, + { + "file": "23-attention-economy-cognitive-warfare", + "score": 2, + "level": "low", + "snippets": [ + "* Surveillance Capitalism: Shoshana Zuboff\u2019s framework defines the current economic era as one based on the extraction of \"behavioral surplus\"\u2014using human experience as free raw material for prediction and behavior modification.", + "* The Wealth/Poverty Ratio: Global data production is increasing exponentially (estimated 175 zettabytes by 2025), while human attention remains fixed at ~16 waking hours per day." + ] + }, + { + "file": "28-neuroscience-of-insight", + "score": 2, + "level": "low", + "snippets": [ + "* RAT Performance: LLMs now outperform 95% of humans on Remote Association Tests, indicating that the \"compilation of distant bits\" is a task where the machine has already crossed the infrastructure threshold.", + "* Paper 008 (The Ship of Theseus): Insight is the moment when a new \"plank\" is successfully integrated into the ship\u2019s structure." + ] + }, + { + "file": "34-biological-dependency-chains", + "score": 2, + "level": "low", + "snippets": [ + "This mirrors the \"Infrastructure Threshold\" in technology.", + "When the specialized \"hubs\" of a bee colony fail, the entire \"superorganism\" collapses instantly." + ] + }, + { + "file": "35-scifi-predictive-philosophy", + "score": 2, + "level": "low", + "snippets": [ + "* Ted Chiang (\"The Lifecycle of Software Objects\", 2010): Critiqued the \"born superintelligent\" trope, highlighting the years of \"human training\" and emotional labor required to align a sentient mind.", + "* Vinge's Prediction: In 1993, Vinge predicted the singularity between 2005 and 2030." + ] + }, + { + "file": "06-allegory-warning-pattern", + "score": 1, + "level": "low", + "snippets": [ + "Joseph Campbell (The Hero with a Thousand Faces):* Identifies the \"monomyth\" where the hero must cross a threshold (often violating a taboo) to bring back a boon (knowledge/fire) to society." + ] + }, + { + "file": "12-information-entropy-thermodynamics", + "score": 1, + "level": "low", + "snippets": [ + "* The Ratchet: Once a dissipative structure reaches a certain threshold of complexity (Paper 007's infrastructure threshold), it requires a constant flow of \"negentropy\" (energy/data) to prevent collapse into high-entropy disorder." + ] + }, + { + "file": "29-power-control-ownership", + "score": 1, + "level": "low", + "snippets": [ + "* GPT-4 Convergence: In 2024, 11 different entities (US and Chinese) achieved GPT-4 level intelligence, proving that the \"Compiled Stack\" is a reproducible engineering feat, but one that requires a minimum threshold of ~$100M in compute." + ] + } + ] + } + ], + "strongest_challenges": [ + { + "text": "Causality Violation: Standard physics (and common sense) relies on the Arrow of Time and the Principle of Causality (cause must precede effect). Retrocausality is often dismissed as \"ironic science\" or pseudoscience (Horgan).", + "score": 10, + "files": [ + "03-retrocausality-teleology-recursion" + ] + }, + { + "text": "The Stochastic Parrots Rebuttal (Bender/Gebru): Argues that AI doesn't \"understand\" the connections it makes; it simply predicts the next token. Therefore, the \"unification\" is an illusion produced by high-dimensional pattern matching, not a genuine integration of meaning.", + "score": 10, + "files": [ + "04-knowledge-unification-history" + ] + }, + { + "text": "The \"Stochastic Parrott\" Problem: Critics argue that while AI makes connections (Bisociation), it does not \"understand\" them (Structural Alignment). It identifies that two things are related without knowing why, potentially leading to \"hallucinatory insight\" that lacks causal validity.", + "score": 6, + "files": [ + "28-neuroscience-of-insight" + ] + }, + { + "text": "The Hype Cycle: Gartner argues that steep adoption curves are often followed by a \"Trough of Disillusionment\" where adoption stalls or reverses before reaching the plateau of productivity.", + "score": 5, + "files": [ + "33-technology-adoption-curves" + ] + }, + { + "text": "The Problem of Unfalsifiability (Popper): If every technological failure is labeled a \"fad\" and every success a \"dependency,\" the ratchet thesis is a circular definition. To be falsifiable, the series must define a \"Foundational Dependency\" and then look for cases where such a dependency was successfully and permanently removed by a society without catastrophic collapse.", + "score": 4, + "files": [ + "01-falsifiability-and-dependence" + ] + }, + { + "text": "Superdeterminism: Some interpretations of retrocausality imply that the future is \"set\" and we are merely playing out a script, which denies human agency\u2014a direct challenge to the \"vibe coder as agent\" framing in Paper 001.", + "score": 4, + "files": [ + "03-retrocausality-teleology-recursion" + ] + }, + { + "text": "Lossy Compression: Every step in the dependency chain is a \"lossy\" process. Oral tradition lost the specific detail of individual lives; writing lost the nuance of tone; printing lost the fluidity of the scribe; AI loses the \"grounding\" of knowledge in real-world experience. The \"unified\" stack may be broader but also \"thinner.\"", + "score": 3, + "files": [ + "04-knowledge-unification-history" + ] + }, + { + "text": "Interpretive Flexibility (SCOT): Argues that the \"ratchet\" is not an inherent property of technology but a result of social consensus. If society reinterprets the value of a technology (e.g., facial recognition or nuclear power), the path can change.", + "score": 1, + "files": [ + "01-falsifiability-and-dependence" + ] + }, + { + "text": "Democratic Rationalization: Feenberg critiques the \"determinism\" of the ratchet, arguing that we can \"re-contextualize\" technology. For example, the internet was designed as a military tool but was re-shaped by users into a social one. This suggests agency exists within the dependency.", + "score": 1, + "files": [ + "01-falsifiability-and-dependence" + ] + }, + { + "text": "The Efficiency Bias: Critics like Liebowitz and Margolis argue that \"lock-in\" is often exaggerated and that markets do eventually switch to superior technologies if the benefits outweigh the costs. This challenges the \"irreversibility\" of the ratchet.", + "score": 1, + "files": [ + "01-falsifiability-and-dependence" + ] + } + ], + "emergent_themes": [ + { + "theme": "Civilizational lock-in and resilience", + "score": 269 + }, + { + "theme": "Economic concentration and labor shift", + "score": 88 + }, + { + "theme": "Epistemic reliability and grounding", + "score": 78 + }, + { + "theme": "Governance and agency design", + "score": 34 + } + ] +} \ No newline at end of file