Jump to content

Breadcrumb Tracking: Difference between revisions

From The Sovereign Games (MoA Lab)
Master Index: Corrected cargo query
Calibration Report | 2026-07-24 | v0.3-dev | Self-Assessment | Breadcrumb Tracking Primary narrative on individual cal report/log; this page = Master Index only. Magic dates → static 2026-07-20. Calibration Type param. Open Calibration Items. Not content cal.
 
(8 intermediate revisions by the same user not shown)
Line 2: Line 2:
|status = Active Development
|status = Active Development
}}
}}
'''Canonical Question:''' How does a project-wide list of every open breadcrumb get maintained, without requiring anyone to manually remember or re-check every page?
'''Canonical Question:''' How does a project-wide list of every open Development Breadcrumb get maintained, without requiring anyone to manually remember or re-check every page?
 
= Breadcrumb Tracking =
== The Problem This Solves ==
'''Companion roles (do not invert):'''
 
* [[Breadcrumb Philosophy]] — what a Development Breadcrumb ''is'' and when to use one.
A breadcrumb left on one page is easy to find '''on that page'''. It is easy to forget entirely once the page isn't actively being worked on. This project already has many open Development Breadcrumbs scattered across its subpages nothing has aggregated them into one place a person could scan to see everything still open, project-wide.
* '''This page''' — how open breadcrumbs become '''query-visible project-wide''' via <code>drift_report_status</code>.
 
* Individual page Calibration Log / Talk / cal report — where the '''narrative breadcrumb and its closure''' are written.
{{GameModule
{{GameModule
| type = Meta & Framework
| type = Meta & Framework
<!-- HIDDEN GUIDE: pick from existing controlled vocabulary — check Category pages before inventing a new type. -->
| category = [[:Category:Meta & Framework|Meta & Framework]]
| category = [[:Category:Meta & Framework|Meta & Framework]]
| Functional Layer = Governance
<!-- HIDDEN GUIDE: must match an existing Category page. -->
| Calibration Type = Governance
<!-- HIDDEN GUIDE: options — Governance, Diagnostic, Maintenance, Framework, Calibration. Parameter name is Calibration Type; displays as Functional Layer. Do not rename the stored parameter. -->
| Application Layer = Framework Infrastructure
| Application Layer = Framework Infrastructure
| Version = 0.2
<!-- HIDDEN GUIDE: options — Multi-Layer, Framework Infrastructure, Individual, Institutional, Civilizational. New values only via deliberate vocabulary update on Page Structure Calibration Checklist and Template:GameModule/doc. -->
| Version = 0.3
| Maturity = Experimental
| Maturity = Experimental
| Last Updated = {{CURRENTYEAR}}-{{CURRENTMONTH}}-{{CURRENTDAY}}
<!-- HIDDEN GUIDE: Experimental, Development, Confirmed, Field Validated, Reference Standard Candidate -->
| description = Defines how open Development Breadcrumbs get tracked project-wide via drift_report_status, so they don't silently accumulate unaddressed across many pages.
| Last Updated = 2026-07-20
<!-- CRITICAL: static only. Must match review_date. FORBIDDEN: magic words. -->
| description = Project-wide index of pages with open Development Breadcrumbs via drift_report_status. Narrative breadcrumbs and closure remain on each page's calibration report / log — this page does not replace them.
}}
}}
 
== The problem this solves ==
== The Mechanism ==
A breadcrumb left on one page is easy to find '''on that page'''. It is easy to forget once that page is no longer in active work. Open Development Breadcrumbs can scatter across many pages with no single place to scan what is still open project-wide.
 
