Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Case Study: J-Editorial in Practice

Seeing the three-layer framework in action


Overview

This website implements the J-Editorial framework to achieve automated quality control with minimal overhead. The case study demonstrates how theory translates to practice—not as an implementation guide, but as proof that the conceptual model works.

What This Case Study Shows

Results at a Glance

MetricValue
Documents Tracked4
Average Refinement0.81 / 1.00
Quality Compliance100%
Accidental Publications0

Layer 1 in Practice

Every document carries its intrinsic properties in YAML frontmatter:

---
refinement: 0.85      # Quality score (0.00-1.00)
origin: research      # Why created
form: stable          # Permanence intent
audience: public      # Intended visibility
stubs: []             # Acknowledged gaps
---

These five properties travel with the artifact wherever it goes—portable, tool-agnostic, self-documenting.

What this enables: Any system that can read frontmatter immediately understands the artifact’s quality state, purpose, and readiness for its intended audience.


Layer 2 in Practice

Extrinsic dimensions are calculated at build time, not stored:

DimensionCalculationExample
healthrefinement + stubs count0.85 refinement, 0 stubs → “excellent”
usefulnessrefinement vs audience gate0.85 for public (gate: 0.80) → “ready”
driftdays since git modificationModified 5 days ago → “none”
stageform + refinement + stubsstable, 0.85, no stubs → “polish”

What this enables: The same artifact can be interpreted differently in different contexts. A research note at 0.65 refinement is “ready” for personal use but “insufficient” for public sharing—without storing duplicate metadata.


Layer 3 in Practice

Operational rules enforce quality automatically:

Quality Gate: Public content requires refinement >= 0.80 and stubs = []

Pre-build validation:
├─ Check required properties present
├─ Validate refinement meets audience threshold
├─ Verify no stubs for public content
└─ Exit with error if violations found

Private Content Exclusion: Documents with audience: personal or audience: internal are automatically excluded from production builds.

What this enables: It becomes impossible to accidentally publish incomplete work. The system enforces what manual review might overlook.


The Lightweight Implementation

This case study demonstrates a minimal Layer 3—appropriate for solo authors but not enterprise-scale:

Implemented:

Not Implemented (would require full Layer 3):

For teams requiring these capabilities, the full Layer 3 specification provides architectural patterns for governance at scale.


Key Insight

The case study validates J-Editorial’s core premise: separation of concerns works.

No complex CMS. No manual checklists. Just structured metadata and automated gates.


Learn More


Data Analysis

For those interested in the quantitative details, Jupyter notebooks are available:

These notebooks demonstrate how Layer 2 dimensions can be calculated and visualized programmatically.