📊 LOGOS PROJECT STATISTICS

Project Overview

  • Total Papers: 12
  • Total Word Count: $= dv.pages('"06_Publication/Logos_Papers"').file.size
  • Breakthroughs Detected: $= dv.pages('"_ANALYSIS"').where(p => p.integration_order >= 3).length
  • Order 4 Integrations: $= dv.pages('"_ANALYSIS"').where(p => p.integration_order >= 4).length

Paper Status

TABLE
    file.name as "Paper",
    length(file.outlinks) as "Citations",
    file.size as "Size",
    file.mtime as "Last Modified"
FROM "06_Publication/Logos_Papers"
SORT file.name ASC

Core Concept Coverage

TABLE
    concept,
    papers_using as "Papers",
    coverage_pct + "%" as "Coverage"
FROM "_ANALYSIS/concept_coverage"
SORT coverage_pct DESC
LIMIT 15

Integration Orders Distribution

const breakthroughs = dv.pages('"_ANALYSIS"')
    .where(p => p.integration_order)
    .groupBy(p => p.integration_order);
 
dv.header(3, "Breakthrough Distribution");
for (let group of breakthroughs) {
    dv.paragraph(`**Order ${group.key}:** ${group.rows.length} breakthroughs`);
}

Ring 2 — Canonical Grounding

Ring 3 — Framework Connections


Canonical Hub: CANONICAL_INDEX