Conversation
This commit addresses the documentation refresh audit (Outputs A-F): 1. Outputs audit records to `docs/records/audits/2026-03_documentation_refresh/` 2. Fixes obsolete directory paths (`core/`, `src/`) in `docs/architecture/OVERVIEW.md` 3. Resolves duplicate roadmap files by replacing `docs/ROADMAP.md` with a stub pointing to `docs/status/ROADMAP.md` 4. Updates all cross-references in `docs/HANDOFF.md`, `docs/BUILDABLE_NEXT_STEPS.md`, and `docs/explanation/T81_FOUNDATION_PROJECT_PROFILE.md` to point to the new roadmap location 5. Fixes the `BOOK_DIRS` paths in `scripts/governance/check_docs_structure.py` Co-authored-by: t81dev <207451414+t81dev@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
Greptile SummaryThis PR performs a repository-wide documentation hygiene pass: it corrects stale directory path mappings in Key changes:
Confidence Score: 5/5Safe to merge — all changes are documentation and a non-breaking script path fix; no production code is touched. Every substantive fix (stale paths, duplicate roadmap, broken governance script, cross-doc links) is correct and well-evidenced by the accompanying audit records. The two remaining notes are both P2 style items: Root Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
subgraph Before
A1[AGENTS.md] -->|links to| R1[docs/ROADMAP.md\n100-line duplicate]
H1[docs/HANDOFF.md] -->|links to| R1
B1[docs/BUILDABLE_NEXT_STEPS.md] -->|links to| R1
P1[T81_FOUNDATION_PROJECT_PROFILE.md] -->|links to| R1
R1 -.- RS1[docs/status/ROADMAP.md\nauthoritative]
OV1[docs/architecture/OVERVIEW.md] -->|stale paths| C1["core/isa/, core/vm/\nsrc/canonfs/"]
SC1[check_docs_structure.py] -->|wrong path| BK1["book/book-en"]
end
subgraph After
A2[AGENTS.md] -->|still links to| R2[docs/ROADMAP.md\nredirect stub]
H2[docs/HANDOFF.md] -->|links to| RS2[docs/status/ROADMAP.md]
B2[docs/BUILDABLE_NEXT_STEPS.md] -->|links to| RS2
P2[T81_FOUNDATION_PROJECT_PROFILE.md] -->|links to| RS2
R2 -->|redirects to| RS2
OV2[docs/architecture/OVERVIEW.md] -->|correct paths| C2["isa/, vm/, fs/\ninclude/t81/types/"]
SC2[check_docs_structure.py] -->|correct path| BK2["docs/book/book-en"]
end
style R2 fill:#ffe066,stroke:#cc9900
style A2 fill:#ffe066,stroke:#cc9900
|
| @@ -0,0 +1,102 @@ | |||
| # T81 Architecture Overview | |||
There was a problem hiding this comment.
Verbatim copy risks future drift from the live document
OUTPUT_F_UPDATED_DOCUMENTS/docs/architecture/OVERVIEW.md is a byte-for-byte snapshot of docs/architecture/OVERVIEW.md as committed in this PR. If docs/architecture/OVERVIEW.md is subsequently revised, the archived copy in this audit record will silently diverge and could mislead anyone using the audit folder as a historical reference.
Consider adding a brief header note to this file making it clear this is a point-in-time snapshot:
| # T81 Architecture Overview | |
| <!-- Audit snapshot captured at HEAD 0cb24d18 (2026-03-30). This file is a | |
| read-only record; for the live version see docs/architecture/OVERVIEW.md. --> | |
| # T81 Architecture Overview |
This commit fixes two compilation errors detected by Windows CI:
1. `ternaryos/dev/gicv3.cpp`: Fixed an error on MSVC where `__asm__ volatile("isb");` was left unguarded. Added `#if defined(__aarch64__) && !defined(__APPLE__) && ...` around the instruction.
2. `ternaryos/tests/hal_boot_test.cpp`: Fixed an error on Clang-cl (`missing field 'thread_label' initializer`) by explicitly initializing the newly added `thread_label` field in `KernelCallResult`.
Co-authored-by: t81dev <207451414+t81dev@users.noreply.github.com>
The CI script `scripts/governance/check_determinism_claims.py` failed because the translated READMEs (and English README) were missing the explicitly required link to `docs/governance/DETERMINISM_SURFACE_REGISTRY.md` to bound all determinism claims. Added the required bounded language footer to: - `README.md` - `README.es.md` - `README.pt-BR.md` - `README.ru.md` - `README.zh-CN.md` Co-authored-by: t81dev <207451414+t81dev@users.noreply.github.com>
Performed a comprehensive repository-wide documentation audit. Discovered structural drift in architecture documentation and roadmap duplication. Fixed the
docs/architecture/OVERVIEW.mdlayer mappings, replaceddocs/ROADMAP.mdwith a pointer to the authoritativedocs/status/ROADMAP.md, updated all linking references, fixed a broken governance check script, and generated audit reports for historical tracking.PR created automatically by Jules for task 10751069735718316809 started by @t81dev