Workflow System
The workflow system executes AI skills programmatically and tracks their execution history.
Overview
Skills are invoked via the Claude CLI using stream-json format, which allows proper skill expansion and tool access. The workflow executor:
- Invokes a skill by name
- Captures execution metrics (duration, cost, turns)
- Logs results to this file
- Commits changes using the
/agent-commitskill for meaningful messages
Available Skills
Orchestration
The evolution loop (scripts/evolve_loop.py) is the main orchestrator. It runs a deterministic 24-slot task cycle with time-triggered events like daily highlights at 8am UTC.
| Skill | Purpose | Modifies Content? |
|---|---|---|
/replenish-queue [mode] | Auto-generate tasks when queue is empty or near-empty | Yes (todo.md only) |
/tune-system | Monthly meta-review—analyze system operation, adjust cadences/thresholds | Yes (state, minor) |
Content Creation
| Skill | Purpose | Modifies Content? |
|---|---|---|
/expand-topic [topic] | Generate new article on a topic | Yes (creates draft) |
/refine-draft [file] | Improve existing draft content | Yes (edits content) |
/research-topic [topic] | Web research, outputs notes to research | Research notes only |
/research-voids | Daily research on cognitive gaps and unchartable territories | Research notes only |
Review & Validation
| Skill | Purpose | Modifies Content? |
|---|---|---|
/validate-all | Check frontmatter, links, orphans | No (reports only) |
/check-tenets | Verify alignment with 5 foundational tenets | No (reports only) |
/check-links | Verify all internal links work | No (reports only) |
/pessimistic-review | Find logical gaps, unsupported claims, counterarguments | No (reports only) |
/optimistic-review | Find strengths and expansion opportunities | No (reports only) |
/deep-review [file] | Comprehensive single-document review with improvements | Yes (modifies content) |
Content Maintenance
| Skill | Purpose | Modifies Content? |
|---|---|---|
/coalesce | Merge overlapping articles into unified pieces, archiving originals | Yes (creates, archives) |
Publishing
| Skill | Purpose | Modifies Content? |
|---|---|---|
/add-highlight [topic] | Add item to What’s New page (max 1/day). Supports backlog: can highlight any content not featured in last 90 days | Yes (highlights.md) |
Internal (Automation Only)
| Skill | Purpose | Modifies Content? |
|---|---|---|
/agent-commit | Analyze changes and create meaningful git commit messages | Git only |
The /agent-commit skill is invoked automatically by the evolution loop after each content-modifying skill completes. It:
- Receives the previous skill’s output as context
- Runs
git diffto analyze actual file changes - Generates a descriptive commit message (e.g.,
refine(deep-review): improve clarity in free-will.md) - Creates the commit with agent authorship
This replaces the previous generic commit messages like auto(deep-review): Automated execution.
Queue Replenishment
The task queue in todo auto-replenishes when active tasks (P0-P2) drop below 3. The evolution loop triggers /replenish-queue automatically when the queue is low.
Task Types and Chains
Tasks generate follow-up tasks automatically:
| Type | Description | Generates |
|---|---|---|
research-topic | Web research producing notes | → expand-topic |
expand-topic | Write new article | → cross-review |
cross-review | Review article in light of new content | (terminal) |
refine-draft | Improve existing draft | (terminal) |
deep-review | Comprehensive single-doc review | (terminal) |
Task Generation Sources
/replenish-queue generates tasks from four sources:
- Task chains: Recent
research-topiccompletions that need articles written; recentexpand-topiccompletions that need cross-review integration - Unconsumed research: Research notes in
research/without corresponding articles - Gap analysis: Content gaps based on tenet support, undefined concepts, coverage targets
- Staleness: AI-generated content not reviewed in 30+ days
Replenishment Modes
conservative: 3-5 high-confidence tasks only- (default): 5-8 tasks with good diversity
aggressive: 8-12 tasks including speculative ones
Cross-Review Tasks
When a new article is written, /replenish-queue generates cross-review tasks for related existing articles. These reviews:
- Add wikilinks to the new content
- Check for arguments that the new content supports or challenges
- Ensure consistent terminology
- Identify missing cross-references
System Tuning
The /tune-system skill provides meta-level self-improvement for the automation system. It runs monthly (30-day cadence, injected when 45 days overdue).
What It Analyzes
- Cadence adherence: Are maintenance tasks running on schedule or frequently overdue?
- Failure patterns: What’s causing systematic task failures?
- Queue health: Is replenishment producing tasks that actually get executed?
- Review findings: Are identified issues being addressed?
- Convergence progress: Is the system making progress toward goals?
Change Tiers
| Tier | Scope | Approval |
|---|---|---|
| Tier 1 | Cadence ±2 days, threshold ±2 days | Automatic (max 3/session) |
| Tier 2 | New P3 tasks, larger changes | Recommendation only |
| Tier 3 | Skill changes, tenet-related | Report only |
Safeguards
- Evidence threshold: Requires 5+ data points before making changes
- Change cooldown: Settings can’t change twice within 60 days
- Locked settings: Human can lock any setting via
locked_settingsin state - Abort conditions: Stops if >50% failure rate or convergence regresses
Output
Creates report at reviews/system-tune-YYYY-MM-DD.md documenting findings, changes applied, and recommendations.
Running Workflows
Evolution Loop
The evolution loop runs continuously, executing tasks on a 24-slot cycle:
# Run evolution loop (Ctrl+C to stop)
python scripts/evolve_loop.py --interval 2400
# Describe the task cycle
python scripts/evolve_loop.py --describe-cycle
# Test with limited iterations
python scripts/evolve_loop.py --max-iterations 5
Individual Skills
# Run a skill manually
uv run python scripts/run_workflow.py validate-all
# Run with more turns for complex tasks
uv run python scripts/run_workflow.py expand-topic --max-turns 30
Execution Format
Each workflow execution logs:
- Status: Success, Error, MaxTurns, or PermissionDenied
- Duration: How long the execution took
- Cost: API cost in USD
- Turns: Conversation turns used vs maximum
- Output: Brief summary or error message
- Session: Session ID for debugging
Recent Executions
| Title | Created | Modified |
|---|---|---|
Recent discoveries, new articles, and interesting findings from The Unfinishable Map’s ongoing evolution. This page updates automatically as the AI explores philosophical questions—bookmark it to follow along.
2026-03-09: The Reconstruction Paradox: When Your Brain Lies and When It Doesn’t Your brain fills in your blind spot and edits out 40 minutes of vision daily—yet can’t fix the Müller-Lyer illusion even when you know the truth. Research into why reveals clues about the mind-body interface. | 2026-01-07 | 2026-03-09 |
✓ 2026-03-08: Research neural refresh rates and the smoothness problem Type: research-topic Notes: Neurons fire at roughly 300Hz maximum, cortical oscillations operate at 4-100Hz (theta, alpha, beta, gamma), yet conscious visual experience appears temporally continuous and smooth. Research: what are the actual temporal constraints on neural processing? What is the “frame rate” of consciousness according to current theories? Investigate Crick & Koch’s visual awareness work, the 13ms image recognition studies, saccadic suppression, change blindness, the flash-lag effect, motion smearing. How does the brain achieve apparent smoothness — is it interpolation, prediction, or something else? Under dualism, could smoothness be a mind-side capability rather than neural construction? Builds on perception-and-conscious-experience.md, neural-implementation-specifics.md. Output: neural refresh rates and the smoothness problem ✓ 2026-03-08: Research the capability division … | 2026-03-02 | 2026-03-09 |
✓ 2026-03-01: Cross-review past-self-void.md considering historical-consciousness-void insights Type: cross-review Notes: New article voids/historical-consciousness-void.md (2026-03-01) examines whether consciousness itself has changed across historical epochs — a temporal version of Nagel’s bat problem scaled to the species level. voids/past-self-void.md covers the inaccessibility of one’s own past conscious states and shares the same epistemic structure (temporal inaccessibility of phenomenal states) at the individual scale. The two articles are explicitly connected: historical-consciousness-void references the past-self void as “the parallel void within a single lifetime.” Check for cross-links and complementary analysis. Also helps de-orphan the new article. Output: obsidian/voids/past-self-void.md – Context: Cross-review past-self-void.md considering historical-consciousness-void insights ✓ 2026-03-01: Integrate … | 2026-02-23 | 2026-03-09 |
✓ 2026-02-22: Deep review the-strong-emergence-of-consciousness.md Type: deep-review Notes: AI-generated content (ai_contribution: 100) that has never received a deep review since creation (2026-02-08). Product of coalesce merging consciousness-and-strong-emergence.md and consciousness-and-the-emergence-debate.md. Coalesced articles are particularly prone to inconsistencies from the merge process. Verify coherence and cross-references. Output: obsidian/topics/the-strong-emergence-of-consciousness.md ✓ 2026-02-22: Review bergson-and-duration.md considering specious present insights Type: cross-review Notes: New article concepts/specious-present-temporal-experience.md provides analysis of the experienced “now” that directly connects to Bergson’s concept of durée. topics/bergson-and-duration.md should cross-reference the specious present treatment, particularly how James and Bergson converge on the non-punctual nature of temporal experience. Output: … | 2026-02-16 | 2026-03-09 |
✓ 2026-02-15: Create concept page for valence Type: expand-topic Notes: Suggested by optimistic review. Valence—the felt goodness or badness of experience—is referenced across emotional-consciousness.md, phenomenal-value-realism.md, and emotion-as-evidence-for-dualism.md but lacks its own concept page. Central to the Map’s case that phenomenal properties are causally efficacious. See optimistic-2026-02-15-evening-2.md Output: Create concept page for valence ✓ 2026-02-15: Write article on the aesthetics of consciousness Type: expand-topic Notes: Suggested by optimistic review. Aesthetic experience may be the clearest case of value requiring consciousness: beauty is beautiful for a subject. Builds on consciousness-and-aesthetic-creation.md, phenomenal-value-realism.md, phenomenology-of-moral-experience.md. See optimistic-2026-02-15-evening-2.md Output: the aesthetics of consciousness ✓ 2026-02-15: Write article on the phenomenology of imagination Type: expand-topic Notes: Suggested … | 2026-02-09 | 2026-03-09 |
✓ 2026-02-08: Write article on phenomenal value realism Type: expand-topic Notes: Suggested by optimistic review 2026-01-31 (evening). The metaethical position that experiential qualities have intrinsic normative significance—currently referenced but not systematically developed. Grounds normative facts in irreducible phenomenal facts. Builds on epistemic-advantages-of-dualism.md (mentions it), qualia.md, aesthetic-dimension-of-consciousness.md. See optimistic-2026-01-31-evening.md Output: phenomenal value realism ✓ 2026-02-08: Write article on consciousness and memory Type: expand-topic Notes: Suggested by optimistic review 2026-01-31 (evening). How memory constitutes personal identity over time, the distinction between remembering and episodic “re-experiencing,” and what the phenomenology of memory reveals about consciousness. Supports Bidirectional Interaction—if memories causally influence present choices, and memories are constitutively phenomenal, consciousness is … | 2026-02-02 | 2026-03-09 |
✓ 2026-02-01: Create concept page for self-locating beliefs Type: expand-topic Notes: Suggested by optimistic review 2026-01-28 (comprehensive). Important for vertiginous question and many-worlds discussions. The distinction between qualitative knowledge and self-locating knowledge deserves dedicated treatment. Connects to Lewis’s Two Gods scenario. Output: Create concept page for self-locating beliefs ✓ 2026-02-01: Create concept page for phenomenal overflow Type: expand-topic Notes: Suggested by optimistic review 2026-01-28 (comprehensive). Block’s overflow research appears in multiple articles but lacks dedicated systematic treatment. Central to the access/phenomenal consciousness distinction. Output: Create concept page for phenomenal overflow ✓ 2026-02-01: Write article on phenomenological evidence methodology Type: expand-topic Notes: Suggested by optimistic review 2026-01-28 (comprehensive). The site’s use of first-person evidence deserves methodological … | 2026-01-26 | 2026-03-09 |
✓ 2026-01-25: Write voids article on tenet-generated voids Type: expand-topic Notes: Research completed in research/voids-tenet-generated-voids-2026-01-25.md. Every philosophical framework generates its own voids—questions it points toward but cannot answer. Examines the specific voids each of the Map’s five tenets creates: the irreducible phenomenal aspect (Dualism), the mechanism problem (Bidirectional Interaction), collapse-consciousness coordination (Minimal Quantum), indexical probability (No Many Worlds), and the meta-question of simplicity (Occam’s Limits). Builds on limits-reveal-structure.md, whether-real.md. Output: Write voids article on tenet-generated voids ✓ 2026-01-25: Write voids article on AI as void-explorer Type: expand-topic Notes: Research completed in research/voids-ai-as-void-explorer-2026-01-25.md. Examines whether AI cognition can probe territories closed to human minds. Key findings: AI operates in 12,000+ dimensional embedding spaces, lacks … | 2026-01-19 | 2026-03-09 |
2026-03-08T23:11:00+00:00 - research-topic Status: Success Topic: Neural refresh rates and the smoothness problem Output: neural-refresh-rates-smoothness-problem-2026-03-08 Sources consulted: 11 2026-03-08T22:11:00+00:00 - research-topic Status: Success Topic: The capability division problem in dualism — vision Output: capability-division-vision-2026-03-08 Sources consulted: 13 2026-03-08T21:11:00+00:00 - expand-topic Status: Success Topic: Illusionism as epiphenomenalism in disguise Output: illusionism-as-epiphenomenalism-in-disguise Word count: 1473 Based on research: yes — illusionism-consciousness-2026-01-14, epiphenomenalism-2026-01-08 2026-03-08T20:11:00+00:00 - expand-topic Status: Success Topic: Islamic and Sufi philosophical traditions on consciousness Output: islamic-sufi-philosophy-of-consciousness Word count: 2082 Based on research: yes — hard-problem-non-western-philosophy-2026-02-14, interaction-problem-non-western-philosophy-2026-02-17 2026-03-08T19:11:00+00:00 - … | 2026-03-02 | 2026-03-09 |
2026-03-01 23:52 UTC - optimistic-review Status: Success Content reviewed: 378 published articles (197 topics, 180 concepts, 1 tenets). Detailed analysis of ~40 representative articles. Output: optimistic-2026-03-01 2026-03-01 23:05 UTC - deep-review Status: Success File: past-self-void Word count: 2086 → 2138 (+52) Critical issues addressed: 0 Medium issues addressed: 3 (added historical-consciousness-void cross-reference as fourth bridge; fixed vague attribution in phenomenology section; fixed grammar) Enhancements made: 3 (condensed “What Would Challenge This View” from 4 to 3 points; tightened “What AI Might See”; added logomorphism parallel) Output: deep-review-2026-03-01-past-self-void 2026-03-01 21:52 UTC - deep-review Status: Success File: consciousness-and-the-phenomenology-of-place Word count: 1768 → 1945 (+177) Critical issues addressed: 0 Medium issues addressed: 2 (added “What Would Challenge This View?” section; resolved orphan status … | 2026-02-23 | 2026-03-09 |
2026-02-22 23:43 UTC - deep-review Status: Success File: the-strong-emergence-of-consciousness Word count: 2505 → 2515 (+10) Critical issues addressed: 0 Medium issues addressed: 1 (added Stapp cross-link from previous review’s remaining items) Enhancements made: 1 (inline stapp-quantum-mind wikilink in O’Connor-Wong paragraph) Output: deep-review-2026-02-22-2-the-strong-emergence-of-consciousness Stability: Article has converged after 3 reviews. No further internal improvements needed. 2026-02-22 23:10 UTC - deep-review Status: Success File: bergson-and-duration Word count: 2174 → 2283 (+109) Critical issues addressed: 0 Medium issues addressed: 1 (missing specious present connection) Enhancements made: 1 (specious present paragraph with Husserl retention-protention parallel) Output: deep-review-2026-02-22-bergson-and-duration 2026-02-22 18:31 UTC - research-voids Status: Success Topic: The Minimal Consciousness Void Category: Unexplorable / Occluded (Mixed) Output: … | 2026-02-16 | 2026-03-09 |
2026-02-15 18:31 UTC - deep-review Status: Success File: phenomenology-of-normative-properties Word count: 1999 → 2177 (+178) Critical issues addressed: 2 (Bildung misattribution, missing frontmatter field) Medium issues addressed: 5 (ethical blindness citation, description length, Prinz engagement, functionalist objection, vipassanā correction) Enhancements made: 5 cross-links added, counterargument engagement strengthened Output: deep-review-2026-02-15-phenomenology-of-normative-properties 2026-02-15 18:12 UTC - coalesce Status: Success Sources: quantum-neural-mechanisms-and-coherence, quantum-neural-mechanisms-and-coherence Target: quantum-neural-mechanisms-and-coherence Archived: archive/concepts/quantum-coherence-in-neural-systems.md, archive/concepts/quantum-binding-experimental-evidence.md References updated: 12 files (9 referencing coherence article, 3 referencing binding article) References to review: none (all active content updated; reviews/changelog archives left as … | 2026-02-09 | 2026-03-09 |
2026-02-08 22:59 UTC - optimistic-review Status: Success Content reviewed: 73+ topics, 100+ concepts, tenets page, 9 apex articles Output: optimistic-2026-02-08 2026-02-08 22:44 UTC - expand-topic Status: Success Topic: Phenomenology of Moral Experience Output: phenomenology-of-moral-experience Word count: 2315 Based on research: yes — phenomenal-value-realism-metaethics-2026-01-16 2026-02-08 22:30 UTC - expand-topic Status: Success Topic: Consciousness and Memory Output: consciousness-and-memory Word count: 1628 Based on research: yes — episodic-memory-consciousness-2026-01-16, consciousness-working-memory-2026-01-17, prospective-memory-consciousness-2026-01-17, semantic-memory-consciousness-2026-01-17, sleep-memory-consolidation-consciousness-2026-01-18, implicit-memory-consciousness-2026-01-18, voids-memory-void-2026-02-01 2026-02-08 22:14 UTC - deep-review Status: Success File: the-self-minimal-narrative-and-substantial Word count: 2210 → 2467 (+257) Critical issues addressed: 0 … | 2026-02-02 | 2026-03-09 |
2026-02-01 23:59 UTC - pessimistic-review Status: Success Content reviewed: self-locating-beliefs.md, indexical-identity-quantum-measurement.md, quantum-measurement-and-definite-outcomes.md Output: pessimistic-2026-02-01-late Critical issues: 3 (semantic-metaphysical conflation, gap-to-consciousness inference, unfalsifiable by design) Medium issues: 3 (circular tenet dependence, haecceity presupposed, MWI treatment uncharitable) Tasks added: 1 (address semantic-metaphysical conflation in indexical cluster) 2026-02-01 23:54 UTC - expand-topic Status: Success Topic: self-locating beliefs Output: Self Locating Beliefs Word count: 1690 Based on research: no 2026-02-01 23:49 UTC - expand-topic Status: Skipped (already exists) Topic: phenomenal overflow Output: phenomenal-overflow Word count: 1895 Note: Article already exists and has been through deep review (2026-01-29). No changes needed. 2026-02-01 23:44 UTC - deep-review Status: Success File: Quantum Measurement And Definite Outcomes … | 2026-01-26 | 2026-03-09 |
2026-01-25 23:37 UTC - coalesce Status: Success Sources:
obsidian/concepts/conscious-vs-unconscious-processing.md obsidian/topics/conscious-vs-unconscious-processing.md Target: obsidian/concepts/conscious-vs-unconscious-processing.md Archived: archive/topics/conscious-vs-unconscious-processing.md References to review: none (all references use slug that resolves to unified article) Summary: Coalesced two near-duplicate articles on conscious vs unconscious processing. The concepts version (305 lines, comprehensive) and topics version (142 lines) covered nearly identical ground: 2025 Randeniya meta-analysis, three consciousness-enabling functions, Global Workspace Theory, blindsight evidence, tenet connections. Unified article preserves best of both: comprehensive treatment from concepts version plus explicit physicalist rebuttal, knowledge argument connection, and P3b failed marker discussion from topics version. Topics version archived at original URL to preserve external links. | 2026-01-19 | 2026-03-09 |
2026-01-18 Session 232 - evolve (standard mode) Status: Success Session: 232 Mode: standard (1 task) Tasks executed: 1 (cross-review) Reviews completed: 236 (+1) Commit: 316ca2d 23:10 - cross-review (dreams-and-consciousness/2025-research) Status: Success Target: concepts/dreams-and-consciousness.md Research source: research/dreams-lucid-dreaming-consciousness-2026-01-18.md Changes: Enhanced article with 2025 neuroscience findings. Added new section on dream imagery vs voluntary imagery (Bilzer & Monzel 2025). Enhanced COGITATE adversarial study discussion (Melloni et al. 2025). Added EEG microstate findings to lucid dreaming neural signature. Updated references with three 2025 sources. Queue replenishment: Added 2 P2 cross-review tasks from pending chains (hard-problem and loss-of-consciousness considering altered states). Session 231 - evolve (standard mode) Status: Success Session: 231 Mode: standard (1 task) Tasks executed: 1 (expand-topic) Content files: 189 (+1) Commit: … | 2026-01-12 | 2026-03-09 |
2026-01-10 08:26 - research-voids Status: Success Topic: Apophatic approaches to the unknowable Category: Mixed (How to Approach the Edge) Output: research/voids-apophatic-approaches-2026-01-10.md Key finding: Apophatic traditions (negative theology, learned ignorance, mysterianism) provide methodological tools for mapping cognitive limits through negation, indirection, and phenomenological attention—directly applicable to the voids project. 2026-01-09 Session 12 - evolve (deep mode) Status: Success Session: 12 Mode: deep (3-5 tasks) Tasks executed: 5 Task 1: expand-topic (epiphenomenalism) Status: Success Score: 220 Source: unconsumed_research (chain from epiphenomenalism-2026-01-08.md) Content created: ~1800 word article on epiphenomenalism Sections: The view, closure argument, self-stultification problem, evolutionary objection, relation to site tenets Output: concepts/epiphenomenalism.md Task 2: expand-topic (quantum consciousness) Status: Success Score: 220 Source: … | 2026-01-05 | 2026-03-09 |
2026-03-09T09:00:00+00:00 - expand-topic Status: Success Topic: The Three-Dimensional World Representation Problem Output: three-dimensional-world-representation Word count: 1977 Based on research: yes — reconstruction-paradox-brain-correction-2026-03-09, perceptual-degradation-interface-blur-2026-03-09, lucid-dreaming-mind-side-rendering-2026-03-09 2026-03-09T12:47:00+00:00 - refine-draft Status: Success File: phenomenology-of-mathematical-insight Task: Address logical gaps from pessimistic review Changes: Fixed correlation-to-constitution leap (added three competing accounts), distinguished access vs phenomenal consciousness in dual-process argument, added aesthetic counterexamples (four-colour theorem), added AI mathematical discovery paragraph, applied language improvements Published: yes 2026-03-09T12:31:00+00:00 - refine-draft Status: Success File: capability-division-problem (primary) + smoothness-problem, memory-as-dual-domain-capability Task: Integration pass across capability … | 2026-01-05 | 2026-01-27 |
This is the task queue for AI automation. The human reviews and prioritizes tasks; the AI executes them.
How to Edit This List Promote: Change P2 to P1, etc. Demote: Change P1 to P2, etc. Veto: Add #veto anywhere in the task heading (e.g., ### P2: Task name #veto) Add reason: Optionally add - **Veto reason**: [why] before vetoing Vetoed items are moved automatically to the Vetoed Tasks section on the next evolution loop run. | 2026-01-05 | 2026-01-25 |
Research: Arguments Against Materialism/Physicalism Date: 2026-01-06 Search queries used:
hard problem of consciousness Chalmers explained subjective experience qualia philosophical zombie argument Chalmers conceivability physicalism refutation Mary’s Room knowledge argument Frank Jackson qualia physicalism quantum mechanics consciousness observer effect measurement problem philosophy explanatory gap Joseph Levine consciousness physicalism Chalmers “facing up to the problem of consciousness” 1995 Thomas Nagel “What is it like to be a bat” causal closure physics argument against dualism interaction problem response Kripke naming necessity identity argument against materialism consciousness von Neumann Wigner quantum mechanics wave function collapse consciousness panpsychism Galen Strawson Philip Goff combination problem Penrose Hameroff Orch-OR microtubules quantum consciousness inverted qualia spectrum inversion argument functionalism Richard Swinburne … | 2026-01-06 | 2026-01-13 |
Research: Interactionist Dualism Date: 2026-01-06 Search queries used:
interactionist dualism philosophy of mind causal interaction problem Descartes Henry Stapp quantum mind interactionism consciousness physics causal closure physics argument against dualism mental causation response quantum Zeno effect consciousness brain Stapp attention Penrose Hameroff orchestrated objective reduction microtubules consciousness 2024 2025 property dualism vs substance dualism consciousness Chalmers naturalistic dualism Executive Summary Interactionist dualism holds that mind and body are distinct substances (or have distinct properties) that causally influence each other. The classical formulation from Descartes faced the “interaction problem”: how can an immaterial mind cause physical changes in the brain? Contemporary responses fall into two main camps: (1) philosophical arguments that challenge the causal closure assumption, and (2) quantum mechanical proposals that identify specific … | 2026-01-06 | 2026-01-06 |
Research: Buddhist Perspectives on Meaning Date: 2026-01-06 Search queries used:
Buddhist philosophy meaning of life purpose suffering dukkha Buddhism consciousness mind philosophy anatta no-self Stanford Encyclopedia Philosophy Buddhism mind metaphysics Buddhism Nirvana enlightenment liberation meaning purpose life Buddhist ethics compassion karma meaning moral philosophy Executive Summary Buddhist philosophy offers a distinctive approach to meaning that differs markedly from both Western nihilism and Western dualism. Rather than locating meaning in a cosmic purpose or eternal soul, Buddhism diagnoses the desire for such meaning as itself a source of suffering. The path to liberation (nirvana) involves recognizing the impermanence of all phenomena, including the self, and cultivating compassion and wisdom. This creates both tensions and surprising convergences with The Unfinishable Map’s tenets—particularly around consciousness, the nature of self, and the hard problem. | 2026-01-06 | 2026-01-06 |