Domain Ideal-Whole Substrate (DIWS) The substrate beneath every flag-pierce. Where Product Domain Engine (PDE) handles the product layer (logos / ethos / pathos / kairos), this skill handles the domain layer beneath. Every domain — chess, fitness, voodoo, education, design — composes from the same eight strata under the same four operators, with load distribution shifting by domain. User's foundational question: "What elements, systems, structures, environments, agents so forth make the ideal whole (be it fitness, chess, or voodoo)?" DIWS answers it as substrate, not as workflow. What This Is…

\\n'\"$SKILL_PATHS\"\n\nfor path in $ALL_PATHS; do\n [[ -z \"$path\" ]] && continue\n\n for sig in \"${ENGINE_SIGNATURES[@]}\"; do\n pattern=$(echo \"$sig\" | cut -d'|' -f1)\n tier=$(echo \"$sig\" | cut -d'|' -f2)\n name=$(echo \"$sig\" | cut -d'|' -f3)\n classes=$(echo \"$sig\" | cut -d'|' -f4)\n\n # Match path against pattern (case-insensitive)\n if echo \"$path\" | grep -iqE \"$pattern\"; then\n case \"$tier\" in\n 1) FOUND_TIER1[\"$name\"]=\"$path|$classes\" ;;\n 2) FOUND_TIER2[\"$name\"]=\"$path|$classes\" ;;\n 3) FOUND_TIER3[\"$name\"]=\"$path|$classes\" ;;\n esac\n fi\n done\ndone\n\n# Generate report\n{\n echo \"# Portfolio Reuse Map\"\n echo\n echo \"**Generated:** $(date '+%Y-%m-%d %H:%M:%S')\"\n echo \"**Workspace scanned:** \\`$WORKSPACE\\`\"\n [[ -n \"$CANDIDATE_DOMAIN\" ]] && echo \"**Candidate domain:** $CANDIDATE_DOMAIN\"\n echo \"**Generator:** DIWS Phase 0 (\\`audit-portfolio.sh\\`)\"\n echo\n echo \"## Tier 1 — Domain engines (re-skinnable within similar domain)\"\n echo\n if [[ ${#FOUND_TIER1[@]} -eq 0 ]]; then\n echo \"_No Tier 1 engines detected. This is unusual; check workspace path._\"\n else\n echo \"| Engine | Path | Re-skin classes |\"\n echo \"|---|---|---|\"\n for name in \"${!FOUND_TIER1[@]}\"; do\n entry=\"${FOUND_TIER1[$name]}\"\n path=$(echo \"$entry\" | cut -d'|' -f1)\n classes=$(echo \"$entry\" | cut -d'|' -f2)\n echo \"| \\`$name\\` | \\`$path\\` | $classes |\"\n done\n fi\n\n echo\n echo \"## Tier 2 — Meta-engines (cross-domain pattern)\"\n echo\n if [[ ${#FOUND_TIER2[@]} -eq 0 ]]; then\n echo \"_No Tier 2 engines detected._\"\n else\n echo \"| Engine | Path | Reuse classes |\"\n echo \"|---|---|---|\"\n for name in \"${!FOUND_TIER2[@]}\"; do\n entry=\"${FOUND_TIER2[$name]}\"\n path=$(echo \"$entry\" | cut -d'|' -f1)\n classes=$(echo \"$entry\" | cut -d'|' -f2)\n echo \"| \\`$name\\` | \\`$path\\` | $classes |\"\n done\n fi\n\n echo\n echo \"## Tier 3 — Consultant engines (every engagement)\"\n echo\n if [[ ${#FOUND_TIER3[@]} -eq 0 ]]; then\n echo \"_No Tier 3 engines detected._\"\n else\n echo \"| Engine | Path | Reuse classes |\"\n echo \"|---|---|---|\"\n for name in \"${!FOUND_TIER3[@]}\"; do\n entry=\"${FOUND_TIER3[$name]}\"\n path=$(echo \"$entry\" | cut -d'|' -f1)\n classes=$(echo \"$entry\" | cut -d'|' -f2)\n echo \"| \\`$name\\` | \\`$path\\` | $classes |\"\n done\n fi\n\n echo\n echo \"## Reuse decisions (TO FILL)\"\n echo\n echo \"Per Engine + Skin pattern, target ratio: 60–80% engine + 20–40% skin.\"\n echo\n if [[ -n \"$CANDIDATE_DOMAIN\" ]]; then\n echo \"For candidate domain **$CANDIDATE_DOMAIN**, decide for each detected engine:\"\n else\n echo \"For each candidate domain, decide for each detected engine:\"\n fi\n echo\n echo \"- [ ] **Re-skin** (use the engine, parameterize for this domain)\"\n echo \"- [ ] **Skip** (engine doesn't apply to this domain)\"\n echo \"- [ ] **Promote** (this engine fires across more domains than originally tagged → flag for tier-up)\"\n echo \"- [ ] **Invent** (new engine needed; document gap and add to substrate skill backlog)\"\n echo\n echo \"## Genuine new code (estimate)\"\n echo\n echo \"Engagements with >40% genuine new code = Phase 0 audit was incomplete OR the engagement is in a genuinely new domain class.\"\n echo \"Engagements with \u003c10% genuine new code = pure assembly; engagement should still grow the engine fleet a little.\"\n echo\n echo \"**Estimated for this candidate domain:** _TBD — fill after reuse decisions are made_\"\n echo\n echo \"---\"\n echo\n echo \"_Generated by DIWS Phase 0 portfolio-audit. To refresh, re-run \\`audit-portfolio.sh\\`. To run the stretching rack across N concurrent instances, see \\`portfolio-gap-audit.sh\\`._\"\n\n} > \"$OUTPUT\"\n\n# Summary to stdout\necho\necho \"Engines detected:\"\necho \" Tier 1: ${#FOUND_TIER1[@]}\"\necho \" Tier 2: ${#FOUND_TIER2[@]}\"\necho \" Tier 3: ${#FOUND_TIER3[@]}\"\necho\necho \"Output written to: $OUTPUT\"\n","content_type":"application/x-sh; charset=utf-8","language":"bash","size":7857,"content_sha256":"9fa76345907da8b4f62d30f755a37c7265d87b265916b8b8a4fbadcb374b999c"},{"filename":"scripts/audit.sh","content":"#!/usr/bin/env bash\nset -euo pipefail\n\n# Domain Ideal-Whole Substrate Audit\n# Checks for the presence and validity of the 8 strata.\n\nDOMAIN_DIR=${1:-\".\"}\n\necho \"Auditing Domain Substrate in: $DOMAIN_DIR\"\n\nSTRATA=(\n \"domain-ontology.md\"\n \"domain-lineage.md\"\n \"domain-constellation.yaml\"\n \"domain-gap-map.md\"\n \"domain-agent-fleet.yaml\"\n \"domain-production-stack.md\"\n \"domain-attractor.md\"\n \"domain-contribution-charter.md\"\n)\n\nMISSING=0\nfor stratum in \"${STRATA[@]}\"; do\n if [[ ! -f \"$DOMAIN_DIR/$stratum\" ]]; then\n echo \"[MISSING] $stratum\"\n MISSING=$((MISSING+1))\n else\n echo \"[FOUND] $stratum\"\n fi\ndone\n\nif [[ $MISSING -eq 0 ]]; then\n echo \"Substrate is COMPLETE.\"\nelse\n echo \"Substrate is INCOMPLETE ($MISSING missing).\"\n exit 1\nfi\n","content_type":"application/x-sh; charset=utf-8","language":"bash","size":758,"content_sha256":"a561ce15828659352cbbb36ce8bba22c808676c377609c65230c158f2eca4452"},{"filename":"scripts/portfolio-gap-audit.sh","content":"#!/usr/bin/env bash\n# DIWS Phase 0.5 — Portfolio gap audit (THE STRETCHING RACK)\n#\n# Operates across N concurrent DIWS instances simultaneously to surface\n# holes (under-developed) and fat (over-engineered) at portfolio scale.\n#\n# For each axis (8 strata + 4 operators), reports:\n# - Holes — under-developed in 1+ instances; transplantable from siblings\n# - Fat — over-engineered in 1+ instances; consolidatable into shared engine\n# - N-way overlap — concept present in ≥2 instances; promotion candidate\n#\n# Outputs holes-fat-report.md to CWD (or --output path).\n#\n# Usage:\n# bash portfolio-gap-audit.sh --instances chess,wellness,education,voodoo\n# bash portfolio-gap-audit.sh --instances-dir ./proof-instances/\n# bash portfolio-gap-audit.sh --output /path/to/report.md\n#\n# Exit codes:\n# 0 — success (report generated)\n# 1 — invalid arguments\n# 2 — instance(s) not found\n# 3 — no instances to audit\n\nset -euo pipefail\n\nINSTANCES_LIST=\"\"\nINSTANCES_DIR=\"\"\nOUTPUT=\"./holes-fat-report.md\"\nDIWS_ROOT=\"${DIWS_ROOT:-${HOME}/Workspace/a-i--skills/skills/project-management/domain-ideal-whole-substrate}\"\n\nwhile [[ $# -gt 0 ]]; do\n case \"$1\" in\n --instances)\n INSTANCES_LIST=\"$2\"\n shift 2\n ;;\n --instances-dir)\n INSTANCES_DIR=\"$2\"\n shift 2\n ;;\n --output)\n OUTPUT=\"$2\"\n shift 2\n ;;\n --diws-root)\n DIWS_ROOT=\"$2\"\n shift 2\n ;;\n --help|-h)\n sed -n 's/^# \\{0,1\\}//p' \"$0\" | head -25\n exit 0\n ;;\n *)\n echo \"Unknown option: $1\" >&2\n exit 1\n ;;\n esac\ndone\n\n# Resolve instances\ndeclare -a INSTANCES=()\ndeclare -A INSTANCE_PATHS\n\nif [[ -n \"$INSTANCES_LIST\" ]]; then\n IFS=',' read -ra INSTANCE_NAMES \u003c\u003c\u003c \"$INSTANCES_LIST\"\n for name in \"${INSTANCE_NAMES[@]}\"; do\n name=$(echo \"$name\" | xargs) # trim\n path=\"$DIWS_ROOT/proof-instances/$name\"\n if [[ ! -d \"$path\" ]]; then\n echo \"ERROR: Instance not found: $path\" >&2\n exit 2\n fi\n INSTANCES+=(\"$name\")\n INSTANCE_PATHS[$name]=\"$path\"\n done\nelif [[ -n \"$INSTANCES_DIR\" ]]; then\n if [[ ! -d \"$INSTANCES_DIR\" ]]; then\n echo \"ERROR: Instances directory not found: $INSTANCES_DIR\" >&2\n exit 2\n fi\n for path in \"$INSTANCES_DIR\"/*/; do\n [[ -d \"$path\" ]] || continue\n name=$(basename \"$path\")\n INSTANCES+=(\"$name\")\n INSTANCE_PATHS[$name]=\"$path\"\n done\nelse\n # Default: scan DIWS proof-instances\n if [[ -d \"$DIWS_ROOT/proof-instances\" ]]; then\n for path in \"$DIWS_ROOT/proof-instances\"/*/; do\n [[ -d \"$path\" ]] || continue\n name=$(basename \"$path\")\n INSTANCES+=(\"$name\")\n INSTANCE_PATHS[$name]=\"$path\"\n done\n fi\nfi\n\nif [[ ${#INSTANCES[@]} -eq 0 ]]; then\n echo \"ERROR: No instances to audit. Use --instances or --instances-dir.\" >&2\n exit 3\nfi\n\necho \"DIWS Phase 0.5 — Portfolio gap audit (stretching rack)\"\necho \"Auditing instances: ${INSTANCES[*]}\"\necho\n\n# 8 strata + 4 operators = 12 axes\ndeclare -a AXES=(\n \"1-ontology|domain-ontology.md\"\n \"2-lineage|domain-lineage.md\"\n \"3-constellation|domain-constellation.yaml\"\n \"4-gap-map|domain-gap-map.md\"\n \"5-agent-fleet|domain-agent-fleet.yaml\"\n \"6-production-stack|domain-production-stack.md\"\n \"7-internal-magnet|domain-attractor.md\"\n \"8-external-contribution|domain-contribution-charter.md\"\n \"OP1-selfish-altruistic|domain-meta-study.md\"\n \"OP2-magnetic-membrane|portfolio-resonance.md\"\n \"OP3-portfolio-operator|portfolio-resonance.md\"\n \"OP4-reflexive|domain-meta-study.md\"\n)\n\n# Score each axis × instance: 0 (missing), 1 (stub \u003c500B), 2 (partial 500-2000B), 3 (full >2000B)\ndeclare -A SCORES\n\nfor axis_entry in \"${AXES[@]}\"; do\n axis_id=$(echo \"$axis_entry\" | cut -d'|' -f1)\n expected_file=$(echo \"$axis_entry\" | cut -d'|' -f2)\n\n for instance in \"${INSTANCES[@]}\"; do\n file=\"${INSTANCE_PATHS[$instance]}/$expected_file\"\n score=0\n if [[ -f \"$file\" ]]; then\n size=$(wc -c \u003c \"$file\" | tr -d ' ')\n if (( size >= 2000 )); then\n score=3\n elif (( size >= 500 )); then\n score=2\n elif (( size > 0 )); then\n score=1\n fi\n fi\n SCORES[\"${axis_id}|${instance}\"]=$score\n done\ndone\n\n# Generate report\n{\n echo \"# Portfolio Holes/Fat Report (Stretching Rack)\"\n echo\n echo \"**Generated:** $(date '+%Y-%m-%d %H:%M:%S')\"\n echo \"**Generator:** DIWS Phase 0.5 (\\`portfolio-gap-audit.sh\\`)\"\n echo \"**Instances audited:** ${INSTANCES[*]}\"\n echo\n echo \"## Score legend\"\n echo\n echo \"- **0** = missing (no file)\"\n echo \"- **1** = stub (\u003c500 bytes — placeholder only)\"\n echo \"- **2** = partial (500–2000 bytes — some content, gaps remain)\"\n echo \"- **3** = full (>2000 bytes — substantive)\"\n echo\n echo \"## Per-axis × per-instance scores\"\n echo\n printf \"| Axis \"\n for instance in \"${INSTANCES[@]}\"; do\n printf \"| %s \" \"$instance\"\n done\n printf \"|\\n\"\n printf \"|------\"\n for instance in \"${INSTANCES[@]}\"; do\n printf \"|------\"\n done\n printf \"|\\n\"\n\n for axis_entry in \"${AXES[@]}\"; do\n axis_id=$(echo \"$axis_entry\" | cut -d'|' -f1)\n printf \"| %s \" \"$axis_id\"\n for instance in \"${INSTANCES[@]}\"; do\n printf \"| %s \" \"${SCORES[${axis_id}|${instance}]}\"\n done\n printf \"|\\n\"\n done\n\n echo\n echo \"## HOLES — under-developed dimensions (transplant candidates)\"\n echo\n echo \"An axis is a **hole** in an instance if score ≤1 AND ≥1 sibling instance has score ≥2 (transplant available).\"\n echo\n\n HOLE_COUNT=0\n for axis_entry in \"${AXES[@]}\"; do\n axis_id=$(echo \"$axis_entry\" | cut -d'|' -f1)\n\n # Find max sibling score\n max_score=0\n max_donor=\"\"\n for instance in \"${INSTANCES[@]}\"; do\n s=\"${SCORES[${axis_id}|${instance}]}\"\n if (( s > max_score )); then\n max_score=$s\n max_donor=$instance\n fi\n done\n\n # Find instances that need transplant\n if (( max_score >= 2 )); then\n for instance in \"${INSTANCES[@]}\"; do\n s=\"${SCORES[${axis_id}|${instance}]}\"\n if (( s \u003c= 1 )) && [[ \"$instance\" != \"$max_donor\" ]]; then\n echo \"- **${axis_id}** in \\`${instance}\\` (score $s) ← transplant candidate from \\`${max_donor}\\` (score $max_score)\"\n HOLE_COUNT=$((HOLE_COUNT + 1))\n fi\n done\n fi\n done\n\n if (( HOLE_COUNT == 0 )); then\n echo \"_No transplant-eligible holes detected. Either portfolio is uniformly developed or uniformly underdeveloped._\"\n fi\n\n echo\n echo \"## FAT — over-engineered axes (consolidation candidates)\"\n echo\n echo \"An axis is **fat** in the portfolio if ≥2 instances score 3 AND the axis represents work that could consolidate to a shared engine.\"\n echo\n\n FAT_COUNT=0\n for axis_entry in \"${AXES[@]}\"; do\n axis_id=$(echo \"$axis_entry\" | cut -d'|' -f1)\n full_count=0\n full_instances=()\n for instance in \"${INSTANCES[@]}\"; do\n s=\"${SCORES[${axis_id}|${instance}]}\"\n if (( s == 3 )); then\n full_count=$((full_count + 1))\n full_instances+=(\"$instance\")\n fi\n done\n if (( full_count >= 2 )); then\n echo \"- **${axis_id}** is fully developed in $full_count instances: ${full_instances[*]}\"\n echo \" - Consolidation candidate → promote to shared engine (Tier 2 meta-engine candidate)\"\n FAT_COUNT=$((FAT_COUNT + 1))\n fi\n done\n\n if (( FAT_COUNT == 0 )); then\n echo \"_No fat-cell consolidation candidates yet. Portfolio is differentiated; revisit when ≥2 instances reach full score on the same axis._\"\n fi\n\n echo\n echo \"## N-WAY OVERLAP — promotion candidates\"\n echo\n echo \"Concepts present in ≥3 instances at score ≥2 are candidates for Tier 2 (meta-engine) or Tier 3 (consultant-engine) promotion.\"\n echo\n\n PROMO_COUNT=0\n for axis_entry in \"${AXES[@]}\"; do\n axis_id=$(echo \"$axis_entry\" | cut -d'|' -f1)\n high_count=0\n for instance in \"${INSTANCES[@]}\"; do\n s=\"${SCORES[${axis_id}|${instance}]}\"\n if (( s >= 2 )); then\n high_count=$((high_count + 1))\n fi\n done\n if (( high_count >= 3 )); then\n echo \"- **${axis_id}** present in $high_count instances at score ≥2\"\n echo \" - Promotion candidate → flag for engine-extract mode review\"\n PROMO_COUNT=$((PROMO_COUNT + 1))\n fi\n done\n\n if (( PROMO_COUNT == 0 )); then\n echo \"_No N-way overlap detected yet. Portfolio is too narrow or instances too sparse._\"\n fi\n\n echo\n echo \"## SUMMARY\"\n echo\n echo \"- Instances audited: ${#INSTANCES[@]}\"\n echo \"- Axes scored: ${#AXES[@]}\"\n echo \"- Holes (transplant candidates): $HOLE_COUNT\"\n echo \"- Fat axes (consolidation candidates): $FAT_COUNT\"\n echo \"- N-way overlap (promotion candidates): $PROMO_COUNT\"\n echo\n echo \"## Action items\"\n echo\n echo \"Review each hole/fat/promotion entry above and decide:\"\n echo \"- [ ] Schedule transplant work for under-developed axes\"\n echo \"- [ ] Authorize consolidation of over-engineered cells (Tier 2 promotion via \\`mode engine-extract\\`)\"\n echo \"- [ ] Approve N-way overlap promotions (Tier 2 → Tier 3 candidates)\"\n echo\n echo \"---\"\n echo\n echo \"_Generated by DIWS Phase 0.5 portfolio-gap-audit (the stretching rack). To refresh, re-run \\`portfolio-gap-audit.sh\\`. To audit a different instance set, pass \\`--instances \u003clist>\\` or \\`--instances-dir \u003cpath>\\`._\"\n\n} > \"$OUTPUT\"\n\n# Summary to stdout\necho \"Holes detected (transplant candidates): $HOLE_COUNT\"\necho \"Fat axes (consolidation candidates): $FAT_COUNT\"\necho \"N-way overlap (promotion candidates): $PROMO_COUNT\"\necho\necho \"Output written to: $OUTPUT\"\n","content_type":"application/x-sh; charset=utf-8","language":"bash","size":9432,"content_sha256":"8cbffa05ca0944581b3d2e32ad8441d4dabdba245a575c0848f361321a070bec"}],"content_json":{"type":"doc","content":[{"type":"heading","attrs":{"level":1},"content":[{"text":"Domain Ideal-Whole Substrate (DIWS)","type":"text"}]},{"type":"paragraph","content":[{"text":"The substrate beneath every flag-pierce. Where ","type":"text"},{"text":"Product Domain Engine (PDE)","type":"text","marks":[{"type":"strong"}]},{"text":" handles the ","type":"text"},{"text":"product","type":"text","marks":[{"type":"em"}]},{"text":" layer (logos / ethos / pathos / kairos), this skill handles the ","type":"text"},{"text":"domain","type":"text","marks":[{"type":"em"}]},{"text":" layer beneath. Every domain — chess, fitness, voodoo, education, design — composes from the same eight strata under the same four operators, with load distribution shifting by domain.","type":"text"}]},{"type":"paragraph","content":[{"text":"User's foundational question: ","type":"text"},{"text":"\"What elements, systems, structures, environments, agents so forth make the ideal whole (be it fitness, chess, or voodoo)?\"","type":"text","marks":[{"type":"em"}]}]},{"type":"paragraph","content":[{"text":"DIWS answers it as substrate, not as workflow.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"What This Is","type":"text"}]},{"type":"paragraph","content":[{"text":"A ","type":"text"},{"text":"substrate","type":"text","marks":[{"type":"strong"}]},{"text":", not a workflow. PDE is a 5-phase formalization protocol that consumes a domain and produces a product. DIWS is what the domain itself ","type":"text"},{"text":"is","type":"text","marks":[{"type":"em"}]},{"text":" before any product gets built on top of it. PDE pulls from DIWS substrate; DIWS does not pull from PDE.","type":"text"}]},{"type":"paragraph","content":[{"text":"DIWS does two things PDE cannot:","type":"text"}]},{"type":"ordered_list","attrs":{"order":1,"listStyle":"number"},"content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Cross-portfolio reuse","type":"text","marks":[{"type":"strong"}]},{"text":" — Phase 0 audits ","type":"text"},{"text":"~/Workspace/","type":"text","marks":[{"type":"code_inline"}]},{"text":" for existing engines (3-tier taxonomy: domain / meta / consultant) before any new domain instantiates. Engine + skin pattern, not from-scratch every time.","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Stretching rack","type":"text","marks":[{"type":"strong"}]},{"text":" — Phase 0.5 runs the gap-map operator across N concurrent DIWS instances simultaneously. Surfaces holes (under-developed dimensions) and fat (redundant scaffolding) at portfolio scale, not just per-domain.","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"You invoke this skill when a flag has been pierced or is about to be — a friend's domain, a research interest, a consulting engagement, a side practice. The goal is to load the substrate ahead of any product-building work so that PDE / synthesis / cross-pollination diagnoses operate over filled scaffolding rather than empty types.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Invariants","type":"text"}]},{"type":"paragraph","content":[{"text":"These hold across every flag-pierce, regardless of domain:","type":"text"}]},{"type":"ordered_list","attrs":{"order":1,"listStyle":"number"},"content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Phase 0 portfolio-audit runs BEFORE layer-1 ontology","type":"text","marks":[{"type":"strong"}]},{"text":" — never scratch-build what an existing engine can re-skin (rule 41: audit before building)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Phase 0.5 engine-overlap board comes between Phase 0 and layer-1","type":"text","marks":[{"type":"strong"}]},{"text":" — visualize candidate engines + gaps before scaffolding (rule 36: seed not specification)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"All 8 strata instantiate","type":"text","marks":[{"type":"strong"}]},{"text":" — even if a stratum is sparse for the domain (load shifts, layers don't disappear)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"All 4 operators fire on every instantiation","type":"text","marks":[{"type":"strong"}]},{"text":" — selfish-altruistic + magnetic + portfolio + reflexive (Tenet Protocol — both directions simultaneously)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Layer 4 (gap-map) and Layer 8 (contribution) close as a loop","type":"text","marks":[{"type":"strong"}]},{"text":" — heist + contribute round-trip; never steal without giving back","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Layer 8 produces dissertation-grade research output","type":"text","marks":[{"type":"strong"}]},{"text":" — academic capital is substrate, not garnish","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Reflexive Operator produces ","type":"text","marks":[{"type":"strong"}]},{"text":"domain-meta-study.md","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":" alongside the 8 stratum artifacts","type":"text","marks":[{"type":"strong"}]},{"text":" — every build co-arises with a study-of-build","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Capital flow is N-channel, not 1-channel","type":"text","marks":[{"type":"strong"}]},{"text":" — monetary is one of many; meta-skill capital, audience cross-flow, tool extraction, work-improvement all count","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"The 8 Strata","type":"text"}]},{"type":"paragraph","content":[{"text":"Every domain composes from these. See ","type":"text"},{"text":"references/8-strata-spec.md","type":"text","marks":[{"type":"link","attrs":{"href":"references/8-strata-spec.md","title":null}},{"type":"code_inline"}]},{"text":" for full per-stratum spec.","type":"text"}]},{"type":"table","attrs":{"layout":null},"content":[{"type":"tr","content":[{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"#","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Layer","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Question","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Output artifact","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"1","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Ontology","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"What is the domain made of?","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"domain-ontology.md","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"2","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Lineage","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"How did it become what it is?","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"domain-lineage.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" (3 timeslices × 2 registers)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"3","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Constellation","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Who is doing it well, where do we exist relative?","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"domain-constellation.yaml","type":"text","marks":[{"type":"code_inline"}]},{"text":" (75-person file)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"4","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Gap-map","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Where is unexploited terrain?","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"domain-gap-map.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" (gaps + heist targets)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"5","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Agent fleet","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Who serves the work when you arrive?","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"domain-agent-fleet.yaml","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"6","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Production stack","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"What does shipping require?","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"domain-production-stack.md","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"7","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Internal magnet","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"What flows IN when the flag pierces?","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"domain-attractor.md","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"8","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"External contribution","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"What flows OUT to the community?","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"domain-contribution-charter.md","type":"text","marks":[{"type":"code_inline"}]}]}]}]}]},{"type":"paragraph","content":[{"text":"Voodoo loads layer 8 heavily (ethical floor, anti-extraction guard). Chess and fitness share a similar load profile. Both shapes validate the schema — generative across radically dissimilar domains rather than overfit to one.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"The 4 Operators","type":"text"}]},{"type":"paragraph","content":[{"text":"See ","type":"text"},{"text":"references/4-operators-spec.md","type":"text","marks":[{"type":"link","attrs":{"href":"references/4-operators-spec.md","title":null}},{"type":"code_inline"}]},{"text":" for full spec. All four fire simultaneously on every flag-pierce.","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"1. Selfish-altruistic loop (single-engagement)","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":""},"content":[{"text":"Learn-for-self → Quality-of-product → Service-to-friends →\nFriends-elevated → Network-effect → Self-elevated → More-learning","type":"text"}]},{"type":"paragraph","content":[{"text":"The selfishness is a feature. It locks the user into being a real practitioner rather than a curator. Without the lock, the system curates dead.","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"2. Magnetic membrane (single-domain, two-way)","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":""},"content":[{"text":"Flag pierces →\n INTERNAL: magnetize all applicable, transmute through user's lens, alchemize toward ideal\n EXTERNAL: contribute to community","type":"text"}]},{"type":"paragraph","content":[{"text":"Pull-in = refinery. Push-out = gift. Per Tenet Protocol — both directions simultaneously, never one without the other.","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"3. Portfolio Operator (cross-portfolio, two-way) — v2 + v2.1","type":"text"}]},{"type":"paragraph","content":[{"text":"Push","type":"text","marks":[{"type":"strong"}]},{"text":" (v2): every flag-pierce produces three cross-flows simultaneously:","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"meta-skill extraction (writing / voice / community-building)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"domain-pair overlaps (each new domain creates N-1 publishable conversation surfaces)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"tool/audience cross-flow (engines amortize across portfolio nodes)","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Pull","type":"text","marks":[{"type":"strong"}]},{"text":" (v2.1): every flag-pierce begins with portfolio-audit — scan ","type":"text"},{"text":"~/Workspace/","type":"text","marks":[{"type":"code_inline"}]},{"text":" for engines / skills / primitives that match candidate-domain shape; only enter layers 1-8 after ","type":"text"},{"text":"portfolio-reuse-map.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" is filled.","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"4. Reflexive Operator (build + study, parallel) — v2.2","type":"text"}]},{"type":"paragraph","content":[{"text":"Every domain instantiation produces ","type":"text"},{"text":"domain-meta-study.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" alongside the 8 stratum artifacts. Where the other three operators govern ","type":"text"},{"text":"flow","type":"text","marks":[{"type":"em"}]},{"text":", this one governs ","type":"text"},{"text":"recursion","type":"text","marks":[{"type":"em"}]},{"text":" — the thing and the thing-studied co-arise. Per Tenet Protocol, every build-action triggers its opposing reflection-action simultaneously.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"The Use Protocol","type":"text"}]},{"type":"paragraph","content":[{"text":"Sequential within a single instantiation; recursive across portfolio lifecycle.","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Phase 0 — Portfolio audit (PULL)","type":"text"}]},{"type":"paragraph","content":[{"text":"Run ","type":"text"},{"text":"scripts/audit-portfolio.sh","type":"text","marks":[{"type":"link","attrs":{"href":"scripts/audit-portfolio.sh","title":null}},{"type":"code_inline"}]},{"text":". Globs ","type":"text"},{"text":"~/Workspace/","type":"text","marks":[{"type":"code_inline"}]},{"text":" for existing engines and classifies them into the 3-tier engine taxonomy (see ","type":"text"},{"text":"references/engine-taxonomy.md","type":"text","marks":[{"type":"link","attrs":{"href":"references/engine-taxonomy.md","title":null}},{"type":"code_inline"}]},{"text":"):","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Domain engines","type":"text","marks":[{"type":"strong"}]},{"text":" — re-skinnable within similar domain (BODI 4-level funnel, spiral renderer, landing-engine)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Meta-engines","type":"text","marks":[{"type":"strong"}]},{"text":" — cross-domain pattern (cross-pollination diagnosis, 75-person Constellation, PDE skill, Bridge Content templates, Discord rituals)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Consultant engines","type":"text","marks":[{"type":"strong"}]},{"text":" — every engagement regardless of domain (knowledge base, application pipeline, plan-mode discipline, IRF/MEMORY/chezmoi protocols, conversation-corpus pipeline)","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Output: ","type":"text"},{"text":"portfolio-reuse-map.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" showing which engines re-skin, which need invention, which are skin-only domain-specific work.","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Phase 0.5 — Engine overlap board (THE STRETCHING RACK)","type":"text"}]},{"type":"paragraph","content":[{"text":"Run ","type":"text"},{"text":"scripts/portfolio-gap-audit.sh","type":"text","marks":[{"type":"link","attrs":{"href":"scripts/portfolio-gap-audit.sh","title":null}},{"type":"code_inline"}]},{"text":". Operates across N concurrent DIWS instances simultaneously to surface holes and fat at portfolio scale.","type":"text"}]},{"type":"paragraph","content":[{"text":"For each axis (the 8 strata + 4 operators), the script reports:","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Holes","type":"text","marks":[{"type":"strong"}]},{"text":" — under-developed in 1+ instances; transplantable from a sibling instance","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Fat","type":"text","marks":[{"type":"strong"}]},{"text":" — over-engineered in 1+ instances; consolidatable into a shared engine","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"N-way overlap","type":"text","marks":[{"type":"strong"}]},{"text":" — concept present in ≥2 instances; promotion candidate to meta-engine","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Output: ","type":"text"},{"text":"holes-fat-report.md","type":"text","marks":[{"type":"code_inline"}]},{"text":". Refines portfolio reuse from listing engines to ","type":"text"},{"text":"seeing","type":"text","marks":[{"type":"em"}]},{"text":" them in spatial relation, identifying white-space across the whole portfolio.","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Phase 1-8 — Stratum instantiation","type":"text"}]},{"type":"paragraph","content":[{"text":"Walk each stratum in order, filling its template from ","type":"text"},{"text":"assets/","type":"text","marks":[{"type":"link","attrs":{"href":"assets/","title":null}},{"type":"code_inline"}]},{"text":" into the domain's instantiation directory. Use ","type":"text"},{"text":"references/8-strata-spec.md","type":"text","marks":[{"type":"link","attrs":{"href":"references/8-strata-spec.md","title":null}},{"type":"code_inline"}]},{"text":" for canonical questions.","type":"text"}]},{"type":"paragraph","content":[{"text":"Order is canonical but not strictly serial — strata 1-3 can be parallelized; 4 depends on 3; 5-8 are largely independent once 1-4 are in place.","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Phase 9 — Operators fire (REFLEXIVE)","type":"text"}]},{"type":"paragraph","content":[{"text":"After stratum artifacts ship:","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Selfish-altruistic loop: confirm the user is in practitioner-mode, not curator-mode (gate)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Magnetic membrane: confirm both INTERNAL and EXTERNAL outputs exist (no one-way pierces)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Portfolio Operator: write ","type":"text"},{"text":"portfolio-resonance.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" — 3 cross-flows fired","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Reflexive Operator: write ","type":"text"},{"text":"domain-meta-study.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" alongside the 8 strata","type":"text"}]}]}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Phase 10 — Cross-pollination diagnosis (synthesis)","type":"text"}]},{"type":"paragraph","content":[{"text":"Run ","type":"text"},{"text":"scripts/portfolio-gap-audit.sh","type":"text","marks":[{"type":"link","attrs":{"href":"scripts/portfolio-gap-audit.sh","title":null}},{"type":"code_inline"}]},{"text":" with this new instance + sibling instances. Surfaces N-1 cross-pollination opportunities by default. Each becomes a candidate essay, video, or joint-product opportunity.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Engine + Skin Pattern","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":""},"content":[{"text":"Engine = portfolio-pull primitive (re-skinnable)\nSkin = domain-specific 8-stratum instantiation\nNew code = only what neither engine nor skin can express","type":"text"}]},{"type":"paragraph","content":[{"text":"Target ratio: next 5 friend-engagements consume ","type":"text"},{"text":"60–80% engine + 20–40% skin","type":"text","marks":[{"type":"strong"}]},{"text":", not 100% from-scratch. Phase 0 enforces this.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Layer 4 ↔ Layer 8 Heist + Contribute Loop","type":"text"}]},{"type":"paragraph","content":[{"text":"Layer 4 names heist targets — homages worth remixing. Layer 8 closes the loop by pushing improvements back upstream to the same competitors. ","type":"text"},{"text":"Heist becomes relationship; relationship becomes co-development.","type":"text","marks":[{"type":"strong"}]},{"text":" Never steal without giving back.","type":"text"}]},{"type":"paragraph","content":[{"text":"Intelligence-gathering is ongoing protocol, not one-shot. Continuous monitoring of gap-map targets means the contribution charter has continuous output.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Composition with PDE","type":"text"}]},{"type":"paragraph","content":[{"text":"DIWS sits ","type":"text"},{"text":"beneath","type":"text","marks":[{"type":"em"}]},{"text":" PDE. PDE invocations consume a filled DIWS instance:","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":""},"content":[{"text":"DIWS Phase 0 → audit portfolio\nDIWS Phase 0.5 → stretching-rack diagnosis\nDIWS Phase 1-8 → fill 8 strata for domain\nDIWS Phase 9 → fire 4 operators\n─────────────────────────────────────────\nPDE Phase 1 → IDENTIFY (consumes DIWS Stratum 5 agent-fleet)\nPDE Phase 2 → MAP (consumes DIWS Strata 1-4)\nPDE Phase 3 → ENCODE (types, schemas, tests)\nPDE Phase 4 → EXPRESS (4 rhetorical modes)\nPDE Phase 5 → DEPLOY\n─────────────────────────────────────────\nDIWS Phase 10 → cross-pollination diagnosis (post-PDE)","type":"text"}]},{"type":"paragraph","content":[{"text":"PDE Phase 1 (IDENTIFY) was previously rebuilding the agent census from scratch every time. With DIWS, Stratum 5 (","type":"text"},{"text":"domain-agent-fleet.yaml","type":"text","marks":[{"type":"code_inline"}]},{"text":") is the canonical source — PDE consumes it.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Composition with MSP (Modular Synthesis Philosophy)","type":"text"}]},{"type":"paragraph","content":[{"text":"See ","type":"text"},{"text":"references/diws-msp-mapping.md","type":"text","marks":[{"type":"link","attrs":{"href":"references/diws-msp-mapping.md","title":null}},{"type":"code_inline"}]},{"text":" for the full isomorphism. Briefly:","type":"text"}]},{"type":"table","attrs":{"layout":null},"content":[{"type":"tr","content":[{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"MSP primitive","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"DIWS construct","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Oscillator","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"DIWS instance (one per domain)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Filter","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Mode blender (DIWS substrate → PDE composition matrix)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Modulator","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"The 4 operators (selfish / magnetic / portfolio / reflexive)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Mixer","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Phase 0.5 stretching rack (combines N DIWS instances)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"VCA","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Capital-flow channel selection","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Feedback","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Phase 10 cross-pollination diagnosis (autopoietic)","type":"text"}]}]}]}]},{"type":"paragraph","content":[{"text":"MSP names ","type":"text"},{"text":"how","type":"text","marks":[{"type":"em"}]},{"text":" the patches compose. DIWS names ","type":"text"},{"text":"what","type":"text","marks":[{"type":"em"}]},{"text":" the modules contain.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Modes","type":"text"}]},{"type":"paragraph","content":[{"text":"Distinct invocation modes the skill supports:","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"mode portfolio-pull","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":" — Phase 0 driver; produces ","type":"text"},{"text":"portfolio-reuse-map.md","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"mode portfolio-resonance","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":" — Phase 0.5 driver; runs stretching rack across N instances","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"mode reflexive-study","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":" — produces ","type":"text"},{"text":"domain-meta-study.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" alongside any stratum artifact","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"mode engine-extract","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":" — when an instance reveals a generalizable pattern, flag for promotion to meta-engine or consultant-engine (user-authorized)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"mode full-instantiation","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":" — all phases 0 → 10 for a single domain","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"mode cross-pollination-diagnosis","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":" — focused Phase 10 run between 2+ existing instances","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Proof Instances","type":"text"}]},{"type":"paragraph","content":[{"text":"Stress-tested fills under ","type":"text"},{"text":"proof-instances/","type":"text","marks":[{"type":"link","attrs":{"href":"proof-instances/","title":null}},{"type":"code_inline"}]},{"text":":","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"chess/","type":"text","marks":[{"type":"link","attrs":{"href":"proof-instances/chess/","title":null}},{"type":"code_inline"}]},{"text":" — Hokage Chess (Rob Bonavoglia client) as study source","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"wellness/","type":"text","marks":[{"type":"link","attrs":{"href":"proof-instances/wellness/","title":null}},{"type":"code_inline"}]},{"text":" — BODI fitness / Maddie Elevate Align as study source","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"education/","type":"text","marks":[{"type":"link","attrs":{"href":"proof-instances/education/","title":null}},{"type":"code_inline"}]},{"text":" — Jessica stub (DIWS schema v2.2 reference)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"voodoo/","type":"text","marks":[{"type":"link","attrs":{"href":"proof-instances/voodoo/","title":null}},{"type":"code_inline"}]},{"text":" — outlier validator (loads layer 8 heavily; design-only)","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"The chess and wellness instances are READ-ONLY studies of existing client work — they extract the substrate already running underneath those repos without modifying source repos. The education stub demonstrates how a pre-active flag is loaded. The voodoo outlier proves the schema generates across radically dissimilar domains.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Out-of-Scope","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"DIWS does NOT build products — that's PDE's job","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"DIWS does NOT execute outreach to constellation members — that's the user's call","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"DIWS does NOT modify source-repo state when building proof instances — substrate fills live in this skill's directory only","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"DIWS does NOT auto-promote engines to higher tiers — the user authorizes promotion via ","type":"text"},{"text":"mode engine-extract","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Verification (after running on a new flag-pierce)","type":"text"}]},{"type":"checkbox_list","attrs":{"id":null},"content":[{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"portfolio-reuse-map.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" exists; ≥3 reuse decisions documented","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"holes-fat-report.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" exists; ≥1 entry per axis per instance","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"All 8 stratum artifacts exist in the instantiation directory","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"domain-meta-study.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" exists (Reflexive Operator output)","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"portfolio-resonance.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" exists; ≥3 cross-flows named","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Engine taxonomy declared (which tier each consumed engine sits in)","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Heist + contribute round-trip declared in Layer 4 ↔ 8","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Rules of Engagement","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Dissertation-grade default:","type":"text","marks":[{"type":"strong"}]},{"text":" Layer 8 output is substrate, not garnish","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Heist + Contribute:","type":"text","marks":[{"type":"strong"}]},{"text":" stealing an idea requires an equal or greater upstream gift","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Engine Taxonomy:","type":"text","marks":[{"type":"strong"}]},{"text":" categorize reusables as Domain, Meta, or Consultant tier","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"All 4 operators or none:","type":"text","marks":[{"type":"strong"}]},{"text":" Tenet Protocol — partial firing is system failure","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Read-only on source repos:","type":"text","marks":[{"type":"strong"}]},{"text":" when building proof instances from existing client work, never write into source repos","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Cross-references","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Plan: ","type":"text"},{"text":"~/.claude/plans/2026-04-25-domain-ideal-whole-substrate-design.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" (v2.2 spec source)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Sibling skill: ","type":"text"},{"text":"~/Workspace/a-i--skills/skills/project-management/product-domain-engine/SKILL.md","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"MSP: ","type":"text"},{"text":"~/Workspace/a-i--skills/skills/creative/modular-synthesis-philosophy/SKILL.md","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Stretching-rack genesis: ","type":"text"},{"text":"~/.claude/plans/okay-so-now-harmonic-kettle.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" (Stream Σ definition)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Engine taxonomy: ","type":"text"},{"text":"references/engine-taxonomy.md","type":"text","marks":[{"type":"link","attrs":{"href":"references/engine-taxonomy.md","title":null}},{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"8 strata: ","type":"text"},{"text":"references/8-strata-spec.md","type":"text","marks":[{"type":"link","attrs":{"href":"references/8-strata-spec.md","title":null}},{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"4 operators: ","type":"text"},{"text":"references/4-operators-spec.md","type":"text","marks":[{"type":"link","attrs":{"href":"references/4-operators-spec.md","title":null}},{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Portfolio composition: ","type":"text"},{"text":"references/portfolio-composition-map.md","type":"text","marks":[{"type":"link","attrs":{"href":"references/portfolio-composition-map.md","title":null}},{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"DIWS↔MSP isomorphism: ","type":"text"},{"text":"references/diws-msp-mapping.md","type":"text","marks":[{"type":"link","attrs":{"href":"references/diws-msp-mapping.md","title":null}},{"type":"code_inline"}]}]}]}]},{"type":"hr","attrs":{"markup":"---"}}]},"metadata":{"date":"2026-06-05","name":"domain-ideal-whole-substrate","tags":["substrate","ontology","domain-modeling","portfolio-audit","eight-strata"],"tier":"core","author":"@skillopedia","inputs":["domain-anchor","candidate-flag-pierce"],"source":{"stars":8,"repo_name":"a-i--skills","origin_url":"https://github.com/4444j99/a-i--skills/blob/HEAD/skills/project-management/domain-ideal-whole-substrate/SKILL.md","repo_owner":"4444j99","body_sha256":"fa9487be3de41bbca2bc8a9d7b63cfedc19e906927e9ab6a3a791e13444ce23c","cluster_key":"7a13fa108f338525e889154a2a9e5d6feb544602e256587d2bcf221618846b4d","clean_bundle":{"format":"clean-skill-bundle-v1","source":"4444j99/a-i--skills/skills/project-management/domain-ideal-whole-substrate/SKILL.md","attachments":[{"id":"3a259415-0c0a-51ec-9df5-e2e192d9fdb8","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/3a259415-0c0a-51ec-9df5-e2e192d9fdb8/attachment.yaml","path":"assets/domain-agent-fleet-template.yaml","size":4322,"sha256":"3a249e968c68bf9e5b6c7ea9d9aa3754fd6c45f7d61d972b003c4e8cda96b958","contentType":"application/yaml; charset=utf-8"},{"id":"c030e01c-f3bb-58e5-b88e-9f6f344f033d","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/c030e01c-f3bb-58e5-b88e-9f6f344f033d/attachment.yaml","path":"assets/domain-agent-fleet.yaml","size":0,"sha256":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","contentType":"application/yaml; charset=utf-8"},{"id":"991ca8b3-c438-5f55-8e7d-f1d6178c4aaa","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/991ca8b3-c438-5f55-8e7d-f1d6178c4aaa/attachment.md","path":"assets/domain-attractor-template.md","size":2630,"sha256":"fc6c1d694ea28e157728b76327bc0065249a686825273d5d5afcf22f93aaa55c","contentType":"text/markdown; charset=utf-8"},{"id":"ca5b7751-aa29-5269-bb8f-a0fc4546975b","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/ca5b7751-aa29-5269-bb8f-a0fc4546975b/attachment.md","path":"assets/domain-attractor.md","size":135,"sha256":"136b4c541f6b83bfe0385b5c9c90dfe081241c4e2273a484b2f8b0b9fa6fd524","contentType":"text/markdown; charset=utf-8"},{"id":"25793525-0443-57e4-9ec2-7ec7a97a339f","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/25793525-0443-57e4-9ec2-7ec7a97a339f/attachment.yaml","path":"assets/domain-constellation-template.yaml","size":2350,"sha256":"37bbc8260815bbdffc3d91737788ce300c766ca529280e8109a9508d191f1259","contentType":"application/yaml; charset=utf-8"},{"id":"28120d5a-d68b-54a8-b948-828eee87aafb","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/28120d5a-d68b-54a8-b948-828eee87aafb/attachment.yaml","path":"assets/domain-constellation.yaml","size":335,"sha256":"104b5094ca26ebd08c77bfb72c59fd142aa0598118d7cdd36b621aa5a6003222","contentType":"application/yaml; charset=utf-8"},{"id":"84213f1a-f5d9-5080-8dd5-99e069eb4b6d","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/84213f1a-f5d9-5080-8dd5-99e069eb4b6d/attachment.md","path":"assets/domain-contribution-charter-template.md","size":3345,"sha256":"8a013880df7075ff96636043699b2168df16a17c65eb4eab1af92cd5a5e0e1f5","contentType":"text/markdown; charset=utf-8"},{"id":"e800a4db-a7d4-5463-af95-2becadc713de","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/e800a4db-a7d4-5463-af95-2becadc713de/attachment.md","path":"assets/domain-contribution-charter.md","size":157,"sha256":"c5df47509faa239687d8caef9def0b0f492455dedf71a9c718ba4cded96239cc","contentType":"text/markdown; charset=utf-8"},{"id":"f87edcc8-b300-51de-ad92-b9689bce6772","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/f87edcc8-b300-51de-ad92-b9689bce6772/attachment.md","path":"assets/domain-gap-map-template.md","size":2328,"sha256":"cca80fc85684efbf5483a9257b62180cc8559f606aca21747cc5330e96504318","contentType":"text/markdown; charset=utf-8"},{"id":"b465e13a-10f5-5780-a5d5-bd1c958eb53b","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/b465e13a-10f5-5780-a5d5-bd1c958eb53b/attachment.md","path":"assets/domain-gap-map.md","size":131,"sha256":"fa6dd599c6bd470b37ba74870dae234e5448e9cc0432522655774d9890ea0bbc","contentType":"text/markdown; charset=utf-8"},{"id":"36cb8b34-0dba-51b1-896f-5c19bda23286","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/36cb8b34-0dba-51b1-896f-5c19bda23286/attachment.md","path":"assets/domain-lineage-template.md","size":2940,"sha256":"528771e7bacd10db58929370eaff6b1ee20acd3ed5d0ea972585aced81652f0f","contentType":"text/markdown; charset=utf-8"},{"id":"ebb9e957-8a5f-51ca-9e00-1a7e77d1898c","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/ebb9e957-8a5f-51ca-9e00-1a7e77d1898c/attachment.md","path":"assets/domain-lineage.md","size":131,"sha256":"dccd201e5e8fc9d073fcdc61488f42a7f5c9858ecff37c0faf0362738feac989","contentType":"text/markdown; charset=utf-8"},{"id":"a01929a6-1518-5a4f-9fa0-1081f91aa5ea","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/a01929a6-1518-5a4f-9fa0-1081f91aa5ea/attachment.md","path":"assets/domain-meta-study-template.md","size":3041,"sha256":"650db74d3793882953580d0ce2c78b9dc6b9d0af6c6be0a67429fe75e48548c6","contentType":"text/markdown; charset=utf-8"},{"id":"23daa9f8-2c15-5b57-9e5b-b7c291137139","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/23daa9f8-2c15-5b57-9e5b-b7c291137139/attachment.md","path":"assets/domain-meta-study.md","size":137,"sha256":"9d7ed38e6a291b0f90e208c9107d05024d4c0a8c0e3d4d3c1a79d7f353bdad8f","contentType":"text/markdown; charset=utf-8"},{"id":"913d05b2-7214-5310-9d36-3213e57b82f7","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/913d05b2-7214-5310-9d36-3213e57b82f7/attachment.md","path":"assets/domain-ontology-template.md","size":1661,"sha256":"355dfe0a9a74eeca12068c0035b1bff43f02478ee345d559159b57ae187d5f42","contentType":"text/markdown; charset=utf-8"},{"id":"ee725089-0000-5c2e-afd4-b4a87c7e093b","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/ee725089-0000-5c2e-afd4-b4a87c7e093b/attachment.md","path":"assets/domain-ontology.md","size":404,"sha256":"39c84d34ae71498749fb2fbcf9ade1f1538a88bece71f94adb55cc89d7517107","contentType":"text/markdown; charset=utf-8"},{"id":"c4f7e6eb-d21a-5d61-83ac-f13aa523d5fb","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/c4f7e6eb-d21a-5d61-83ac-f13aa523d5fb/attachment.md","path":"assets/domain-production-stack-template.md","size":2023,"sha256":"818cbddd039ea7cc1e1ee97b494af64eee10aece5b4a5a955d40708ebbdd2af2","contentType":"text/markdown; charset=utf-8"},{"id":"d55eb624-dd0a-5569-aab0-b04a965b04e3","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/d55eb624-dd0a-5569-aab0-b04a965b04e3/attachment.md","path":"assets/domain-production-stack.md","size":149,"sha256":"d8bc349cf6b3fb606347f1efeb179dcad94156871fe935b8a134f1e23769ace6","contentType":"text/markdown; charset=utf-8"},{"id":"f4f0cfd8-fa5d-58e3-8539-54754351fef6","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/f4f0cfd8-fa5d-58e3-8539-54754351fef6/attachment.md","path":"assets/engine-overlap-board.md","size":143,"sha256":"f669063a7387ff6b7a8e292406a8ee1c143db1c8117bec8f2d0a1320b5bce4d8","contentType":"text/markdown; charset=utf-8"},{"id":"c64942e3-c408-5cf8-9d57-0ff95c33d354","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/c64942e3-c408-5cf8-9d57-0ff95c33d354/attachment.md","path":"assets/portfolio-resonance-template.md","size":3110,"sha256":"5d4b06ea92327405a5016e69e6ce459c0dbe067bf6868a9749aa947df73a1134","contentType":"text/markdown; charset=utf-8"},{"id":"ae5ce84a-5e42-5769-a82c-02ad3d74b452","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/ae5ce84a-5e42-5769-a82c-02ad3d74b452/attachment.md","path":"assets/portfolio-reuse-map.md","size":141,"sha256":"58064ff640bdda8471065da2aabaac8d352f020e82f042c332d63d2588569ba0","contentType":"text/markdown; charset=utf-8"},{"id":"03224197-ed6e-5086-a232-d5ee1cb0f152","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/03224197-ed6e-5086-a232-d5ee1cb0f152/attachment.md","path":"proof-instances/chess/README.md","size":1368,"sha256":"f7e189ae3dbe208db547d954b644b3e2e88ec50e6ca4eef2bbe45049a4a98499","contentType":"text/markdown; charset=utf-8"},{"id":"78a7ab1b-04d6-5956-9ee2-ff708dd15d3c","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/78a7ab1b-04d6-5956-9ee2-ff708dd15d3c/attachment.yaml","path":"proof-instances/chess/domain-constellation.yaml","size":3159,"sha256":"593f4c8ba93c6a18baca8043f489d5d523aa83343b00c6fdb1870baf3e31281f","contentType":"application/yaml; charset=utf-8"},{"id":"0895d779-2532-5496-8e75-bbb4098d7731","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/0895d779-2532-5496-8e75-bbb4098d7731/attachment.md","path":"proof-instances/chess/domain-gap-map.md","size":4393,"sha256":"8ec438bbefaed8134043f98ac5b29f791080676d82b3adddfd1dad7d29025c98","contentType":"text/markdown; charset=utf-8"},{"id":"2e95029b-bcf9-57d6-bd93-0dcdf8a6a91b","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/2e95029b-bcf9-57d6-bd93-0dcdf8a6a91b/attachment.md","path":"proof-instances/chess/domain-meta-study.md","size":5337,"sha256":"f8feb624f9140710ae7b6b791bd9942f868dce02d50c4ddded59781e403ce107","contentType":"text/markdown; charset=utf-8"},{"id":"ac2cf4ae-fbc8-5033-a36b-6eef2e5e3866","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/ac2cf4ae-fbc8-5033-a36b-6eef2e5e3866/attachment.md","path":"proof-instances/chess/domain-ontology.md","size":4442,"sha256":"358a109a1673b052ea8993258fb73a31da4e530c45996282d6339ecaed9985cf","contentType":"text/markdown; charset=utf-8"},{"id":"93a85fb7-7b23-50b0-9173-27e0f3f52850","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/93a85fb7-7b23-50b0-9173-27e0f3f52850/attachment.md","path":"proof-instances/education/README.md","size":1771,"sha256":"0c41c560b8f786ebac64139e35f8bf1305b10dce40132cc7cc3908d79866c560","contentType":"text/markdown; charset=utf-8"},{"id":"ad367cf8-3500-5837-b551-850d2ef38d31","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/ad367cf8-3500-5837-b551-850d2ef38d31/attachment.md","path":"proof-instances/education/domain-meta-study.md","size":4871,"sha256":"3671ba9a769bee8e3b74dfbb87f82732a3c6142cc2b0fe43df17b0c3ae47d0b5","contentType":"text/markdown; charset=utf-8"},{"id":"86c25d36-f392-5221-a83b-b9c654634b1b","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/86c25d36-f392-5221-a83b-b9c654634b1b/attachment.md","path":"proof-instances/education/domain-ontology.md","size":3870,"sha256":"b6ca0af52e73f7d816bb9b02392149784f9f683a1f662efddd8dcf694d20100b","contentType":"text/markdown; charset=utf-8"},{"id":"fec60521-b084-5451-876e-da5c19a1dbcb","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/fec60521-b084-5451-876e-da5c19a1dbcb/attachment.md","path":"proof-instances/voodoo/README.md","size":1798,"sha256":"911e866efa5586359169a02f88c3375a6407e9364c63f6ccb7a7322edbbd3404","contentType":"text/markdown; charset=utf-8"},{"id":"caad0620-79a8-5f04-b000-9d6d822b57ca","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/caad0620-79a8-5f04-b000-9d6d822b57ca/attachment.md","path":"proof-instances/voodoo/domain-contribution-charter.md","size":6505,"sha256":"f1029c525ddf52141707f7f6b83f4a6103685644a4751487982f765110f2d74b","contentType":"text/markdown; charset=utf-8"},{"id":"e298ff10-56c5-59f0-be67-8b3fbd2440d3","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/e298ff10-56c5-59f0-be67-8b3fbd2440d3/attachment.md","path":"proof-instances/voodoo/domain-meta-study.md","size":6353,"sha256":"fd39807d3458edbbf00d95e59545ee93fc99491176c072582236775374c2b447","contentType":"text/markdown; charset=utf-8"},{"id":"b5d52d93-2711-5812-9000-73f1e70ede19","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/b5d52d93-2711-5812-9000-73f1e70ede19/attachment.md","path":"proof-instances/voodoo/domain-ontology.md","size":5033,"sha256":"31b73caa2a05cf020e366f82715f5684469b3501fee4023ee4f0a8c2a1d9f514","contentType":"text/markdown; charset=utf-8"},{"id":"823f7ab1-9ee2-5d41-8cff-7895dae9dd45","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/823f7ab1-9ee2-5d41-8cff-7895dae9dd45/attachment.md","path":"proof-instances/wellness/README.md","size":1380,"sha256":"5569195772736ca0d90dfeb7fd120f1bd9499c4b5a95e45fd997bebf0ea9fbc8","contentType":"text/markdown; charset=utf-8"},{"id":"f6bf9bce-a768-5105-95c0-760a084d9c92","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/f6bf9bce-a768-5105-95c0-760a084d9c92/attachment.md","path":"proof-instances/wellness/domain-meta-study.md","size":5753,"sha256":"be3c0a0cdc1ced236392a6d56931b2b2392130e5985e79c805ad1ea89fe3c26f","contentType":"text/markdown; charset=utf-8"},{"id":"419dd865-f462-57c3-928f-d1e30417ee14","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/419dd865-f462-57c3-928f-d1e30417ee14/attachment.md","path":"proof-instances/wellness/domain-ontology.md","size":4544,"sha256":"13340ee78233e5b69fd1030557c4466a3c90337c7b64580326fb3e09a9718fcc","contentType":"text/markdown; charset=utf-8"},{"id":"ecf90b76-26ca-50fc-926e-1826b9ea9b3c","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/ecf90b76-26ca-50fc-926e-1826b9ea9b3c/attachment.md","path":"references/4-operators-spec.md","size":7347,"sha256":"f502a9a1961b95208b6df3f00aec4f61a59600c0fa909a2ecdd09f1010eac950","contentType":"text/markdown; charset=utf-8"},{"id":"10dc269e-aab0-5e78-a496-dbd89c9eb828","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/10dc269e-aab0-5e78-a496-dbd89c9eb828/attachment.md","path":"references/8-strata-spec.md","size":10743,"sha256":"07d1a10d703eb2741a6725b40fa7ca2f5319cd1bf5f4772bc208471df73a0c0c","contentType":"text/markdown; charset=utf-8"},{"id":"060d3fe0-4201-5c93-ab36-b6c31b58ee3e","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/060d3fe0-4201-5c93-ab36-b6c31b58ee3e/attachment.md","path":"references/diws-msp-mapping.md","size":6422,"sha256":"e1b1878651bac9f7c7f3c94bc5106df5f382840c50ff215a3fd40b3e8da4ac9c","contentType":"text/markdown; charset=utf-8"},{"id":"a42c490e-f439-5210-a9f2-c7c94328db59","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/a42c490e-f439-5210-a9f2-c7c94328db59/attachment.md","path":"references/engine-taxonomy.md","size":7352,"sha256":"777ac4c71e271d0d240a6272bb8c83599ba9163e99212814bca55d74681aec47","contentType":"text/markdown; charset=utf-8"},{"id":"de50afc9-793d-5aaf-859f-fca7a0bccd2e","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/de50afc9-793d-5aaf-859f-fca7a0bccd2e/attachment.md","path":"references/portfolio-composition-map.md","size":7791,"sha256":"571a3897898963755d2eeb671181c0fea7d8e70abb8555ce204af96d5c5520ba","contentType":"text/markdown; charset=utf-8"},{"id":"7076d3de-02a4-5683-8c4a-77760dfc1f61","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/7076d3de-02a4-5683-8c4a-77760dfc1f61/attachment.sh","path":"scripts/audit-portfolio.sh","size":7857,"sha256":"9fa76345907da8b4f62d30f755a37c7265d87b265916b8b8a4fbadcb374b999c","contentType":"application/x-sh; charset=utf-8"},{"id":"05eef0a0-12f9-585e-b405-8544f394237b","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/05eef0a0-12f9-585e-b405-8544f394237b/attachment.sh","path":"scripts/audit.sh","size":758,"sha256":"a561ce15828659352cbbb36ce8bba22c808676c377609c65230c158f2eca4452","contentType":"application/x-sh; charset=utf-8"},{"id":"4cb3c990-e116-5d70-bd36-c04061dee32c","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/4cb3c990-e116-5d70-bd36-c04061dee32c/attachment.sh","path":"scripts/portfolio-gap-audit.sh","size":9432,"sha256":"8cbffa05ca0944581b3d2e32ad8441d4dabdba245a575c0848f361321a070bec","contentType":"application/x-sh; charset=utf-8"}],"bundle_sha256":"487159b1aadab38650dcb3876f74019d41b1161ed4a581bcd2f8738d57f2cc9e","attachment_count":44,"text_attachments":44,"attachment_storage":"skillopedia-attachments-v1","binary_attachments":0,"excluded_attachments":[]},"cluster_size":5,"skill_md_path":"skills/project-management/domain-ideal-whole-substrate/SKILL.md","import_metadata":{"date":"2026-06-05","author":"@skillopedia","version":"v1","category":"security","category_label":"Security"},"exact_dupes_collapsed_into_this":4},"license":"MIT","outputs":["domain-ontology","domain-lineage","domain-constellation","domain-gap-map","domain-agent-fleet","domain-production-stack","domain-attractor","domain-contribution-charter","domain-meta-study","portfolio-reuse-map","holes-fat-report"],"version":"v1","category":"security","triggers":["user-asks-about-new-domain","context:flag-pierce","context:portfolio-audit","context:stretching-rack","context:reflexive-study"],"complexity":"advanced","import_tag":"clean-skills-v1","complements":["product-domain-engine","modular-synthesis-philosophy","market-gap-analysis","systemic-product-analyst","recursive-systems-architect","project-alchemy-orchestrator"],"description":"Foundational layer beneath PDE. Governs eight-strata substrate (ontology, lineage, constellation, gap-map, agent-fleet, production-stack, internal-magnet, external-contribution) plus four operators (selfish-altruistic loop, magnetic membrane, portfolio operator, reflexive operator) for any domain a flag pierces — chess, fitness, voodoo, education, design, taxidermy. Pre-instantiates engine reuse via Phase 0 portfolio audit and stretching-rack gap diagnosis.","side_effects":["creates-files","reads-filesystem"],"time_to_learn":"multi-hour","organ_affinity":["all"],"governance_phases":["frame","shape"],"governance_auto_activate":false}},"renderedAt":1782981789347}

Domain Ideal-Whole Substrate (DIWS) The substrate beneath every flag-pierce. Where Product Domain Engine (PDE) handles the product layer (logos / ethos / pathos / kairos), this skill handles the domain layer beneath. Every domain — chess, fitness, voodoo, education, design — composes from the same eight strata under the same four operators, with load distribution shifting by domain. User's foundational question: "What elements, systems, structures, environments, agents so forth make the ideal whole (be it fitness, chess, or voodoo)?" DIWS answers it as substrate, not as workflow. What This Is…