docs: add volume 2 process ontology monograph

This commit is contained in:
codex
2026-06-10 05:58:27 +00:00
parent 9fee50796b
commit 710ea8f7af
22 changed files with 1474 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env bash
set -euo pipefail
{
printf '# From Markov Blankets to Subjects\n\n'
printf '## Abstract\n\n'
printf '%s\n\n' 'This monograph critically reconstructs Volume 2 of the Intellecton Sovereign Canon. It argues that a Markov blanket identifies a scale-relative statistical boundary, not an agent or conscious subject by itself. Agency requires counterfactual boundary maintenance; intrinsic unity requires robust causal integration; witnesshood requires temporal continuity. The resulting intellecton is a process rather than a static object.'
for section in section_{1..7}.md; do
cat "$section"
printf '\n\n'
done
} > draft.md
for number in {1..7}; do
sed \
-e '1s/^# [0-9]\+\. \(.*\)$/\\section{\1}/' \
-e 's/^## \(.*\)$/\\subsection{\1}/' \
-e 's/\*\*\([^*]*\)\*\*/\\textbf{\1}/g' \
"section_${number}.md" > "section_${number}.tex"
done