This page solves '''discovery and prioritization''', not authorship of the breadcrumb text.
Breadcrumbs are prose, not structured Cargo fields, so full automated indexing of their '''content''' isn't available without further infrastructure work. The mechanism that '''is''' available now: whenever a page has an active Development Breadcrumb, its `drift_report_status` field (see [[Nonconformance Reporting Procedure]] for the full option set) should include `Breadcrumb-Open`. That field is already queryable — indexing breadcrumbs becomes a matter of querying a field that already exists, rather than building new infrastructure.
== Where the breadcrumb itself is recorded ==
 
{| class="wikitable"
'''If a breadcrumb exists on a page but `drift_report_status` does not include `Breadcrumb-Open`, that mismatch is itself a nonconformance''' — the field and the content have drifted apart, the exact class of bug this project has repeatedly found and fixed elsewhere.
! Layer !! What lives there
 
|-
| '''Individual page''' (Calibration Log, Talk, and/or calibration report entry; often mirrored by Open Calibration Items when actionable)
| The breadcrumb '''prose''': what is incomplete, why, what “done” would mean, closure note when resolved. '''This remains the primary record.'''
|-
| '''<code>drift_report_status</code> on that page'''
| Includes <code>Breadcrumb-Open</code> while the breadcrumb is active. Cleared (or removed from the list) when the breadcrumb is closed. Setting the field is what makes the page appear in the Master Index.
|-
| '''This page (Master Index)'''
| Live list of pages whose status includes <code>Breadcrumb-Open</code>. Dashboard only — not a second copy of every breadcrumb essay, and not the nonconformance archive (see [[Nonconformance Reporting Procedure]]).
|}
'''Rule:''' If a Development Breadcrumb exists on a page but <code>drift_report_status</code> does not include <code>Breadcrumb-Open</code>, that mismatch is a '''nonconformance''' (field and content drifted). Fix status to match reality; do not “fix” it only by editing this index page.
== Not a nonconformance dump ==
<code>Breadcrumb-Open</code> marks '''intentional incompleteness under development'''. 
Content or site defects that are out of tolerance use nonconformance values and their own narrative homes — not this index as the write-up. See [[Nonconformance Reporting Procedure]].
== The mechanism ==
Breadcrumb '''content''' is prose, not a structured Cargo field, so full automated indexing of the text is not required for v0. What is available now:
* While a page has an active Development Breadcrumb → <code>drift_report_status</code> includes <code>Breadcrumb-Open</code> (may combine with other open values, semicolon-separated).
* Master Index queries that field.
* Closing the breadcrumb on the individual page includes a dated note in the page cal report/log '''and''' updating <code>drift_report_status</code> so the page drops out of the index.
== Master Index ==
== Master Index ==
{{#cargo_query:
{{#cargo_query:
tables=AdminPageStatus
tables=AdminPageStatus
|fields=_pageName=Page, Has_priority=Priority, Last_reviewed=Last Reviewed, Has_drift_report_status=Status
|fields=_pageName=Page, Has_priority=Priority, Last_reviewed=Last Calibration, Has_drift_report_status=Drift status
|where=Has_drift_report_status="Open" OR Has_drift_report_status="Disputed"
|where=Has_drift_report_status HOLDS "Breadcrumb-Open"
|order by=Has_priority
|format=table
|format=table
|order by=Has_priority
|default='''No pages currently have an open Breadcrumb.'''
}}
}}
 
Live list of pages with an open Development Breadcrumb, built from each page’s Admin Page Status not a manually maintained parallel list.
This gives a live, auto-generated list of every page with an open breadcrumb, nonconformance, or dispute, project-wide — built entirely from data that already exists on each page's own Admin Page Status block, not a manually maintained separate list.
'''Note:''' Query requires <code>Has_drift_report_status</code> declared as list-capable in Cargo (e.g. <code>List (;) of Text</code>) and the table recreated after declaration changes. See [[Calibration Failure Log]] for property-storage lessons. Until the declaration matches multi-value use, treat query gaps as infrastructure follow-up, not as proof that no breadcrumbs exist.
 
'''Maintenance panel (later):''' Same query pattern can be embedded in an Admin maintenance panel alongside nonconformance queries — still driven by page-level status fields.
'''Note:''' this query cannot run correctly until `Template:Admin Page Status`'s field declarations are updated to support the multi-value `drift_report_status` options — see the open nonconformance already logged on [[Nonconformance Reporting Procedure]]. Until that update is made, this query will not reliably match pages using the old single-value format.
== How to use this index ==
 
# Scan the Master Index for open breadcrumbs project-wide.
== Calibration Dependencies ==
# Open the '''page''' (and its Transparency / Calibration Log / Talk links) to read the actual breadcrumb and work it.
* [[Breadcrumb Philosophy]]
# On closure: append closure on the individual cal report/log; update that page’s <code>drift_report_status</code>; confirm the page leaves this index on refresh.
* [[Nonconformance Reporting Procedure]]
Do not close breadcrumbs by editing only this tracking page.
* [[Template:Calibration Dependent]]
== Calibration dependencies ==
 
* [[Breadcrumb Philosophy]] — definition and use of Development Breadcrumbs
* [[Nonconformance Reporting Procedure]] — shared <code>drift_report_status</code> options; NCR ≠ breadcrumb
* [[Page Structure Calibration Checklist]] — Open Calibration Items vs status consistency
* [[Template:Admin Page Status]] — field storage / Cargo declaration
'''See the Game. Refuse the Game. Build Better.'''
'''See the Game. Refuse the Game. Build Better.'''
 
== Open Calibration Items ==
* Confirm Cargo declaration for multi-value <code>Has_drift_report_status</code> and recreate table if needed so Master Index is trustworthy.
* Add this query (and nonconformance sibling) to Admin maintenance panel when that panel is built.
* Spot-check a sample of pages with breadcrumb prose for missing <code>Breadcrumb-Open</code> (mismatch = nonconformance on those pages).
''See the Page Transparency & Calibration section above for this page's Calibration Log / Decision Records / Talk links.''
{{RelatedPages}}
{{RelatedPages}}
{{Standalone Transparency}}
{{Standalone Transparency}}
Line 52: Line 83:
{{Calibration Maintenance}}
{{Calibration Maintenance}}
{{Framework Reference}}
{{Framework Reference}}
{{Calibration Procedure Reference}}  
{{Calibration Procedure Reference}}
 
{{Tracking Logs Reference}}
[[Category:Meta & Framework]]
[[Category:Meta & Framework]]
<div style="display:none;">
{{Resource
{{Resource
| Title = Breadcrumb Tracking
| Title = Breadcrumb Tracking
| URL = https://www.thesovereigngames.com/wiki/Breadcrumb_Tracking
| URL = https://www.thesovereigngames.com/wiki/Breadcrumb_Tracking
| Description = Defines how open Development Breadcrumbs get tracked project-wide via drift_report_status, so they don't silently accumulate unaddressed across many pages.
| Description = Project-wide index of open Development Breadcrumbs via drift_report_status. Narrative breadcrumbs stay on each page's calibration report or log.
| Category = Meta & Framework
| Category = Meta & Framework
}}
}}
</div>
{{Admin Page Status
{{Admin Page Status
<!-- Do Not Remove commented out Reference Options -->
<!-- === CORE STATUS === -->
<!-- options: Done, Needs review, Not started -->
| categorization = Done
| categorization = Done
<!-- options: Self-Assessment, Confirmed Rating -->
| calibration_review = Self-Assessment
| calibration_review = Self-Assessment
<!-- options: Experimental, Development, Confirmed, Field Validated, Reference Standard Candidate -->
| instrument_grade = Experimental
| instrument_grade = Experimental
<!-- options: Low, Moderate, High -->
| validation = Low
| validation = Low
| calibration_rationale = First full draft. Built as the tracking/indexing companion to Breadcrumb Philosophy (which defines the mechanism) and Nonconformance Reporting Procedure (which defines the shared status field both rely on). Master Index query correctly references the finalized multi-value drift_report_status options, but cannot function correctly until Template:Admin Page Status is updated to support them — same open nonconformance already logged on the Nonconformance Reporting Procedure page, inherited here rather than duplicated as a separate finding.
| calibration_rationale = Clarified primary narrative on individual page cal report/log; this page is dashboard index only. Fixed forbidden magic-word dates to static 2026-07-20. Canonical Calibration Type param. Open Calibration Items for Cargo/query follow-ups. Not a full content cal.
| review_confidence = Moderate
| review_confidence = Moderate
| review_date = {{CURRENTYEAR}}-{{CURRENTMONTH}}-{{CURRENTDAY}}
<!-- options: High, Moderate, Low -->
| review_date = 2026-07-20
| reviewed_by = Sovereign
| reviewed_by = Sovereign
<!-- options: Core, Supporting, Peripheral -->
| priority = Core
| priority = Core
| review_threshold = 30
| review_threshold = 30
<!-- options: Yes, No, Not checked -->
| has_backlinks = Not checked
| has_backlinks = Not checked
<!-- options: Yes, Has red links, Not checked -->
| outbound_links_valid = Not checked
| outbound_links_valid = Not checked
<!-- options: Yes, No -->
| in_outline = No
| in_outline = No
<!-- options: Yes, No -->
| in_category_outline = No
| in_category_outline = No
<!-- options: Done, Needs review, Not started -->
| templates_complete = Done
| templates_complete = Done
<!-- options: Meets standard, Needs work, Not checked -->
| formatting_standard = Meets standard
| formatting_standard = Meets standard
<!-- options: Applied, Not applicable, Needs work -->
| symmetry_check = Not applicable
| symmetry_check = Not applicable
<!-- options: Yes, No, Not applicable -->
| self_report_flagged = No
| self_report_flagged = No
<!-- options: Yes, Needs work, Not checked -->
| terminology_consistent = Yes
| terminology_consistent = Yes
<!-- options: Confirmed by other party, Self-assessed only -->
| standing_check = Self-assessed only
| standing_check = Self-assessed only
| drift_report_status = Nonconformance-Open-With-Dependencies
<!-- options: Breadcrumb-Open, Nonconformance-Open, Nonconformance-Open-With-Dependencies, Resolved-Unverified, Disputed, None open — None open alone only -->
| depends_on = Breadcrumb Philosophy; Nonconformance Reporting Procedure; Template:Calibration Dependent
| drift_report_status = Breadcrumb-Open
| depends_on = Breadcrumb Philosophy; Nonconformance Reporting Procedure; Page Structure Calibration Checklist; Template:Admin Page Status
}}
}}

Latest revision as of 07:48, 24 July 2026

Welcome to the MoA–TSG Lab. The wiki is the bench. The work is Metrology of the Abstract. Adopt the tools or leave them on the rack — either way, the need doesn't wait.

  • Lab Note: A redlink is not a failure. It identifies Calibration Debt—work waiting to be measured, mapped, and calibrated.

CYCLE Calibration position

StatusActive Development

This page is a conceptual instrument under Permanent Beta. It declares a real calibration position, not a finished product waiting to ship. Checking continues; an edit is only required when evidence demands it. Stage: Seed to Fruit.

Feedback welcome — especially clarity, failure modes, and calibration gaps. Use discussion or Contribute.


Canonical Question: How does a project-wide list of every open Development Breadcrumb get maintained, without requiring anyone to manually remember or re-check every page?

Breadcrumb Tracking

Companion roles (do not invert):

  • Breadcrumb Philosophy — what a Development Breadcrumb is and when to use one.
  • This page — how open breadcrumbs become query-visible project-wide via drift_report_status.
  • Individual page Calibration Log / Talk / cal report — where the narrative breadcrumb and its closure are written.



Sovereign-Games-OG-Image.jpg

Meta

Breadcrumb Tracking

Type Meta & Framework
Functional Layer Governance
Application Layer Framework Infrastructure
Category Meta & Framework
Version 0.3
Maturity Experimental
Last Calibration 2026-07-20
Status Permanent Beta
Description Project-wide index of pages with open Development Breadcrumbs via drift_report_status. Narrative breadcrumbs and closure remain on each page's calibration report / log — this page does not replace them.

Core Principles

  • Reality gets final vote
  • See the Game. Refuse the Game. Build Better.
  • Permanent Beta

Navigation

Related


The problem this solves

A breadcrumb left on one page is easy to find on that page. It is easy to forget once that page is no longer in active work. Open Development Breadcrumbs can scatter across many pages with no single place to scan what is still open project-wide. This page solves discovery and prioritization, not authorship of the breadcrumb text.

Where the breadcrumb itself is recorded

Layer What lives there
Individual page (Calibration Log, Talk, and/or calibration report entry; often mirrored by Open Calibration Items when actionable) The breadcrumb prose: what is incomplete, why, what “done” would mean, closure note when resolved. This remains the primary record.
drift_report_status on that page Includes Breadcrumb-Open while the breadcrumb is active. Cleared (or removed from the list) when the breadcrumb is closed. Setting the field is what makes the page appear in the Master Index.
This page (Master Index) Live list of pages whose status includes Breadcrumb-Open. Dashboard only — not a second copy of every breadcrumb essay, and not the nonconformance archive (see Nonconformance Reporting Procedure).

Rule: If a Development Breadcrumb exists on a page but drift_report_status does not include Breadcrumb-Open, that mismatch is a nonconformance (field and content drifted). Fix status to match reality; do not “fix” it only by editing this index page.

Not a nonconformance dump

Breadcrumb-Open marks intentional incompleteness under development. Content or site defects that are out of tolerance use nonconformance values and their own narrative homes — not this index as the write-up. See Nonconformance Reporting Procedure.

The mechanism

Breadcrumb content is prose, not a structured Cargo field, so full automated indexing of the text is not required for v0. What is available now:

  • While a page has an active Development Breadcrumb → drift_report_status includes Breadcrumb-Open (may combine with other open values, semicolon-separated).
  • Master Index queries that field.
  • Closing the breadcrumb on the individual page includes a dated note in the page cal report/log and updating drift_report_status so the page drops out of the index.

Master Index

Page Priority Last Calibration Drift status
Template/Doc Calibration Pattern Core 2026-07-14 Breadcrumb-Open
Insights and Future Layers Core 2026-07-14 Breadcrumb-Open
Slave Owner Game Core 2026-07-14 Breadcrumb-Open
Origin: From Personal Crisis to Metrology of the Abstract Core 2026-07-14 Breadcrumb-Open
Hidden Mastery Core 2026-07-09 Breadcrumb-Open
Hidden Mastery/Level 2 Core 2026-07-09 Breadcrumb-Open
Hidden Mastery/Level 3 Core 2026-07-09 Breadcrumb-Open
Hidden Mastery/Level 4 Core 2026-07-09 Breadcrumb-Open
Hidden Mastery/Level 5 Core 2026-07-09 Breadcrumb-Open
Hidden Mastery/Crash Course Core 2026-07-09 Breadcrumb-Open
Thesis: Calibration Infrastructure for Reasoning and AI Core 2026-07-22 Breadcrumb-Open
Building Calibration Infrastructure for Reasoning and AI (Strategic Plan) Core 2026-07-22 Breadcrumb-Open
Metrology of the Abstract — Working Terminology Core 2026-07-23 Breadcrumb-Open Nonconformance-Open
Abstract Standards Are Real; the System Was Missing Core 2026-07-23 Breadcrumb-Open
Capability Development Roadmap Core 2026-07-23 Breadcrumb-Open
Nonconformance Reporting Procedure Core 2026-07-20 Breadcrumb-Open
Breadcrumb Tracking Core 2026-07-20 Breadcrumb-Open
Known Site Issues & Fixes Core 2026-07-20 Breadcrumb-Open
Calibration Report Standard Format Core 2026-07-20 Breadcrumb-Open
Calibration Log: When to Create One Core 2026-07-13 Breadcrumb-Open
Decision Records: Governance Memory/Index Core 2026-07-14 Breadcrumb-Open
Standards: Types and Calibration Obligations Core 2026-07-20 Breadcrumb-Open
Decision Records: Governance Memory Core 2026-07-14 Breadcrumb-Open
Admin:Maintenance Dashboard Core 2026-07-19 Breadcrumb-Open
Abundance as a Measurand Core 2026-07-25 Breadcrumb-Open
Action Plans & Campaigns Core 2026-07-25 Breadcrumb-Open
Page Structure Calibration Checklist Core 2026-07-14 Breadcrumb-Open
Seed to Fruit Development Core 2026-07-27 Breadcrumb-Open
TDP-001 Term Decomposition Protocol Core 2026-07-27 Breadcrumb-Open
Template:Development Notice Core 2026-07-29 Breadcrumb-Open
Calibration Debt Core 2026-07-27 Breadcrumb-Open
Calibrated Civilizational Memory (Vision) Peripheral 2026-07-22 Breadcrumb-Open
Calibrated Public Knowledge System Peripheral 2026-07-22 Breadcrumb-Open
Slave Owner Game/How This Framework Can Be Abused Supporting 2026-07-20 Breadcrumb-Open
Slave Owner Game/Revolts and Calibration Failure Supporting 2026-07-20 Breadcrumb-Open
Slave Owner Game/Boundary Conditions Supporting 2026-07-14 Breadcrumb-Open
Slave Owner Game/Measuring Success Supporting 2026-07-21 Breadcrumb-Open
Slave Owner Game/Diagnostic Inversion Test Supporting 2026-07-21 Breadcrumb-Open
Category:Exploration Supporting 2026-07-23 Breadcrumb-Open
Research Hypothesis: Traceability Chains for AI Claim Calibration Supporting 2026-07-23 Breadcrumb-Open
Research Hypothesis: Civilizational Effective Intelligence and Calibration Infrastructure Supporting 2026-07-23 Breadcrumb-Open
Framework Features Reference Supporting 2026-07-20 Breadcrumb-Open
Calibration Failure Log Supporting 2026-07-24 Breadcrumb-Open
Template:Calibration Template Supporting 2026-07-20 Breadcrumb-Open
Template:Calibration Maintenance Log Supporting 2026-07-14 Breadcrumb-Open
Vision and Phased Roadmap Supporting 2026-07-25 Breadcrumb-Open
CR-FAIR-001 Fairness Calibration Record Supporting 2026-07-25 Breadcrumb-Open
Category:Calibrated Terms Supporting 2026-07-25 Breadcrumb-Open
MediaWiki as Calibration Infrastructure Supporting 2026-07-27 Breadcrumb-Open

Live list of pages with an open Development Breadcrumb, built from each page’s Admin Page Status — not a manually maintained parallel list. Note: Query requires Has_drift_report_status declared as list-capable in Cargo (e.g. List (;) of Text) and the table recreated after declaration changes. See Calibration Failure Log for property-storage lessons. Until the declaration matches multi-value use, treat query gaps as infrastructure follow-up, not as proof that no breadcrumbs exist. Maintenance panel (later): Same query pattern can be embedded in an Admin maintenance panel alongside nonconformance queries — still driven by page-level status fields.

How to use this index

  1. Scan the Master Index for open breadcrumbs project-wide.
  2. Open the page (and its Transparency / Calibration Log / Talk links) to read the actual breadcrumb and work it.
  3. On closure: append closure on the individual cal report/log; update that page’s drift_report_status; confirm the page leaves this index on refresh.

Do not close breadcrumbs by editing only this tracking page.

Calibration dependencies

See the Game. Refuse the Game. Build Better.

Open Calibration Items

  • Confirm Cargo declaration for multi-value Has_drift_report_status and recreate table if needed so Master Index is trustworthy.
  • Add this query (and nonconformance sibling) to Admin maintenance panel when that panel is built.
  • Spot-check a sample of pages with breadcrumb prose for missing Breadcrumb-Open (mismatch = nonconformance on those pages).

See the Page Transparency & Calibration section above for this page's Calibration Log / Decision Records / Talk links.


Structural Connections


Page Transparency & Calibration

This page is under continuous calibration in line with the Permanent Beta principle.


Public Discussion Welcome

Questions, suggestions, feedback, disagreement, and proposed improvements are welcome on the Talk page.

Light rules:

  • Prefer evidence and concrete examples over slogans.
  • Apply Diagnostic Inversion Test when criticizing — the same standard to this page that you would apply elsewhere.
  • Distinguish observation from conclusion.
  • Calibration entries and Decision Records are maintenance records; public discussion belongs in ordinary Talk threads.
  • This framework remains in Permanent Beta. Better calibration is always in scope.



Calibration Dependent

Pages that list this page as a load-bearing dependency:

Page Priority Instrument Grade Last Updated Cycle Status Drift Status
Insights and Future Layers Core Experimental 2026-07-14 Current Breadcrumb-Open
Category:Milestone Core Experimental 2026-07-14 Current None open
Nonconformance Reporting Procedure Core Experimental 2026-07-20 Current Breadcrumb-Open
Admin:Maintenance Dashboard Core Experimental 2026-07-19 Current Breadcrumb-Open
Page Structure Calibration Checklist Core Development 2026-07-14 Current Breadcrumb-Open

If this page is edited substantively, review the list above per the Ripple Review rule — see Calibration Dependencies: Standards and Process#Rule: Core-Priority Changes Trigger Mandatory Ripple Review.


Calibration Dependencies

Pages this page relies on as load-bearing dependencies: Breadcrumb Philosophy Nonconformance Reporting Procedure Page Structure Calibration Checklist Template:Admin Page Status If incorrect, edit the `depends_on` field in Admin Page Status — do not edit this section directly, it is auto-generated.



Calibration References

This page is calibrated against the following core standards and reference materials:



Page Construction & Maintenance References

How we construct, maintain, and utilize each page as a self-admin control panel.

  • Distributed Instrumentation — the architectural principle behind why this page (and every page) carries its own live instrumentation, rather than relying on a separate central dashboard.
  • Page Structure Calibration Checklist — the Step 0 structural pass every page should pass before content calibration begins; this page's own structure should be checkable against it.
  • Template:New Page Seed — the seed template this page's basic structure was built from.
  • Calibration Log: When to Create One — the decision procedure this page's own Talk-only vs. dedicated-log status was decided against.
  • Framework Features Reference — maintains consistency and traceability across the framework's structural features while avoiding unnecessary maintenance overhead; consult before introducing a new structural pattern this page might otherwise duplicate.



Calibration Procedure

In development. See Calibration Procedure for current status. No formal step-by-step procedure exists yet beyond the practices demonstrated across individual pages developed during the initial creation of this project.



Tracking & Log Pages



Page Reference

Title Breadcrumb Tracking
URL https://www.thesovereigngames.com/wiki/Breadcrumb_Tracking
Description Project-wide index of open Development Breadcrumbs via drift_report_status. Narrative breadcrumbs stay on each page's calibration report or log.
Category Meta & Framework