From 821d54cdd81eb651d32fc53f8548b8b0b6a8139c Mon Sep 17 00:00:00 2001 From: Alfa Team Date: Sat, 27 Jun 2026 15:39:27 -0400 Subject: [PATCH 1/2] Finalize path governance standards --- README.md | 10 +- dev/README.md | 3 + .../PROJECT_INSTRUCTIONS.md | 2 +- .../canonical_repository_structure.md | 42 +- .../repository_directory_standard.md | 42 +- ..._OWNER_008-update-path-governance-final.md | 33 + ...path-governance-final_branch-validation.md | 8 + ...overnance-final_manual-validation-notes.md | 8 + ...-governance-final_requirement-checklist.md | 12 + ...e-path-governance-final_validation-lane.md | 9 + dev/reports/codex_changed_files.txt | 3636 +--- dev/reports/codex_review.diff | 15837 +--------------- 12 files changed, 381 insertions(+), 19261 deletions(-) create mode 100644 dev/reports/PR_26179_OWNER_008-update-path-governance-final.md create mode 100644 dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md create mode 100644 dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md create mode 100644 dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md create mode 100644 dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md diff --git a/README.md b/README.md index a1ce33d09..e29c74907 100644 --- a/README.md +++ b/README.md @@ -90,8 +90,10 @@ This repo is designed as a learning system, not just a code dump. ## 🏗️ Architecture Overview -- Engine Layer → [src/engine/](src/engine/) -- Advanced Systems → [src/advanced/](src/advanced/) +- Web layer target → `src/web/` +- API runtime target → `src/api-runtime/` +- Runtime layer target → `src/runtime/` +- Existing `src/engine/`, `src/advanced/`, `src/shared/`, `src/tools/`, `src/api/`, and `src/dev-runtime/` folders are legacy transition buckets until dedicated migration PRs move them. - Tools, samples, and games consume public contracts only --- @@ -122,8 +124,8 @@ PLAN_PR → BUILD_PR → APPLY_PR ## ⚠️ Runtime Boundary Rules -- Engine code lives in [src/engine/](src/engine/) -- Advanced systems live in [src/advanced/](src/advanced/) +- New deployable source belongs under `src/web/`, `src/api-runtime/`, or `src/runtime/`. +- Existing legacy `src/*` buckets remain transition-only until scoped migration PRs move them. - Tools, samples, and games must use public contracts only - Engine boundaries should not be bypassed diff --git a/dev/README.md b/dev/README.md index c5220fc99..38c4687dc 100644 --- a/dev/README.md +++ b/dev/README.md @@ -16,6 +16,9 @@ This folder is the destination shell for non-deployable development workspace ma - `dev/docs_build/` owns active development governance and PR workflow material. - `dev/reports/` owns generated reports. - `dev/workspace/artifacts/` owns generated non-report artifacts and local temporary workspace output. +- `dev/tests/` owns non-deployable tests. +- `dev/scripts/` owns development-only scripts and runners. +- `dev/config/` owns development-only runner and tooling configuration. - `dev/archive/` owns historical development reference material. - `dev/project-instructions/` is deprecated reference only; active Project Instructions live under `dev/docs_build/dev/ProjectInstructions/`. diff --git a/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md b/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md index e26df0978..f14002820 100644 --- a/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md +++ b/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md @@ -66,7 +66,7 @@ When active guidance overlaps, use these canonical owner documents: - Workflow and Product Owner testable completion: `dev/docs_build/dev/ProjectInstructions/addendums/pr_workflow.md` - START / WORK / END lifecycle, branch gates, mandatory hard stops, and EOD main lock: `dev/docs_build/dev/ProjectInstructions/addendums/project_instructions_single_source_eod_lock.md` -- Repository directory ownership and restructure boundaries: `dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md` +- Repository directory ownership, final root standard, final `src/` layer standard, final `dev/` workspace standard, and restructure boundaries: `dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md` - Page-level Playwright organization and completion coverage: `dev/docs_build/dev/ProjectInstructions/addendums/test_structure_standardization.md` - API/environment model and `Browser -> API -> Database` rule: `dev/docs_build/dev/ProjectInstructions/addendums/environment_governance_model.md` - Environment variable, URL, R2 prefix, and feature flag configuration: `dev/docs_build/dev/ProjectInstructions/addendums/environment_configuration_standards.md` diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md b/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md index e26939469..ced3fe354 100644 --- a/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md +++ b/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md @@ -6,6 +6,29 @@ Establish the canonical repository structure for future development and reduce t ## Canonical Structure +Root product sections: +- docs/ +- games/ +- toolbox/ +- account/ +- admin/ +- legal/ +- assets/ + +Deployable application source: +- src/web/{feature-name}/ +- src/api-runtime/{feature-name}/ +- src/runtime/{feature-name}/ + +Development workspace: +- dev/docs_build/ +- dev/reports/ +- dev/tests/ +- dev/scripts/ +- dev/config/ +- dev/archive/ +- dev/workspace/artifacts/ + Tools: - toolbox/{tool-name}/index.html @@ -20,14 +43,15 @@ Themes: Shared JavaScript: - assets/js/shared/ -Engine: -- src/engine/{feature-name}/ - -API: -- api/{feature-name}/ +Legacy transition buckets: +- src/advanced/ +- src/api/ +- src/dev-runtime/ +- src/engine/ +- src/shared/ +- src/tools/ -Serverside: -- serverside/{feature-name}/ +These legacy transition buckets may remain until explicit migration PRs move them into `src/web/`, `src/api-runtime/`, or `src/runtime/`. ## Rules @@ -37,3 +61,7 @@ Serverside: - No new scattered JS folders. - No new scattered CSS folders. - New development follows the canonical structure. +- New deployable `src/` work follows `src/web/`, `src/api-runtime/`, or `src/runtime/`. +- New non-deployable work belongs under `dev/`. +- Required reports belong under flat `dev/reports/`. +- Required ZIPs and generated temporary artifacts belong under `dev/workspace/artifacts/tmp/`. diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md b/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md index 82efbf588..c1ce4d859 100644 --- a/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md +++ b/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md @@ -5,25 +5,57 @@ Owner: OWNER ## Purpose -Define the target repository directory ownership model before the development workspace restructure chain begins. +Define the target repository directory ownership model for the post-restructure repository. This document is governance only. It does not move runtime, UI, API, tests, or production files by itself. ## Directory Ownership -- Repository root contains production/public product sections and standard repository configuration. +- Repository root contains production/public product sections and standard repository configuration only. - `src/` contains deployable application code. - `dev/` contains non-deployable build, test, bootstrap, governance, report, and local workspace items. - `docs/` remains at root because it is production Docs & Help. - `games/` remains at root because it is public game discovery. - `toolbox/` remains at root because it is the Creator toolbox/workspace. +- Other public product roots such as `account/`, `admin/`, `legal/`, and `assets/` remain root-level product sections when present. + +## Final Src Layer Standard + +The final `src/` ownership model is: + +- `src/web/` for browser-facing deployable application modules used by public pages, account/admin surfaces, and Creator tools. +- `src/api-runtime/` for deployable API/runtime service modules that back the shared Browser -> API -> Postgres/R2 contract. +- `src/runtime/` for deployable game, tool, engine, and shared runtime capabilities. + +Transition rule: + +- Existing top-level `src/advanced/`, `src/api/`, `src/dev-runtime/`, `src/engine/`, `src/shared/`, and `src/tools/` directories are legacy transition buckets until explicit migration PRs move them. +- Do not add new top-level `src/` layer names outside `src/web/`, `src/api-runtime/`, or `src/runtime/` without OWNER approval. +- Do not use team names in runtime source filenames. ## Development Workspace Paths -- `dev/docs_build/` owns active development governance, Project Instructions, PR workflow material, validation reports, and generated documentation-workspace artifacts. +- `dev/docs_build/` owns active development governance, Project Instructions, and PR workflow material. +- `dev/reports/` owns generated reports using flat filenames. +- `dev/tests/` owns non-deployable test suites. +- `dev/scripts/` owns development-only scripts and runners. +- `dev/config/` owns development-only runner and tooling configuration. +- `dev/workspace/artifacts/` owns generated non-report artifacts and ignored local temporary workspace output. - `dev/archive/` owns historical development reference material that is not active governance. - `dev/project-instructions/` is deprecated reference only when retained; it must point to `dev/docs_build/dev/ProjectInstructions/`. -- Root `docs_build/`, root `archive/`, and root `project-instructions/` are not active workspace locations after the governance workspace move. +- Root `docs_build/`, root `tests/`, root `archive/`, root `tmp/`, and root `project-instructions/` are not active workspace locations after the restructure. +- Root `tmp/` may remain ignored as legacy local scratch only; required Codex ZIPs and generated temporary artifacts belong under `dev/workspace/artifacts/tmp/`. + +## Legacy Reference Exceptions + +Path references to old root `docs_build/`, `tests/`, `archive/`, or `tmp/` locations are allowed only when they are: + +- historical/reference content under `dev/archive/` or `dev/docs_build/dev/PR/reference/` +- explicit legacy exception notes in active governance +- ignore rules that keep obsolete local scratch from entering commits +- migration reports documenting the old path and its replacement + +Active commands, templates, and Project Instructions must use the final `dev/`, `dev/reports/`, and `dev/workspace/artifacts/` paths. ## Creator Data Boundary @@ -42,3 +74,5 @@ This document is governance only. It does not move runtime, UI, API, tests, or p ## PR Chain Boundary The development workspace restructure must proceed through sequential scoped PRs. A PR may only move or update the paths named in its purpose. + +Final path-governance PRs may document target paths and legacy exceptions, but they must not move deployable application code unless explicitly scoped. diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md new file mode 100644 index 000000000..747697f52 --- /dev/null +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md @@ -0,0 +1,33 @@ +# PR_26179_OWNER_008-update-path-governance-final + +Generated: 2026-06-27T19:38:31.874Z +Branch: PR_26179_OWNER_008-update-path-governance-final +Base stack head before PR_008: f3c2e7a02 +ZIP: dev/workspace/artifacts/tmp/PR_26179_OWNER_008-update-path-governance-final_delta.zip + +## Purpose + +Finalize path governance after the dev workspace restructure chain and document the final root, src, and dev workspace standards. + +## Changes + +- Updated repository directory governance with final root ownership and legacy path exceptions. +- Added the final `src/web/`, `src/api-runtime/`, and `src/runtime/` layer standard. +- Updated canonical repository structure governance to point new work at final paths. +- Updated README architecture wording to describe target src layers without moving current source directories. + +## Validation Summary + +| Status | Item | Notes | +| --- | --- | --- | +| PASS | Current branch is PR_26179_OWNER_008-update-path-governance-final | confirmed | +| PASS | Documentation/governance-only scope | no protected runtime/product/API/database/test/script/config diffs | +| PASS | Final root directory standard documented | repository_directory_standard.md names product root, src, dev, docs, games, toolbox, and public product roots | +| PASS | Final src layer standard documented | src/web, src/api-runtime, and src/runtime documented with legacy transition buckets | +| PASS | Final dev workspace standard documented | dev/docs_build, dev/reports, dev/tests, dev/scripts, dev/config, dev/archive, and dev/workspace/artifacts documented | +| PASS | Old report root references absent from active target search | (no matches) | +| PASS | Old /tmp ZIP reference absent from active target search | (no matches) | +| PASS | Final src path grep | 15 matching lines | +| PASS | npm run validate:canonical-structure | passed | +| PASS | git diff --check | passed | +| PASS | Playwright impacted | not impacted; no runtime/test/browser behavior changed | diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md new file mode 100644 index 000000000..572d86235 --- /dev/null +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md @@ -0,0 +1,8 @@ +# PR_26179_OWNER_008-update-path-governance-final Branch Validation + +| Status | Item | Notes | +| --- | --- | --- | +| PASS | Current branch is PR_26179_OWNER_008-update-path-governance-final | confirmed | +| PASS | Documentation/governance-only scope | no protected runtime/product/API/database/test/script/config diffs | + +Result: PASS diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md new file mode 100644 index 000000000..5e2ef2c4f --- /dev/null +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md @@ -0,0 +1,8 @@ +# PR_26179_OWNER_008-update-path-governance-final Manual Validation Notes + +- Confirmed branch: PR_26179_OWNER_008-update-path-governance-final +- Confirmed no product/runtime/API/database/test/script/config files changed in this PR. +- Confirmed final target src layers are documented only; no source folders were moved. +- Confirmed old report root search returned no active matches. +- Playwright was not run beyond impact assessment because this PR is documentation/governance-only. +- Repo-structured ZIP path: `dev/workspace/artifacts/tmp/PR_26179_OWNER_008-update-path-governance-final_delta.zip` diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md new file mode 100644 index 000000000..d817114c3 --- /dev/null +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md @@ -0,0 +1,12 @@ +# PR_26179_OWNER_008-update-path-governance-final Requirement Checklist + +| Status | Item | Notes | +| --- | --- | --- | +| PASS | Finalize all Project Instructions and governance references to the new paths | Active governance references final dev/report/artifact paths and documents legacy exceptions. | +| PASS | Document final root directory standard | repository_directory_standard.md and README updated. | +| PASS | Document final src/ layer standard | src/web, src/api-runtime, src/runtime documented. Existing top-level src buckets are legacy transition only. | +| PASS | Document final dev/ workspace standard | dev ownership for docs_build, reports, tests, scripts, config, archive, workspace/artifacts documented. | +| PASS | Confirm no old docs_build/, tests/, archive/, or tmp/ path references remain unless documented as legacy exceptions | Old root paths are documented as legacy exceptions; active output/report refs use new paths. | +| PASS | No runtime/product/API/database changes | Protected diff check returned no files. | + +Result: PASS diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md new file mode 100644 index 000000000..a0d7ee8e6 --- /dev/null +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md @@ -0,0 +1,9 @@ +# PR_26179_OWNER_008-update-path-governance-final Validation Lane + +| Status | Item | Notes | +| --- | --- | --- | +| PASS | npm run validate:canonical-structure | passed | +| PASS | git diff --check | passed | +| PASS | Playwright impacted | not impacted; no runtime/test/browser behavior changed | + +Scoped validation result: PASS diff --git a/dev/reports/codex_changed_files.txt b/dev/reports/codex_changed_files.txt index 94165c97f..58246d5da 100644 --- a/dev/reports/codex_changed_files.txt +++ b/dev/reports/codex_changed_files.txt @@ -1,3636 +1,14 @@ # git status --short -M .gitignore M README.md M dev/README.md -M dev/config/playwright.config.cjs -M dev/docs_build/dev/PR/README.md -M dev/docs_build/dev/PR/reference/OWNER_007_BUILD_PR.md -M dev/docs_build/dev/PR/reference/OWNER_007_PLAN_PR.md -M dev/docs_build/dev/PR/reference/pr_koti_layout_contract.md -M dev/docs_build/dev/PR/reference/pr_tool_fix_fullscreen_exit_state.md -M dev/docs_build/dev/PR/reference/pr_tool_fix_parallax_header_metadata.md -M dev/docs_build/dev/PR/reference/pr_tool_layout_workflow_baseline.md -M dev/docs_build/dev/PR/reference/pr_tool_remove_future_import_hints.md -M dev/docs_build/dev/PR/reference/pr_tool_remove_static_header_intro.md -M dev/docs_build/dev/PR/reference/pr_tool_uat_closeout.md -M dev/docs_build/dev/PR/reference/pr_tool_uat_fix_fullscreen_header_wiring.md -M dev/docs_build/dev/PR/reference/pr_tool_uat_fix_header_asset_browser.md -M dev/docs_build/dev/PR/templates/BUILD_PR.md M dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md -M dev/docs_build/dev/ProjectInstructions/addendums/codex_artifact_and_reporting_standard.md -M dev/docs_build/dev/ProjectInstructions/addendums/documentation_ownership.md -M dev/docs_build/dev/ProjectInstructions/addendums/koti_layout_contract.md -M dev/docs_build/dev/ProjectInstructions/addendums/multi_team.md -M dev/docs_build/dev/ProjectInstructions/addendums/pr_workflow.md -M dev/docs_build/dev/ProjectInstructions/addendums/team_start_and_release.md -M dev/docs_build/dev/ProjectInstructions/addendums/workspace_v2_playwright_gate.md -M dev/docs_build/dev/ProjectInstructions/standards/IDENTITY_PERMISSIONS_CONTRACT.md -M dev/docs_build/dev/ProjectInstructions/standards/PROJECT_CONTRACT.md -M dev/docs_build/dev/ProjectInstructions/standards/README.md -M dev/docs_build/dev/ProjectInstructions/standards/TOOL_STATE_CONTRACT.md -R dev/docs_build/dev/reports/BIG_PICTURE_ROADMAP_ARCHIVE_MAP.md -> dev/reports/BIG_PICTURE_ROADMAP_ARCHIVE_MAP.md -R dev/docs_build/dev/reports/BRAVO_EOD_2026-06-23.md -> dev/reports/BRAVO_EOD_2026-06-23.md -R dev/docs_build/dev/reports/BUILD_PR_ASTEROIDS_LAUNCH_TARGETS_VALIDATION.md -> dev/reports/BUILD_PR_ASTEROIDS_LAUNCH_TARGETS_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_ASTEROIDS_TARGETS_AND_AUDIO_PATH_VALIDATION.md -> dev/reports/BUILD_PR_ASTEROIDS_TARGETS_AND_AUDIO_PATH_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_GAMES_HEADER_INTRO_STRUCTURE_APPLY_VALIDATION.md -> dev/reports/BUILD_PR_GAMES_HEADER_INTRO_STRUCTURE_APPLY_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_10_6K_validation_report.md -> dev/reports/BUILD_PR_LEVEL_10_6K_validation_report.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DELETION_MAP.md -> dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DELETION_MAP.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DUPLICATE_MATRIX.md -> dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DUPLICATE_MATRIX.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_FEATURE_ALIGNMENT_MAP.md -> dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_FEATURE_ALIGNMENT_MAP.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_REFERENCE_UPDATE_LOG.md -> dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_REFERENCE_UPDATE_LOG.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_EMPTY_FOLDER_REMOVAL.md -> dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_EMPTY_FOLDER_REMOVAL.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_FOLDER_OWNERSHIP_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_FOLDER_OWNERSHIP_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_IMPORT_EXPORT_CLEANUP.md -> dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_IMPORT_EXPORT_CLEANUP.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_KEEP_FILE_AUDIT.md -> dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_KEEP_FILE_AUDIT.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CAPABILITY_GROUPS.md -> dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CAPABILITY_GROUPS.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CONSOLIDATION_MAP.md -> dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CONSOLIDATION_MAP.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_FRAGMENTATION_AUDIT.md -> dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_FRAGMENTATION_AUDIT.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_DUPLICATE_DOC_SURFACES.md -> dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_DUPLICATE_DOC_SURFACES.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_EMPTY_DOC_DIRECTORIES.md -> dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_EMPTY_DOC_DIRECTORIES.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_ONBOARDING_FLOW_CHECK.md -> dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_ONBOARDING_FLOW_CHECK.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_REFERENCE_UPDATE_LOG.md -> dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_REFERENCE_UPDATE_LOG.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_bundle_report.md -> dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_bundle_report.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_uat_report.md -> dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_uat_report.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_TOOL_INVENTORY.md -> dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_TOOL_INVENTORY.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_MATRIX.md -> dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_MATRIX.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_RESULTS.md -> dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_RESULTS.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_HEADER_REAL_ESTATE_AUDIT.md -> dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_HEADER_REAL_ESTATE_AUDIT.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_TOOL_ALIGNMENT_MATRIX.md -> dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_TOOL_ALIGNMENT_MATRIX.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_CONTROL_PLACEMENT_MATRIX.md -> dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_CONTROL_PLACEMENT_MATRIX.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_DOCKING_RESIZING_MATRIX.md -> dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_DOCKING_RESIZING_MATRIX.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_LAYOUT_SPACING_AUDIT.md -> dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_LAYOUT_SPACING_AUDIT.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_ERROR_TRACKING.md -> dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_ERROR_TRACKING.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_LOGGING_STANDARD.md -> dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_LOGGING_STANDARD.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_PERFORMANCE_MONITORING.md -> dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_PERFORMANCE_MONITORING.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_ERROR_TRACKING.md -> dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_ERROR_TRACKING.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_LOGGING_STANDARD.md -> dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_LOGGING_STANDARD.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_OBSERVABILITY_MATRIX.md -> dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_OBSERVABILITY_MATRIX.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_PERFORMANCE_MONITORING.md -> dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_PERFORMANCE_MONITORING.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_IMPLEMENTED_GAPS.md -> dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_IMPLEMENTED_GAPS.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_DEDUPE_DECISIONS.md -> dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_DEDUPE_DECISIONS.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_INVENTORY.md -> dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_INVENTORY.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_MOVE_MAP.md -> dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_MOVE_MAP.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_REFERENCE_UPDATE_LOG.md -> dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_REFERENCE_UPDATE_LOG.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_BUG_FIXES.md -> dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_BUG_FIXES.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_POLISH_SUMMARY.md -> dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_POLISH_SUMMARY.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_10_FULLSCREEN_RULE_CLOSEOUT_AND_ROADMAP_STATUS.md -> dev/reports/BUILD_PR_LEVEL_23_10_FULLSCREEN_RULE_CLOSEOUT_AND_ROADMAP_STATUS.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_FAILURES.md -> dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_FAILURES.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_INTEGRATION_GAPS.md -> dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_INTEGRATION_GAPS.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_VALIDATION_REPORT.md -> dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_VALIDATION_REPORT.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_FIXES_APPLIED.md -> dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_FIXES_APPLIED.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FAILURES.md -> dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FAILURES.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FIXES_APPLIED.md -> dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FIXES_APPLIED.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_SAMPLE_INVENTORY.md -> dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_SAMPLE_INVENTORY.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_FIXES_APPLIED.md -> dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_FIXES_APPLIED.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_ROUTING_AUDIT.md -> dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_ROUTING_AUDIT.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_FULL_SCREEN_USAGE_AUDIT.md -> dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_FULL_SCREEN_USAGE_AUDIT.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_SAMPLE_0713_FULLSCREEN_FIX.md -> dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_SAMPLE_0713_FULLSCREEN_FIX.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_UNAUTHORIZED_REMOVALS.md -> dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_UNAUTHORIZED_REMOVALS.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_VALIDATION.md -> dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_LEVEL_24_5_PHASE_24_CLOSEOUT_EXECUTION_GUARD_REPORT.txt -> dev/reports/BUILD_PR_LEVEL_24_5_PHASE_24_CLOSEOUT_EXECUTION_GUARD_REPORT.txt -R dev/docs_build/dev/reports/BUILD_PR_SHARED_HEADER_TEMPLATE_AND_GAME_IMPORT_VALIDATION.md -> dev/reports/BUILD_PR_SHARED_HEADER_TEMPLATE_AND_GAME_IMPORT_VALIDATION.md -R dev/docs_build/dev/reports/BUILD_PR_STYLE_16_17_PERF_FINAL_QA_AND_ROADMAP_CLOSEOUT_MAPPING.md -> dev/reports/BUILD_PR_STYLE_16_17_PERF_FINAL_QA_AND_ROADMAP_CLOSEOUT_MAPPING.md -R dev/docs_build/dev/reports/BUILD_PR_STYLE_FINAL_SYSTEM_COMPLETION_AND_UAT_READY_MAPPING.md -> dev/reports/BUILD_PR_STYLE_FINAL_SYSTEM_COMPLETION_AND_UAT_READY_MAPPING.md -R dev/docs_build/dev/reports/CLEANUP_EMPTY_DIRECTORIES.md -> dev/reports/CLEANUP_EMPTY_DIRECTORIES.md -R dev/docs_build/dev/reports/CLEANUP_KEEP_FILES.md -> dev/reports/CLEANUP_KEEP_FILES.md -R dev/docs_build/dev/reports/DOCS_RESIDUE_CLEANUP.md -> dev/reports/DOCS_RESIDUE_CLEANUP.md -R dev/docs_build/dev/reports/FINAL_VALIDATION.md -> dev/reports/FINAL_VALIDATION.md -R dev/docs_build/dev/reports/PR_10_10_tilemap_studio_uat_report.md -> dev/reports/PR_10_10_tilemap_studio_uat_report.md -R dev/docs_build/dev/reports/PR_10_11_vector_asset_studio_uat_report.md -> dev/reports/PR_10_11_vector_asset_studio_uat_report.md -R dev/docs_build/dev/reports/PR_10_12_vector_map_editor_uat_report.md -> dev/reports/PR_10_12_vector_map_editor_uat_report.md -R dev/docs_build/dev/reports/PR_10_13_workspace_integration_polish_report.md -> dev/reports/PR_10_13_workspace_integration_polish_report.md -R dev/docs_build/dev/reports/PR_10_14_FULLSCREEN_HEADER_SUMMARY_LINE_FIX_report.md -> dev/reports/PR_10_14_FULLSCREEN_HEADER_SUMMARY_LINE_FIX_report.md -R dev/docs_build/dev/reports/PR_10_15_FULLSCREEN_HEADER_STATE_TEXT_FIX_report.md -> dev/reports/PR_10_15_FULLSCREEN_HEADER_STATE_TEXT_FIX_report.md -R dev/docs_build/dev/reports/PR_10_16_FULLSCREEN_EXIT_STATE_RESTORE_FIX_report.md -> dev/reports/PR_10_16_FULLSCREEN_EXIT_STATE_RESTORE_FIX_report.md -R dev/docs_build/dev/reports/PR_10_17_ASSET_BROWSER_IMPORT_HUB_SAMPLE_0204_LOAD_FIX_report.md -> dev/reports/PR_10_17_ASSET_BROWSER_IMPORT_HUB_SAMPLE_0204_LOAD_FIX_report.md -R dev/docs_build/dev/reports/PR_10_19_SAMPLES_0204_1413_1505_JSON_SSOT_FIX_report.md -> dev/reports/PR_10_19_SAMPLES_0204_1413_1505_JSON_SSOT_FIX_report.md -R dev/docs_build/dev/reports/PR_10_20_TOOL_OWNED_JSON_ASSET_CATALOG_FIX_report.md -> dev/reports/PR_10_20_TOOL_OWNED_JSON_ASSET_CATALOG_FIX_report.md -R dev/docs_build/dev/reports/PR_10_21_CURRICULUM_VALIDATION_ARTIFACT_LOCATION_AND_PHASE_ORDER_FIX_report.md -> dev/reports/PR_10_21_CURRICULUM_VALIDATION_ARTIFACT_LOCATION_AND_PHASE_ORDER_FIX_report.md -R dev/docs_build/dev/reports/PR_10_22_VALIDATION_ARTIFACT_RELOCATION_report.md -> dev/reports/PR_10_22_VALIDATION_ARTIFACT_RELOCATION_report.md -R dev/docs_build/dev/reports/PR_10_23_SAMPLE_IMPORT_DESTINATION_PRESET_FIX_report.md -> dev/reports/PR_10_23_SAMPLE_IMPORT_DESTINATION_PRESET_FIX_report.md -R dev/docs_build/dev/reports/PR_10_24_SAMPLE_JSON_DESTINATION_NORMALIZATION_report.md -> dev/reports/PR_10_24_SAMPLE_JSON_DESTINATION_NORMALIZATION_report.md -R dev/docs_build/dev/reports/PR_10_25_SAMPLE_METADATA_SSOT_DUPLICATE_EVIDENCE_FIX_report.md -> dev/reports/PR_10_25_SAMPLE_METADATA_SSOT_DUPLICATE_EVIDENCE_FIX_report.md -R dev/docs_build/dev/reports/PR_10_26_REPO_DUPLICATE_FILE_CONTENT_AUDIT_report.md -> dev/reports/PR_10_26_REPO_DUPLICATE_FILE_CONTENT_AUDIT_report.md -R dev/docs_build/dev/reports/PR_10_27_DUPLICATE_CLASSIFICATION_AND_SAFE_CLEANUP_report.md -> dev/reports/PR_10_27_DUPLICATE_CLASSIFICATION_AND_SAFE_CLEANUP_report.md -R dev/docs_build/dev/reports/PR_10_6R_expected_outputs.md -> dev/reports/PR_10_6R_expected_outputs.md -R dev/docs_build/dev/reports/PR_10_6R_tool_ui_control_gaps.md -> dev/reports/PR_10_6R_tool_ui_control_gaps.md -R dev/docs_build/dev/reports/PR_10_6R_tool_ui_control_inventory.md -> dev/reports/PR_10_6R_tool_ui_control_inventory.md -R dev/docs_build/dev/reports/PR_10_6S_expected_outputs.md -> dev/reports/PR_10_6S_expected_outputs.md -R dev/docs_build/dev/reports/PR_10_6S_gap_closure_report.md -> dev/reports/PR_10_6S_gap_closure_report.md -R dev/docs_build/dev/reports/PR_10_6S_tool_ui_readiness_result.md -> dev/reports/PR_10_6S_tool_ui_readiness_result.md -R dev/docs_build/dev/reports/PR_10_6T_expected_outputs.md -> dev/reports/PR_10_6T_expected_outputs.md -R dev/docs_build/dev/reports/PR_10_6T_vector_tool_ui_state_finalization_report.md -> dev/reports/PR_10_6T_vector_tool_ui_state_finalization_report.md -R dev/docs_build/dev/reports/PR_10_6U_tool_uat_gap_closure_report.md -> dev/reports/PR_10_6U_tool_uat_gap_closure_report.md -R dev/docs_build/dev/reports/PR_10_6V_final_dod_validation.md -> dev/reports/PR_10_6V_final_dod_validation.md -R dev/docs_build/dev/reports/PR_10_6V_remaining_uat_gate.md -> dev/reports/PR_10_6V_remaining_uat_gate.md -R dev/docs_build/dev/reports/PR_10_6V_required_outputs.md -> dev/reports/PR_10_6V_required_outputs.md -R dev/docs_build/dev/reports/PR_10_8_asset_browser_uat_report.md -> dev/reports/PR_10_8_asset_browser_uat_report.md -R dev/docs_build/dev/reports/PR_10_9_sprite_editor_uat_report.md -> dev/reports/PR_10_9_sprite_editor_uat_report.md -R dev/docs_build/dev/reports/PR_11_10_ALL_SAMPLES_STANDALONE_TOOL_JSON_SSOT_ENFORCEMENT_report.md -> dev/reports/PR_11_10_ALL_SAMPLES_STANDALONE_TOOL_JSON_SSOT_ENFORCEMENT_report.md -R dev/docs_build/dev/reports/PR_11_11_WORKSPACE_ALL_TOOLS_INTEGRATION_SAMPLE_report.md -> dev/reports/PR_11_11_WORKSPACE_ALL_TOOLS_INTEGRATION_SAMPLE_report.md -R dev/docs_build/dev/reports/PR_11_12_REBUILD_SAMPLE_1902_WORKSPACE_ALL_TOOLS_report.md -> dev/reports/PR_11_12_REBUILD_SAMPLE_1902_WORKSPACE_ALL_TOOLS_report.md -R dev/docs_build/dev/reports/PR_11_13_WORKSPACE_1902_SCHEMA_CONFORMANCE_FIX_report.md -> dev/reports/PR_11_13_WORKSPACE_1902_SCHEMA_CONFORMANCE_FIX_report.md -R dev/docs_build/dev/reports/PR_11_14_WORKSPACE_SCHEMA_PALETTE_TOOL_AND_1902_REBUILD_report.md -> dev/reports/PR_11_14_WORKSPACE_SCHEMA_PALETTE_TOOL_AND_1902_REBUILD_report.md -R dev/docs_build/dev/reports/PR_11_17_SCHEMA_SET_NORMALIZATION_AND_WORKSPACE_REF_ENFORCEMENT_report.md -> dev/reports/PR_11_17_SCHEMA_SET_NORMALIZATION_AND_WORKSPACE_REF_ENFORCEMENT_report.md -R dev/docs_build/dev/reports/PR_11_188B_palette_manager_v2_header_alignment_report.md -> dev/reports/PR_11_188B_palette_manager_v2_header_alignment_report.md -R dev/docs_build/dev/reports/PR_11_189B_validation_report.md -> dev/reports/PR_11_189B_validation_report.md -R dev/docs_build/dev/reports/PR_11_189_validation_report.md -> dev/reports/PR_11_189_validation_report.md -R dev/docs_build/dev/reports/PR_11_18_FULL_STRICT_SCHEMA_MODE_report.md -> dev/reports/PR_11_18_FULL_STRICT_SCHEMA_MODE_report.md -R dev/docs_build/dev/reports/PR_11_190_bundle_manifest.md -> dev/reports/PR_11_190_bundle_manifest.md -R dev/docs_build/dev/reports/PR_11_190_validation.md -> dev/reports/PR_11_190_validation.md -R dev/docs_build/dev/reports/PR_11_191_VECTOR_MAP_EDITOR_V2_VALIDATION.md -> dev/reports/PR_11_191_VECTOR_MAP_EDITOR_V2_VALIDATION.md -R dev/docs_build/dev/reports/PR_11_192_validation.md -> dev/reports/PR_11_192_validation.md -R dev/docs_build/dev/reports/PR_11_193C_validation.md -> dev/reports/PR_11_193C_validation.md -R dev/docs_build/dev/reports/PR_11_193_V2_HTML_FIRST_BATCH_validation.md -> dev/reports/PR_11_193_V2_HTML_FIRST_BATCH_validation.md -R dev/docs_build/dev/reports/PR_11_193_validation_plan.md -> dev/reports/PR_11_193_validation_plan.md -R dev/docs_build/dev/reports/PR_11_194_expected_evidence.md -> dev/reports/PR_11_194_expected_evidence.md -R dev/docs_build/dev/reports/PR_11_194_v2_html_first_remaining_tools_report.md -> dev/reports/PR_11_194_v2_html_first_remaining_tools_report.md -R dev/docs_build/dev/reports/PR_11_195_validation.md -> dev/reports/PR_11_195_validation.md -R dev/docs_build/dev/reports/PR_11_197B_expected_evidence.md -> dev/reports/PR_11_197B_expected_evidence.md -R dev/docs_build/dev/reports/PR_11_197B_v2_asset_browser_validation.md -> dev/reports/PR_11_197B_v2_asset_browser_validation.md -R dev/docs_build/dev/reports/PR_11_198_report.md -> dev/reports/PR_11_198_report.md -R dev/docs_build/dev/reports/PR_11_199_report.md -> dev/reports/PR_11_199_report.md -R dev/docs_build/dev/reports/PR_11_19_SCHEMA_CLEANUP_TOOL_PAYLOADS_AND_PALETTE_CANONICALIZATION_report.md -> dev/reports/PR_11_19_SCHEMA_CLEANUP_TOOL_PAYLOADS_AND_PALETTE_CANONICALIZATION_report.md -R dev/docs_build/dev/reports/PR_11_1_TOOLBAR_AND_VISUAL_POLISH_report.md -> dev/reports/PR_11_1_TOOLBAR_AND_VISUAL_POLISH_report.md -R dev/docs_build/dev/reports/PR_11_200_report.md -> dev/reports/PR_11_200_report.md -R dev/docs_build/dev/reports/PR_11_201_report.md -> dev/reports/PR_11_201_report.md -R dev/docs_build/dev/reports/PR_11_202_report.md -> dev/reports/PR_11_202_report.md -R dev/docs_build/dev/reports/PR_11_203B_report.md -> dev/reports/PR_11_203B_report.md -R dev/docs_build/dev/reports/PR_11_203_report.md -> dev/reports/PR_11_203_report.md -R dev/docs_build/dev/reports/PR_11_204_report.md -> dev/reports/PR_11_204_report.md -R dev/docs_build/dev/reports/PR_11_205_report.md -> dev/reports/PR_11_205_report.md -R dev/docs_build/dev/reports/PR_11_206_report.md -> dev/reports/PR_11_206_report.md -R dev/docs_build/dev/reports/PR_11_207_report.md -> dev/reports/PR_11_207_report.md -R dev/docs_build/dev/reports/PR_11_208_report.md -> dev/reports/PR_11_208_report.md -R dev/docs_build/dev/reports/PR_11_209_report.md -> dev/reports/PR_11_209_report.md -R dev/docs_build/dev/reports/PR_11_20_WORKSPACE_LOADER_SCHEMA_V2_TOOLS_PAYLOAD_SUPPORT_report.md -> dev/reports/PR_11_20_WORKSPACE_LOADER_SCHEMA_V2_TOOLS_PAYLOAD_SUPPORT_report.md -R dev/docs_build/dev/reports/PR_11_210_report.md -> dev/reports/PR_11_210_report.md -R dev/docs_build/dev/reports/PR_11_211_report.md -> dev/reports/PR_11_211_report.md -R dev/docs_build/dev/reports/PR_11_212_report.md -> dev/reports/PR_11_212_report.md -R dev/docs_build/dev/reports/PR_11_213_report.md -> dev/reports/PR_11_213_report.md -R dev/docs_build/dev/reports/PR_11_214_report.md -> dev/reports/PR_11_214_report.md -R dev/docs_build/dev/reports/PR_11_215_report.md -> dev/reports/PR_11_215_report.md -R dev/docs_build/dev/reports/PR_11_216_report.md -> dev/reports/PR_11_216_report.md -R dev/docs_build/dev/reports/PR_11_217_report.md -> dev/reports/PR_11_217_report.md -R dev/docs_build/dev/reports/PR_11_218_report.md -> dev/reports/PR_11_218_report.md -R dev/docs_build/dev/reports/PR_11_219_report.md -> dev/reports/PR_11_219_report.md -R dev/docs_build/dev/reports/PR_11_21_WORKSPACE_MANAGER_TOOL_PRESENT_DETECTION_FIX_report.md -> dev/reports/PR_11_21_WORKSPACE_MANAGER_TOOL_PRESENT_DETECTION_FIX_report.md -R dev/docs_build/dev/reports/PR_11_21_workspace_tool_presence_evidence.json -> dev/reports/PR_11_21_workspace_tool_presence_evidence.json -R dev/docs_build/dev/reports/PR_11_220_report.md -> dev/reports/PR_11_220_report.md -R dev/docs_build/dev/reports/PR_11_221_report.md -> dev/reports/PR_11_221_report.md -R dev/docs_build/dev/reports/PR_11_222_report.md -> dev/reports/PR_11_222_report.md -R dev/docs_build/dev/reports/PR_11_223_report.md -> dev/reports/PR_11_223_report.md -R dev/docs_build/dev/reports/PR_11_224_report.md -> dev/reports/PR_11_224_report.md -R dev/docs_build/dev/reports/PR_11_225_report.md -> dev/reports/PR_11_225_report.md -R dev/docs_build/dev/reports/PR_11_226_report.md -> dev/reports/PR_11_226_report.md -R dev/docs_build/dev/reports/PR_11_227_report.md -> dev/reports/PR_11_227_report.md -R dev/docs_build/dev/reports/PR_11_228_report.md -> dev/reports/PR_11_228_report.md -R dev/docs_build/dev/reports/PR_11_229_report.md -> dev/reports/PR_11_229_report.md -R dev/docs_build/dev/reports/PR_11_22_WORKSPACE_MANAGER_EMBEDDED_PAYLOAD_ASSET_STATUS_FIX_report.md -> dev/reports/PR_11_22_WORKSPACE_MANAGER_EMBEDDED_PAYLOAD_ASSET_STATUS_FIX_report.md -R dev/docs_build/dev/reports/PR_11_22_workspace_embedded_payload_asset_status_evidence.json -> dev/reports/PR_11_22_workspace_embedded_payload_asset_status_evidence.json -R dev/docs_build/dev/reports/PR_11_230_report.md -> dev/reports/PR_11_230_report.md -R dev/docs_build/dev/reports/PR_11_231_report.md -> dev/reports/PR_11_231_report.md -R dev/docs_build/dev/reports/PR_11_232_session_merge_preview_report.md -> dev/reports/PR_11_232_session_merge_preview_report.md -R dev/docs_build/dev/reports/PR_11_233_merge_apply_guard_audit_report.md -> dev/reports/PR_11_233_merge_apply_guard_audit_report.md -R dev/docs_build/dev/reports/PR_11_234_merge_apply_session_gate_fix_report.md -> dev/reports/PR_11_234_merge_apply_session_gate_fix_report.md -R dev/docs_build/dev/reports/PR_11_234_merge_preview_selection_fix_report.md -> dev/reports/PR_11_234_merge_preview_selection_fix_report.md -R dev/docs_build/dev/reports/PR_11_235_merge_selector_population_report.md -> dev/reports/PR_11_235_merge_selector_population_report.md -R dev/docs_build/dev/reports/PR_11_236_session_inventory_for_diff_merge_report.md -> dev/reports/PR_11_236_session_inventory_for_diff_merge_report.md -R dev/docs_build/dev/reports/PR_11_237_recent_session_selector_binding_report.md -> dev/reports/PR_11_237_recent_session_selector_binding_report.md -R dev/docs_build/dev/reports/PR_11_238_selector_placeholder_fix_report.md -> dev/reports/PR_11_238_selector_placeholder_fix_report.md -R dev/docs_build/dev/reports/PR_11_239_diff_merge_button_state_report.md -> dev/reports/PR_11_239_diff_merge_button_state_report.md -R dev/docs_build/dev/reports/PR_11_239_selection_feedback_and_enable_state_report.md -> dev/reports/PR_11_239_selection_feedback_and_enable_state_report.md -R dev/docs_build/dev/reports/PR_11_240_selection_persistence_report.md -> dev/reports/PR_11_240_selection_persistence_report.md -R dev/docs_build/dev/reports/PR_11_241_session_id_usability_report.md -> dev/reports/PR_11_241_session_id_usability_report.md -R dev/docs_build/dev/reports/PR_11_242_recent_session_delete_report.md -> dev/reports/PR_11_242_recent_session_delete_report.md -R dev/docs_build/dev/reports/PR_11_243_saved_session_delete_feedback_report.md -> dev/reports/PR_11_243_saved_session_delete_feedback_report.md -R dev/docs_build/dev/reports/PR_11_244_session_library_actions_report.md -> dev/reports/PR_11_244_session_library_actions_report.md -R dev/docs_build/dev/reports/PR_11_245_save_library_from_recent_session_report.md -> dev/reports/PR_11_245_save_library_from_recent_session_report.md -R dev/docs_build/dev/reports/PR_11_246_block_fake_session_save_report.md -> dev/reports/PR_11_246_block_fake_session_save_report.md -R dev/docs_build/dev/reports/PR_11_247_saved_session_row_actions_report.md -> dev/reports/PR_11_247_saved_session_row_actions_report.md -R dev/docs_build/dev/reports/PR_11_248_selection_sync_report.md -> dev/reports/PR_11_248_selection_sync_report.md -R dev/docs_build/dev/reports/PR_11_249_session_library_action_label_report.md -> dev/reports/PR_11_249_session_library_action_label_report.md -R dev/docs_build/dev/reports/PR_11_24_validation.txt -> dev/reports/PR_11_24_validation.txt -R dev/docs_build/dev/reports/PR_11_24_validation_template.txt -> dev/reports/PR_11_24_validation_template.txt -R dev/docs_build/dev/reports/PR_11_250_confirm_preview_enable_state_report.md -> dev/reports/PR_11_250_confirm_preview_enable_state_report.md -R dev/docs_build/dev/reports/PR_11_250_enable_state_feedback_report.md -> dev/reports/PR_11_250_enable_state_feedback_report.md -R dev/docs_build/dev/reports/PR_11_250_merge_preview_overlay_fix_report.md -> dev/reports/PR_11_250_merge_preview_overlay_fix_report.md -R dev/docs_build/dev/reports/PR_11_251_merge_conflict_summary_report.md -> dev/reports/PR_11_251_merge_conflict_summary_report.md -R dev/docs_build/dev/reports/PR_11_252_cross_tool_merge_block_report.md -> dev/reports/PR_11_252_cross_tool_merge_block_report.md -R dev/docs_build/dev/reports/PR_11_253_merge_output_persistence_report.md -> dev/reports/PR_11_253_merge_output_persistence_report.md -R dev/docs_build/dev/reports/PR_11_254_merged_recent_session_registration_report.md -> dev/reports/PR_11_254_merged_recent_session_registration_report.md -R dev/docs_build/dev/reports/PR_11_255_undo_last_merge_report.md -> dev/reports/PR_11_255_undo_last_merge_report.md -R dev/docs_build/dev/reports/PR_11_256_undo_button_render_report.md -> dev/reports/PR_11_256_undo_button_render_report.md -R dev/docs_build/dev/reports/PR_11_257_undo_enable_state_refresh_report.md -> dev/reports/PR_11_257_undo_enable_state_refresh_report.md -R dev/docs_build/dev/reports/PR_11_258_merge_result_summary_report.md -> dev/reports/PR_11_258_merge_result_summary_report.md -R dev/docs_build/dev/reports/PR_11_259_clear_stale_merge_preview_report.md -> dev/reports/PR_11_259_clear_stale_merge_preview_report.md -R dev/docs_build/dev/reports/PR_11_260_undo_enable_state_fix_report.md -> dev/reports/PR_11_260_undo_enable_state_fix_report.md -R dev/docs_build/dev/reports/PR_11_261_merge_state_status_reset_report.md -> dev/reports/PR_11_261_merge_state_status_reset_report.md -R dev/docs_build/dev/reports/PR_11_262_merge_state_ssot_report.md -> dev/reports/PR_11_262_merge_state_ssot_report.md -R dev/docs_build/dev/reports/PR_11_263_session_ux_stabilization_report.md -> dev/reports/PR_11_263_session_ux_stabilization_report.md -R dev/docs_build/dev/reports/PR_11_264_session_state_model_consolidation_report.md -> dev/reports/PR_11_264_session_state_model_consolidation_report.md -R dev/docs_build/dev/reports/PR_11_265_deterministic_state_transition_enforcement_report.md -> dev/reports/PR_11_265_deterministic_state_transition_enforcement_report.md -R dev/docs_build/dev/reports/PR_11_266_session_tools_closeout_bundle_report.md -> dev/reports/PR_11_266_session_tools_closeout_bundle_report.md -R dev/docs_build/dev/reports/PR_11_267_workspace_default_tool_producer_init_fix_report.md -> dev/reports/PR_11_267_workspace_default_tool_producer_init_fix_report.md -R dev/docs_build/dev/reports/PR_11_268_workspace_v2_session_library_action_cleanup_report.md -> dev/reports/PR_11_268_workspace_v2_session_library_action_cleanup_report.md -R dev/docs_build/dev/reports/PR_11_269_workspace_v2_session_library_save_guard_load_explanation_report.md -> dev/reports/PR_11_269_workspace_v2_session_library_save_guard_load_explanation_report.md -R dev/docs_build/dev/reports/PR_11_270_workspace_v2_session_library_overwrite_action_report.md -> dev/reports/PR_11_270_workspace_v2_session_library_overwrite_action_report.md -R dev/docs_build/dev/reports/PR_11_273_workspace_v2_wording_clarity_report.md -> dev/reports/PR_11_273_workspace_v2_wording_clarity_report.md -R dev/docs_build/dev/reports/PR_11_274_workspace_v2_diff_viewer_summary_counts_report.md -> dev/reports/PR_11_274_workspace_v2_diff_viewer_summary_counts_report.md -R dev/docs_build/dev/reports/PR_11_275_workspace_v2_current_session_export_fix_report.md -> dev/reports/PR_11_275_workspace_v2_current_session_export_fix_report.md -R dev/docs_build/dev/reports/PR_11_276_workspace_v2_full_session_export_contract_correction_report.md -> dev/reports/PR_11_276_workspace_v2_full_session_export_contract_correction_report.md -R dev/docs_build/dev/reports/PR_11_276_workspace_v2_nav_mode_and_export_contract_report.md -> dev/reports/PR_11_276_workspace_v2_nav_mode_and_export_contract_report.md -R dev/docs_build/dev/reports/PR_11_277_workspace_v2_manifest_only_export_enforcement_report.md -> dev/reports/PR_11_277_workspace_v2_manifest_only_export_enforcement_report.md -R dev/docs_build/dev/reports/PR_11_278_workspace_schema_export_enforcement_and_same_tool_diff_guard_report.md -> dev/reports/PR_11_278_workspace_schema_export_enforcement_and_same_tool_diff_guard_report.md -R dev/docs_build/dev/reports/PR_11_279_workspace_schema_restore_and_minimal_workspace_session_block_report.md -> dev/reports/PR_11_279_workspace_schema_restore_and_minimal_workspace_session_block_report.md -R dev/docs_build/dev/reports/PR_11_27_validation.txt -> dev/reports/PR_11_27_validation.txt -R dev/docs_build/dev/reports/PR_11_27_validation_template.txt -> dev/reports/PR_11_27_validation_template.txt -R dev/docs_build/dev/reports/PR_11_28_validation.txt -> dev/reports/PR_11_28_validation.txt -R dev/docs_build/dev/reports/PR_11_28_validation_template.txt -> dev/reports/PR_11_28_validation_template.txt -R dev/docs_build/dev/reports/PR_11_29_validation.txt -> dev/reports/PR_11_29_validation.txt -R dev/docs_build/dev/reports/PR_11_29_validation_template.txt -> dev/reports/PR_11_29_validation_template.txt -R dev/docs_build/dev/reports/PR_11_2_INTERACTION_AND_FEEDBACK_POLISH_report.md -> dev/reports/PR_11_2_INTERACTION_AND_FEEDBACK_POLISH_report.md -R dev/docs_build/dev/reports/PR_11_304_report.md -> dev/reports/PR_11_304_report.md -R dev/docs_build/dev/reports/PR_11_308_report.md -> dev/reports/PR_11_308_report.md -R dev/docs_build/dev/reports/PR_11_309_report.md -> dev/reports/PR_11_309_report.md -R dev/docs_build/dev/reports/PR_11_30_validation.txt -> dev/reports/PR_11_30_validation.txt -R dev/docs_build/dev/reports/PR_11_30_validation_template.txt -> dev/reports/PR_11_30_validation_template.txt -R dev/docs_build/dev/reports/PR_11_310_report.md -> dev/reports/PR_11_310_report.md -R dev/docs_build/dev/reports/PR_11_311_report.md -> dev/reports/PR_11_311_report.md -R dev/docs_build/dev/reports/PR_11_313_report.md -> dev/reports/PR_11_313_report.md -R dev/docs_build/dev/reports/PR_11_313_single_contract_rename_report.md -> dev/reports/PR_11_313_single_contract_rename_report.md -R dev/docs_build/dev/reports/PR_11_313_workspace_tool_launcher_asset_manager_report.md -> dev/reports/PR_11_313_workspace_tool_launcher_asset_manager_report.md -R dev/docs_build/dev/reports/PR_11_314_report.md -> dev/reports/PR_11_314_report.md -R dev/docs_build/dev/reports/PR_11_315_report.md -> dev/reports/PR_11_315_report.md -R dev/docs_build/dev/reports/PR_11_316_report.md -> dev/reports/PR_11_316_report.md -R dev/docs_build/dev/reports/PR_11_317_report.md -> dev/reports/PR_11_317_report.md -R dev/docs_build/dev/reports/PR_11_318A_report.md -> dev/reports/PR_11_318A_report.md -R dev/docs_build/dev/reports/PR_11_318B_report.md -> dev/reports/PR_11_318B_report.md -R dev/docs_build/dev/reports/PR_11_318C_report.md -> dev/reports/PR_11_318C_report.md -R dev/docs_build/dev/reports/PR_11_318D_report.md -> dev/reports/PR_11_318D_report.md -R dev/docs_build/dev/reports/PR_11_318E_report.md -> dev/reports/PR_11_318E_report.md -R dev/docs_build/dev/reports/PR_11_318_report.md -> dev/reports/PR_11_318_report.md -R dev/docs_build/dev/reports/PR_11_319_report.md -> dev/reports/PR_11_319_report.md -R dev/docs_build/dev/reports/PR_11_320_report.md -> dev/reports/PR_11_320_report.md -R dev/docs_build/dev/reports/PR_11_321_report.md -> dev/reports/PR_11_321_report.md -R dev/docs_build/dev/reports/PR_11_322_report.md -> dev/reports/PR_11_322_report.md -R dev/docs_build/dev/reports/PR_11_323_report.md -> dev/reports/PR_11_323_report.md -R dev/docs_build/dev/reports/PR_11_324_report.md -> dev/reports/PR_11_324_report.md -R dev/docs_build/dev/reports/PR_11_325_report.md -> dev/reports/PR_11_325_report.md -R dev/docs_build/dev/reports/PR_11_326_report.md -> dev/reports/PR_11_326_report.md -R dev/docs_build/dev/reports/PR_11_327_report.md -> dev/reports/PR_11_327_report.md -R dev/docs_build/dev/reports/PR_11_32_validation_template.txt -> dev/reports/PR_11_32_validation_template.txt -R dev/docs_build/dev/reports/PR_11_33_validation.txt -> dev/reports/PR_11_33_validation.txt -R dev/docs_build/dev/reports/PR_11_33_validation_template.txt -> dev/reports/PR_11_33_validation_template.txt -R dev/docs_build/dev/reports/PR_11_34_validation.txt -> dev/reports/PR_11_34_validation.txt -R dev/docs_build/dev/reports/PR_11_34_vector_tool_comparison.md -> dev/reports/PR_11_34_vector_tool_comparison.md -R dev/docs_build/dev/reports/PR_11_34_vector_tool_comparison_template.md -> dev/reports/PR_11_34_vector_tool_comparison_template.md -R dev/docs_build/dev/reports/PR_11_35_vector_tool_naming_recommendation.txt -> dev/reports/PR_11_35_vector_tool_naming_recommendation.txt -R dev/docs_build/dev/reports/PR_11_37_deep_rename_validation.txt -> dev/reports/PR_11_37_deep_rename_validation.txt -R dev/docs_build/dev/reports/PR_11_37_deep_rename_validation_template.txt -> dev/reports/PR_11_37_deep_rename_validation_template.txt -R dev/docs_build/dev/reports/PR_11_3_VISUAL_HIERARCHY_AND_SPACING_REFINEMENT_report.md -> dev/reports/PR_11_3_VISUAL_HIERARCHY_AND_SPACING_REFINEMENT_report.md -R dev/docs_build/dev/reports/PR_11_41_sample_json_ownership_audit.md -> dev/reports/PR_11_41_sample_json_ownership_audit.md -R dev/docs_build/dev/reports/PR_11_41_sample_json_ownership_audit_template.md -> dev/reports/PR_11_41_sample_json_ownership_audit_template.md -R dev/docs_build/dev/reports/PR_11_41_validation.txt -> dev/reports/PR_11_41_validation.txt -R dev/docs_build/dev/reports/PR_11_41_validation_template.txt -> dev/reports/PR_11_41_validation_template.txt -R dev/docs_build/dev/reports/PR_11_42_validation.txt -> dev/reports/PR_11_42_validation.txt -R dev/docs_build/dev/reports/PR_11_42_validation_template.txt -> dev/reports/PR_11_42_validation_template.txt -R dev/docs_build/dev/reports/PR_11_43_cleanup_batch_1.md -> dev/reports/PR_11_43_cleanup_batch_1.md -R dev/docs_build/dev/reports/PR_11_43_cleanup_batch_1_template.md -> dev/reports/PR_11_43_cleanup_batch_1_template.md -R dev/docs_build/dev/reports/PR_11_43_validation.txt -> dev/reports/PR_11_43_validation.txt -R dev/docs_build/dev/reports/PR_11_43_validation_template.txt -> dev/reports/PR_11_43_validation_template.txt -R dev/docs_build/dev/reports/PR_11_44_cleanup_batch_2.md -> dev/reports/PR_11_44_cleanup_batch_2.md -R dev/docs_build/dev/reports/PR_11_44_cleanup_batch_2_template.md -> dev/reports/PR_11_44_cleanup_batch_2_template.md -R dev/docs_build/dev/reports/PR_11_44_validation.txt -> dev/reports/PR_11_44_validation.txt -R dev/docs_build/dev/reports/PR_11_44_validation_template.txt -> dev/reports/PR_11_44_validation_template.txt -R dev/docs_build/dev/reports/PR_11_45_validation_template.txt -> dev/reports/PR_11_45_validation_template.txt -R dev/docs_build/dev/reports/PR_11_46_cleanup_batch_3.md -> dev/reports/PR_11_46_cleanup_batch_3.md -R dev/docs_build/dev/reports/PR_11_46_cleanup_batch_3_template.md -> dev/reports/PR_11_46_cleanup_batch_3_template.md -R dev/docs_build/dev/reports/PR_11_46_validation.txt -> dev/reports/PR_11_46_validation.txt -R dev/docs_build/dev/reports/PR_11_46_validation_template.txt -> dev/reports/PR_11_46_validation_template.txt -R dev/docs_build/dev/reports/PR_11_47_complex_json_classification.md -> dev/reports/PR_11_47_complex_json_classification.md -R dev/docs_build/dev/reports/PR_11_47_complex_json_classification_template.md -> dev/reports/PR_11_47_complex_json_classification_template.md -R dev/docs_build/dev/reports/PR_11_48_validation.txt -> dev/reports/PR_11_48_validation.txt -R dev/docs_build/dev/reports/PR_11_49_audit_after.txt -> dev/reports/PR_11_49_audit_after.txt -R dev/docs_build/dev/reports/PR_11_49_audit_before.txt -> dev/reports/PR_11_49_audit_before.txt -R dev/docs_build/dev/reports/PR_11_49_controlled_json_cleanup_prompt.md -> dev/reports/PR_11_49_controlled_json_cleanup_prompt.md -R dev/docs_build/dev/reports/PR_11_49_controlled_json_cleanup_report.md -> dev/reports/PR_11_49_controlled_json_cleanup_report.md -R dev/docs_build/dev/reports/PR_11_4_FINAL_UI_POLISH_AND_CONSISTENCY_PASS_report.md -> dev/reports/PR_11_4_FINAL_UI_POLISH_AND_CONSISTENCY_PASS_report.md -R dev/docs_build/dev/reports/PR_11_50_audit_after.txt -> dev/reports/PR_11_50_audit_after.txt -R dev/docs_build/dev/reports/PR_11_50_audit_before.txt -> dev/reports/PR_11_50_audit_before.txt -R dev/docs_build/dev/reports/PR_11_50_controlled_json_cleanup_report.md -> dev/reports/PR_11_50_controlled_json_cleanup_report.md -R dev/docs_build/dev/reports/PR_11_50_validation_plan.md -> dev/reports/PR_11_50_validation_plan.md -R dev/docs_build/dev/reports/PR_11_51_audit_after.txt -> dev/reports/PR_11_51_audit_after.txt -R dev/docs_build/dev/reports/PR_11_51_audit_before.txt -> dev/reports/PR_11_51_audit_before.txt -R dev/docs_build/dev/reports/PR_11_51_audit_report.md -> dev/reports/PR_11_51_audit_report.md -R dev/docs_build/dev/reports/PR_11_51_targeted_reference_checks.txt -> dev/reports/PR_11_51_targeted_reference_checks.txt -R dev/docs_build/dev/reports/PR_11_52_audit_after.txt -> dev/reports/PR_11_52_audit_after.txt -R dev/docs_build/dev/reports/PR_11_52_audit_before.txt -> dev/reports/PR_11_52_audit_before.txt -R dev/docs_build/dev/reports/PR_11_52_audit_report.md -> dev/reports/PR_11_52_audit_report.md -R dev/docs_build/dev/reports/PR_11_52_candidate_validation.txt -> dev/reports/PR_11_52_candidate_validation.txt -R dev/docs_build/dev/reports/PR_11_54_audit_after.txt -> dev/reports/PR_11_54_audit_after.txt -R dev/docs_build/dev/reports/PR_11_54_audit_before.txt -> dev/reports/PR_11_54_audit_before.txt -R dev/docs_build/dev/reports/PR_11_54_candidate_reference_checks.md -> dev/reports/PR_11_54_candidate_reference_checks.md -R dev/docs_build/dev/reports/PR_11_54_controlled_json_cleanup_8_report.md -> dev/reports/PR_11_54_controlled_json_cleanup_8_report.md -R dev/docs_build/dev/reports/PR_11_56_metadata_reference_cleanup_report.md -> dev/reports/PR_11_56_metadata_reference_cleanup_report.md -R dev/docs_build/dev/reports/PR_11_57_audit_after.txt -> dev/reports/PR_11_57_audit_after.txt -R dev/docs_build/dev/reports/PR_11_57_audit_before.txt -> dev/reports/PR_11_57_audit_before.txt -R dev/docs_build/dev/reports/PR_11_57_cleanup_actions.json -> dev/reports/PR_11_57_cleanup_actions.json -R dev/docs_build/dev/reports/PR_11_57_validation.md -> dev/reports/PR_11_57_validation.md -R dev/docs_build/dev/reports/PR_11_59_audit_after.txt -> dev/reports/PR_11_59_audit_after.txt -R dev/docs_build/dev/reports/PR_11_59_audit_before.txt -> dev/reports/PR_11_59_audit_before.txt -R dev/docs_build/dev/reports/PR_11_59_audit_report.md -> dev/reports/PR_11_59_audit_report.md -R dev/docs_build/dev/reports/PR_11_59_candidate_classification.md -> dev/reports/PR_11_59_candidate_classification.md -R dev/docs_build/dev/reports/PR_11_59_candidate_paths.txt -> dev/reports/PR_11_59_candidate_paths.txt -R dev/docs_build/dev/reports/PR_11_59_cleanup_actions.json -> dev/reports/PR_11_59_cleanup_actions.json -R dev/docs_build/dev/reports/PR_11_59_expected_report.md -> dev/reports/PR_11_59_expected_report.md -R dev/docs_build/dev/reports/PR_11_59_safe_candidates.json -> dev/reports/PR_11_59_safe_candidates.json -R dev/docs_build/dev/reports/PR_11_5_WORKSPACE_HEADER_BUTTON_NORMALIZATION_report.md -> dev/reports/PR_11_5_WORKSPACE_HEADER_BUTTON_NORMALIZATION_report.md -R dev/docs_build/dev/reports/PR_11_60_audit_after.txt -> dev/reports/PR_11_60_audit_after.txt -R dev/docs_build/dev/reports/PR_11_60_audit_before.txt -> dev/reports/PR_11_60_audit_before.txt -R dev/docs_build/dev/reports/PR_11_60_audit_report.md -> dev/reports/PR_11_60_audit_report.md -R dev/docs_build/dev/reports/PR_11_60_candidate_validation.md -> dev/reports/PR_11_60_candidate_validation.md -R dev/docs_build/dev/reports/PR_11_60_cleanup_actions.json -> dev/reports/PR_11_60_cleanup_actions.json -R dev/docs_build/dev/reports/PR_11_60_cleanup_summary.md -> dev/reports/PR_11_60_cleanup_summary.md -R dev/docs_build/dev/reports/PR_11_60_expected_validation.md -> dev/reports/PR_11_60_expected_validation.md -R dev/docs_build/dev/reports/PR_11_61_audit_after.txt -> dev/reports/PR_11_61_audit_after.txt -R dev/docs_build/dev/reports/PR_11_61_audit_before.txt -> dev/reports/PR_11_61_audit_before.txt -R dev/docs_build/dev/reports/PR_11_61_bulk_metadata_cleanup_report.md -> dev/reports/PR_11_61_bulk_metadata_cleanup_report.md -R dev/docs_build/dev/reports/PR_11_61_candidate_validation.md -> dev/reports/PR_11_61_candidate_validation.md -R dev/docs_build/dev/reports/PR_11_61_cleanup_actions.json -> dev/reports/PR_11_61_cleanup_actions.json -R dev/docs_build/dev/reports/PR_11_61_expected_report_template.md -> dev/reports/PR_11_61_expected_report_template.md -R dev/docs_build/dev/reports/PR_11_67_expected_report.md -> dev/reports/PR_11_67_expected_report.md -R dev/docs_build/dev/reports/PR_11_67_sample_json_audit_closure.md -> dev/reports/PR_11_67_sample_json_audit_closure.md -R dev/docs_build/dev/reports/PR_11_68_bundle_manifest.md -> dev/reports/PR_11_68_bundle_manifest.md -R dev/docs_build/dev/reports/PR_11_68_sample_json_audit_lockdown_report.md -> dev/reports/PR_11_68_sample_json_audit_lockdown_report.md -R dev/docs_build/dev/reports/PR_11_71_validation.md -> dev/reports/PR_11_71_validation.md -R dev/docs_build/dev/reports/PR_11_74_expected_outputs.md -> dev/reports/PR_11_74_expected_outputs.md -R dev/docs_build/dev/reports/PR_11_75_expected_report.md -> dev/reports/PR_11_75_expected_report.md -R dev/docs_build/dev/reports/PR_11_75_utils_consolidation_report.md -> dev/reports/PR_11_75_utils_consolidation_report.md -R dev/docs_build/dev/reports/PR_11_75_utils_inventory.csv -> dev/reports/PR_11_75_utils_inventory.csv -R dev/docs_build/dev/reports/PR_11_76_ACCEPTANCE_CHECKLIST.md -> dev/reports/PR_11_76_ACCEPTANCE_CHECKLIST.md -R dev/docs_build/dev/reports/PR_11_76_ENGINE_UTILS_TO_SHARED_UTILS_report.md -> dev/reports/PR_11_76_ENGINE_UTILS_TO_SHARED_UTILS_report.md -R dev/docs_build/dev/reports/PR_11_78_ENGINE_UTILS_REFERENCE_CLOSURE_report.md -> dev/reports/PR_11_78_ENGINE_UTILS_REFERENCE_CLOSURE_report.md -R dev/docs_build/dev/reports/PR_11_78_validation_requirements.md -> dev/reports/PR_11_78_validation_requirements.md -R dev/docs_build/dev/reports/PR_11_81_EXPECTED_REPORTS.md -> dev/reports/PR_11_81_EXPECTED_REPORTS.md -R dev/docs_build/dev/reports/PR_11_86_validation.md -> dev/reports/PR_11_86_validation.md -R dev/docs_build/dev/reports/PR_11_87_validation.md -> dev/reports/PR_11_87_validation.md -R dev/docs_build/dev/reports/PR_11_8_TOOL_LINKED_SAMPLE_JSON_SSOT_AUDIT_report.md -> dev/reports/PR_11_8_TOOL_LINKED_SAMPLE_JSON_SSOT_AUDIT_report.md -R dev/docs_build/dev/reports/PR_11_91_validation.md -> dev/reports/PR_11_91_validation.md -R dev/docs_build/dev/reports/PR_11_92_findings.md -> dev/reports/PR_11_92_findings.md -R dev/docs_build/dev/reports/PR_11_92_validation.md -> dev/reports/PR_11_92_validation.md -R dev/docs_build/dev/reports/PR_11_93_validation.md -> dev/reports/PR_11_93_validation.md -R dev/docs_build/dev/reports/PR_11_95_validation.md -> dev/reports/PR_11_95_validation.md -R dev/docs_build/dev/reports/PR_11_96_validation.md -> dev/reports/PR_11_96_validation.md -R dev/docs_build/dev/reports/PR_11_96_validation_checklist.md -> dev/reports/PR_11_96_validation_checklist.md -R dev/docs_build/dev/reports/PR_11_97_expected_validation.md -> dev/reports/PR_11_97_expected_validation.md -R dev/docs_build/dev/reports/PR_11_97_schema_validation.md -> dev/reports/PR_11_97_schema_validation.md -R dev/docs_build/dev/reports/PR_11_98_strict_schema_validation_and_usage_review_report.md -> dev/reports/PR_11_98_strict_schema_validation_and_usage_review_report.md -R dev/docs_build/dev/reports/PR_11_99_schema_failure_cleanup_report.md -> dev/reports/PR_11_99_schema_failure_cleanup_report.md -R dev/docs_build/dev/reports/PR_11_9_STANDALONE_SAMPLE_TOOL_JSON_DIRECT_LOAD_AUDIT_report.md -> dev/reports/PR_11_9_STANDALONE_SAMPLE_TOOL_JSON_DIRECT_LOAD_AUDIT_report.md -R dev/docs_build/dev/reports/PR_26123_001_project_instructions_update_report.md -> dev/reports/PR_26123_001_project_instructions_update_report.md -R dev/docs_build/dev/reports/PR_26124_002_report.md -> dev/reports/PR_26124_002_report.md -R dev/docs_build/dev/reports/PR_26124_003_report.md -> dev/reports/PR_26124_003_report.md -R dev/docs_build/dev/reports/PR_26124_004_report.md -> dev/reports/PR_26124_004_report.md -R dev/docs_build/dev/reports/PR_26124_006_report.md -> dev/reports/PR_26124_006_report.md -R dev/docs_build/dev/reports/PR_26124_007_report.md -> dev/reports/PR_26124_007_report.md -R dev/docs_build/dev/reports/PR_26124_008_failing_tool_list.md -> dev/reports/PR_26124_008_failing_tool_list.md -R dev/docs_build/dev/reports/PR_26124_008_report.md -> dev/reports/PR_26124_008_report.md -R dev/docs_build/dev/reports/PR_26124_009_report.md -> dev/reports/PR_26124_009_report.md -R dev/docs_build/dev/reports/PR_26124_010_report.md -> dev/reports/PR_26124_010_report.md -R dev/docs_build/dev/reports/PR_26124_011_report.md -> dev/reports/PR_26124_011_report.md -R dev/docs_build/dev/reports/PR_26124_012_tool_state_terminology_report.md -> dev/reports/PR_26124_012_tool_state_terminology_report.md -R dev/docs_build/dev/reports/PR_26124_014_include_review_diff_report.md -> dev/reports/PR_26124_014_include_review_diff_report.md -R dev/docs_build/dev/reports/PR_26124_015_toolstate_producer_filtering_report.md -> dev/reports/PR_26124_015_toolstate_producer_filtering_report.md -R dev/docs_build/dev/reports/PR_26124_016_fix_playwright_toolstate_scope_report.md -> dev/reports/PR_26124_016_fix_playwright_toolstate_scope_report.md -R dev/docs_build/dev/reports/PR_26124_017_explicit_promote_to_tools_report.md -> dev/reports/PR_26124_017_explicit_promote_to_tools_report.md -R dev/docs_build/dev/reports/PR_26124_018_clarify_tools_vs_toolstate_ux_report.md -> dev/reports/PR_26124_018_clarify_tools_vs_toolstate_ux_report.md -R dev/docs_build/dev/reports/PR_26124_018_workspace_toolstate_lifecycle_ux_report.md -> dev/reports/PR_26124_018_workspace_toolstate_lifecycle_ux_report.md -R dev/docs_build/dev/reports/PR_26124_020_workspace_tools_reengineering_design_docs_report.md -> dev/reports/PR_26124_020_workspace_tools_reengineering_design_docs_report.md -R dev/docs_build/dev/reports/PR_26124_026_report.md -> dev/reports/PR_26124_026_report.md -R dev/docs_build/dev/reports/PR_26124_027_report.md -> dev/reports/PR_26124_027_report.md -R dev/docs_build/dev/reports/PR_26124_028_report.md -> dev/reports/PR_26124_028_report.md -R dev/docs_build/dev/reports/PR_26124_029_report.md -> dev/reports/PR_26124_029_report.md -R dev/docs_build/dev/reports/PR_26124_030_report.md -> dev/reports/PR_26124_030_report.md -R dev/docs_build/dev/reports/PR_26124_031_report.md -> dev/reports/PR_26124_031_report.md -R dev/docs_build/dev/reports/PR_26124_032_report.md -> dev/reports/PR_26124_032_report.md -R dev/docs_build/dev/reports/PR_26124_033_report.md -> dev/reports/PR_26124_033_report.md -R dev/docs_build/dev/reports/PR_26124_034_report.md -> dev/reports/PR_26124_034_report.md -R dev/docs_build/dev/reports/PR_26124_035_report.md -> dev/reports/PR_26124_035_report.md -R dev/docs_build/dev/reports/PR_26124_035_scrollbar_completion_report.md -> dev/reports/PR_26124_035_scrollbar_completion_report.md -R dev/docs_build/dev/reports/PR_26124_037_report.md -> dev/reports/PR_26124_037_report.md -R dev/docs_build/dev/reports/PR_26124_038_report.md -> dev/reports/PR_26124_038_report.md -R dev/docs_build/dev/reports/PR_26124_039_report.md -> dev/reports/PR_26124_039_report.md -R dev/docs_build/dev/reports/PR_26124_040_report.md -> dev/reports/PR_26124_040_report.md -R dev/docs_build/dev/reports/PR_26124_041_report.md -> dev/reports/PR_26124_041_report.md -R dev/docs_build/dev/reports/PR_26124_042_report.md -> dev/reports/PR_26124_042_report.md -R dev/docs_build/dev/reports/PR_26124_043_report.md -> dev/reports/PR_26124_043_report.md -R dev/docs_build/dev/reports/PR_26124_044_report.md -> dev/reports/PR_26124_044_report.md -R dev/docs_build/dev/reports/PR_26124_045_report.md -> dev/reports/PR_26124_045_report.md -R dev/docs_build/dev/reports/PR_26124_046_report.md -> dev/reports/PR_26124_046_report.md -R dev/docs_build/dev/reports/PR_26124_047_report.md -> dev/reports/PR_26124_047_report.md -R dev/docs_build/dev/reports/PR_26124_048_report.md -> dev/reports/PR_26124_048_report.md -R dev/docs_build/dev/reports/PR_26124_049_report.md -> dev/reports/PR_26124_049_report.md -R dev/docs_build/dev/reports/PR_26124_050_report.md -> dev/reports/PR_26124_050_report.md -R dev/docs_build/dev/reports/PR_26124_051_report.md -> dev/reports/PR_26124_051_report.md -R dev/docs_build/dev/reports/PR_26124_052_report.md -> dev/reports/PR_26124_052_report.md -R dev/docs_build/dev/reports/PR_26124_053_report.md -> dev/reports/PR_26124_053_report.md -R dev/docs_build/dev/reports/PR_26124_054_report.md -> dev/reports/PR_26124_054_report.md -R dev/docs_build/dev/reports/PR_26124_055_report.md -> dev/reports/PR_26124_055_report.md -R dev/docs_build/dev/reports/PR_26124_056_report.md -> dev/reports/PR_26124_056_report.md -R dev/docs_build/dev/reports/PR_26124_057_report.md -> dev/reports/PR_26124_057_report.md -R dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/README.md -> dev/reports/PR_26124_058-palette-manager-restore-point__README.md -R dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/controls/SourcePaletteBrowserControl.js -> dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__controls__SourcePaletteBrowserControl.js -R dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/index.html -> dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__index.html -R dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/modules/PaletteManagerApp.js -> dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__modules__PaletteManagerApp.js -R dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/paletteManagerV2.css -> dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__paletteManagerV2.css -R dev/docs_build/dev/reports/PR_26124_058_report.md -> dev/reports/PR_26124_058_report.md -R dev/docs_build/dev/reports/PR_26124_059_report.md -> dev/reports/PR_26124_059_report.md -R dev/docs_build/dev/reports/PR_26124_060_report.md -> dev/reports/PR_26124_060_report.md -R dev/docs_build/dev/reports/PR_26124_061_report.md -> dev/reports/PR_26124_061_report.md -R dev/docs_build/dev/reports/PR_26124_063_report.md -> dev/reports/PR_26124_063_report.md -R dev/docs_build/dev/reports/PR_26124_064_report.md -> dev/reports/PR_26124_064_report.md -R dev/docs_build/dev/reports/PR_26124_065_report.md -> dev/reports/PR_26124_065_report.md -R dev/docs_build/dev/reports/PR_26124_066_report.md -> dev/reports/PR_26124_066_report.md -R dev/docs_build/dev/reports/PR_26124_068_report.md -> dev/reports/PR_26124_068_report.md -R dev/docs_build/dev/reports/PR_26124_069_report.md -> dev/reports/PR_26124_069_report.md -R dev/docs_build/dev/reports/PR_26124_070_report.md -> dev/reports/PR_26124_070_report.md -R dev/docs_build/dev/reports/PR_26124_071_report.md -> dev/reports/PR_26124_071_report.md -R dev/docs_build/dev/reports/PR_26124_072_rollback_report.md -> dev/reports/PR_26124_072_rollback_report.md -R dev/docs_build/dev/reports/PR_26124_073_report.md -> dev/reports/PR_26124_073_report.md -R dev/docs_build/dev/reports/PR_26124_074_report.md -> dev/reports/PR_26124_074_report.md -R dev/docs_build/dev/reports/PR_26124_075_report.md -> dev/reports/PR_26124_075_report.md -R dev/docs_build/dev/reports/PR_26124_076_report.md -> dev/reports/PR_26124_076_report.md -R dev/docs_build/dev/reports/PR_26124_077_report.md -> dev/reports/PR_26124_077_report.md -R dev/docs_build/dev/reports/PR_26126_082_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_082_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_082_asset_manager_v2_schema_validation_notes.md -> dev/reports/PR_26126_082_asset_manager_v2_schema_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_082_schema_validation/game_manifest_schema_validation.csv -> dev/reports/PR_26126_082_schema_validation__game_manifest_schema_validation.csv -R dev/docs_build/dev/reports/PR_26126_082_schema_validation/sample_json_schema_validation.csv -> dev/reports/PR_26126_082_schema_validation__sample_json_schema_validation.csv -R dev/docs_build/dev/reports/PR_26126_082_schema_validation/schema_strictness_inventory.csv -> dev/reports/PR_26126_082_schema_validation__schema_strictness_inventory.csv -R dev/docs_build/dev/reports/PR_26126_082_schema_validation/schema_strictness_inventory.md -> dev/reports/PR_26126_082_schema_validation__schema_strictness_inventory.md -R dev/docs_build/dev/reports/PR_26126_082_schema_validation/schema_usage_code_updates.md -> dev/reports/PR_26126_082_schema_validation__schema_usage_code_updates.md -R dev/docs_build/dev/reports/PR_26126_082_schema_validation/tool_payload_schema_validation.csv -> dev/reports/PR_26126_082_schema_validation__tool_payload_schema_validation.csv -R dev/docs_build/dev/reports/PR_26126_083_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_083_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_083_asset_manager_v2_theme_comparison_notes.md -> dev/reports/PR_26126_083_asset_manager_v2_theme_comparison_notes.md -R dev/docs_build/dev/reports/PR_26126_084_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_084_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_084_asset_manager_v2_path_normalization_notes.md -> dev/reports/PR_26126_084_asset_manager_v2_path_normalization_notes.md -R dev/docs_build/dev/reports/PR_26126_084_asset_manager_v2_schema_validation_notes.md -> dev/reports/PR_26126_084_asset_manager_v2_schema_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_085_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_085_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_085_asset_manager_v2_schema_validation_notes.md -> dev/reports/PR_26126_085_asset_manager_v2_schema_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_085_asset_manager_v2_ui_control_notes.md -> dev/reports/PR_26126_085_asset_manager_v2_ui_control_notes.md -R dev/docs_build/dev/reports/PR_26126_086_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_086_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_086_asset_manager_v2_ui_control_notes.md -> dev/reports/PR_26126_086_asset_manager_v2_ui_control_notes.md -R dev/docs_build/dev/reports/PR_26126_087_asset_manager_v2_accordion_behavior_notes.md -> dev/reports/PR_26126_087_asset_manager_v2_accordion_behavior_notes.md -R dev/docs_build/dev/reports/PR_26126_087_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_087_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_088_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_schema_consistency_notes.md -> dev/reports/PR_26126_088_asset_manager_v2_schema_consistency_notes.md -R dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_ui_layout_notes.md -> dev/reports/PR_26126_088_asset_manager_v2_ui_layout_notes.md -R dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_undo_redo_behavior_notes.md -> dev/reports/PR_26126_088_asset_manager_v2_undo_redo_behavior_notes.md -R dev/docs_build/dev/reports/PR_26126_089_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_089_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_089_asset_manager_v2_status_log_notes.md -> dev/reports/PR_26126_089_asset_manager_v2_status_log_notes.md -R dev/docs_build/dev/reports/PR_26126_089_asset_manager_v2_ui_control_notes.md -> dev/reports/PR_26126_089_asset_manager_v2_ui_control_notes.md -R dev/docs_build/dev/reports/PR_26126_090_asset_manager_v2_asset_id_naming_notes.md -> dev/reports/PR_26126_090_asset_manager_v2_asset_id_naming_notes.md -R dev/docs_build/dev/reports/PR_26126_090_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_090_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_090_asset_manager_v2_tile_layout_notes.md -> dev/reports/PR_26126_090_asset_manager_v2_tile_layout_notes.md -R dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_bezel_stretch_override_notes.md -> dev/reports/PR_26126_091_asset_manager_v2_bezel_stretch_override_notes.md -R dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_inspector_behavior_notes.md -> dev/reports/PR_26126_091_asset_manager_v2_inspector_behavior_notes.md -R dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_091_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_type_kind_schema_notes.md -> dev/reports/PR_26126_091_asset_manager_v2_type_kind_schema_notes.md -R dev/docs_build/dev/reports/PR_26126_092_asset_manager_v2_color_asset_schema_notes.md -> dev/reports/PR_26126_092_asset_manager_v2_color_asset_schema_notes.md -R dev/docs_build/dev/reports/PR_26126_092_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_092_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_092_asset_manager_v2_palette_picker_notes.md -> dev/reports/PR_26126_092_asset_manager_v2_palette_picker_notes.md -R dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_093_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_palette_sample_notes.md -> dev/reports/PR_26126_093_asset_manager_v2_palette_sample_notes.md -R dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_preview_path_resolution_notes.md -> dev/reports/PR_26126_093_asset_manager_v2_preview_path_resolution_notes.md -R dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_selected_asset_detail_notes.md -> dev/reports/PR_26126_093_asset_manager_v2_selected_asset_detail_notes.md -R dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_094_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_palette_swatch_notes.md -> dev/reports/PR_26126_094_asset_manager_v2_palette_swatch_notes.md -R dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_preview_helper_location_notes.md -> dev/reports/PR_26126_094_asset_manager_v2_preview_helper_location_notes.md -R dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_selected_asset_detail_notes.md -> dev/reports/PR_26126_094_asset_manager_v2_selected_asset_detail_notes.md -R dev/docs_build/dev/reports/PR_26126_095_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_095_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_095_asset_manager_v2_preview_path_resolution_notes.md -> dev/reports/PR_26126_095_asset_manager_v2_preview_path_resolution_notes.md -R dev/docs_build/dev/reports/PR_26126_095_asset_manager_v2_selected_asset_detail_placement_notes.md -> dev/reports/PR_26126_095_asset_manager_v2_selected_asset_detail_placement_notes.md -R dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_games_only_workspace_context_notes.md -> dev/reports/PR_26126_096_asset_manager_v2_games_only_workspace_context_notes.md -R dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_096_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_selected_detail_placement_notes.md -> dev/reports/PR_26126_096_asset_manager_v2_selected_detail_placement_notes.md -R dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_temporary_uat_session_root_notes.md -> dev/reports/PR_26126_096_asset_manager_v2_temporary_uat_session_root_notes.md -R dev/docs_build/dev/reports/PR_26126_097_asset_manager_v2_font_preview_notes.md -> dev/reports/PR_26126_097_asset_manager_v2_font_preview_notes.md -R dev/docs_build/dev/reports/PR_26126_097_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_097_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_097_asset_manager_v2_selected_detail_height_notes.md -> dev/reports/PR_26126_097_asset_manager_v2_selected_detail_height_notes.md -R dev/docs_build/dev/reports/PR_26126_098_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_098_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_098_asset_manager_v2_nav_import_export_notes.md -> dev/reports/PR_26126_098_asset_manager_v2_nav_import_export_notes.md -R dev/docs_build/dev/reports/PR_26126_098_asset_manager_v2_path_preservation_notes.md -> dev/reports/PR_26126_098_asset_manager_v2_path_preservation_notes.md -R dev/docs_build/dev/reports/PR_26126_099_asset_manager_v2_accordion_spacing_notes.md -> dev/reports/PR_26126_099_asset_manager_v2_accordion_spacing_notes.md -R dev/docs_build/dev/reports/PR_26126_099_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_099_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_100_asset_manager_v2_color_usage_id_notes.md -> dev/reports/PR_26126_100_asset_manager_v2_color_usage_id_notes.md -R dev/docs_build/dev/reports/PR_26126_100_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_100_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_100_asset_manager_v2_selected_detail_height_notes.md -> dev/reports/PR_26126_100_asset_manager_v2_selected_detail_height_notes.md -R dev/docs_build/dev/reports/PR_26126_101_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_101_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_101_asset_manager_v2_missing_file_logging_notes.md -> dev/reports/PR_26126_101_asset_manager_v2_missing_file_logging_notes.md -R dev/docs_build/dev/reports/PR_26126_101_asset_manager_v2_selected_swatch_notes.md -> dev/reports/PR_26126_101_asset_manager_v2_selected_swatch_notes.md -R dev/docs_build/dev/reports/PR_26126_102_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_102_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_102_asset_manager_v2_missing_file_tile_notes.md -> dev/reports/PR_26126_102_asset_manager_v2_missing_file_tile_notes.md -R dev/docs_build/dev/reports/PR_26126_103_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_103_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_103_asset_manager_v2_scope_cleanup_notes.md -> dev/reports/PR_26126_103_asset_manager_v2_scope_cleanup_notes.md -R dev/docs_build/dev/reports/PR_26126_104_asset_manager_v2_keyboard_removal_notes.md -> dev/reports/PR_26126_104_asset_manager_v2_keyboard_removal_notes.md -R dev/docs_build/dev/reports/PR_26126_104_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_104_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_105_asset_manager_v2_keyboard_cleanup_notes.md -> dev/reports/PR_26126_105_asset_manager_v2_keyboard_cleanup_notes.md -R dev/docs_build/dev/reports/PR_26126_105_asset_manager_v2_launch_guard_notes.md -> dev/reports/PR_26126_105_asset_manager_v2_launch_guard_notes.md -R dev/docs_build/dev/reports/PR_26126_105_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_105_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_106_asset_manager_v2_keyboard_cleanup_review_notes.md -> dev/reports/PR_26126_106_asset_manager_v2_keyboard_cleanup_review_notes.md -R dev/docs_build/dev/reports/PR_26126_106_asset_manager_v2_test_separation_notes.md -> dev/reports/PR_26126_106_asset_manager_v2_test_separation_notes.md -R dev/docs_build/dev/reports/PR_26126_106_asset_manager_v2_workspace_uat_notes.md -> dev/reports/PR_26126_106_asset_manager_v2_workspace_uat_notes.md -R dev/docs_build/dev/reports/PR_26126_107_asset_manager_v2_code_review_cleanup_notes.md -> dev/reports/PR_26126_107_asset_manager_v2_code_review_cleanup_notes.md -R dev/docs_build/dev/reports/PR_26126_107_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_107_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_108_asset_manager_v2_final_code_review_notes.md -> dev/reports/PR_26126_108_asset_manager_v2_final_code_review_notes.md -R dev/docs_build/dev/reports/PR_26126_108_asset_manager_v2_manual_validation_notes.md -> dev/reports/PR_26126_108_asset_manager_v2_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_109_manual_validation_notes.md -> dev/reports/PR_26126_109_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_109_test_script_ssot_notes.md -> dev/reports/PR_26126_109_test_script_ssot_notes.md -R dev/docs_build/dev/reports/PR_26126_110_manual_validation_notes.md -> dev/reports/PR_26126_110_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_110_test_directory_ssot_notes.md -> dev/reports/PR_26126_110_test_directory_ssot_notes.md -R dev/docs_build/dev/reports/PR_26126_110_workspace_launch_guard_notes.md -> dev/reports/PR_26126_110_workspace_launch_guard_notes.md -R dev/docs_build/dev/reports/PR_26126_111_manual_validation_notes.md -> dev/reports/PR_26126_111_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_111_workspace_manager_v2_bootstrap_notes.md -> dev/reports/PR_26126_111_workspace_manager_v2_bootstrap_notes.md -R dev/docs_build/dev/reports/PR_26126_112_deprecated_workspace_v2_notes.md -> dev/reports/PR_26126_112_deprecated_workspace_v2_notes.md -R dev/docs_build/dev/reports/PR_26126_112_manual_validation_notes.md -> dev/reports/PR_26126_112_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_112_theme_parity_notes.md -> dev/reports/PR_26126_112_theme_parity_notes.md -R dev/docs_build/dev/reports/PR_26126_113_asset_manager_integration_notes.md -> dev/reports/PR_26126_113_asset_manager_integration_notes.md -R dev/docs_build/dev/reports/PR_26126_113_manual_validation_notes.md -> dev/reports/PR_26126_113_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_113_workspace_session_launch_notes.md -> dev/reports/PR_26126_113_workspace_session_launch_notes.md -R dev/docs_build/dev/reports/PR_26126_114_generated_json_validation_notes.md -> dev/reports/PR_26126_114_generated_json_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_114_manual_validation_notes.md -> dev/reports/PR_26126_114_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_114_workspace_schema_alignment_notes.md -> dev/reports/PR_26126_114_workspace_schema_alignment_notes.md -R dev/docs_build/dev/reports/PR_26126_115_generated_manifest_validation_notes.md -> dev/reports/PR_26126_115_generated_manifest_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_115_manual_validation_notes.md -> dev/reports/PR_26126_115_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_115_workspace_manifest_ssot_notes.md -> dev/reports/PR_26126_115_workspace_manifest_ssot_notes.md -R dev/docs_build/dev/reports/PR_26126_116_manual_validation_notes.md -> dev/reports/PR_26126_116_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_116_save_manifest_notes.md -> dev/reports/PR_26126_116_save_manifest_notes.md -R dev/docs_build/dev/reports/PR_26126_116_v2_schema_naming_audit_notes.md -> dev/reports/PR_26126_116_v2_schema_naming_audit_notes.md -R dev/docs_build/dev/reports/PR_26126_116_workspace_launch_fix_notes.md -> dev/reports/PR_26126_116_workspace_launch_fix_notes.md -R dev/docs_build/dev/reports/PR_26126_117_asteroids_manifest_upgrade_notes.md -> dev/reports/PR_26126_117_asteroids_manifest_upgrade_notes.md -R dev/docs_build/dev/reports/PR_26126_117_manifest_validation_notes.md -> dev/reports/PR_26126_117_manifest_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_117_manual_validation_notes.md -> dev/reports/PR_26126_117_manual_validation_notes.md -R dev/docs_build/dev/reports/PR_26126_117_return_to_workspace_notes.md -> dev/reports/PR_26126_117_return_to_workspace_notes.md -R dev/docs_build/dev/reports/PR_26126_118_asteroids_asset_loading_notes.txt -> dev/reports/PR_26126_118_asteroids_asset_loading_notes.txt -R dev/docs_build/dev/reports/PR_26126_118_manifest_writeback_notes.txt -> dev/reports/PR_26126_118_manifest_writeback_notes.txt -R dev/docs_build/dev/reports/PR_26126_118_manual_validation_notes.txt -> dev/reports/PR_26126_118_manual_validation_notes.txt -R dev/docs_build/dev/reports/PR_26126_118_vector_map_manifest_notes.txt -> dev/reports/PR_26126_118_vector_map_manifest_notes.txt -R dev/docs_build/dev/reports/PR_26126_119_manifest_import_export_notes.txt -> dev/reports/PR_26126_119_manifest_import_export_notes.txt -R dev/docs_build/dev/reports/PR_26126_119_manual_validation_notes.txt -> dev/reports/PR_26126_119_manual_validation_notes.txt -R dev/docs_build/dev/reports/PR_26126_119_tool_tile_launch_notes.txt -> dev/reports/PR_26126_119_tool_tile_launch_notes.txt -R dev/docs_build/dev/reports/PR_26126_119_uat_ssot_notes.txt -> dev/reports/PR_26126_119_uat_ssot_notes.txt -R dev/docs_build/dev/reports/PR_26127_001-workspace-manager-v2-uat-template-manifest.md -> dev/reports/PR_26127_001-workspace-manager-v2-uat-template-manifest.md -R dev/docs_build/dev/reports/PR_26127_002-workspace-manager-v2-tools-control-and-nav.md -> dev/reports/PR_26127_002-workspace-manager-v2-tools-control-and-nav.md -R dev/docs_build/dev/reports/PR_26127_003-workspace-manager-v2-layout-space-fix.md -> dev/reports/PR_26127_003-workspace-manager-v2-layout-space-fix.md -R dev/docs_build/dev/reports/PR_26127_004-workspace-manager-v2-return-context-and-tool-launch-fixes.md -> dev/reports/PR_26127_004-workspace-manager-v2-return-context-and-tool-launch-fixes.md -R dev/docs_build/dev/reports/PR_26127_005-workspace-manager-v2-tool-tile-cleanup-preview-fix.md -> dev/reports/PR_26127_005-workspace-manager-v2-tool-tile-cleanup-preview-fix.md -R dev/docs_build/dev/reports/PR_26127_006-preview-generator-v2-workspace-launch-hydration-fix.md -> dev/reports/PR_26127_006-preview-generator-v2-workspace-launch-hydration-fix.md -R dev/docs_build/dev/reports/PR_26127_006-preview-image-manifest-selection-and-launch-hydration.md -> dev/reports/PR_26127_006-preview-image-manifest-selection-and-launch-hydration.md -R dev/docs_build/dev/reports/PR_26127_007-schema-alignment-preview-role-and-workspace-filtering.md -> dev/reports/PR_26127_007-schema-alignment-preview-role-and-workspace-filtering.md -R dev/docs_build/dev/reports/PR_26127_008-asset-role-preview-and-background-stretch.md -> dev/reports/PR_26127_008-asset-role-preview-and-background-stretch.md -R dev/docs_build/dev/reports/PR_26127_009-preview-svg-selection-and-background-hydration.md -> dev/reports/PR_26127_009-preview-svg-selection-and-background-hydration.md -R dev/docs_build/dev/reports/PR_26127_010-workspace-json-copy-and-game-manifest-updates.md -> dev/reports/PR_26127_010-workspace-json-copy-and-game-manifest-updates.md -R dev/docs_build/dev/reports/PR_26127_011-workspace-v2-cleanup-and-status-clear-fix.md -> dev/reports/PR_26127_011-workspace-v2-cleanup-and-status-clear-fix.md -R dev/docs_build/dev/reports/PR_26127_012-preview-launch-ui-and-generate-enable-fix.md -> dev/reports/PR_26127_012-preview-launch-ui-and-generate-enable-fix.md -R dev/docs_build/dev/reports/PR_26127_013-status-header-order-and-preview-write-path-fix.md -> dev/reports/PR_26127_013-status-header-order-and-preview-write-path-fix.md -R dev/docs_build/dev/reports/PR_26127_014-preview-generator-real-repo-root-hydration.md -> dev/reports/PR_26127_014-preview-generator-real-repo-root-hydration.md -R dev/docs_build/dev/reports/PR_26127_015-preview-generator-repo-root-resolution-fix.md -> dev/reports/PR_26127_015-preview-generator-repo-root-resolution-fix.md -R dev/docs_build/dev/reports/PR_26127_016-preview-generator-manifest-repo-path.md -> dev/reports/PR_26127_016-preview-generator-manifest-repo-path.md -R dev/docs_build/dev/reports/PR_26127_017-repo-path-manifest-hydration-fix.md -> dev/reports/PR_26127_017-repo-path-manifest-hydration-fix.md -R dev/docs_build/dev/reports/PR_26127_018-preview-repopath-debug-and-enable-fix.md -> dev/reports/PR_26127_018-preview-repopath-debug-and-enable-fix.md -R dev/docs_build/dev/reports/PR_26130_001-workspace-header-save-validation.md -> dev/reports/PR_26130_001-workspace-header-save-validation.md -R dev/docs_build/dev/reports/PR_26130_002-save-source-binding-validation.md -> dev/reports/PR_26130_002-save-source-binding-validation.md -R dev/docs_build/dev/reports/PR_26130_003-session-restore-file-handle-guard.md -> dev/reports/PR_26130_003-session-restore-file-handle-guard.md -R dev/docs_build/dev/reports/PR_26130_004-workspace-return-tool-enable-regression.md -> dev/reports/PR_26130_004-workspace-return-tool-enable-regression.md -R dev/docs_build/dev/reports/PR_26130_005-runtime-handle-state-visibility.md -> dev/reports/PR_26130_005-runtime-handle-state-visibility.md -R dev/docs_build/dev/reports/PR_26130_006-preview-generator-handle-write-verification.md -> dev/reports/PR_26130_006-preview-generator-handle-write-verification.md -R dev/docs_build/dev/reports/PR_26130_008-text2speach-v2-schema-queue.md -> dev/reports/PR_26130_008-text2speach-v2-schema-queue.md -R dev/docs_build/dev/reports/PR_26130_009-text2speach-v2-full-tts-options.md -> dev/reports/PR_26130_009-text2speach-v2-full-tts-options.md -R dev/docs_build/dev/reports/PR_26130_010-text2speach-v2-language-filtering.md -> dev/reports/PR_26130_010-text2speach-v2-language-filtering.md -R dev/docs_build/dev/reports/PR_26130_011-text2speach-v2-control-dependency-order.md -> dev/reports/PR_26130_011-text2speach-v2-control-dependency-order.md -R dev/docs_build/dev/reports/PR_26130_012-text2speach-v2-pitch-age-labels.md -> dev/reports/PR_26130_012-text2speach-v2-pitch-age-labels.md -R dev/docs_build/dev/reports/PR_26130_013-text-to-speech-v2-polish.md -> dev/reports/PR_26130_013-text-to-speech-v2-polish.md -R dev/docs_build/dev/reports/PR_26130_014-tools-roadmap-tts-engine-planning.md -> dev/reports/PR_26130_014-tools-roadmap-tts-engine-planning.md -R dev/docs_build/dev/reports/PR_26130_015-text-to-speech-v2-layout-controls.md -> dev/reports/PR_26130_015-text-to-speech-v2-layout-controls.md -R dev/docs_build/dev/reports/PR_26130_016-text-to-speech-v2-named-speech-selection.md -> dev/reports/PR_26130_016-text-to-speech-v2-named-speech-selection.md -R dev/docs_build/dev/reports/PR_26130_017-text-to-speech-v2-queue-behavior-cleanup.md -> dev/reports/PR_26130_017-text-to-speech-v2-queue-behavior-cleanup.md -R dev/docs_build/dev/reports/PR_26130_018-text-to-speech-v2-workspace-nav-only.md -> dev/reports/PR_26130_018-text-to-speech-v2-workspace-nav-only.md -R dev/docs_build/dev/reports/PR_26130_018-text-to-speech-v2-workspace-save-contract.md -> dev/reports/PR_26130_018-text-to-speech-v2-workspace-save-contract.md -R dev/docs_build/dev/reports/PR_26130_019-text-to-speech-v2-schema-and-tool-json-nav.md -> dev/reports/PR_26130_019-text-to-speech-v2-schema-and-tool-json-nav.md -R dev/docs_build/dev/reports/PR_26130_020-text-to-speech-v2-sample-json-source.md -> dev/reports/PR_26130_020-text-to-speech-v2-sample-json-source.md -R dev/docs_build/dev/reports/PR_26130_021-text-to-speech-v2-fullscreen-and-source-fix.md -> dev/reports/PR_26130_021-text-to-speech-v2-fullscreen-and-source-fix.md -R dev/docs_build/dev/reports/PR_26130_022-text-to-speech-v2-layout-schema-cleanup.md -> dev/reports/PR_26130_022-text-to-speech-v2-layout-schema-cleanup.md -R dev/docs_build/dev/reports/PR_26130_023-text-to-speech-v2-layout-height-fix.md -> dev/reports/PR_26130_023-text-to-speech-v2-layout-height-fix.md -R dev/docs_build/dev/reports/PR_26130_024-text-to-speech-v2-fullscreen-scroll-and-workspace-tile.md -> dev/reports/PR_26130_024-text-to-speech-v2-fullscreen-scroll-and-workspace-tile.md -R dev/docs_build/dev/reports/PR_26130_025-text-to-speech-v2-deep-rename-and-accordion-state.md -> dev/reports/PR_26130_025-text-to-speech-v2-deep-rename-and-accordion-state.md -R dev/docs_build/dev/reports/PR_26130_026-text-to-speech-v2-queue-removal-and-layout-fix.md -> dev/reports/PR_26130_026-text-to-speech-v2-queue-removal-and-layout-fix.md -R dev/docs_build/dev/reports/PR_26130_027-text-to-speech-v2-scrollbar-and-nav-css.md -> dev/reports/PR_26130_027-text-to-speech-v2-scrollbar-and-nav-css.md -R dev/docs_build/dev/reports/PR_26130_028-text-to-speech-v2-empty-array-save-fix.md -> dev/reports/PR_26130_028-text-to-speech-v2-empty-array-save-fix.md -R dev/docs_build/dev/reports/PR_26130_029-tools-index-cleanup-and-text-to-speech-count.md -> dev/reports/PR_26130_029-tools-index-cleanup-and-text-to-speech-count.md -R dev/docs_build/dev/reports/PR_26130_030-remove-deprecated-tools-and-align-tile-actions.md -> dev/reports/PR_26130_030-remove-deprecated-tools-and-align-tile-actions.md -R dev/docs_build/dev/reports/PR_26130_031-workspace-status-preview-and-text2speech-scroll-cleanup.md -> dev/reports/PR_26130_031-workspace-status-preview-and-text2speech-scroll-cleanup.md -R dev/docs_build/dev/reports/PR_26130_032-text-to-speech-v2-status-log-fill.md -> dev/reports/PR_26130_032-text-to-speech-v2-status-log-fill.md -R dev/docs_build/dev/reports/PR_26130_034-active-game-lifecycle-controls.md -> dev/reports/PR_26130_034-active-game-lifecycle-controls.md -R dev/docs_build/dev/reports/PR_26133_099-storage-preview-workspace-followup_report.md -> dev/reports/PR_26133_099-storage-preview-workspace-followup_report.md -R dev/docs_build/dev/reports/PR_26133_100-object-vector-shape-selection-fixes_report.md -> dev/reports/PR_26133_100-object-vector-shape-selection-fixes_report.md -R dev/docs_build/dev/reports/PR_26133_101-object-vector-zoom-and-layout-fixes_report.md -> dev/reports/PR_26133_101-object-vector-zoom-and-layout-fixes_report.md -R dev/docs_build/dev/reports/PR_26133_102-object-vector-scale-anchor-fix_report.md -> dev/reports/PR_26133_102-object-vector-scale-anchor-fix_report.md -R dev/docs_build/dev/reports/PR_26133_103-object-vector-snap-drag-fix_report.md -> dev/reports/PR_26133_103-object-vector-snap-drag-fix_report.md -R dev/docs_build/dev/reports/PR_26133_104-object-vector-transform-ui-cleanup_report.md -> dev/reports/PR_26133_104-object-vector-transform-ui-cleanup_report.md -R dev/docs_build/dev/reports/PR_26133_105-object-vector-snapline-scale-controls_report.md -> dev/reports/PR_26133_105-object-vector-snapline-scale-controls_report.md -R dev/docs_build/dev/reports/PR_26133_106-asteroids-bezel-rounding-fixes_report.md -> dev/reports/PR_26133_106-asteroids-bezel-rounding-fixes_report.md -R dev/docs_build/dev/reports/PR_26133_107-asteroids-bezel-collision-fixes_report.md -> dev/reports/PR_26133_107-asteroids-bezel-collision-fixes_report.md -R dev/docs_build/dev/reports/PR_26133_108-shared-vector-collision-and-bezel-fix_report.md -> dev/reports/PR_26133_108-shared-vector-collision-and-bezel-fix_report.md -R dev/docs_build/dev/reports/PR_26133_109-object-vector-fullscreen-pan-and-bezel-fix_report.md -> dev/reports/PR_26133_109-object-vector-fullscreen-pan-and-bezel-fix_report.md -R dev/docs_build/dev/reports/PR_26133_110-collision-inspector-and-background-flow_report.md -> dev/reports/PR_26133_110-collision-inspector-and-background-flow_report.md -R dev/docs_build/dev/reports/PR_26133_111-engine-background-render-pipeline_report.md -> dev/reports/PR_26133_111-engine-background-render-pipeline_report.md -R dev/docs_build/dev/reports/PR_26133_112-object-vector-shape-geometry-layout_report.md -> dev/reports/PR_26133_112-object-vector-shape-geometry-layout_report.md -R dev/docs_build/dev/reports/PR_26133_113-manifest-vector-map-migration_report.md -> dev/reports/PR_26133_113-manifest-vector-map-migration_report.md -R dev/docs_build/dev/reports/PR_26133_114-asteroids-manifest-geometry-completion_report.md -> dev/reports/PR_26133_114-asteroids-manifest-geometry-completion_report.md -R dev/docs_build/dev/reports/PR_26133_115-object-vector-studio-manifest-map-cleanup_report.md -> dev/reports/PR_26133_115-object-vector-studio-manifest-map-cleanup_report.md -R dev/docs_build/dev/reports/PR_26133_116-asteroids-vector-map-ssoT-cleanup_report.md -> dev/reports/PR_26133_116-asteroids-vector-map-ssoT-cleanup_report.md -R dev/docs_build/dev/reports/PR_26133_117-asteroids-older-vector-geometry-restore_report.md -> dev/reports/PR_26133_117-asteroids-older-vector-geometry-restore_report.md -R dev/docs_build/dev/reports/PR_26133_118-asteroids-single-vector-geometry-source_report.md -> dev/reports/PR_26133_118-asteroids-single-vector-geometry-source_report.md -R dev/docs_build/dev/reports/PR_26133_119-object-vector-delete-and-manifest-cleanup_report.md -> dev/reports/PR_26133_119-object-vector-delete-and-manifest-cleanup_report.md -R dev/docs_build/dev/reports/PR_26133_120-object-vector-shapes-ssoT-cleanup_report.md -> dev/reports/PR_26133_120-object-vector-shapes-ssoT-cleanup_report.md -R dev/docs_build/dev/reports/PR_26133_121-object-vector-role-flatten-and-game-discovery_report.md -> dev/reports/PR_26133_121-object-vector-role-flatten-and-game-discovery_report.md -R dev/docs_build/dev/reports/PR_26133_122-object-vector-final-manifest-cleanup_report.md -> dev/reports/PR_26133_122-object-vector-final-manifest-cleanup_report.md -R dev/docs_build/dev/reports/PR_26133_123-object-vector-workspace-schema-cleanup_report.md -> dev/reports/PR_26133_123-object-vector-workspace-schema-cleanup_report.md -R dev/docs_build/dev/reports/PR_26133_124-object-vector-final-runtime-cleanup_report.md -> dev/reports/PR_26133_124-object-vector-final-runtime-cleanup_report.md -R dev/docs_build/dev/reports/PR_26133_125-asteroids-manifest-demo-attract-rendering_report.md -> dev/reports/PR_26133_125-asteroids-manifest-demo-attract-rendering_report.md -R dev/docs_build/dev/reports/PR_26133_126-asteroids-manifest-bullet-rotation_report.md -> dev/reports/PR_26133_126-asteroids-manifest-bullet-rotation_report.md -R dev/docs_build/dev/reports/PR_26133_127-asteroids-manifest-render-path-cleanup_report.md -> dev/reports/PR_26133_127-asteroids-manifest-render-path-cleanup_report.md -R dev/docs_build/dev/reports/PR_26133_128-asteroids-effect-render-path-audit_report.md -> dev/reports/PR_26133_128-asteroids-effect-render-path-audit_report.md -R dev/docs_build/dev/reports/PR_26133_129-asteroids-manifest-runtime-normalization_report.md -> dev/reports/PR_26133_129-asteroids-manifest-runtime-normalization_report.md -R dev/docs_build/dev/reports/PR_26139_001-asteroids-dvg-manifest-geometry_report.md -> dev/reports/PR_26139_001-asteroids-dvg-manifest-geometry_report.md -R dev/docs_build/dev/reports/PR_26139_003-collision-inspector-v2_report.md -> dev/reports/PR_26139_003-collision-inspector-v2_report.md -R dev/docs_build/dev/reports/PR_26139_004-collision-inspector-engine-alignment_report.md -> dev/reports/PR_26139_004-collision-inspector-engine-alignment_report.md -R dev/docs_build/dev/reports/PR_26139_005-collision-inspector-shared-tool-polish_report.md -> dev/reports/PR_26139_005-collision-inspector-shared-tool-polish_report.md -R dev/docs_build/dev/reports/PR_26139_006-collision-inspector-template-layout-fixes_report.md -> dev/reports/PR_26139_006-collision-inspector-template-layout-fixes_report.md -R dev/docs_build/dev/reports/PR_26139_007-collision-inspector-results-layout_report.md -> dev/reports/PR_26139_007-collision-inspector-results-layout_report.md -R dev/docs_build/dev/reports/PR_26139_008-collision-inspector-template-reset_report.md -> dev/reports/PR_26139_008-collision-inspector-template-reset_report.md -R dev/docs_build/dev/reports/PR_26139_009-collision-inspector-css-template-only_report.md -> dev/reports/PR_26139_009-collision-inspector-css-template-only_report.md -R dev/docs_build/dev/reports/PR_26139_010-collision-inspector-usability-polish_report.md -> dev/reports/PR_26139_010-collision-inspector-usability-polish_report.md -R dev/docs_build/dev/reports/PR_26139_011-shared-world-scale-normalization_report.md -> dev/reports/PR_26139_011-shared-world-scale-normalization_report.md -R dev/docs_build/dev/reports/PR_26139_012-collision-orientation-runtime-alignment_report.md -> dev/reports/PR_26139_012-collision-orientation-runtime-alignment_report.md -R dev/docs_build/dev/reports/PR_26139_013-final-transform-pipeline-cleanup_report.md -> dev/reports/PR_26139_013-final-transform-pipeline-cleanup_report.md -R dev/docs_build/dev/reports/PR_26139_014-shared-transform-service-extraction_report.md -> dev/reports/PR_26139_014-shared-transform-service-extraction_report.md -R dev/docs_build/dev/reports/PR_26139_015-manifest-background-asset-resolution_report.md -> dev/reports/PR_26139_015-manifest-background-asset-resolution_report.md -R dev/docs_build/dev/reports/PR_26139_016-final-manifest-runtime-cleanup_report.md -> dev/reports/PR_26139_016-final-manifest-runtime-cleanup_report.md -R dev/docs_build/dev/reports/PR_26139_017-game-index-preview-manifest-resolution_report.md -> dev/reports/PR_26139_017-game-index-preview-manifest-resolution_report.md -R dev/docs_build/dev/reports/PR_26139_018-asset-manager-id-builder-fixes_report.md -> dev/reports/PR_26139_018-asset-manager-id-builder-fixes_report.md -R dev/docs_build/dev/reports/PR_26139_019-game-manifest-version-preview-normalization_report.md -> dev/reports/PR_26139_019-game-manifest-version-preview-normalization_report.md -R dev/docs_build/dev/reports/PR_26139_020-remove-legacy-tool-references-from-game-manifests_report.md -> dev/reports/PR_26139_020-remove-legacy-tool-references-from-game-manifests_report.md -R dev/docs_build/dev/reports/PR_26139_021-manifest-tooling-normalization-followup_report.md -> dev/reports/PR_26139_021-manifest-tooling-normalization-followup_report.md -R dev/docs_build/dev/reports/PR_26139_022-final-manifest-audit-and-cleanup_report.md -> dev/reports/PR_26139_022-final-manifest-audit-and-cleanup_report.md -R dev/docs_build/dev/reports/PR_26139_023-shared-debug-config-normalization_report.md -> dev/reports/PR_26139_023-shared-debug-config-normalization_report.md -R dev/docs_build/dev/reports/PR_26139_024-workspace-manager-schema-ref-resolution-fix_report.md -> dev/reports/PR_26139_024-workspace-manager-schema-ref-resolution-fix_report.md -R dev/docs_build/dev/reports/PR_26139_025-schema-regression-followup_report.md -> dev/reports/PR_26139_025-schema-regression-followup_report.md -R dev/docs_build/dev/reports/PR_26139_026-asteroids-weighted-beat-timing_report.md -> dev/reports/PR_26139_026-asteroids-weighted-beat-timing_report.md -R dev/docs_build/dev/reports/PR_26139_027-asteroids-beat-timing-helper-cleanup_report.md -> dev/reports/PR_26139_027-asteroids-beat-timing-helper-cleanup_report.md -R dev/docs_build/dev/reports/PR_26139_028-asteroids-game-scene-cleanup_report.md -> dev/reports/PR_26139_028-asteroids-game-scene-cleanup_report.md -R dev/docs_build/dev/reports/PR_26139_029-remove-skin-editor-and-skin-main-files_report.md -> dev/reports/PR_26139_029-remove-skin-editor-and-skin-main-files_report.md -R dev/docs_build/dev/reports/PR_26139_030-shared-utils-duplicate-method-extraction_report.md -> dev/reports/PR_26139_030-shared-utils-duplicate-method-extraction_report.md -R dev/docs_build/dev/reports/PR_26140_031-dupe-scanner-node-modules-exclusion_report.md -> dev/reports/PR_26140_031-dupe-scanner-node-modules-exclusion_report.md -R dev/docs_build/dev/reports/PR_26140_032-shared-utils-phase-1_report.md -> dev/reports/PR_26140_032-shared-utils-phase-1_report.md -R dev/docs_build/dev/reports/PR_26140_033-shared-utils-phase-2_report.md -> dev/reports/PR_26140_033-shared-utils-phase-2_report.md -R dev/docs_build/dev/reports/PR_26140_034-shared-utils-phase-3_report.md -> dev/reports/PR_26140_034-shared-utils-phase-3_report.md -R dev/docs_build/dev/reports/PR_26140_035-shared-utils-phase-4-finalization_report.md -> dev/reports/PR_26140_035-shared-utils-phase-4-finalization_report.md -R dev/docs_build/dev/reports/PR_26140_036-remove-import-alias-confusion_report.md -> dev/reports/PR_26140_036-remove-import-alias-confusion_report.md -R dev/docs_build/dev/reports/PR_26140_037-remove-export-alias-confusion_report.md -> dev/reports/PR_26140_037-remove-export-alias-confusion_report.md -R dev/docs_build/dev/reports/PR_26140_038-canonical-shared-utility-naming-final-pass_report.md -> dev/reports/PR_26140_038-canonical-shared-utility-naming-final-pass_report.md -R dev/docs_build/dev/reports/PR_26140_039-intentional-alias-ledger-guard_report.md -> dev/reports/PR_26140_039-intentional-alias-ledger-guard_report.md -R dev/docs_build/dev/reports/PR_26140_048-move-file-persistence-to-engine_report.md -> dev/reports/PR_26140_048-move-file-persistence-to-engine_report.md -R dev/docs_build/dev/reports/PR_26140_049-normalize-vector-tool-zoom-percent_report.md -> dev/reports/PR_26140_049-normalize-vector-tool-zoom-percent_report.md -R dev/docs_build/dev/reports/PR_26140_050-remove-vector-hidden-zoom-scale_report.md -> dev/reports/PR_26140_050-remove-vector-hidden-zoom-scale_report.md -R dev/docs_build/dev/reports/PR_26146_002-midi-studio-v2-details_validation.md -> dev/reports/PR_26146_002-midi-studio-v2-details_validation.md -R dev/docs_build/dev/reports/PR_26146_003-build-midi-tools-v2_validation.md -> dev/reports/PR_26146_003-build-midi-tools-v2_validation.md -R dev/docs_build/dev/reports/PR_26146_004-midi-studio-v2-real-playback-foundation_validation.md -> dev/reports/PR_26146_004-midi-studio-v2-real-playback-foundation_validation.md -R dev/docs_build/dev/reports/PR_26146_005-midi-studio-v2-midi-source-inspection_validation.md -> dev/reports/PR_26146_005-midi-studio-v2-midi-source-inspection_validation.md -R dev/docs_build/dev/reports/PR_26146_006-midi-studio-v2-header-actions-layout_validation.md -> dev/reports/PR_26146_006-midi-studio-v2-header-actions-layout_validation.md -R dev/docs_build/dev/reports/PR_26146_007-midi-studio-v2-shared-midi-parser-foundation_validation.md -> dev/reports/PR_26146_007-midi-studio-v2-shared-midi-parser-foundation_validation.md -R dev/docs_build/dev/reports/PR_26146_008-midi-studio-v2-normalized-event-timeline_validation.md -> dev/reports/PR_26146_008-midi-studio-v2-normalized-event-timeline_validation.md -R dev/docs_build/dev/reports/PR_26146_009-midi-studio-v2-song-sheet-foundation_validation.md -> dev/reports/PR_26146_009-midi-studio-v2-song-sheet-foundation_validation.md -R dev/docs_build/dev/reports/PR_26146_010-midi-studio-v2-guided-song-sheet-fields_validation.md -> dev/reports/PR_26146_010-midi-studio-v2-guided-song-sheet-fields_validation.md -R dev/docs_build/dev/reports/PR_26146_011-midi-studio-v2-multi-instrument-grid_validation.md -> dev/reports/PR_26146_011-midi-studio-v2-multi-instrument-grid_validation.md -R dev/docs_build/dev/reports/PR_26146_012-midi-studio-v2-grid-snapping-and-lane-generation_validation.md -> dev/reports/PR_26146_012-midi-studio-v2-grid-snapping-and-lane-generation_validation.md -R dev/docs_build/dev/reports/PR_26146_013-midi-studio-v2-playhead-loop-and-sections_validation.md -> dev/reports/PR_26146_013-midi-studio-v2-playhead-loop-and-sections_validation.md -R dev/docs_build/dev/reports/PR_26146_014-midi-studio-v2-uat-testability-and-guided-defaults_validation.md -> dev/reports/PR_26146_014-midi-studio-v2-uat-testability-and-guided-defaults_validation.md -R dev/docs_build/dev/reports/PR_26146_015-midi-studio-v2-uat-layout-repair_validation.md -> dev/reports/PR_26146_015-midi-studio-v2-uat-layout-repair_validation.md -R dev/docs_build/dev/reports/PR_26146_016-midi-studio-v2-audible-preview-engine_validation.md -> dev/reports/PR_26146_016-midi-studio-v2-audible-preview-engine_validation.md -R dev/docs_build/dev/reports/PR_26146_017-midi-studio-v2-preview-instrument-packs_validation.md -> dev/reports/PR_26146_017-midi-studio-v2-preview-instrument-packs_validation.md -R dev/docs_build/dev/reports/PR_26146_018-midi-studio-v2-playable-mvp-closeout_validation.md -> dev/reports/PR_26146_018-midi-studio-v2-playable-mvp-closeout_validation.md -R dev/docs_build/dev/reports/PR_26146_019-midi-studio-v2-spreadsheet-note-grid_validation.md -> dev/reports/PR_26146_019-midi-studio-v2-spreadsheet-note-grid_validation.md -R dev/docs_build/dev/reports/PR_26146_020-midi-studio-v2-signal-style-note-table_validation.md -> dev/reports/PR_26146_020-midi-studio-v2-signal-style-note-table_validation.md -R dev/docs_build/dev/reports/PR_26146_021-midi-studio-v2-testable-playable-build_validation.md -> dev/reports/PR_26146_021-midi-studio-v2-testable-playable-build_validation.md -R dev/docs_build/dev/reports/PR_26146_022-midi-studio-v2-uat-completion-build_validation.md -> dev/reports/PR_26146_022-midi-studio-v2-uat-completion-build_validation.md -R dev/docs_build/dev/reports/PR_26146_023-midi-studio-v2-uat-layout-roadmap-and-playable-manifest_validation.md -> dev/reports/PR_26146_023-midi-studio-v2-uat-layout-roadmap-and-playable-manifest_validation.md -R dev/docs_build/dev/reports/PR_26146_024-midi-studio-v2-studio-layout-correction_validation.md -> dev/reports/PR_26146_024-midi-studio-v2-studio-layout-correction_validation.md -R dev/docs_build/dev/reports/PR_26146_025-midi-studio-v2-timeline-instrument-rows-and-songs_validation.md -> dev/reports/PR_26146_025-midi-studio-v2-timeline-instrument-rows-and-songs_validation.md -R dev/docs_build/dev/reports/PR_26146_026-midi-studio-v2-uat-usability-and-sound-repair_validation.md -> dev/reports/PR_26146_026-midi-studio-v2-uat-usability-and-sound-repair_validation.md -R dev/docs_build/dev/reports/PR_26146_027-midi-studio-v2-instrument-import-and-layout-repair_validation.md -> dev/reports/PR_26146_027-midi-studio-v2-instrument-import-and-layout-repair_validation.md -R dev/docs_build/dev/reports/PR_26146_028-midi-studio-v2-octave-timeline-editor_validation.md -> dev/reports/PR_26146_028-midi-studio-v2-octave-timeline-editor_validation.md -R dev/docs_build/dev/reports/PR_26146_029-midi-studio-v2-octave-grid-density-and-chords_validation.md -> dev/reports/PR_26146_029-midi-studio-v2-octave-grid-density-and-chords_validation.md -R dev/docs_build/dev/reports/PR_26146_030-midi-studio-v2-instrument-row-polish_validation.md -> dev/reports/PR_26146_030-midi-studio-v2-instrument-row-polish_validation.md -R dev/docs_build/dev/reports/PR_26146_031-midi-studio-v2-instrument-audibility-and-tooltips_validation.md -> dev/reports/PR_26146_031-midi-studio-v2-instrument-audibility-and-tooltips_validation.md -R dev/docs_build/dev/reports/PR_26146_032-midi-studio-v2-fast-note-editing-and-keyboard-flow_validation.md -> dev/reports/PR_26146_032-midi-studio-v2-fast-note-editing-and-keyboard-flow_validation.md -R dev/docs_build/dev/reports/PR_26146_033-midi-studio-v2-implementation-audit.md -> dev/reports/PR_26146_033-midi-studio-v2-implementation-audit.md -R dev/docs_build/dev/reports/PR_26146_033-midi-studio-v2-implementation-audit_validation.md -> dev/reports/PR_26146_033-midi-studio-v2-implementation-audit_validation.md -R dev/docs_build/dev/reports/PR_26146_034-midi-studio-v2-export-ui-simplification_validation.md -> dev/reports/PR_26146_034-midi-studio-v2-export-ui-simplification_validation.md -R dev/docs_build/dev/reports/PR_26146_035-midi-studio-v2-octave-grid-freeze-and-highlight_validation.md -> dev/reports/PR_26146_035-midi-studio-v2-octave-grid-freeze-and-highlight_validation.md -R dev/docs_build/dev/reports/PR_26146_036-midi-studio-v2-octave-grid-layout-polish_validation.md -> dev/reports/PR_26146_036-midi-studio-v2-octave-grid-layout-polish_validation.md -R dev/docs_build/dev/reports/PR_26146_037-midi-studio-v2-grid-performance-and-json-header-polish_validation.md -> dev/reports/PR_26146_037-midi-studio-v2-grid-performance-and-json-header-polish_validation.md -R dev/docs_build/dev/reports/PR_26146_038-midi-studio-v2-instrument-grid-scroll-and-cell-width_validation.md -> dev/reports/PR_26146_038-midi-studio-v2-instrument-grid-scroll-and-cell-width_validation.md -R dev/docs_build/dev/reports/PR_26146_039-midi-studio-v2-octave-grid-zoom-and-square-cells_validation.md -> dev/reports/PR_26146_039-midi-studio-v2-octave-grid-zoom-and-square-cells_validation.md -R dev/docs_build/dev/reports/PR_26146_040-midi-studio-v2-piano-key-grid-height_validation.md -> dev/reports/PR_26146_040-midi-studio-v2-piano-key-grid-height_validation.md -R dev/docs_build/dev/reports/PR_26146_041-midi-studio-v2-piano-style-and-section-feedback_validation.md -> dev/reports/PR_26146_041-midi-studio-v2-piano-style-and-section-feedback_validation.md -R dev/docs_build/dev/reports/PR_26146_042-midi-studio-v2-single-studio-octave-editor_validation.md -> dev/reports/PR_26146_042-midi-studio-v2-single-studio-octave-editor_validation.md -R dev/docs_build/dev/reports/PR_26146_043-midi-studio-v2-piano-roll-keyboard-grid_validation.md -> dev/reports/PR_26146_043-midi-studio-v2-piano-roll-keyboard-grid_validation.md -R dev/docs_build/dev/reports/PR_26146_044-midi-studio-v2-piano-key-right-alignment_validation.md -> dev/reports/PR_26146_044-midi-studio-v2-piano-key-right-alignment_validation.md -R dev/docs_build/dev/reports/PR_26146_045-midi-studio-v2-canonical-song-model-cleanup_validation.md -> dev/reports/PR_26146_045-midi-studio-v2-canonical-song-model-cleanup_validation.md -R dev/docs_build/dev/reports/PR_26146_045-midi-studio-v2-duplicate-data-audit.md -> dev/reports/PR_26146_045-midi-studio-v2-duplicate-data-audit.md -R dev/docs_build/dev/reports/PR_26146_046-midi-studio-v2-tab-cleanup-and-section-warning-repair_validation.md -> dev/reports/PR_26146_046-midi-studio-v2-tab-cleanup-and-section-warning-repair_validation.md -R dev/docs_build/dev/reports/PR_26146_047-midi-studio-v2-note-edit-persistence-and-playback-truth_validation.md -> dev/reports/PR_26146_047-midi-studio-v2-note-edit-persistence-and-playback-truth_validation.md -R dev/docs_build/dev/reports/PR_26146_048-midi-studio-v2-launch-mode-save-ownership_validation.md -> dev/reports/PR_26146_048-midi-studio-v2-launch-mode-save-ownership_validation.md -R dev/docs_build/dev/reports/PR_26146_049-midi-studio-v2-nav-and-tab-mode-polish_validation.md -> dev/reports/PR_26146_049-midi-studio-v2-nav-and-tab-mode-polish_validation.md -R dev/docs_build/dev/reports/PR_26146_050-midi-studio-v2-grid-shadow-outline-removal_validation.md -> dev/reports/PR_26146_050-midi-studio-v2-grid-shadow-outline-removal_validation.md -R dev/docs_build/dev/reports/PR_26146_051-midi-studio-v2-canvas-octave-timeline-foundation_validation.md -> dev/reports/PR_26146_051-midi-studio-v2-canvas-octave-timeline-foundation_validation.md -R dev/docs_build/dev/reports/PR_26146_052-midi-studio-v2-song-setup-tab-cleanup_validation.md -> dev/reports/PR_26146_052-midi-studio-v2-song-setup-tab-cleanup_validation.md -R dev/docs_build/dev/reports/PR_26146_053-midi-studio-v2-song-setup-buckets-restore_validation.md -> dev/reports/PR_26146_053-midi-studio-v2-song-setup-buckets-restore_validation.md -R dev/docs_build/dev/reports/PR_26146_053-midi-studio-v2-tab-bucket-map.md -> dev/reports/PR_26146_053-midi-studio-v2-tab-bucket-map.md -R dev/docs_build/dev/reports/PR_26146_054-midi-studio-v2-existing-tab-bucket-consolidation_validation.md -> dev/reports/PR_26146_054-midi-studio-v2-existing-tab-bucket-consolidation_validation.md -R dev/docs_build/dev/reports/PR_26146_054-midi-studio-v2-tab-bucket-map.md -> dev/reports/PR_26146_054-midi-studio-v2-tab-bucket-map.md -R dev/docs_build/dev/reports/PR_26146_055-midi-studio-v2-unwired-control-audit.md -> dev/reports/PR_26146_055-midi-studio-v2-unwired-control-audit.md -R dev/docs_build/dev/reports/PR_26146_055-midi-studio-v2-unwired-control-visibility_validation.md -> dev/reports/PR_26146_055-midi-studio-v2-unwired-control-visibility_validation.md -R dev/docs_build/dev/reports/PR_26146_056-midi-studio-v2-canvas-note-editing-flow_validation.md -> dev/reports/PR_26146_056-midi-studio-v2-canvas-note-editing-flow_validation.md -R dev/docs_build/dev/reports/PR_26146_057-midi-studio-v2-ssot-control-map.md -> dev/reports/PR_26146_057-midi-studio-v2-ssot-control-map.md -R dev/docs_build/dev/reports/PR_26146_057-midi-studio-v2-ssot-export-and-future-controls_validation.md -> dev/reports/PR_26146_057-midi-studio-v2-ssot-export-and-future-controls_validation.md -R dev/docs_build/dev/reports/PR_26146_058-midi-studio-v2-export-ownership-map.md -> dev/reports/PR_26146_058-midi-studio-v2-export-ownership-map.md -R dev/docs_build/dev/reports/PR_26146_058-midi-studio-v2-export-tab-usability-and-render-plan_validation.md -> dev/reports/PR_26146_058-midi-studio-v2-export-tab-usability-and-render-plan_validation.md -R dev/docs_build/dev/reports/PR_26146_059-midi-studio-v2-export-wording-and-history-placeholders_validation.md -> dev/reports/PR_26146_059-midi-studio-v2-export-wording-and-history-placeholders_validation.md -R dev/docs_build/dev/reports/PR_26146_059-midi-studio-v2-wording-and-ssot-notes.md -> dev/reports/PR_26146_059-midi-studio-v2-wording-and-ssot-notes.md -R dev/docs_build/dev/reports/PR_26146_060-midi-studio-v2-song-fields-and-instrument-sync_validation.md -> dev/reports/PR_26146_060-midi-studio-v2-song-fields-and-instrument-sync_validation.md -R dev/docs_build/dev/reports/PR_26146_060-midi-studio-v2-ssot-selection-notes.md -> dev/reports/PR_26146_060-midi-studio-v2-ssot-selection-notes.md -R dev/docs_build/dev/reports/PR_26146_061-midi-studio-v2-instrument-editor-foundation_validation.md -> dev/reports/PR_26146_061-midi-studio-v2-instrument-editor-foundation_validation.md -R dev/docs_build/dev/reports/PR_26146_061-midi-studio-v2-instrument-ssot-map.md -> dev/reports/PR_26146_061-midi-studio-v2-instrument-ssot-map.md -R dev/docs_build/dev/reports/PR_26146_062-midi-studio-v2-song-sheet-ssot-map.md -> dev/reports/PR_26146_062-midi-studio-v2-song-sheet-ssot-map.md -R dev/docs_build/dev/reports/PR_26146_062-midi-studio-v2-song-sheet-structure-only_validation.md -> dev/reports/PR_26146_062-midi-studio-v2-song-sheet-structure-only_validation.md -R dev/docs_build/dev/reports/PR_26146_063-midi-studio-v2-song-notes-and-timeline-instruments-layout_validation.md -> dev/reports/PR_26146_063-midi-studio-v2-song-notes-and-timeline-instruments-layout_validation.md -R dev/docs_build/dev/reports/PR_26146_064-midi-studio-v2-field-grid-layouts_validation.md -> dev/reports/PR_26146_064-midi-studio-v2-field-grid-layouts_validation.md -R dev/docs_build/dev/reports/PR_26146_065-midi-studio-v2-control-ownership-matrix.md -> dev/reports/PR_26146_065-midi-studio-v2-control-ownership-matrix.md -R dev/docs_build/dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit.md -> dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit.md -R dev/docs_build/dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit_validation.md -> dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit_validation.md -R dev/docs_build/dev/reports/PR_26146_066-midi-studio-v2-timeline-instrument-compact-duplicate_validation.md -> dev/reports/PR_26146_066-midi-studio-v2-timeline-instrument-compact-duplicate_validation.md -R dev/docs_build/dev/reports/PR_26146_067-midi-studio-v2-instrument-management-workflow_validation.md -> dev/reports/PR_26146_067-midi-studio-v2-instrument-management-workflow_validation.md -R dev/docs_build/dev/reports/PR_26146_068-midi-studio-v2-accordion-and-canvas-key-repair_validation.md -> dev/reports/PR_26146_068-midi-studio-v2-accordion-and-canvas-key-repair_validation.md -R dev/docs_build/dev/reports/PR_26146_068-midi-studio-v2-accordion-audit.md -> dev/reports/PR_26146_068-midi-studio-v2-accordion-audit.md -R dev/docs_build/dev/reports/PR_26146_068-midi-studio-v2-canvas-scroll-header-notes.md -> dev/reports/PR_26146_068-midi-studio-v2-canvas-scroll-header-notes.md -R dev/docs_build/dev/reports/PR_26146_069-midi-studio-v2-section-color-visibility_validation.md -> dev/reports/PR_26146_069-midi-studio-v2-section-color-visibility_validation.md -R dev/docs_build/dev/reports/PR_26146_070-midi-studio-v2-section-semantics-map.md -> dev/reports/PR_26146_070-midi-studio-v2-section-semantics-map.md -R dev/docs_build/dev/reports/PR_26146_070-midi-studio-v2-song-classification-and-musical-sections_validation.md -> dev/reports/PR_26146_070-midi-studio-v2-song-classification-and-musical-sections_validation.md -R dev/docs_build/dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-builder_validation.md -> dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-builder_validation.md -R dev/docs_build/dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-map.md -> dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-map.md -R dev/docs_build/dev/reports/PR_26146_072_075_bundle_validation.md -> dev/reports/PR_26146_072_075_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_072_075_control_ownership_matrix.md -> dev/reports/PR_26146_072_075_control_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_072_075_section_sequence_map.md -> dev/reports/PR_26146_072_075_section_sequence_map.md -R dev/docs_build/dev/reports/PR_26146_072_080_control_ownership_matrix.md -> dev/reports/PR_26146_072_080_control_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_072_080_sequence_builder_map.md -> dev/reports/PR_26146_072_080_sequence_builder_map.md -R dev/docs_build/dev/reports/PR_26146_072_080_song_architecture_bundle_validation.md -> dev/reports/PR_26146_072_080_song_architecture_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_072_080_song_sheet_model.md -> dev/reports/PR_26146_072_080_song_sheet_model.md -R dev/docs_build/dev/reports/PR_26146_072_080_unwired_audit.md -> dev/reports/PR_26146_072_080_unwired_audit.md -R dev/docs_build/dev/reports/PR_26146_076_079_bundle_validation.md -> dev/reports/PR_26146_076_079_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_076_079_export_ownership_map.md -> dev/reports/PR_26146_076_079_export_ownership_map.md -R dev/docs_build/dev/reports/PR_26146_076_079_section_visibility_map.md -> dev/reports/PR_26146_076_079_section_visibility_map.md -R dev/docs_build/dev/reports/PR_26146_076_079_unwired_control_audit.md -> dev/reports/PR_26146_076_079_unwired_control_audit.md -R dev/docs_build/dev/reports/PR_26146_081_084_bundle_validation.md -> dev/reports/PR_26146_081_084_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_081_084_generation_flow.md -> dev/reports/PR_26146_081_084_generation_flow.md -R dev/docs_build/dev/reports/PR_26146_081_084_section_visibility_map.md -> dev/reports/PR_26146_081_084_section_visibility_map.md -R dev/docs_build/dev/reports/PR_26146_085_088_bundle_validation.md -> dev/reports/PR_26146_085_088_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_085_088_generation_mapping.md -> dev/reports/PR_26146_085_088_generation_mapping.md -R dev/docs_build/dev/reports/PR_26146_085_088_sync_audit.md -> dev/reports/PR_26146_085_088_sync_audit.md -R dev/docs_build/dev/reports/PR_26146_089_092_bundle_validation.md -> dev/reports/PR_26146_089_092_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_089_092_instrument_workflow_audit.md -> dev/reports/PR_26146_089_092_instrument_workflow_audit.md -R dev/docs_build/dev/reports/PR_26146_089_092_template_and_regeneration_map.md -> dev/reports/PR_26146_089_092_template_and_regeneration_map.md -R dev/docs_build/dev/reports/PR_26146_093_096_arrangement_visibility_map.md -> dev/reports/PR_26146_093_096_arrangement_visibility_map.md -R dev/docs_build/dev/reports/PR_26146_093_096_bundle_validation.md -> dev/reports/PR_26146_093_096_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_093_096_playback_workflow_audit.md -> dev/reports/PR_26146_093_096_playback_workflow_audit.md -R dev/docs_build/dev/reports/PR_26146_097_100_bundle_validation.md -> dev/reports/PR_26146_097_100_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_097_100_classification_workflow.md -> dev/reports/PR_26146_097_100_classification_workflow.md -R dev/docs_build/dev/reports/PR_26146_097_100_section_navigation_map.md -> dev/reports/PR_26146_097_100_section_navigation_map.md -R dev/docs_build/dev/reports/PR_26146_101_104_bundle_validation.md -> dev/reports/PR_26146_101_104_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_101_104_export_readiness_audit.md -> dev/reports/PR_26146_101_104_export_readiness_audit.md -R dev/docs_build/dev/reports/PR_26146_101_104_instrument_preset_map.md -> dev/reports/PR_26146_101_104_instrument_preset_map.md -R dev/docs_build/dev/reports/PR_26146_101_104_section_library_map.md -> dev/reports/PR_26146_101_104_section_library_map.md -R dev/docs_build/dev/reports/PR_26146_105_108_bundle_validation.md -> dev/reports/PR_26146_105_108_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_105_108_classification_map.md -> dev/reports/PR_26146_105_108_classification_map.md -R dev/docs_build/dev/reports/PR_26146_105_108_manifest_readiness_audit.md -> dev/reports/PR_26146_105_108_manifest_readiness_audit.md -R dev/docs_build/dev/reports/PR_26146_105_108_song_library_map.md -> dev/reports/PR_26146_105_108_song_library_map.md -R dev/docs_build/dev/reports/PR_26146_109_116_bundle_validation.md -> dev/reports/PR_26146_109_116_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_109_116_completion_audit.md -> dev/reports/PR_26146_109_116_completion_audit.md -R dev/docs_build/dev/reports/PR_26146_109_116_control_ownership_matrix.md -> dev/reports/PR_26146_109_116_control_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_109_116_manifest_export_readiness_audit.md -> dev/reports/PR_26146_109_116_manifest_export_readiness_audit.md -R dev/docs_build/dev/reports/PR_26146_109_116_playback_audit.md -> dev/reports/PR_26146_109_116_playback_audit.md -R dev/docs_build/dev/reports/PR_26146_109_116_song_sheet_uat_report.md -> dev/reports/PR_26146_109_116_song_sheet_uat_report.md -R dev/docs_build/dev/reports/PR_26146_109_116_unwired_audit.md -> dev/reports/PR_26146_109_116_unwired_audit.md -R dev/docs_build/dev/reports/PR_26146_117_124_bundle_validation.md -> dev/reports/PR_26146_117_124_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_117_124_final_uat_audit.md -> dev/reports/PR_26146_117_124_final_uat_audit.md -R dev/docs_build/dev/reports/PR_26146_117_124_generation_hardening_report.md -> dev/reports/PR_26146_117_124_generation_hardening_report.md -R dev/docs_build/dev/reports/PR_26146_117_124_library_hardening_report.md -> dev/reports/PR_26146_117_124_library_hardening_report.md -R dev/docs_build/dev/reports/PR_26146_117_124_manifest_music_map.md -> dev/reports/PR_26146_117_124_manifest_music_map.md -R dev/docs_build/dev/reports/PR_26146_117_124_midi_import_clarity_report.md -> dev/reports/PR_26146_117_124_midi_import_clarity_report.md -R dev/docs_build/dev/reports/PR_26146_117_124_workspace_handoff_report.md -> dev/reports/PR_26146_117_124_workspace_handoff_report.md -R dev/docs_build/dev/reports/PR_26146_125_132_bundle_validation.md -> dev/reports/PR_26146_125_132_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_125_132_duplicate_usage_review.md -> dev/reports/PR_26146_125_132_duplicate_usage_review.md -R dev/docs_build/dev/reports/PR_26146_125_132_export_manifest_readiness_audit.md -> dev/reports/PR_26146_125_132_export_manifest_readiness_audit.md -R dev/docs_build/dev/reports/PR_26146_125_132_final_uat_audit.md -> dev/reports/PR_26146_125_132_final_uat_audit.md -R dev/docs_build/dev/reports/PR_26146_125_132_playback_audit.md -> dev/reports/PR_26146_125_132_playback_audit.md -R dev/docs_build/dev/reports/PR_26146_125_132_song_model_audit.md -> dev/reports/PR_26146_125_132_song_model_audit.md -R dev/docs_build/dev/reports/PR_26146_125_132_ssot_ownership_matrix.md -> dev/reports/PR_26146_125_132_ssot_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_133_140_bundle_validation.md -> dev/reports/PR_26146_133_140_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_133_140_export_manifest_audit.md -> dev/reports/PR_26146_133_140_export_manifest_audit.md -R dev/docs_build/dev/reports/PR_26146_133_140_final_readiness_report.md -> dev/reports/PR_26146_133_140_final_readiness_report.md -R dev/docs_build/dev/reports/PR_26146_133_140_instrument_audit.md -> dev/reports/PR_26146_133_140_instrument_audit.md -R dev/docs_build/dev/reports/PR_26146_133_140_persistence_audit.md -> dev/reports/PR_26146_133_140_persistence_audit.md -R dev/docs_build/dev/reports/PR_26146_133_140_song_builder_audit.md -> dev/reports/PR_26146_133_140_song_builder_audit.md -R dev/docs_build/dev/reports/PR_26146_133_140_ssot_ownership_matrix.md -> dev/reports/PR_26146_133_140_ssot_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_133_140_timeline_audit.md -> dev/reports/PR_26146_133_140_timeline_audit.md -R dev/docs_build/dev/reports/PR_26146_133_140_ui_completion_audit.md -> dev/reports/PR_26146_133_140_ui_completion_audit.md -R dev/docs_build/dev/reports/PR_26146_141_160_bundle_validation.md -> dev/reports/PR_26146_141_160_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_141_160_duplicate_cleanup_report.md -> dev/reports/PR_26146_141_160_duplicate_cleanup_report.md -R dev/docs_build/dev/reports/PR_26146_141_160_export_manifest_audit.md -> dev/reports/PR_26146_141_160_export_manifest_audit.md -R dev/docs_build/dev/reports/PR_26146_141_160_final_completion_report.md -> dev/reports/PR_26146_141_160_final_completion_report.md -R dev/docs_build/dev/reports/PR_26146_141_160_instrument_audit.md -> dev/reports/PR_26146_141_160_instrument_audit.md -R dev/docs_build/dev/reports/PR_26146_141_160_persistence_audit.md -> dev/reports/PR_26146_141_160_persistence_audit.md -R dev/docs_build/dev/reports/PR_26146_141_160_playback_audit.md -> dev/reports/PR_26146_141_160_playback_audit.md -R dev/docs_build/dev/reports/PR_26146_141_160_song_setup_audit.md -> dev/reports/PR_26146_141_160_song_setup_audit.md -R dev/docs_build/dev/reports/PR_26146_141_160_ssot_ownership_matrix.md -> dev/reports/PR_26146_141_160_ssot_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_141_160_timeline_audit.md -> dev/reports/PR_26146_141_160_timeline_audit.md -R dev/docs_build/dev/reports/PR_26146_141_160_uat_guide.md -> dev/reports/PR_26146_141_160_uat_guide.md -R dev/docs_build/dev/reports/PR_26146_141_160_unwired_audit.md -> dev/reports/PR_26146_141_160_unwired_audit.md -R dev/docs_build/dev/reports/PR_26146_141_160_visible_control_inventory.md -> dev/reports/PR_26146_141_160_visible_control_inventory.md -R dev/docs_build/dev/reports/PR_26146_161_200_duplicate_usage_review.md -> dev/reports/PR_26146_161_200_duplicate_usage_review.md -R dev/docs_build/dev/reports/PR_26146_161_200_export_manifest_report.md -> dev/reports/PR_26146_161_200_export_manifest_report.md -R dev/docs_build/dev/reports/PR_26146_161_200_final_release_candidate_report.md -> dev/reports/PR_26146_161_200_final_release_candidate_report.md -R dev/docs_build/dev/reports/PR_26146_161_200_instrument_report.md -> dev/reports/PR_26146_161_200_instrument_report.md -R dev/docs_build/dev/reports/PR_26146_161_200_library_report.md -> dev/reports/PR_26146_161_200_library_report.md -R dev/docs_build/dev/reports/PR_26146_161_200_midi_import_report.md -> dev/reports/PR_26146_161_200_midi_import_report.md -R dev/docs_build/dev/reports/PR_26146_161_200_playback_report.md -> dev/reports/PR_26146_161_200_playback_report.md -R dev/docs_build/dev/reports/PR_26146_161_200_release_candidate_validation.md -> dev/reports/PR_26146_161_200_release_candidate_validation.md -R dev/docs_build/dev/reports/PR_26146_161_200_song_setup_report.md -> dev/reports/PR_26146_161_200_song_setup_report.md -R dev/docs_build/dev/reports/PR_26146_161_200_ssot_ownership_matrix.md -> dev/reports/PR_26146_161_200_ssot_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_161_200_timeline_report.md -> dev/reports/PR_26146_161_200_timeline_report.md -R dev/docs_build/dev/reports/PR_26146_161_200_visible_control_inventory.md -> dev/reports/PR_26146_161_200_visible_control_inventory.md -R dev/docs_build/dev/reports/PR_26146_161_200_workspace_handoff_report.md -> dev/reports/PR_26146_161_200_workspace_handoff_report.md -R dev/docs_build/dev/reports/PR_26146_201_220_export_manifest_report.md -> dev/reports/PR_26146_201_220_export_manifest_report.md -R dev/docs_build/dev/reports/PR_26146_201_220_final_stabilization_validation.md -> dev/reports/PR_26146_201_220_final_stabilization_validation.md -R dev/docs_build/dev/reports/PR_26146_201_220_json_roundtrip_report.md -> dev/reports/PR_26146_201_220_json_roundtrip_report.md -R dev/docs_build/dev/reports/PR_26146_201_220_playback_report.md -> dev/reports/PR_26146_201_220_playback_report.md -R dev/docs_build/dev/reports/PR_26146_201_220_prior_report_closure.md -> dev/reports/PR_26146_201_220_prior_report_closure.md -R dev/docs_build/dev/reports/PR_26146_201_220_remaining_warn_fail_report.md -> dev/reports/PR_26146_201_220_remaining_warn_fail_report.md -R dev/docs_build/dev/reports/PR_26146_201_220_ssot_ownership_matrix.md -> dev/reports/PR_26146_201_220_ssot_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_201_220_timeline_instrument_report.md -> dev/reports/PR_26146_201_220_timeline_instrument_report.md -R dev/docs_build/dev/reports/PR_26146_201_220_uat_ready_report.md -> dev/reports/PR_26146_201_220_uat_ready_report.md -R dev/docs_build/dev/reports/PR_26146_221_240_bundle_validation.md -> dev/reports/PR_26146_221_240_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_221_240_duplicate_usage_review.md -> dev/reports/PR_26146_221_240_duplicate_usage_review.md -R dev/docs_build/dev/reports/PR_26146_221_240_import_export_report.md -> dev/reports/PR_26146_221_240_import_export_report.md -R dev/docs_build/dev/reports/PR_26146_221_240_instrument_report.md -> dev/reports/PR_26146_221_240_instrument_report.md -R dev/docs_build/dev/reports/PR_26146_221_240_playback_report.md -> dev/reports/PR_26146_221_240_playback_report.md -R dev/docs_build/dev/reports/PR_26146_221_240_production_ready_audit.md -> dev/reports/PR_26146_221_240_production_ready_audit.md -R dev/docs_build/dev/reports/PR_26146_221_240_song_sheet_report.md -> dev/reports/PR_26146_221_240_song_sheet_report.md -R dev/docs_build/dev/reports/PR_26146_221_240_ssot_ownership_matrix.md -> dev/reports/PR_26146_221_240_ssot_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_221_240_timeline_report.md -> dev/reports/PR_26146_221_240_timeline_report.md -R dev/docs_build/dev/reports/PR_26146_281_340_duplicate_data_removed.md -> dev/reports/PR_26146_281_340_duplicate_data_removed.md -R dev/docs_build/dev/reports/PR_26146_281_340_prod_done_done_validation.md -> dev/reports/PR_26146_281_340_prod_done_done_validation.md -R dev/docs_build/dev/reports/PR_26146_281_340_prod_workflow_pass_report.md -> dev/reports/PR_26146_281_340_prod_workflow_pass_report.md -R dev/docs_build/dev/reports/PR_26146_281_340_red_controls_resolution.md -> dev/reports/PR_26146_281_340_red_controls_resolution.md -R dev/docs_build/dev/reports/PR_26146_281_340_remaining_future_controls.md -> dev/reports/PR_26146_281_340_remaining_future_controls.md -R dev/docs_build/dev/reports/PR_26146_281_340_ssot_ownership_matrix.md -> dev/reports/PR_26146_281_340_ssot_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_341_420_effects_advanced_report.md -> dev/reports/PR_26146_341_420_effects_advanced_report.md -R dev/docs_build/dev/reports/PR_26146_341_420_endstate_validation.md -> dev/reports/PR_26146_341_420_endstate_validation.md -R dev/docs_build/dev/reports/PR_26146_341_420_export_readiness_report.md -> dev/reports/PR_26146_341_420_export_readiness_report.md -R dev/docs_build/dev/reports/PR_26146_341_420_preview_engine_report.md -> dev/reports/PR_26146_341_420_preview_engine_report.md -R dev/docs_build/dev/reports/PR_26146_341_420_soundfont_preview_report.md -> dev/reports/PR_26146_341_420_soundfont_preview_report.md -R dev/docs_build/dev/reports/PR_26146_341_420_ssot_ownership_matrix.md -> dev/reports/PR_26146_341_420_ssot_ownership_matrix.md -R dev/docs_build/dev/reports/PR_26146_341_420_uat_ready_report.md -> dev/reports/PR_26146_341_420_uat_ready_report.md -R dev/docs_build/dev/reports/PR_26146_421_500_release_readiness_report.md -> dev/reports/PR_26146_421_500_release_readiness_report.md -R dev/docs_build/dev/reports/PR_26146_421_500_render_pipeline_report.md -> dev/reports/PR_26146_421_500_render_pipeline_report.md -R dev/docs_build/dev/reports/PR_26146_421_500_soundfont_runtime_report.md -> dev/reports/PR_26146_421_500_soundfont_runtime_report.md -R dev/docs_build/dev/reports/PR_26146_421_500_ssot_audit.md -> dev/reports/PR_26146_421_500_ssot_audit.md -R dev/docs_build/dev/reports/PR_26146_421_500_unwired_audit.md -> dev/reports/PR_26146_421_500_unwired_audit.md -R dev/docs_build/dev/reports/PR_26146_501_560_bundle_validation.md -> dev/reports/PR_26146_501_560_bundle_validation.md -R dev/docs_build/dev/reports/PR_26146_501_560_duplicate_review.md -> dev/reports/PR_26146_501_560_duplicate_review.md -R dev/docs_build/dev/reports/PR_26146_501_560_import_export_report.md -> dev/reports/PR_26146_501_560_import_export_report.md -R dev/docs_build/dev/reports/PR_26146_501_560_playback_report.md -> dev/reports/PR_26146_501_560_playback_report.md -R dev/docs_build/dev/reports/PR_26146_501_560_signoff_report.md -> dev/reports/PR_26146_501_560_signoff_report.md -R dev/docs_build/dev/reports/PR_26146_501_560_ssot_matrix.md -> dev/reports/PR_26146_501_560_ssot_matrix.md -R dev/docs_build/dev/reports/PR_26146_501_560_workspace_report.md -> dev/reports/PR_26146_501_560_workspace_report.md -R dev/docs_build/dev/reports/PR_26151_001-gamefoundry-tool-color-groups-validation.md -> dev/reports/PR_26151_001-gamefoundry-tool-color-groups-validation.md -R dev/docs_build/dev/reports/PR_26151_001-validation.md -> dev/reports/PR_26151_001-validation.md -R dev/docs_build/dev/reports/PR_26151_003-validation.md -> dev/reports/PR_26151_003-validation.md -R dev/docs_build/dev/reports/PR_26151_004-gamefoundry-site-structure-ssot-validation.md -> dev/reports/PR_26151_004-gamefoundry-site-structure-ssot-validation.md -R dev/docs_build/dev/reports/PR_26151_006-validation.md -> dev/reports/PR_26151_006-validation.md -R dev/docs_build/dev/reports/PR_26151_007-validation.md -> dev/reports/PR_26151_007-validation.md -R dev/docs_build/dev/reports/PR_26151_009-gamefoundry-breadcrumb-control-cleanup-validation.md -> dev/reports/PR_26151_009-gamefoundry-breadcrumb-control-cleanup-validation.md -R dev/docs_build/dev/reports/PR_26152_002-gamefoundry-mascot-integration-validation.md -> dev/reports/PR_26152_002-gamefoundry-mascot-integration-validation.md -R dev/docs_build/dev/reports/PR_26161_007-objects-model-simplification-report.md -> dev/reports/PR_26161_007-objects-model-simplification-report.md -R dev/docs_build/dev/reports/PR_26161_008_object_type_catalog.md -> dev/reports/PR_26161_008_object_type_catalog.md -R dev/docs_build/dev/reports/PR_26161_025-controls-authoritative-ownership-report.md -> dev/reports/PR_26161_025-controls-authoritative-ownership-report.md -R dev/docs_build/dev/reports/PR_26162_035-control-events-and-account-mapping.md -> dev/reports/PR_26162_035-control-events-and-account-mapping.md -R dev/docs_build/dev/reports/PR_26162_036-controls-account-followup.md -> dev/reports/PR_26162_036-controls-account-followup.md -R dev/docs_build/dev/reports/PR_26162_037-game-workspace-journey-deep-rename.md -> dev/reports/PR_26162_037-game-workspace-journey-deep-rename.md -R dev/docs_build/dev/reports/PR_26162_038-game-workspace-controls-cleanup.md -> dev/reports/PR_26162_038-game-workspace-controls-cleanup.md -R dev/docs_build/dev/reports/PR_26163_051-user-controls-profile-and-layout-alignment.md -> dev/reports/PR_26163_051-user-controls-profile-and-layout-alignment.md -R dev/docs_build/dev/reports/PR_26163_052-user-controls-device-selection-and-capture-fix.md -> dev/reports/PR_26163_052-user-controls-device-selection-and-capture-fix.md -R dev/docs_build/dev/reports/PR_26163_053-account-controls-user-scope-and-aside-stack.md -> dev/reports/PR_26163_053-account-controls-user-scope-and-aside-stack.md -R dev/docs_build/dev/reports/PR_26163_055-account-aside-left-column-accordion-fix.md -> dev/reports/PR_26163_055-account-aside-left-column-accordion-fix.md -R dev/docs_build/dev/reports/PR_26163_056-account-aside-template-toggle-alignment.md -> dev/reports/PR_26163_056-account-aside-template-toggle-alignment.md -R dev/docs_build/dev/reports/PR_26163_057-account-aside-color-alignment.md -> dev/reports/PR_26163_057-account-aside-color-alignment.md -R dev/docs_build/dev/reports/PR_26163_058-user-control-profile-selected-device-only.md -> dev/reports/PR_26163_058-user-control-profile-selected-device-only.md -R dev/docs_build/dev/reports/PR_26163_059-user-control-profile-generation-flow.md -> dev/reports/PR_26163_059-user-control-profile-generation-flow.md -R dev/docs_build/dev/reports/PR_26163_060-user-control-gamepad-generation-repair.md -> dev/reports/PR_26163_060-user-control-gamepad-generation-repair.md -R dev/docs_build/dev/reports/PR_26163_064-user-controls-controller-dropdown-selection.md -> dev/reports/PR_26163_064-user-controls-controller-dropdown-selection.md -R dev/docs_build/dev/reports/PR_26163_065-user-controls-multiple-profiles-per-controller.md -> dev/reports/PR_26163_065-user-controls-multiple-profiles-per-controller.md -R dev/docs_build/dev/reports/PR_26163_066-user-controls-layout-polish.md -> dev/reports/PR_26163_066-user-controls-layout-polish.md -R dev/docs_build/dev/reports/PR_26163_067-user-controls-profile-radio-groups.md -> dev/reports/PR_26163_067-user-controls-profile-radio-groups.md -R dev/docs_build/dev/reports/PR_26163_068-assets-tool-rebuild-from-v1-reference.md -> dev/reports/PR_26163_068-assets-tool-rebuild-from-v1-reference.md -R dev/docs_build/dev/reports/PR_26163_070-tags-and-assets-mvp-build.md -> dev/reports/PR_26163_070-tags-and-assets-mvp-build.md -R dev/docs_build/dev/reports/PR_26163_071-tags-assets-completion-fixes.md -> dev/reports/PR_26163_071-tags-assets-completion-fixes.md -R dev/docs_build/dev/reports/PR_26163_072-assets-source-upload-reference-details.md -> dev/reports/PR_26163_072-assets-source-upload-reference-details.md -R dev/docs_build/dev/reports/PR_26163_073-assets-source-rules-followup.md -> dev/reports/PR_26163_073-assets-source-rules-followup.md -R dev/docs_build/dev/reports/PR_26163_074-assets-multi-file-upload-project-write.md -> dev/reports/PR_26163_074-assets-multi-file-upload-project-write.md -R dev/docs_build/dev/reports/PR_26163_075-assets-upload-write-and-view-fix.md -> dev/reports/PR_26163_075-assets-upload-write-and-view-fix.md -R dev/docs_build/dev/reports/PR_26163_076-assets-upload-prod-alignment.md -> dev/reports/PR_26163_076-assets-upload-prod-alignment.md -R dev/docs_build/dev/reports/PR_26163_077-assets-upload-ux-and-duplicate-guard.md -> dev/reports/PR_26163_077-assets-upload-ux-and-duplicate-guard.md -R dev/docs_build/dev/reports/PR_26163_078-assets-inline-upload-progress.md -> dev/reports/PR_26163_078-assets-inline-upload-progress.md -R dev/docs_build/dev/reports/PR_26163_079-assets-byte-accurate-upload-progress.md -> dev/reports/PR_26163_079-assets-byte-accurate-upload-progress.md -R dev/docs_build/dev/reports/PR_26163_080-assets-delete-file-and-received-progress.md -> dev/reports/PR_26163_080-assets-delete-file-and-received-progress.md -R dev/docs_build/dev/reports/PR_26163_081-assets-upload-progress-auto-hide.md -> dev/reports/PR_26163_081-assets-upload-progress-auto-hide.md -R dev/docs_build/dev/reports/PR_26163_082-lazy-project-id-creation.md -> dev/reports/PR_26163_082-lazy-project-id-creation.md -R dev/docs_build/dev/reports/PR_26163_083-assets-upload-cleanup-fixes.md -> dev/reports/PR_26163_083-assets-upload-cleanup-fixes.md -R dev/docs_build/dev/reports/PR_26163_084-assets-fun-factor-and-foundry-bot.md -> dev/reports/PR_26163_084-assets-fun-factor-and-foundry-bot.md -R dev/docs_build/dev/reports/PR_26164_085-about-page-refresh.md -> dev/reports/PR_26164_085-about-page-refresh.md -R dev/docs_build/dev/reports/PR_26164_086-company-pages-creator-story.md -> dev/reports/PR_26164_086-company-pages-creator-story.md -R dev/docs_build/dev/reports/PR_26164_087-home-and-how-mascots.md -> dev/reports/PR_26164_087-home-and-how-mascots.md -R dev/docs_build/dev/reports/PR_26164_088-home-share-entry.md -> dev/reports/PR_26164_088-home-share-entry.md -R dev/docs_build/dev/reports/PR_26164_089-home-entry-card-thirds.md -> dev/reports/PR_26164_089-home-entry-card-thirds.md -R dev/docs_build/dev/reports/PR_26164_090-remove-mem-db-dev.md -> dev/reports/PR_26164_090-remove-mem-db-dev.md -R dev/docs_build/dev/reports/PR_26164_091-db-ddl-site-setup-governance.md -> dev/reports/PR_26164_091-db-ddl-site-setup-governance.md -R dev/docs_build/dev/reports/PR_26164_092-fix-db-identity-governance.md -> dev/reports/PR_26164_092-fix-db-identity-governance.md -R dev/docs_build/dev/reports/PR_26164_093-sign-in-route-cleanup.md -> dev/reports/PR_26164_093-sign-in-route-cleanup.md -R dev/docs_build/dev/reports/PR_26164_094-new-db-consumer-migration.md -> dev/reports/PR_26164_094-new-db-consumer-migration.md -R dev/docs_build/dev/reports/PR_26164_095-pr092-leftover-cleanup.md -> dev/reports/PR_26164_095-pr092-leftover-cleanup.md -R dev/docs_build/dev/reports/PR_26166_124-ai-platform-command-center.md -> dev/reports/PR_26166_124-ai-platform-command-center.md -R dev/docs_build/dev/reports/PR_26166_140-create-account-password-reset-pages.md -> dev/reports/PR_26166_140-create-account-password-reset-pages.md -R dev/docs_build/dev/reports/PR_26166_141-supabase-dev-auth-activation.md -> dev/reports/PR_26166_141-supabase-dev-auth-activation.md -R dev/docs_build/dev/reports/PR_26166_142-auth-status-backend-contract.md -> dev/reports/PR_26166_142-auth-status-backend-contract.md -R dev/docs_build/dev/reports/PR_26166_144-supabase-auth-preflight-selection-fix.md -> dev/reports/PR_26166_144-supabase-auth-preflight-selection-fix.md -R dev/docs_build/dev/reports/PR_26166_145-supabase-users-roles-cutover.md -> dev/reports/PR_26166_145-supabase-users-roles-cutover.md -R dev/docs_build/dev/reports/PR_26166_146-supabase-auth-default-provider.md -> dev/reports/PR_26166_146-supabase-auth-default-provider.md -R dev/docs_build/dev/reports/PR_26166_147-supabase-auth-live-validation.md -> dev/reports/PR_26166_147-supabase-auth-live-validation.md -R dev/docs_build/dev/reports/PR_26166_148-supabase-auth-readiness-gate.md -> dev/reports/PR_26166_148-supabase-auth-readiness-gate.md -R dev/docs_build/dev/reports/PR_26166_149-sign-in-live-supabase-flow.md -> dev/reports/PR_26166_149-sign-in-live-supabase-flow.md -R dev/docs_build/dev/reports/PR_26166_150-create-account-live-supabase-flow.md -> dev/reports/PR_26166_150-create-account-live-supabase-flow.md -R dev/docs_build/dev/reports/PR_26166_151-password-reset-live-supabase-flow.md -> dev/reports/PR_26166_151-password-reset-live-supabase-flow.md -R dev/docs_build/dev/reports/PR_26166_152-session-user-role-resolution.md -> dev/reports/PR_26166_152-session-user-role-resolution.md -R dev/docs_build/dev/reports/PR_26166_153-supabase-identity-bootstrap-and-provisioning.md -> dev/reports/PR_26166_153-supabase-identity-bootstrap-and-provisioning.md -R dev/docs_build/dev/reports/PR_26166_154-supabase-dev-tls-identity-readiness.md -> dev/reports/PR_26166_154-supabase-dev-tls-identity-readiness.md -R dev/docs_build/dev/reports/PR_26166_155-supabase-identity-tables-bootstrap.md -> dev/reports/PR_26166_155-supabase-identity-tables-bootstrap.md -R dev/docs_build/dev/reports/PR_26166_156-live-sign-in-and-provisioning.md -> dev/reports/PR_26166_156-live-sign-in-and-provisioning.md -R dev/docs_build/dev/reports/PR_26166_157-first-real-sign-in-validation.md -> dev/reports/PR_26166_157-first-real-sign-in-validation.md -R dev/docs_build/dev/reports/PR_26166_158-account-flow-error-polish.md -> dev/reports/PR_26166_158-account-flow-error-polish.md -R dev/docs_build/dev/reports/PR_26166_159-account-session-ui-state.md -> dev/reports/PR_26166_159-account-session-ui-state.md -R dev/docs_build/dev/reports/PR_26166_160-supabase-auth-dev-uat-closeout.md -> dev/reports/PR_26166_160-supabase-auth-dev-uat-closeout.md -R dev/docs_build/dev/reports/PR_26166_161-create-account-defect-fix.md -> dev/reports/PR_26166_161-create-account-defect-fix.md -R dev/docs_build/dev/reports/PR_26166_162-live-create-account-runtime-fix.md -> dev/reports/PR_26166_162-live-create-account-runtime-fix.md -R dev/docs_build/dev/reports/PR_26166_163-create-account-live-diagnostic-fix.md -> dev/reports/PR_26166_163-create-account-live-diagnostic-fix.md -R dev/docs_build/dev/reports/PR_26166_163-local-api-console-errors.txt -> dev/reports/PR_26166_163-local-api-console-errors.txt -R dev/docs_build/dev/reports/PR_26166_163-local-api-console.txt -> dev/reports/PR_26166_163-local-api-console.txt -R dev/docs_build/dev/reports/PR_26166_164-live-sign-in-runtime-fix_report.md -> dev/reports/PR_26166_164-live-sign-in-runtime-fix_report.md -R dev/docs_build/dev/reports/PR_26166_165-auth-test-user-cleanup_cleanup_report.md -> dev/reports/PR_26166_165-auth-test-user-cleanup_cleanup_report.md -R dev/docs_build/dev/reports/PR_26166_165-auth-test-user-cleanup_report.md -> dev/reports/PR_26166_165-auth-test-user-cleanup_report.md -R dev/docs_build/dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_cleanup_report.md -> dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_cleanup_report.md -R dev/docs_build/dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_report.md -> dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_report.md -R dev/docs_build/dev/reports/PR_26166_167-product-data-provider-contract-hardening_report.md -> dev/reports/PR_26166_167-product-data-provider-contract-hardening_report.md -R dev/docs_build/dev/reports/PR_26166_168-supabase-product-ddl_report.md -> dev/reports/PR_26166_168-supabase-product-ddl_report.md -R dev/docs_build/dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_cleanup_report.md -> dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_cleanup_report.md -R dev/docs_build/dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_report.md -> dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_report.md -R dev/docs_build/dev/reports/PR_26166_170-dev-product-data-cutover_cleanup_report.md -> dev/reports/PR_26166_170-dev-product-data-cutover_cleanup_report.md -R dev/docs_build/dev/reports/PR_26166_170-dev-product-data-cutover_report.md -> dev/reports/PR_26166_170-dev-product-data-cutover_report.md -R dev/docs_build/dev/reports/PR_26166_171-admin-db-viewer-provider-sources_cleanup_report.md -> dev/reports/PR_26166_171-admin-db-viewer-provider-sources_cleanup_report.md -R dev/docs_build/dev/reports/PR_26166_171-admin-db-viewer-provider-sources_report.md -> dev/reports/PR_26166_171-admin-db-viewer-provider-sources_report.md -R dev/docs_build/dev/reports/PR_26166_172-dev-db-migration-closeout-audit_cleanup_report.md -> dev/reports/PR_26166_172-dev-db-migration-closeout-audit_cleanup_report.md -R dev/docs_build/dev/reports/PR_26166_172-dev-db-migration-closeout-audit_report.md -> dev/reports/PR_26166_172-dev-db-migration-closeout-audit_report.md -R dev/docs_build/dev/reports/PR_26166_173-password-reset-rate-limit-message_report.md -> dev/reports/PR_26166_173-password-reset-rate-limit-message_report.md -R dev/docs_build/dev/reports/PR_26166_175-dev-admin-bootstrap-password-reset_report.md -> dev/reports/PR_26166_175-dev-admin-bootstrap-password-reset_report.md -R dev/docs_build/dev/reports/PR_26167_174-account-auth-page-unavailable-message.md -> dev/reports/PR_26167_174-account-auth-page-unavailable-message.md -R dev/docs_build/dev/reports/PR_26167_175-runtime-environment-branch-audit.md -> dev/reports/PR_26167_175-runtime-environment-branch-audit.md -R dev/docs_build/dev/reports/PR_26167_176-account-pages-single-auth-contract.md -> dev/reports/PR_26167_176-account-pages-single-auth-contract.md -R dev/docs_build/dev/reports/PR_26167_177-api-service-connection-only-config.md -> dev/reports/PR_26167_177-api-service-connection-only-config.md -R dev/docs_build/dev/reports/PR_26167_178-auth-error-message-normalization.md -> dev/reports/PR_26167_178-auth-error-message-normalization.md -R dev/docs_build/dev/reports/PR_26167_179-environment-agnostic-validation-gates.md -> dev/reports/PR_26167_179-environment-agnostic-validation-gates.md -R dev/docs_build/dev/reports/PR_26167_180-account-pages-remove-local-db-browser-contract.md -> dev/reports/PR_26167_180-account-pages-remove-local-db-browser-contract.md -R dev/docs_build/dev/reports/PR_26167_180-remove-sqlite-runtime-provider.md -> dev/reports/PR_26167_180-remove-sqlite-runtime-provider.md -R dev/docs_build/dev/reports/PR_26167_181-supabase-postgres-single-product-data-path.md -> dev/reports/PR_26167_181-supabase-postgres-single-product-data-path.md -R dev/docs_build/dev/reports/PR_26167_182-remove-provider-selection-runtime.md -> dev/reports/PR_26167_182-remove-provider-selection-runtime.md -R dev/docs_build/dev/reports/PR_26167_183-single-service-contract-validation.md -> dev/reports/PR_26167_183-single-service-contract-validation.md -R dev/docs_build/dev/reports/PR_26167_184-delete-sqlite-local-db-runtime-debt.md -> dev/reports/PR_26167_184-delete-sqlite-local-db-runtime-debt.md -R dev/docs_build/dev/reports/PR_26167_185-dev-creator-identity-seed-sync.md -> dev/reports/PR_26167_185-dev-creator-identity-seed-sync.md -R dev/docs_build/dev/reports/PR_26167_186-dev-identity-roles-and-sqlite-removal.md -> dev/reports/PR_26167_186-dev-identity-roles-and-sqlite-removal.md -R dev/docs_build/dev/reports/PR_26167_187-live-db-cleanup-and-platform-banner.md -> dev/reports/PR_26167_187-live-db-cleanup-and-platform-banner.md -R dev/docs_build/dev/reports/PR_26167_188-platform-banner-display-fix.md -> dev/reports/PR_26167_188-platform-banner-display-fix.md -R dev/docs_build/dev/reports/PR_26167_189-owner-role-branding-and-footer-banner.md -> dev/reports/PR_26167_189-owner-role-branding-and-footer-banner.md -R dev/docs_build/dev/reports/PR_26167_190-platform-banner-ux-cleanup.md -> dev/reports/PR_26167_190-platform-banner-ux-cleanup.md -R dev/docs_build/dev/reports/PR_26167_191-owner-operations-settings-and-role-cleanup.md -> dev/reports/PR_26167_191-owner-operations-settings-and-role-cleanup.md -R dev/docs_build/dev/reports/PR_26167_192-env-config-and-game-workspace-create-fix.md -> dev/reports/PR_26167_192-env-config-and-game-workspace-create-fix.md -R dev/docs_build/dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url-redo.md -> dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url-redo.md -R dev/docs_build/dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url.md -> dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url.md -R dev/docs_build/dev/reports/PR_26167_194-env-runtime-real-fix.md -> dev/reports/PR_26167_194-env-runtime-real-fix.md -R dev/docs_build/dev/reports/PR_26167_195-product-data-uses-database-url.md -> dev/reports/PR_26167_195-product-data-uses-database-url.md -R dev/docs_build/dev/reports/PR_26167_196-local-postgres-runtime-unblock.md -> dev/reports/PR_26167_196-local-postgres-runtime-unblock.md -R dev/docs_build/dev/reports/PR_26167_197-ddl-apply-supports-local-postgres.md -> dev/reports/PR_26167_197-ddl-apply-supports-local-postgres.md -R dev/docs_build/dev/reports/PR_26167_198-database-ssl-mode-contract.md -> dev/reports/PR_26167_198-database-ssl-mode-contract.md -R dev/docs_build/dev/reports/PR_26167_199-env-copy-source-governance.md -> dev/reports/PR_26167_199-env-copy-source-governance.md -R dev/docs_build/dev/reports/PR_26167_200-database-migration-apply-lane.md -> dev/reports/PR_26167_200-database-migration-apply-lane.md -R dev/docs_build/dev/reports/PR_26167_201-database-promotion-lane.md -> dev/reports/PR_26167_201-database-promotion-lane.md -R dev/docs_build/dev/reports/PR_26167_202-database-backup-restore-lane.md -> dev/reports/PR_26167_202-database-backup-restore-lane.md -R dev/docs_build/dev/reports/PR_26167_203-database-drift-validation.md -> dev/reports/PR_26167_203-database-drift-validation.md -R dev/docs_build/dev/reports/PR_26167_204-database-seed-separation.md -> dev/reports/PR_26167_204-database-seed-separation.md -R dev/docs_build/dev/reports/PR_26167_205-owner-operations-database-tools.md -> dev/reports/PR_26167_205-owner-operations-database-tools.md -R dev/docs_build/dev/reports/PR_26167_206-database-runbook.md -> dev/reports/PR_26167_206-database-runbook.md -R dev/docs_build/dev/reports/PR_26167_207-database-lane-hardening.md -> dev/reports/PR_26167_207-database-lane-hardening.md -R dev/docs_build/dev/reports/PR_26167_208-database-idempotency-final-check.md -> dev/reports/PR_26167_208-database-idempotency-final-check.md -R dev/docs_build/dev/reports/PR_26167_209-owner-database-status-surface.md -> dev/reports/PR_26167_209-owner-database-status-surface.md -R dev/docs_build/dev/reports/PR_26167_210-r2-project-assets-dev-storage.md -> dev/reports/PR_26167_210-r2-project-assets-dev-storage.md -R dev/docs_build/dev/reports/PR_26168_211-storage-status-surface.md -> dev/reports/PR_26168_211-storage-status-surface.md -R dev/docs_build/dev/reports/PR_26168_212-assets-real-storage-mode.md -> dev/reports/PR_26168_212-assets-real-storage-mode.md -R dev/docs_build/dev/reports/PR_26168_213-project-asset-reference-linking.md -> dev/reports/PR_26168_213-project-asset-reference-linking.md -R dev/docs_build/dev/reports/PR_26168_214-project-promotion-foundation.md -> dev/reports/PR_26168_214-project-promotion-foundation.md -R dev/docs_build/dev/reports/PR_26168_215-admin-infrastructure-page.md -> dev/reports/PR_26168_215-admin-infrastructure-page.md -R dev/docs_build/dev/reports/PR_26168_216-promotion-safety-validation.md -> dev/reports/PR_26168_216-promotion-safety-validation.md -R dev/docs_build/dev/reports/PR_26168_217-project-workspace-db-integration.md -> dev/reports/PR_26168_217-project-workspace-db-integration.md -R dev/docs_build/dev/reports/PR_26168_218-project-workspace-validation-cleanup.md -> dev/reports/PR_26168_218-project-workspace-validation-cleanup.md -R dev/docs_build/dev/reports/PR_26168_219-admin-infrastructure-image-storage-path.md -> dev/reports/PR_26168_219-admin-infrastructure-image-storage-path.md -R dev/docs_build/dev/reports/PR_26168_220-promotion-lanes-storage-path-status.md -> dev/reports/PR_26168_220-promotion-lanes-storage-path-status.md -R dev/docs_build/dev/reports/PR_26168_221-storage-path-error-rule-and-r2-env-ready.md -> dev/reports/PR_26168_221-storage-path-error-rule-and-r2-env-ready.md -R dev/docs_build/dev/reports/PR_26168_222-storage-env-prefix-consolidation.md -> dev/reports/PR_26168_222-storage-env-prefix-consolidation.md -R dev/docs_build/dev/reports/PR_26168_223-codex-decisions-notes.md -> dev/reports/PR_26168_223-codex-decisions-notes.md -R dev/docs_build/dev/reports/PR_26168_224-r2-storage-connectivity-test.md -> dev/reports/PR_26168_224-r2-storage-connectivity-test.md -R dev/docs_build/dev/reports/PR_26168_225-assets-r2-storage-integration.md -> dev/reports/PR_26168_225-assets-r2-storage-integration.md -R dev/docs_build/dev/reports/PR_26168_226-r2-stack-report-cleanup.md -> dev/reports/PR_26168_226-r2-stack-report-cleanup.md -R dev/docs_build/dev/reports/PR_26168_227-admin-system-health-page.md -> dev/reports/PR_26168_227-admin-system-health-page.md -R dev/docs_build/dev/reports/PR_26168_228-system-health-env-limits.md -> dev/reports/PR_26168_228-system-health-env-limits.md -R dev/docs_build/dev/reports/PR_26168_229-system-health-severity-cleanup.md -> dev/reports/PR_26168_229-system-health-severity-cleanup.md -R dev/docs_build/dev/reports/PR_26168_230-system-health-live-usage-foundation.md -> dev/reports/PR_26168_230-system-health-live-usage-foundation.md -R dev/docs_build/dev/reports/PR_26168_231-admin-system-health-consolidation.md -> dev/reports/PR_26168_231-admin-system-health-consolidation.md -R dev/docs_build/dev/reports/PR_26168_232-r2-operational-readiness.md -> dev/reports/PR_26168_232-r2-operational-readiness.md -R dev/docs_build/dev/reports/PR_26168_233-admin-system-health-operations-merge.md -> dev/reports/PR_26168_233-admin-system-health-operations-merge.md -R dev/docs_build/dev/reports/PR_26168_234-system-health-storage-connectivity-startup.md -> dev/reports/PR_26168_234-system-health-storage-connectivity-startup.md -R dev/docs_build/dev/reports/PR_26168_235-owner-operations-scope-cleanup.md -> dev/reports/PR_26168_235-owner-operations-scope-cleanup.md -R dev/docs_build/dev/reports/PR_26168_236-admin-operations-order-and-safety.md -> dev/reports/PR_26168_236-admin-operations-order-and-safety.md -R dev/docs_build/dev/reports/PR_26168_237-admin-ia-cleanup.md -> dev/reports/PR_26168_237-admin-ia-cleanup.md -R dev/docs_build/dev/reports/PR_26168_238-r2-assets-end-to-end-validation.md -> dev/reports/PR_26168_238-r2-assets-end-to-end-validation.md -R dev/docs_build/dev/reports/PR_26168_239-gfsp-package-foundation.md -> dev/reports/PR_26168_239-gfsp-package-foundation.md -R dev/docs_build/dev/reports/PR_26168_240-project-package-export.md -> dev/reports/PR_26168_240-project-package-export.md -R dev/docs_build/dev/reports/PR_26168_241-project-package-validation.md -> dev/reports/PR_26168_241-project-package-validation.md -R dev/docs_build/dev/reports/PR_26168_242-project-package-import.md -> dev/reports/PR_26168_242-project-package-import.md -R dev/docs_build/dev/reports/PR_26168_243-backup-recovery-foundation.md -> dev/reports/PR_26168_243-backup-recovery-foundation.md -R dev/docs_build/dev/reports/PR_26168_244-project-workspace-real-project-flow.md -> dev/reports/PR_26168_244-project-workspace-real-project-flow.md -R dev/docs_build/dev/reports/PR_26168_245-postgres-backup-foundation.md -> dev/reports/PR_26168_245-postgres-backup-foundation.md -R dev/docs_build/dev/reports/PR_26168_246-r2-backed-postgres-backups.md -> dev/reports/PR_26168_246-r2-backed-postgres-backups.md -R dev/docs_build/dev/reports/PR_26168_247-memberships-page.md -> dev/reports/PR_26168_247-memberships-page.md -R dev/docs_build/dev/reports/PR_26169_002-auth-preview-signin-regression.md -> dev/reports/PR_26169_002-auth-preview-signin-regression.md -R dev/docs_build/dev/reports/PR_26169_003-beta-invitations-admin.md -> dev/reports/PR_26169_003-beta-invitations-admin.md -R dev/docs_build/dev/reports/PR_26169_004-membership-data-model.md -> dev/reports/PR_26169_004-membership-data-model.md -R dev/docs_build/dev/reports/PR_26169_005-membership-assignment.md -> dev/reports/PR_26169_005-membership-assignment.md -R dev/docs_build/dev/reports/PR_26169_006-memberships-page-v2.md -> dev/reports/PR_26169_006-memberships-page-v2.md -R dev/docs_build/dev/reports/PR_26169_007-ai-credit-foundation.md -> dev/reports/PR_26169_007-ai-credit-foundation.md -R dev/docs_build/dev/reports/PR_26169_008-ai-credit-display.md -> dev/reports/PR_26169_008-ai-credit-display.md -R dev/docs_build/dev/reports/PR_26169_009-marketplace-membership-rules.md -> dev/reports/PR_26169_009-marketplace-membership-rules.md -R dev/docs_build/dev/reports/PR_26169_010-marketplace-revenue-model.md -> dev/reports/PR_26169_010-marketplace-revenue-model.md -R dev/docs_build/dev/reports/PR_26169_011-marketplace-categories.md -> dev/reports/PR_26169_011-marketplace-categories.md -R dev/docs_build/dev/reports/PR_26169_012-teams-foundation.md -> dev/reports/PR_26169_012-teams-foundation.md -R dev/docs_build/dev/reports/PR_26169_013-team-enforcement.md -> dev/reports/PR_26169_013-team-enforcement.md -R dev/docs_build/dev/reports/PR_26169_014-legal-foundation.md -> dev/reports/PR_26169_014-legal-foundation.md -R dev/docs_build/dev/reports/PR_26169_015-terms-of-service.md -> dev/reports/PR_26169_015-terms-of-service.md -R dev/docs_build/dev/reports/PR_26169_016-privacy-cookies-community-copyright-dmca.md -> dev/reports/PR_26169_016-privacy-cookies-community-copyright-dmca.md -R dev/docs_build/dev/reports/PR_26169_017-owner-memberships.md -> dev/reports/PR_26169_017-owner-memberships.md -R dev/docs_build/dev/reports/PR_26169_018-owner-ai-credits.md -> dev/reports/PR_26169_018-owner-ai-credits.md -R dev/docs_build/dev/reports/PR_26169_019-admin-health-operations.md -> dev/reports/PR_26169_019-admin-health-operations.md -R dev/docs_build/dev/reports/PR_26169_020-architecture-cleanup-api-nav-invitations.md -> dev/reports/PR_26169_020-architecture-cleanup-api-nav-invitations.md -R dev/docs_build/dev/reports/PR_26169_023-api-menu-path-cleanup.md -> dev/reports/PR_26169_023-api-menu-path-cleanup.md -R dev/docs_build/dev/reports/PR_26169_024-environment-banner-all-pages.md -> dev/reports/PR_26169_024-environment-banner-all-pages.md -R dev/docs_build/dev/reports/PR_26169_025-browser-api-url-config.md -> dev/reports/PR_26169_025-browser-api-url-config.md -R dev/docs_build/dev/reports/PR_26169_026-local-api-startup-url-logging.md -> dev/reports/PR_26169_026-local-api-startup-url-logging.md -R dev/docs_build/dev/reports/PR_26169_027-owner-notes-restoration.md -> dev/reports/PR_26169_027-owner-notes-restoration.md -R dev/docs_build/dev/reports/PR_26169_028-admin-owner-notes-source.md -> dev/reports/PR_26169_028-admin-owner-notes-source.md -R dev/docs_build/dev/reports/PR_26169_029-db-viewer-table-groups-regression.md -> dev/reports/PR_26169_029-db-viewer-table-groups-regression.md -R dev/docs_build/dev/reports/PR_26169_auth-preview-signin-regression.md -> dev/reports/PR_26169_auth-preview-signin-regression.md -R dev/docs_build/dev/reports/PR_26170_001-toolbox-game-journey-navigation.md -> dev/reports/PR_26170_001-toolbox-game-journey-navigation.md -R dev/docs_build/dev/reports/PR_26170_002-idea-board-tool.md -> dev/reports/PR_26170_002-idea-board-tool.md -R dev/docs_build/dev/reports/PR_26170_003-toolbox-create-group.md -> dev/reports/PR_26170_003-toolbox-create-group.md -R dev/docs_build/dev/reports/PR_26170_005-toolbox-create-idea-color-model.md -> dev/reports/PR_26170_005-toolbox-create-idea-color-model.md -R dev/docs_build/dev/reports/PR_26170_006-toolbox-workflow-order-and-project-team.md -> dev/reports/PR_26170_006-toolbox-workflow-order-and-project-team.md -R dev/docs_build/dev/reports/PR_26170_007-toolbox-workflow-render-order-project-team.md -> dev/reports/PR_26170_007-toolbox-workflow-render-order-project-team.md -R dev/docs_build/dev/reports/PR_26170_008-workflow-order-governance.md -> dev/reports/PR_26170_008-workflow-order-governance.md -R dev/docs_build/dev/reports/PR_26170_009-friendly-naming-audit.md -> dev/reports/PR_26170_009-friendly-naming-audit.md -R dev/docs_build/dev/reports/PR_26170_010-friendly-visible-copy.md -> dev/reports/PR_26170_010-friendly-visible-copy.md -R dev/docs_build/dev/reports/PR_26170_011-friendly-metadata-vars.md -> dev/reports/PR_26170_011-friendly-metadata-vars.md -R dev/docs_build/dev/reports/PR_26170_012-friendly-routes-folders.md -> dev/reports/PR_26170_012-friendly-routes-folders.md -R dev/docs_build/dev/reports/PR_26170_013-game-journey-friendly-descriptions.md -> dev/reports/PR_26170_013-game-journey-friendly-descriptions.md -R dev/docs_build/dev/reports/PR_26170_014-game-journey-master-plan.md -> dev/reports/PR_26170_014-game-journey-master-plan.md -R dev/docs_build/dev/reports/PR_26171_001-game-journey-completion-model-manual-validation.md -> dev/reports/PR_26171_001-game-journey-completion-model-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_001-game-journey-completion-model-validation.md -> dev/reports/PR_26171_001-game-journey-completion-model-validation.md -R dev/docs_build/dev/reports/PR_26171_001-game-journey-completion-model.md -> dev/reports/PR_26171_001-game-journey-completion-model.md -R dev/docs_build/dev/reports/PR_26171_002-messages-manual-validation.md -> dev/reports/PR_26171_002-messages-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_002-messages-tool-foundation.md -> dev/reports/PR_26171_002-messages-tool-foundation.md -R dev/docs_build/dev/reports/PR_26171_002-messages-validation.txt -> dev/reports/PR_26171_002-messages-validation.txt -R dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-branch-validation.md -> dev/reports/PR_26171_003-game-journey-friendly-descriptions-branch-validation.md -R dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-manual-validation.md -> dev/reports/PR_26171_003-game-journey-friendly-descriptions-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-requirements-checklist.md -> dev/reports/PR_26171_003-game-journey-friendly-descriptions-requirements-checklist.md -R dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-validation-lane-report.md -> dev/reports/PR_26171_003-game-journey-friendly-descriptions-validation-lane-report.md -R dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions.md -> dev/reports/PR_26171_003-game-journey-friendly-descriptions.md -R dev/docs_build/dev/reports/PR_26171_004-messages-emotion-segments-manual-validation.md -> dev/reports/PR_26171_004-messages-emotion-segments-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_004-messages-emotion-segments-validation.txt -> dev/reports/PR_26171_004-messages-emotion-segments-validation.txt -R dev/docs_build/dev/reports/PR_26171_004-messages-emotion-segments.md -> dev/reports/PR_26171_004-messages-emotion-segments.md -R dev/docs_build/dev/reports/PR_26171_006-message-emotion-profile-management-manual-validation.md -> dev/reports/PR_26171_006-message-emotion-profile-management-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_006-message-emotion-profile-management-validation.txt -> dev/reports/PR_26171_006-message-emotion-profile-management-validation.txt -R dev/docs_build/dev/reports/PR_26171_006-message-emotion-profile-management.md -> dev/reports/PR_26171_006-message-emotion-profile-management.md -R dev/docs_build/dev/reports/PR_26171_008-message-tts-profile-foundation-manual-validation.md -> dev/reports/PR_26171_008-message-tts-profile-foundation-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_008-message-tts-profile-foundation-validation.txt -> dev/reports/PR_26171_008-message-tts-profile-foundation-validation.txt -R dev/docs_build/dev/reports/PR_26171_008-message-tts-profile-foundation.md -> dev/reports/PR_26171_008-message-tts-profile-foundation.md -R dev/docs_build/dev/reports/PR_26171_010-message-speech-preview-manual-validation.md -> dev/reports/PR_26171_010-message-speech-preview-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_010-message-speech-preview-validation.txt -> dev/reports/PR_26171_010-message-speech-preview-validation.txt -R dev/docs_build/dev/reports/PR_26171_010-message-speech-preview.md -> dev/reports/PR_26171_010-message-speech-preview.md -R dev/docs_build/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-manual-validation.md -> dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-validation.txt -> dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-validation.txt -R dev/docs_build/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup.md -> dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup.md -R dev/docs_build/dev/reports/PR_26171_014-message-studio-table-governance-manual-validation.txt -> dev/reports/PR_26171_014-message-studio-table-governance-manual-validation.txt -R dev/docs_build/dev/reports/PR_26171_014-message-studio-table-governance-validation.txt -> dev/reports/PR_26171_014-message-studio-table-governance-validation.txt -R dev/docs_build/dev/reports/PR_26171_014-message-studio-table-governance.md -> dev/reports/PR_26171_014-message-studio-table-governance.md -R dev/docs_build/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-manual-validation.txt -> dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-manual-validation.txt -R dev/docs_build/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-validation.txt -> dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-validation.txt -R dev/docs_build/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker.md -> dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker.md -R dev/docs_build/dev/reports/PR_26171_018-local-api-startup-diagnostics-manual-validation-notes.md -> dev/reports/PR_26171_018-local-api-startup-diagnostics-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_018-local-api-startup-diagnostics-validation-report.md -> dev/reports/PR_26171_018-local-api-startup-diagnostics-validation-report.md -R dev/docs_build/dev/reports/PR_26171_018-local-api-startup-diagnostics.md -> dev/reports/PR_26171_018-local-api-startup-diagnostics.md -R dev/docs_build/dev/reports/PR_26171_021-summary-notes-table-governance-manual-validation.md -> dev/reports/PR_26171_021-summary-notes-table-governance-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_021-summary-notes-table-governance-validation.md -> dev/reports/PR_26171_021-summary-notes-table-governance-validation.md -R dev/docs_build/dev/reports/PR_26171_021-summary-notes-table-governance.md -> dev/reports/PR_26171_021-summary-notes-table-governance.md -R dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction-manual-validation.md -> dev/reports/PR_26171_023-game-journey-summary-table-correction-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction-requirements.md -> dev/reports/PR_26171_023-game-journey-summary-table-correction-requirements.md -R dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction-validation.md -> dev/reports/PR_26171_023-game-journey-summary-table-correction-validation.md -R dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction.md -> dev/reports/PR_26171_023-game-journey-summary-table-correction.md -R dev/docs_build/dev/reports/PR_26171_025-codex-git-workflow-ownership-manual-validation.md -> dev/reports/PR_26171_025-codex-git-workflow-ownership-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_025-codex-git-workflow-ownership-validation.md -> dev/reports/PR_26171_025-codex-git-workflow-ownership-validation.md -R dev/docs_build/dev/reports/PR_26171_025-codex-git-workflow-ownership.md -> dev/reports/PR_26171_025-codex-git-workflow-ownership.md -R dev/docs_build/dev/reports/PR_26171_027-text2speech-rebuild-foundation.md -> dev/reports/PR_26171_027-text2speech-rebuild-foundation.md -R dev/docs_build/dev/reports/PR_26171_029-text2speech-tool-shell.md -> dev/reports/PR_26171_029-text2speech-tool-shell.md -R dev/docs_build/dev/reports/PR_26171_031-text2speech-message-model.md -> dev/reports/PR_26171_031-text2speech-message-model.md -R dev/docs_build/dev/reports/PR_26171_033-text2speech-generation-workflow.md -> dev/reports/PR_26171_033-text2speech-generation-workflow.md -R dev/docs_build/dev/reports/PR_26171_035-text2speech-provider-adapter-plan.md -> dev/reports/PR_26171_035-text2speech-provider-adapter-plan.md -R dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-manual-validation.md -> dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-requirements.md -> dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-requirements.md -R dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-validation.md -> dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-validation.md -R dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild.md -> dev/reports/PR_26171_037-text2speech-functional-tool-rebuild.md -R dev/docs_build/dev/reports/PR_26171_059-manual-validation-notes.md -> dev/reports/PR_26171_059-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_059-rollback-restore-plan.md -> dev/reports/PR_26171_059-rollback-restore-plan.md -R dev/docs_build/dev/reports/PR_26171_059-validation.md -> dev/reports/PR_26171_059-validation.md -R dev/docs_build/dev/reports/PR_26171_061-engine-audio-ownership-checklist.md -> dev/reports/PR_26171_061-engine-audio-ownership-checklist.md -R dev/docs_build/dev/reports/PR_26171_061-instruction-compliance-checklist.md -> dev/reports/PR_26171_061-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_061-manual-validation-notes.md -> dev/reports/PR_26171_061-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_061-old-tts-feature-parity-checklist.md -> dev/reports/PR_26171_061-old-tts-feature-parity-checklist.md -R dev/docs_build/dev/reports/PR_26171_061-text2speech-engine-audio-feature-parity.md -> dev/reports/PR_26171_061-text2speech-engine-audio-feature-parity.md -R dev/docs_build/dev/reports/PR_26171_061-validation.md -> dev/reports/PR_26171_061-validation.md -R dev/docs_build/dev/reports/PR_26171_063-codex-instruction-enforcement-hardening.md -> dev/reports/PR_26171_063-codex-instruction-enforcement-hardening.md -R dev/docs_build/dev/reports/PR_26171_063-instruction-compliance-checklist.md -> dev/reports/PR_26171_063-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_063-manual-validation-notes.md -> dev/reports/PR_26171_063-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_063-validation.md -> dev/reports/PR_26171_063-validation.md -R dev/docs_build/dev/reports/PR_26171_065-instruction-compliance-checklist.md -> dev/reports/PR_26171_065-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_065-manual-validation-notes.md -> dev/reports/PR_26171_065-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_065-message-studio-parent-child-table-foundation.md -> dev/reports/PR_26171_065-message-studio-parent-child-table-foundation.md -R dev/docs_build/dev/reports/PR_26171_065-parent-child-table-checklist.md -> dev/reports/PR_26171_065-parent-child-table-checklist.md -R dev/docs_build/dev/reports/PR_26171_065-validation.md -> dev/reports/PR_26171_065-validation.md -R dev/docs_build/dev/reports/PR_26171_067-instruction-compliance-checklist.md -> dev/reports/PR_26171_067-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_067-manual-validation-notes.md -> dev/reports/PR_26171_067-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_067-message-tts-contract-checklist.md -> dev/reports/PR_26171_067-message-tts-contract-checklist.md -R dev/docs_build/dev/reports/PR_26171_067-parent-child-table-checklist.md -> dev/reports/PR_26171_067-parent-child-table-checklist.md -R dev/docs_build/dev/reports/PR_26171_067-tts-profile-emotion-table-foundation.md -> dev/reports/PR_26171_067-tts-profile-emotion-table-foundation.md -R dev/docs_build/dev/reports/PR_26171_067-validation.md -> dev/reports/PR_26171_067-validation.md -R dev/docs_build/dev/reports/PR_26171_069-manual-validation-notes.md -> dev/reports/PR_26171_069-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_069-message-tts-ownership-checklist.md -> dev/reports/PR_26171_069-message-tts-ownership-checklist.md -R dev/docs_build/dev/reports/PR_26171_069-message-tts-profile-contract-alignment.md -> dev/reports/PR_26171_069-message-tts-profile-contract-alignment.md -R dev/docs_build/dev/reports/PR_26171_069-parent-child-table-checklist.md -> dev/reports/PR_26171_069-parent-child-table-checklist.md -R dev/docs_build/dev/reports/PR_26171_069-validation.md -> dev/reports/PR_26171_069-validation.md -R dev/docs_build/dev/reports/PR_26171_071-conflicted-files-before-cleanup.txt -> dev/reports/PR_26171_071-conflicted-files-before-cleanup.txt -R dev/docs_build/dev/reports/PR_26171_071-discarded-unrelated-work-report.md -> dev/reports/PR_26171_071-discarded-unrelated-work-report.md -R dev/docs_build/dev/reports/PR_26171_071-manual-validation-notes.md -> dev/reports/PR_26171_071-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_071-merge-conflict-recovery-report.md -> dev/reports/PR_26171_071-merge-conflict-recovery-report.md -R dev/docs_build/dev/reports/PR_26171_071-preserved-local-commit-report.md -> dev/reports/PR_26171_071-preserved-local-commit-report.md -R dev/docs_build/dev/reports/PR_26171_071-recovery-precleanup.patch.md -> dev/reports/PR_26171_071-recovery-precleanup.patch.md -R dev/docs_build/dev/reports/PR_26171_071-status-before-cleanup.txt -> dev/reports/PR_26171_071-status-before-cleanup.txt -R dev/docs_build/dev/reports/PR_26171_071-untracked-files-before-cleanup.txt -> dev/reports/PR_26171_071-untracked-files-before-cleanup.txt -R dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-data-preservation-notes.md -> dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-data-preservation-notes.md -R dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-instruction-compliance-checklist.md -> dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-manual-validation-notes.md -> dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration.md -> dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration.md -R dev/docs_build/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-manual-validation-notes.md -> dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-validation.md -> dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-validation.md -R dev/docs_build/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming.md -> dev/reports/PR_26171_ALPHA_075-team-based-pr-naming.md -R dev/docs_build/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-instruction-compliance-checklist.md -> dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-manual-validation-notes.md -> dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover.md -> dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover.md -R dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-manual-validation-notes.md -> dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-message-tts-ownership-checklist.md -> dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-message-tts-ownership-checklist.md -R dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-parent-child-table-checklist.md -> dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-parent-child-table-checklist.md -R dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-validation.md -> dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-validation.md -R dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment.md -> dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment.md -R dev/docs_build/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-manual-validation-notes.md -> dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-validation.md -> dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-validation.md -R dev/docs_build/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table.md -> dev/reports/PR_26171_BETA_071-tts-profile-emotion-table.md -R dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-instruction-compliance-checklist.md -> dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-manual-validation-notes.md -> dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-message-parent-child-table-checklist.md -> dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-message-parent-child-table-checklist.md -R dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-summary-layout-checklist.md -> dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-summary-layout-checklist.md -R dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-tools-registration-checklist.md -> dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-tools-registration-checklist.md -R dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-validation-report.md -> dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-validation-report.md -R dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction.md -> dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction.md -R dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-instruction-compliance-checklist.md -> dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-manual-validation-notes.md -> dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-validation-report.md -> dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-validation-report.md -R dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup.md -> dev/reports/PR_26171_BETA_075-tts-message-table-cleanup.md -R dev/docs_build/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-manual-validation-notes.md -> dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-validation-report.md -> dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-validation-report.md -R dev/docs_build/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table.md -> dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table.md -R dev/docs_build/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-manual-validation-notes.md -> dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-validation-report.md -> dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-validation-report.md -R dev/docs_build/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion.md -> dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion.md -R dev/docs_build/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-manual-validation-notes.md -> dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-validation-report.md -> dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-validation-report.md -R dev/docs_build/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine.md -> dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine.md -R dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-dead-code-cleanup-checklist.md -> dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-dead-code-cleanup-checklist.md -R dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-manual-validation-notes.md -> dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-message-tts-ux-checklist.md -> dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-message-tts-ux-checklist.md -R dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-validation-report.md -> dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-validation-report.md -R dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code.md -> dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation.md -> dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup.md -> dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan.md -> dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime.md -> dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime.md -> dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime.md -> dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_019-admin-workstream-mergeability-recovery.md -> dev/reports/PR_26171_GAMMA_019-admin-workstream-mergeability-recovery.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup.md -> dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory.md -> dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup.md -> dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup.md -> dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-instruction-compliance-checklist.md -> dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-manual-validation-notes.md -> dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report.md -> dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report.md -R dev/docs_build/dev/reports/PR_26171_text2speech-manual-validation.md -> dev/reports/PR_26171_text2speech-manual-validation.md -R dev/docs_build/dev/reports/PR_26171_text2speech-toolbox-path-correction.md -> dev/reports/PR_26171_text2speech-toolbox-path-correction.md -R dev/docs_build/dev/reports/PR_26171_text2speech-validation.md -> dev/reports/PR_26171_text2speech-validation.md -R dev/docs_build/dev/reports/PR_26171_text2speech-zip-verification.md -> dev/reports/PR_26171_text2speech-zip-verification.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_001-repository-compliance-audit.md -> dev/reports/PR_26172_CHARLIE_001-repository-compliance-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_002-test-results-artifact-cleanup.md -> dev/reports/PR_26172_CHARLIE_002-test-results-artifact-cleanup.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_003-src-dev-runtime-test-migration-audit.md -> dev/reports/PR_26172_CHARLIE_003-src-dev-runtime-test-migration-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_004-src-dev-runtime-low-risk-test-move.md -> dev/reports/PR_26172_CHARLIE_004-src-dev-runtime-low-risk-test-move.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_005-scattered-tool-js-css-audit.md -> dev/reports/PR_26172_CHARLIE_005-scattered-tool-js-css-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_006-low-risk-tool-asset-migration.md -> dev/reports/PR_26172_CHARLIE_006-low-risk-tool-asset-migration.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_006A-game-journey-validation-failure-investigation.md -> dev/reports/PR_26172_CHARLIE_006A-game-journey-validation-failure-investigation.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_007-shared-js-candidate-audit.md -> dev/reports/PR_26172_CHARLIE_007-shared-js-candidate-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_008-canonical-structure-guardrail-script.md -> dev/reports/PR_26172_CHARLIE_008-canonical-structure-guardrail-script.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_009-guardrail-preflight-wireup.md -> dev/reports/PR_26172_CHARLIE_009-guardrail-preflight-wireup.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_010-shared-js-low-risk-consolidation.md -> dev/reports/PR_26172_CHARLIE_010-shared-js-low-risk-consolidation.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_011-test-location-remediation.md -> dev/reports/PR_26172_CHARLIE_011-test-location-remediation.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_012-canonical-structure-enforcement-audit.md -> dev/reports/PR_26172_CHARLIE_012-canonical-structure-enforcement-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_013-tool-js-css-canonical-migration-audit.md -> dev/reports/PR_26172_CHARLIE_013-tool-js-css-canonical-migration-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_014-low-risk-tool-migration-1.md -> dev/reports/PR_26172_CHARLIE_014-low-risk-tool-migration-1.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_015-low-risk-tool-migration-2.md -> dev/reports/PR_26172_CHARLIE_015-low-risk-tool-migration-2.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_016-repository-compliance-reaudit.md -> dev/reports/PR_26172_CHARLIE_016-repository-compliance-reaudit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_017-tool-js-css-canonical-migration-audit-2.md -> dev/reports/PR_26172_CHARLIE_017-tool-js-css-canonical-migration-audit-2.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_018-low-risk-tool-migration-3.md -> dev/reports/PR_26172_CHARLIE_018-low-risk-tool-migration-3.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_019-low-risk-tool-migration-4.md -> dev/reports/PR_26172_CHARLIE_019-low-risk-tool-migration-4.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_020-low-risk-tool-migration-5.md -> dev/reports/PR_26172_CHARLIE_020-low-risk-tool-migration-5.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_021-repository-compliance-reaudit-2.md -> dev/reports/PR_26172_CHARLIE_021-repository-compliance-reaudit-2.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_022-target-tool-migration-audit.md -> dev/reports/PR_26172_CHARLIE_022-target-tool-migration-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_023-target-tool-migration-batch-1.md -> dev/reports/PR_26172_CHARLIE_023-target-tool-migration-batch-1.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_024-target-tool-migration-batch-2.md -> dev/reports/PR_26172_CHARLIE_024-target-tool-migration-batch-2.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_025-target-tool-migration-batch-3.md -> dev/reports/PR_26172_CHARLIE_025-target-tool-migration-batch-3.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_026-target-tool-migration-batch-4.md -> dev/reports/PR_26172_CHARLIE_026-target-tool-migration-batch-4.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_027-target-tool-compliance-reaudit.md -> dev/reports/PR_26172_CHARLIE_027-target-tool-compliance-reaudit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_028-remaining-target-tool-migration-audit.md -> dev/reports/PR_26172_CHARLIE_028-remaining-target-tool-migration-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_029-controls-canonical-js-migration.md -> dev/reports/PR_26172_CHARLIE_029-controls-canonical-js-migration.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_030-assets-tool-canonical-js-migration-audit.md -> dev/reports/PR_26172_CHARLIE_030-assets-tool-canonical-js-migration-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_031-assets-tool-safe-entrypoint-migration.md -> dev/reports/PR_26172_CHARLIE_031-assets-tool-safe-entrypoint-migration.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_032-assets-worker-api-client-migration-or-exception.md -> dev/reports/PR_26172_CHARLIE_032-assets-worker-api-client-migration-or-exception.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_033-game-journey-canonical-js-migration-audit.md -> dev/reports/PR_26172_CHARLIE_033-game-journey-canonical-js-migration-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_034-game-journey-safe-entrypoint-migration.md -> dev/reports/PR_26172_CHARLIE_034-game-journey-safe-entrypoint-migration.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_035-game-journey-api-client-migration-or-exception.md -> dev/reports/PR_26172_CHARLIE_035-game-journey-api-client-migration-or-exception.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_036-final-target-tool-compliance-reaudit.md -> dev/reports/PR_26172_CHARLIE_036-final-target-tool-compliance-reaudit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_037-retained-exceptions-audit.md -> dev/reports/PR_26172_CHARLIE_037-retained-exceptions-audit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_038-assets-upload-http-500-investigation.md -> dev/reports/PR_26172_CHARLIE_038-assets-upload-http-500-investigation.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_039-assets-api-worker-exception-resolution.md -> dev/reports/PR_26172_CHARLIE_039-assets-api-worker-exception-resolution.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_040-controls-game-journey-api-client-resolution.md -> dev/reports/PR_26172_CHARLIE_040-controls-game-journey-api-client-resolution.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_041-final-retained-exceptions-reaudit.md -> dev/reports/PR_26172_CHARLIE_041-final-retained-exceptions-reaudit.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_042-canonical-tool-worker-placement.md -> dev/reports/PR_26172_CHARLIE_042-canonical-tool-worker-placement.md -R dev/docs_build/dev/reports/PR_26172_CHARLIE_043-final-charlie-compliance-reaudit.md -> dev/reports/PR_26172_CHARLIE_043-final-charlie-compliance-reaudit.md -R dev/docs_build/dev/reports/PR_26172_OWNER_010-owner-governance-rename-instruction-compliance-checklist.md -> dev/reports/PR_26172_OWNER_010-owner-governance-rename-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26172_OWNER_010-owner-governance-rename-manual-validation-notes.md -> dev/reports/PR_26172_OWNER_010-owner-governance-rename-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26172_OWNER_010-owner-governance-rename.md -> dev/reports/PR_26172_OWNER_010-owner-governance-rename.md -R dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-instruction-compliance-checklist.md -> dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-manual-validation-notes.md -> dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-tree.txt -> dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-tree.txt -R dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install.md -> dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install.md -R dev/docs_build/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-instruction-compliance-checklist.md -> dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-manual-validation-notes.md -> dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance.md -> dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance.md -R dev/docs_build/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-instruction-compliance-checklist.md -> dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-manual-validation-notes.md -> dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance.md -> dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance.md -R dev/docs_build/dev/reports/PR_26172_OWNER_031-pi-closeout-governance-instruction-compliance-checklist.md -> dev/reports/PR_26172_OWNER_031-pi-closeout-governance-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26172_OWNER_031-pi-closeout-governance-manual-validation-notes.md -> dev/reports/PR_26172_OWNER_031-pi-closeout-governance-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26172_OWNER_031-pi-closeout-governance.md -> dev/reports/PR_26172_OWNER_031-pi-closeout-governance.md -R dev/docs_build/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-instruction-compliance-checklist.md -> dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-manual-validation-notes.md -> dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template.md -> dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template.md -R dev/docs_build/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-governance-closeout-report.md -> dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-governance-closeout-report.md -R dev/docs_build/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-instruction-compliance-checklist.md -> dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-manual-validation-notes.md -> dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26172_OWNER_040-four-team-backlog-alignment.md -> dev/reports/PR_26172_OWNER_040-four-team-backlog-alignment.md -R dev/docs_build/dev/reports/PR_26172_OWNER_041-four-team-cleanup.md -> dev/reports/PR_26172_OWNER_041-four-team-cleanup.md -R dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-branch-validation.txt -> dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-validation-lane.txt -> dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore.md -> dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore.md -R dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-branch-validation.txt -> dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-validation-lane.txt -> dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract.md -> dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract.md -R dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-branch-validation.txt -> dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-validation-lane.txt -> dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display.md -> dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display.md -R dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-branch-validation.txt -> dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-validation-lane.txt -> dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap.md -> dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap.md -R dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-branch-validation.txt -> dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-validation-lane.txt -> dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model.md -> dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model.md -R dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-branch-validation.txt -> dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-validation-lane.txt -> dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish.md -> dev/reports/PR_26174_ALFA_005-idea-project-validation-polish.md -R dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-branch-validation.txt -> dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-validation-lane.txt -> dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states.md -> dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states.md -R dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-branch-validation.txt -> dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-validation-lane.txt -> dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish.md -> dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish.md -R dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-branch-validation.txt -> dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-final-stack-report.md -> dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-final-stack-report.md -R dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-validation-lane.txt -> dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation.md -> dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation.md -R dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-branch-validation.txt -> dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-validation-lane.txt -> dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout.md -> dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout.md -R dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-branch-validation.txt -> dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-validation-lane.txt -> dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish.md -> dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish.md -R dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-branch-validation.txt -> dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-validation-lane.txt -> dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table.md -> dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table.md -R dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-branch-validation.txt -> dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-validation-lane.txt -> dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation.md -> dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation.md -R dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-branch-validation.txt -> dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-validation-lane.txt -> dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows.md -> dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows.md -R dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-branch-validation.txt -> dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-validation-lane.txt -> dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center.md -> dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center.md -R dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-branch-validation.txt -> dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-validation-lane.txt -> dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup.md -> dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup.md -R dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-branch-validation.txt -> dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-requirement-checklist.txt -> dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-validation-lane.txt -> dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state.md -> dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state.md -R dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup.md -> dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup.md -R dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_branch-validation.txt -> dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_requirement-checklist.txt -> dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_validation-lane.txt -> dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state.md -> dev/reports/PR_26174_ALFA_018-game-selection-button-state.md -R dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_branch-validation.txt -> dev/reports/PR_26174_ALFA_018-game-selection-button-state_branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_018-game-selection-button-state_manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_requirement-checklist.txt -> dev/reports/PR_26174_ALFA_018-game-selection-button-state_requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_validation-lane.txt -> dev/reports/PR_26174_ALFA_018-game-selection-button-state_validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label.md -> dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label.md -R dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_branch-validation.txt -> dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_branch-validation.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_manual-validation-notes.txt -> dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_manual-validation-notes.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_requirement-checklist.txt -> dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_requirement-checklist.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_validation-lane.txt -> dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_validation-lane.txt -R dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_branch-validation.md -> dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_branch-validation.md -R dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_manual-validation-notes.md -> dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_report.md -> dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_report.md -R dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_requirements-checklist.md -> dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_validation-lane.md -> dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_validation-lane.md -R dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_branch-validation.md -> dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_branch-validation.md -R dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_manual-validation-notes.md -> dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_report.md -> dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_report.md -R dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_requirements-checklist.md -> dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_validation-lane.md -> dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_validation-lane.md -R dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_branch-validation.md -> dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_branch-validation.md -R dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_manual-validation-notes.md -> dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_report.md -> dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_report.md -R dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_requirements-checklist.md -> dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_validation-lane.md -> dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_validation-lane.md -R dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_branch-validation.md -> dev/reports/PR_26174_ALFA_EOD-final-closeout_branch-validation.md -R dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_manual-validation-notes.md -> dev/reports/PR_26174_ALFA_EOD-final-closeout_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_report.md -> dev/reports/PR_26174_ALFA_EOD-final-closeout_report.md -R dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_requirements-checklist.md -> dev/reports/PR_26174_ALFA_EOD-final-closeout_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_validation-lane.md -> dev/reports/PR_26174_ALFA_EOD-final-closeout_validation-lane.md -R dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_branch-validation.md -> dev/reports/PR_26174_ALFA_EOD-workstream-closeout_branch-validation.md -R dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_manual-validation-notes.md -> dev/reports/PR_26174_ALFA_EOD-workstream-closeout_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_report.md -> dev/reports/PR_26174_ALFA_EOD-workstream-closeout_report.md -R dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_requirements-checklist.md -> dev/reports/PR_26174_ALFA_EOD-workstream-closeout_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_validation-lane.md -> dev/reports/PR_26174_ALFA_EOD-workstream-closeout_validation-lane.md -R dev/docs_build/dev/reports/PR_26174_ALFA_MERGE_PUSH_CLOSEOUT.md -> dev/reports/PR_26174_ALFA_MERGE_PUSH_CLOSEOUT.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_001-messages-table-structure.md -> dev/reports/PR_26174_BRAVO_001-messages-table-structure.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_002-message-parts-child-table.md -> dev/reports/PR_26174_BRAVO_002-message-parts-child-table.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_003-emotion-profiles-table.md -> dev/reports/PR_26174_BRAVO_003-emotion-profiles-table.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_004-voice-profiles-table.md -> dev/reports/PR_26174_BRAVO_004-voice-profiles-table.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_005-message-reference-usage.md -> dev/reports/PR_26174_BRAVO_005-message-reference-usage.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_006-browser-tts-runtime.md -> dev/reports/PR_26174_BRAVO_006-browser-tts-runtime.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_007-tts-provider-framework.md -> dev/reports/PR_26174_BRAVO_007-tts-provider-framework.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_008-message-event-actions.md -> dev/reports/PR_26174_BRAVO_008-message-event-actions.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_009-message-publish-validation.md -> dev/reports/PR_26174_BRAVO_009-message-publish-validation.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_010-separate-messages-and-tts-ownership.md -> dev/reports/PR_26174_BRAVO_010-separate-messages-and-tts-ownership.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_011-message-sentence-action-buttons.md -> dev/reports/PR_26174_BRAVO_011-message-sentence-action-buttons.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_012-tts-preview-action-cleanup.md -> dev/reports/PR_26174_BRAVO_012-tts-preview-action-cleanup.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_013-message-and-sentence-play-buttons.md -> dev/reports/PR_26174_BRAVO_013-message-and-sentence-play-buttons.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_014-message-play-button-regression-fix.md -> dev/reports/PR_26174_BRAVO_014-message-play-button-regression-fix.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_015-child-play-uses-parent-tts-profile.md -> dev/reports/PR_26174_BRAVO_015-child-play-uses-parent-tts-profile.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_017-message-play-profile-resolution.md -> dev/reports/PR_26174_BRAVO_017-message-play-profile-resolution.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_018-fix-messages-playback-source.md -> dev/reports/PR_26174_BRAVO_018-fix-messages-playback-source.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_019-remove-preview-dependency-from-messages-play.md -> dev/reports/PR_26174_BRAVO_019-remove-preview-dependency-from-messages-play.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_020-messages-load-tts-profile-emotions.md -> dev/reports/PR_26174_BRAVO_020-messages-load-tts-profile-emotions.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_021-wire-messages-to-tts-profile-contract.md -> dev/reports/PR_26174_BRAVO_021-wire-messages-to-tts-profile-contract.md -R dev/docs_build/dev/reports/PR_26174_BRAVO_022-use-active-tts-profiles-in-messages.md -> dev/reports/PR_26174_BRAVO_022-use-active-tts-profiles-in-messages.md -R dev/docs_build/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_report.md -> dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_requirements-checklist.md -> dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_validation-lane.md -> dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_report.md -> dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_requirements-checklist.md -> dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_validation-lane.md -> dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_report.md -> dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_requirements-checklist.md -> dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_validation-lane.md -> dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_report.md -> dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_requirements-checklist.md -> dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_validation-lane.md -> dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_report.md -> dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_requirements-checklist.md -> dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_validation-lane.md -> dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_report.md -> dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_requirements-checklist.md -> dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_validation-lane.md -> dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_report.md -> dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_requirements-checklist.md -> dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_validation-lane.md -> dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_report.md -> dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_requirements-checklist.md -> dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_validation-lane.md -> dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_015-alfa-foundation-consolidation.md -> dev/reports/PR_26175_ALFA_015-alfa-foundation-consolidation.md -R dev/docs_build/dev/reports/PR_26175_ALFA_016-alfa-parent-child-table-consolidation.md -> dev/reports/PR_26175_ALFA_016-alfa-parent-child-table-consolidation.md -R dev/docs_build/dev/reports/PR_26175_ALFA_017-alfa-game-hub-interactions-consolidation.md -> dev/reports/PR_26175_ALFA_017-alfa-game-hub-interactions-consolidation.md -R dev/docs_build/dev/reports/PR_26175_ALFA_018-alfa-idea-board-polish-consolidation.md -> dev/reports/PR_26175_ALFA_018-alfa-idea-board-polish-consolidation.md -R dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_manual-validation-notes.md -> dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_report.md -> dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_requirements-checklist.md -> dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_validation-lane.md -> dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_manual-validation-notes.md -> dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_report.md -> dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_requirements-checklist.md -> dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_validation-lane.md -> dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_manual-validation-notes.md -> dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_report.md -> dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_requirements-checklist.md -> dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_validation-lane.md -> dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_manual-validation-notes.md -> dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_report.md -> dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_requirements-checklist.md -> dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_validation-lane.md -> dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_branch-validation.md -> dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_branch-validation.md -R dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_manual-validation-notes.md -> dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_report.md -> dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_requirements-checklist.md -> dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_validation-lane.md -> dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_manual-validation-notes.md -> dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_report.md -> dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_report.md -R dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_requirements-checklist.md -> dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_validation-lane.md -> dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_branch-validation.md -> dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_branch-validation.md -R dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_instruction-compliance.md -> dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_instruction-compliance.md -R dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_manual-validation-notes.md -> dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_report.md -> dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_report.md -R dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_requirements-checklist.md -> dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_validation-lane.md -> dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-instruction-compliance-checklist.md -> dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard.md -> dev/reports/PR_26175_CHARLIE_002-system-health-dashboard.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard_PLAN.md -> dev/reports/PR_26175_CHARLIE_002-system-health-dashboard_PLAN.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-instruction-compliance-checklist.md -> dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization.md -> dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization_PLAN.md -> dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization_PLAN.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_007-system-health-environment-identity.md -> dev/reports/PR_26175_CHARLIE_007-system-health-environment-identity.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_008-system-health-current-database-health.md -> dev/reports/PR_26175_CHARLIE_008-system-health-current-database-health.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_009-system-health-current-r2-health.md -> dev/reports/PR_26175_CHARLIE_009-system-health-current-r2-health.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_010-system-health-history-and-closeout.md -> dev/reports/PR_26175_CHARLIE_010-system-health-history-and-closeout.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-branch-validation.md -> dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-validation.md -> dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order.md -> dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_012-017-system-health-phase-2-closeout.md -> dev/reports/PR_26175_CHARLIE_012-017-system-health-phase-2-closeout.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-branch-validation.md -> dev/reports/PR_26175_CHARLIE_012-runtime-health-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_012-runtime-health-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_012-runtime-health-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-validation.md -> dev/reports/PR_26175_CHARLIE_012-runtime-health-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health.md -> dev/reports/PR_26175_CHARLIE_012-runtime-health.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-branch-validation.md -> dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-validation.md -> dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard.md -> dev/reports/PR_26175_CHARLIE_013-service-health-dashboard.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-branch-validation.md -> dev/reports/PR_26175_CHARLIE_014-configuration-summary-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_014-configuration-summary-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_014-configuration-summary-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-validation.md -> dev/reports/PR_26175_CHARLIE_014-configuration-summary-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary.md -> dev/reports/PR_26175_CHARLIE_014-configuration-summary.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-branch-validation.md -> dev/reports/PR_26175_CHARLIE_015-manual-health-actions-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_015-manual-health-actions-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_015-manual-health-actions-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-validation.md -> dev/reports/PR_26175_CHARLIE_015-manual-health-actions-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions.md -> dev/reports/PR_26175_CHARLIE_015-manual-health-actions.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-branch-validation.md -> dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-validation.md -> dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring.md -> dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-branch-validation.md -> dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-validation.md -> dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation.md -> dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-branch-validation.md -> dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-validation.md -> dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup.md -> dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-branch-validation.md -> dev/reports/PR_26175_CHARLIE_019-environment-capabilities-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_019-environment-capabilities-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_019-environment-capabilities-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-validation.md -> dev/reports/PR_26175_CHARLIE_019-environment-capabilities-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities.md -> dev/reports/PR_26175_CHARLIE_019-environment-capabilities.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-branch-validation.md -> dev/reports/PR_26175_CHARLIE_020-admin-api-registry-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_020-admin-api-registry-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_020-admin-api-registry-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-validation.md -> dev/reports/PR_26175_CHARLIE_020-admin-api-registry-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry.md -> dev/reports/PR_26175_CHARLIE_020-admin-api-registry.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-branch-validation.md -> dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-validation.md -> dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags.md -> dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-branch-validation.md -> dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-validation.md -> dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite.md -> dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-branch-validation.md -> dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-validation.md -> dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout.md -> dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-branch-validation.md -> dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-validation.md -> dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs.md -> dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-branch-validation.md -> dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-validation.md -> dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout.md -> dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-branch-validation.md -> dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-validation.md -> dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout.md -> dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-branch-validation.md -> dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-validation.md -> dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit.md -> dev/reports/PR_26175_CHARLIE_027-final-charlie-audit.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-branch-validation.md -> dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-manual-validation-notes.md -> dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-requirement-checklist.md -> dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-validation.md -> dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout.md -> dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_EOD-branch-validation.md -> dev/reports/PR_26175_CHARLIE_EOD-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_EOD-closeout.md -> dev/reports/PR_26175_CHARLIE_EOD-closeout.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_EOD-merge-summary.md -> dev/reports/PR_26175_CHARLIE_EOD-merge-summary.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_cycle-complete.md -> dev/reports/PR_26175_CHARLIE_cycle-complete.md -R dev/docs_build/dev/reports/PR_26175_CHARLIE_repository-audit.md -> dev/reports/PR_26175_CHARLIE_repository-audit.md -R dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-branch-validation.md -> dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-manual-validation-notes.md -> dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-requirement-checklist.md -> dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-validation.md -> dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization.md -> dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization.md -R dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-branch-validation.md -> dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-manual-validation-notes.md -> dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-requirement-checklist.md -> dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-validation.md -> dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation.md -> dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-branch-validation.md -> dev/reports/PR_26175_DELTA_003_API_Client_Standardization-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-manual-validation-notes.md -> dev/reports/PR_26175_DELTA_003_API_Client_Standardization-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-requirement-checklist.md -> dev/reports/PR_26175_DELTA_003_API_Client_Standardization-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-validation.md -> dev/reports/PR_26175_DELTA_003_API_Client_Standardization-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization.md -> dev/reports/PR_26175_DELTA_003_API_Client_Standardization.md -R dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-branch-validation.md -> dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-manual-validation-notes.md -> dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-requirement-checklist.md -> dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-validation.md -> dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion.md -> dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion.md -R dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-branch-validation.md -> dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-manual-validation-notes.md -> dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-requirement-checklist.md -> dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-validation.md -> dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup.md -> dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup.md -R dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-branch-validation.md -> dev/reports/PR_26175_DELTA_006-page-service-test-lanes-branch-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-manual-validation-notes.md -> dev/reports/PR_26175_DELTA_006-page-service-test-lanes-manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-requirement-checklist.md -> dev/reports/PR_26175_DELTA_006-page-service-test-lanes-requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-validation.md -> dev/reports/PR_26175_DELTA_006-page-service-test-lanes-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes.md -> dev/reports/PR_26175_DELTA_006-page-service-test-lanes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage.md -> dev/reports/PR_26175_DELTA_007-runtime-service-coverage.md -R dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_branch-validation.md -> dev/reports/PR_26175_DELTA_007-runtime-service-coverage_branch-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_manual-validation-notes.md -> dev/reports/PR_26175_DELTA_007-runtime-service-coverage_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_requirements-checklist.md -> dev/reports/PR_26175_DELTA_007-runtime-service-coverage_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_validation-lane.md -> dev/reports/PR_26175_DELTA_007-runtime-service-coverage_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage.md -> dev/reports/PR_26175_DELTA_008-api-client-service-coverage.md -R dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_branch-validation.md -> dev/reports/PR_26175_DELTA_008-api-client-service-coverage_branch-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_manual-validation-notes.md -> dev/reports/PR_26175_DELTA_008-api-client-service-coverage_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_requirements-checklist.md -> dev/reports/PR_26175_DELTA_008-api-client-service-coverage_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_validation-lane.md -> dev/reports/PR_26175_DELTA_008-api-client-service-coverage_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage.md -> dev/reports/PR_26175_DELTA_009-replay-event-service-coverage.md -R dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_branch-validation.md -> dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_branch-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_manual-validation-notes.md -> dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_requirements-checklist.md -> dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_validation-lane.md -> dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_DELTA_010-final-team-delta-completion-report.md -> dev/reports/PR_26175_DELTA_010-final-team-delta-completion-report.md -R dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout.md -> dev/reports/PR_26175_DELTA_010-runtime-testability-closeout.md -R dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_branch-validation.md -> dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_branch-validation.md -R dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_manual-validation-notes.md -> dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_requirements-checklist.md -> dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_validation-lane.md -> dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_DELTA_EOD_final_report.md -> dev/reports/PR_26175_DELTA_EOD_final_report.md -R dev/docs_build/dev/reports/PR_26175_OWNER_046-pr-targeted-review-packets.md -> dev/reports/PR_26175_OWNER_046-pr-targeted-review-packets.md -R dev/docs_build/dev/reports/PR_26175_OWNER_047-codex-zip-required-for-all-runs.md -> dev/reports/PR_26175_OWNER_047-codex-zip-required-for-all-runs.md -R dev/docs_build/dev/reports/PR_26175_OWNER_048-pr-open-to-closed-main-return-governance.md -> dev/reports/PR_26175_OWNER_048-pr-open-to-closed-main-return-governance.md -R dev/docs_build/dev/reports/PR_26175_OWNER_049-governance-report-merge-batch.md -> dev/reports/PR_26175_OWNER_049-governance-report-merge-batch.md -R dev/docs_build/dev/reports/PR_26175_OWNER_049-pr-lifecycle-plan-after-open-branch-retention.md -> dev/reports/PR_26175_OWNER_049-pr-lifecycle-plan-after-open-branch-retention.md -R dev/docs_build/dev/reports/PR_26175_OWNER_050-eod-merge-push-cleanup-gate.md -> dev/reports/PR_26175_OWNER_050-eod-merge-push-cleanup-gate.md -R dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files.md -> dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files.md -R dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_branch-validation.md -> dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_branch-validation.md -R dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_manual-validation-notes.md -> dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_requirement-checklist.md -> dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_validation-lane.md -> dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report.md -> dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report.md -R dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_branch-validation.md -> dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_branch-validation.md -R dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_manual-validation-notes.md -> dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_requirement-checklist.md -> dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_validation-lane.md -> dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory.md -> dev/reports/PR_26175_OWNER_052-project-work-inventory.md -R dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_branch-validation.md -> dev/reports/PR_26175_OWNER_052-project-work-inventory_branch-validation.md -R dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_manual-validation-notes.md -> dev/reports/PR_26175_OWNER_052-project-work-inventory_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_requirement-checklist.md -> dev/reports/PR_26175_OWNER_052-project-work-inventory_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_validation-lane.md -> dev/reports/PR_26175_OWNER_052-project-work-inventory_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report.md -> dev/reports/PR_26175_OWNER_053-project-work-resolution-report.md -R dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_branch-validation.md -> dev/reports/PR_26175_OWNER_053-project-work-resolution-report_branch-validation.md -R dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_manual-validation-notes.md -> dev/reports/PR_26175_OWNER_053-project-work-resolution-report_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_requirement-checklist.md -> dev/reports/PR_26175_OWNER_053-project-work-resolution-report_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_validation-lane.md -> dev/reports/PR_26175_OWNER_053-project-work-resolution-report_validation-lane.md -R dev/docs_build/dev/reports/PR_26175_OWNER_054-legal-corrected-package.md -> dev/reports/PR_26175_OWNER_054-legal-corrected-package.md -R dev/docs_build/dev/reports/PR_26175_OWNER_055-remaining-open-pr-action-plan.md -> dev/reports/PR_26175_OWNER_055-remaining-open-pr-action-plan.md -R dev/docs_build/dev/reports/PR_26175_OWNER_056-final-open-pr-resolution-plan.md -> dev/reports/PR_26175_OWNER_056-final-open-pr-resolution-plan.md -R dev/docs_build/dev/reports/PR_26175_OWNER_057-final-five-pr-decision-plan.md -> dev/reports/PR_26175_OWNER_057-final-five-pr-decision-plan.md -R dev/docs_build/dev/reports/PR_26175_OWNER_all-pr-outstanding-audit.md -> dev/reports/PR_26175_OWNER_all-pr-outstanding-audit.md -R dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation.md -> dev/reports/PR_26177_001-shared-hash-foundation.md -R dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_branch-validation.md -> dev/reports/PR_26177_001-shared-hash-foundation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_manual-validation-notes.md -> dev/reports/PR_26177_001-shared-hash-foundation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_requirement-checklist.md -> dev/reports/PR_26177_001-shared-hash-foundation_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_validation-lane.md -> dev/reports/PR_26177_001-shared-hash-foundation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation.md -> dev/reports/PR_26177_002-shared-noise-foundation.md -R dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_branch-validation.md -> dev/reports/PR_26177_002-shared-noise-foundation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_manual-validation-notes.md -> dev/reports/PR_26177_002-shared-noise-foundation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_requirement-checklist.md -> dev/reports/PR_26177_002-shared-noise-foundation_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_validation-lane.md -> dev/reports/PR_26177_002-shared-noise-foundation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation.md -> dev/reports/PR_26177_003-shared-geometry-foundation.md -R dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_branch-validation.md -> dev/reports/PR_26177_003-shared-geometry-foundation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_manual-validation-notes.md -> dev/reports/PR_26177_003-shared-geometry-foundation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_requirement-checklist.md -> dev/reports/PR_26177_003-shared-geometry-foundation_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_validation-lane.md -> dev/reports/PR_26177_003-shared-geometry-foundation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation.md -> dev/reports/PR_26177_004-shared-color-foundation.md -R dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_branch-validation.md -> dev/reports/PR_26177_004-shared-color-foundation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_manual-validation-notes.md -> dev/reports/PR_26177_004-shared-color-foundation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_requirement-checklist.md -> dev/reports/PR_26177_004-shared-color-foundation_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_validation-lane.md -> dev/reports/PR_26177_004-shared-color-foundation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation.md -> dev/reports/PR_26177_005-shared-text-foundation.md -R dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_branch-validation.md -> dev/reports/PR_26177_005-shared-text-foundation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_manual-validation-notes.md -> dev/reports/PR_26177_005-shared-text-foundation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_requirement-checklist.md -> dev/reports/PR_26177_005-shared-text-foundation_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_validation-lane.md -> dev/reports/PR_26177_005-shared-text-foundation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation.md -> dev/reports/PR_26177_006-shared-time-foundation.md -R dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_branch-validation.md -> dev/reports/PR_26177_006-shared-time-foundation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_closeout.md -> dev/reports/PR_26177_006-shared-time-foundation_closeout.md -R dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_manual-validation-notes.md -> dev/reports/PR_26177_006-shared-time-foundation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_requirement-checklist.md -> dev/reports/PR_26177_006-shared-time-foundation_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_validation-lane.md -> dev/reports/PR_26177_006-shared-time-foundation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_branch-validation.md -> dev/reports/PR_26177_ALFA_058-flat-project-tags_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_manual-validation-notes.md -> dev/reports/PR_26177_ALFA_058-flat-project-tags_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_report.md -> dev/reports/PR_26177_ALFA_058-flat-project-tags_report.md -R dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_requirement-checklist.md -> dev/reports/PR_26177_ALFA_058-flat-project-tags_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_validation-lane.md -> dev/reports/PR_26177_ALFA_058-flat-project-tags_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_branch-validation.md -> dev/reports/PR_26177_ALFA_059-game-crew-foundation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_manual-validation-notes.md -> dev/reports/PR_26177_ALFA_059-game-crew-foundation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_report.md -> dev/reports/PR_26177_ALFA_059-game-crew-foundation_report.md -R dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_requirement-checklist.md -> dev/reports/PR_26177_ALFA_059-game-crew-foundation_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_validation-lane.md -> dev/reports/PR_26177_ALFA_059-game-crew-foundation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_branch-validation.md -> dev/reports/PR_26177_ALFA_060-game-design-foundation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_manual-validation-notes.md -> dev/reports/PR_26177_ALFA_060-game-design-foundation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_report.md -> dev/reports/PR_26177_ALFA_060-game-design-foundation_report.md -R dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_requirement-checklist.md -> dev/reports/PR_26177_ALFA_060-game-design-foundation_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_validation-lane.md -> dev/reports/PR_26177_ALFA_060-game-design-foundation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_branch-validation.md -> dev/reports/PR_26177_ALFA_061-game-configuration-foundation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_manual-validation-notes.md -> dev/reports/PR_26177_ALFA_061-game-configuration-foundation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_report.md -> dev/reports/PR_26177_ALFA_061-game-configuration-foundation_report.md -R dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_requirement-checklist.md -> dev/reports/PR_26177_ALFA_061-game-configuration-foundation_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_validation-lane.md -> dev/reports/PR_26177_ALFA_061-game-configuration-foundation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_001-audit-text-to-speech-profiles-emotions.md -> dev/reports/PR_26177_BRAVO_001-audit-text-to-speech-profiles-emotions.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_002-complete-text-to-speech-gap-fixes.md -> dev/reports/PR_26177_BRAVO_002-complete-text-to-speech-gap-fixes.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_002-correct-team-branch-governance.md -> dev/reports/PR_26177_BRAVO_002-correct-team-branch-governance.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_004-fix-emotion-preview-parent-voice.md -> dev/reports/PR_26177_BRAVO_004-fix-emotion-preview-parent-voice.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_005-fix-tts-seed-profiles-and-guest-save-routing.md -> dev/reports/PR_26177_BRAVO_005-fix-tts-seed-profiles-and-guest-save-routing.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_006-delete-broken-tts-seed-profiles.md -> dev/reports/PR_26177_BRAVO_006-delete-broken-tts-seed-profiles.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_007-delete-broken-tts-profile-parents.md -> dev/reports/PR_26177_BRAVO_007-delete-broken-tts-profile-parents.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_008-delete-empty-tts-profile-parents.md -> dev/reports/PR_26177_BRAVO_008-delete-empty-tts-profile-parents.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_009-force-delete-broken-tts-profiles.md -> dev/reports/PR_26177_BRAVO_009-force-delete-broken-tts-profiles.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_012-add-emotion-editor-preview.md -> dev/reports/PR_26177_BRAVO_012-add-emotion-editor-preview.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_013-fix-local-db-snapshot-eod-gate.md -> dev/reports/PR_26177_BRAVO_013-fix-local-db-snapshot-eod-gate.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_014-playwright-chromium-validation.md -> dev/reports/PR_26177_BRAVO_014-playwright-chromium-validation.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_015-final-eod-closeout.md -> dev/reports/PR_26177_BRAVO_015-final-eod-closeout.md -R dev/docs_build/dev/reports/PR_26177_BRAVO_EOD-closeout.md -> dev/reports/PR_26177_BRAVO_EOD-closeout.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete.md -> dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_branch-validation.md -> dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_manual-validation-notes.md -> dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_requirements-checklist.md -> dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_validation-lane.md -> dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete.md -> dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_branch-validation.md -> dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_manual-validation-notes.md -> dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_requirements-checklist.md -> dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_validation-lane.md -> dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete.md -> dev/reports/PR_26177_CHARLIE_008-environment-management-complete.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_branch-validation.md -> dev/reports/PR_26177_CHARLIE_008-environment-management-complete_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_manual-validation-notes.md -> dev/reports/PR_26177_CHARLIE_008-environment-management-complete_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_requirements-checklist.md -> dev/reports/PR_26177_CHARLIE_008-environment-management-complete_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_validation-lane.md -> dev/reports/PR_26177_CHARLIE_008-environment-management-complete_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel.md -> dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_branch-validation.md -> dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_manual-validation-notes.md -> dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_requirements-checklist.md -> dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_validation-lane.md -> dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation.md -> dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_branch-validation.md -> dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_manual-validation-notes.md -> dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_requirements-checklist.md -> dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_validation-lane.md -> dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison.md -> dev/reports/PR_26177_CHARLIE_031-environment-health-comparison.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_branch-validation.md -> dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_manual-validation-notes.md -> dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_requirements-checklist.md -> dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_validation-lane.md -> dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints.md -> dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_branch-validation.md -> dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_manual-validation-notes.md -> dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_requirements-checklist.md -> dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_validation-lane.md -> dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup.md -> dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_branch-validation.md -> dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_manual-validation-notes.md -> dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_requirements-checklist.md -> dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_validation-lane.md -> dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish.md -> dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_branch-validation.md -> dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_manual-validation-notes.md -> dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_requirements-checklist.md -> dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_validation-lane.md -> dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout.md -> dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_branch-validation.md -> dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_manual-validation-notes.md -> dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_requirements-checklist.md -> dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_validation-lane.md -> dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership.md -> dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership.md -R dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_branch-validation.md -> dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_manual-validation-notes.md -> dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_requirement-checklist.md -> dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-checklist.md -> dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-lane.md -> dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation.md -> dev/reports/PR_26177_DELTA_002-hitboxes-foundation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_branch-validation.md -> dev/reports/PR_26177_DELTA_002-hitboxes-foundation_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_manual-validation-notes.md -> dev/reports/PR_26177_DELTA_002-hitboxes-foundation_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_requirement-checklist.md -> dev/reports/PR_26177_DELTA_002-hitboxes-foundation_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_validation-lane.md -> dev/reports/PR_26177_DELTA_002-hitboxes-foundation_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract.md -> dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract.md -R dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_branch-validation.md -> dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_manual-validation-notes.md -> dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_requirement-checklist.md -> dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_validation-lane.md -> dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source.md -> dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source.md -R dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_branch-validation.md -> dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_manual-validation-notes.md -> dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_requirement-checklist.md -> dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_validation-lane.md -> dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp.md -> dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp.md -R dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_branch_validation.md -> dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_branch_validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_manual_validation.md -> dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_manual_validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_requirements_checklist.md -> dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_requirements_checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_validation_lane.md -> dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_validation_lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility.md -> dev/reports/PR_26177_DELTA_052-random-seed-utility.md -R dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_branch-validation.md -> dev/reports/PR_26177_DELTA_052-random-seed-utility_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_instruction-compliance-checklist.md -> dev/reports/PR_26177_DELTA_052-random-seed-utility_instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_manual-validation-notes.md -> dev/reports/PR_26177_DELTA_052-random-seed-utility_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_requirement-checklist.md -> dev/reports/PR_26177_DELTA_052-random-seed-utility_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_validation-lane.md -> dev/reports/PR_26177_DELTA_052-random-seed-utility_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers.md -> dev/reports/PR_26177_DELTA_053-random-shared-helpers.md -R dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_branch-validation.md -> dev/reports/PR_26177_DELTA_053-random-shared-helpers_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_instruction-compliance-checklist.md -> dev/reports/PR_26177_DELTA_053-random-shared-helpers_instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_manual-validation-notes.md -> dev/reports/PR_26177_DELTA_053-random-shared-helpers_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_requirement-checklist.md -> dev/reports/PR_26177_DELTA_053-random-shared-helpers_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_validation-lane.md -> dev/reports/PR_26177_DELTA_053-random-shared-helpers_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility.md -> dev/reports/PR_26177_DELTA_054-random-utility.md -R dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_branch-validation.md -> dev/reports/PR_26177_DELTA_054-random-utility_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_instruction-compliance-checklist.md -> dev/reports/PR_26177_DELTA_054-random-utility_instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_manual-validation-notes.md -> dev/reports/PR_26177_DELTA_054-random-utility_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_requirement-checklist.md -> dev/reports/PR_26177_DELTA_054-random-utility_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_validation-lane.md -> dev/reports/PR_26177_DELTA_054-random-utility_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements.md -> dev/reports/PR_26177_DELTA_055-random-seed-enhancements.md -R dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_branch-validation.md -> dev/reports/PR_26177_DELTA_055-random-seed-enhancements_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_instruction-compliance-checklist.md -> dev/reports/PR_26177_DELTA_055-random-seed-enhancements_instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_manual-validation-notes.md -> dev/reports/PR_26177_DELTA_055-random-seed-enhancements_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_requirement-checklist.md -> dev/reports/PR_26177_DELTA_055-random-seed-enhancements_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_validation-lane.md -> dev/reports/PR_26177_DELTA_055-random-seed-enhancements_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions.md -> dev/reports/PR_26177_DELTA_056-shared-validation-assertions.md -R dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_branch-validation.md -> dev/reports/PR_26177_DELTA_056-shared-validation-assertions_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_instruction-compliance-checklist.md -> dev/reports/PR_26177_DELTA_056-shared-validation-assertions_instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_manual-validation-notes.md -> dev/reports/PR_26177_DELTA_056-shared-validation-assertions_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_requirement-checklist.md -> dev/reports/PR_26177_DELTA_056-shared-validation-assertions_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_validation-lane.md -> dev/reports/PR_26177_DELTA_056-shared-validation-assertions_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_DELTA_hitboxes_chain_eod_2026-06-26.md -> dev/reports/PR_26177_DELTA_hitboxes_chain_eod_2026-06-26.md -R dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration.md -> dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration.md -R dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_branch-validation.md -> dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_manual-validation-notes.md -> dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_requirements-checklist.md -> dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_validation-lane.md -> dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock.md -> dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock.md -R dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_branch-validation.md -> dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_manual-validation-notes.md -> dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_requirement-checklist.md -> dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_validation-lane.md -> dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup.md -> dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup.md -R dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_branch-validation.md -> dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_manual-validation-notes.md -> dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_requirement-checklist.md -> dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_validation-lane.md -> dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment.md -> dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment.md -R dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_branch-validation.md -> dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_manual-validation-notes.md -> dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_requirements-checklist.md -> dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_validation-lane.md -> dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard.md -> dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard.md -R dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_branch-validation.md -> dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_manual-validation-notes.md -> dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_requirements-checklist.md -> dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_validation-lane.md -> dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard.md -> dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard.md -R dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_branch-validation.md -> dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_manual-validation-notes.md -> dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_requirements-checklist.md -> dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_validation-lane.md -> dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization.md -> dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization.md -R dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_branch-validation.md -> dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_manual-validation-notes.md -> dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_requirements-checklist.md -> dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_validation-lane.md -> dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model.md -> dev/reports/PR_26177_OWNER_050-environment-governance-model.md -R dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_branch-validation.md -> dev/reports/PR_26177_OWNER_050-environment-governance-model_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_instruction-compliance-checklist.md -> dev/reports/PR_26177_OWNER_050-environment-governance-model_instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_manual-validation-notes.md -> dev/reports/PR_26177_OWNER_050-environment-governance-model_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_requirement-checklist.md -> dev/reports/PR_26177_OWNER_050-environment-governance-model_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_validation-lane.md -> dev/reports/PR_26177_OWNER_050-environment-governance-model_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards.md -> dev/reports/PR_26177_OWNER_051-environment-configuration-standards.md -R dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_branch-validation.md -> dev/reports/PR_26177_OWNER_051-environment-configuration-standards_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_instruction-compliance-checklist.md -> dev/reports/PR_26177_OWNER_051-environment-configuration-standards_instruction-compliance-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_manual-validation-notes.md -> dev/reports/PR_26177_OWNER_051-environment-configuration-standards_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_requirement-checklist.md -> dev/reports/PR_26177_OWNER_051-environment-configuration-standards_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_validation-lane.md -> dev/reports/PR_26177_OWNER_051-environment-configuration-standards_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update.md -> dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update.md -R dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_branch-validation.md -> dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_manual-validation-notes.md -> dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_requirements-checklist.md -> dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_requirements-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_validation-lane.md -> dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_validation-lane.md -R dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_branch-validation.md -> dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_branch-validation.md -R dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_manual-validation-notes.md -> dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_report.md -> dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_report.md -R dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_requirement-checklist.md -> dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_validation-lane.md -> dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_validation-lane.md -R dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_branch-validation.md -> dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_branch-validation.md -R dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_manual-validation-notes.md -> dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_report.md -> dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_report.md -R dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_requirement-checklist.md -> dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-lane.md -> dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-lane.md -R dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-report.md -> dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-report.md -R dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell.md -> dev/reports/PR_26179_OWNER_003-dev-root-shell.md -R dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_branch-validation.md -> dev/reports/PR_26179_OWNER_003-dev-root-shell_branch-validation.md -R dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_manual-validation-notes.md -> dev/reports/PR_26179_OWNER_003-dev-root-shell_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_requirement-checklist.md -> dev/reports/PR_26179_OWNER_003-dev-root-shell_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_validation-lane.md -> dev/reports/PR_26179_OWNER_003-dev-root-shell_validation-lane.md -R dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace.md -> dev/reports/PR_26179_OWNER_004-move-governance-workspace.md -R dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_branch-validation.md -> dev/reports/PR_26179_OWNER_004-move-governance-workspace_branch-validation.md -R dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_manual-validation-notes.md -> dev/reports/PR_26179_OWNER_004-move-governance-workspace_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_requirement-checklist.md -> dev/reports/PR_26179_OWNER_004-move-governance-workspace_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_validation-lane.md -> dev/reports/PR_26179_OWNER_004-move-governance-workspace_validation-lane.md -R dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev.md -> dev/reports/PR_26179_OWNER_005-move-tests-to-dev.md -R dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_branch-validation.md -> dev/reports/PR_26179_OWNER_005-move-tests-to-dev_branch-validation.md -R dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_manual-validation-notes.md -> dev/reports/PR_26179_OWNER_005-move-tests-to-dev_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_requirement-checklist.md -> dev/reports/PR_26179_OWNER_005-move-tests-to-dev_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_validation-lane.md -> dev/reports/PR_26179_OWNER_005-move-tests-to-dev_validation-lane.md -R dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts.md -> dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts.md -R dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_branch-validation.md -> dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_branch-validation.md -R dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_manual-validation-notes.md -> dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_manual-validation-notes.md -R dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_requirement-checklist.md -> dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_requirement-checklist.md -R dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_validation-lane.md -> dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_validation-lane.md -A dev/reports/PR_26179_OWNER_007-move-reports-artifacts.md -A dev/reports/PR_26179_OWNER_007-move-reports-artifacts_branch-validation.md -A dev/reports/PR_26179_OWNER_007-move-reports-artifacts_manual-validation-notes.md -A dev/reports/PR_26179_OWNER_007-move-reports-artifacts_requirement-checklist.md -A dev/reports/PR_26179_OWNER_007-move-reports-artifacts_validation-lane.md -R dev/docs_build/dev/reports/PR_REVIEW_003.md -> dev/reports/PR_REVIEW_003.md -R dev/docs_build/dev/reports/PR_REVIEW_050.md -> dev/reports/PR_REVIEW_050.md -R dev/docs_build/dev/reports/PR_REVIEW_051.md -> dev/reports/PR_REVIEW_051.md -R dev/docs_build/dev/reports/PR_REVIEW_118.md -> dev/reports/PR_REVIEW_118.md -R dev/docs_build/dev/reports/PR_koti_layout_contract_report.md -> dev/reports/PR_koti_layout_contract_report.md -R dev/docs_build/dev/reports/PR_tool_fix_fullscreen_exit_state_report.md -> dev/reports/PR_tool_fix_fullscreen_exit_state_report.md -R dev/docs_build/dev/reports/PR_tool_fix_parallax_header_metadata_report.md -> dev/reports/PR_tool_fix_parallax_header_metadata_report.md -R dev/docs_build/dev/reports/PR_tool_layout_workflow_baseline_report.md -> dev/reports/PR_tool_layout_workflow_baseline_report.md -R dev/docs_build/dev/reports/PR_tool_remove_future_import_hints_report.md -> dev/reports/PR_tool_remove_future_import_hints_report.md -R dev/docs_build/dev/reports/PR_tool_remove_static_header_intro_report.md -> dev/reports/PR_tool_remove_static_header_intro_report.md -R dev/docs_build/dev/reports/PR_tool_uat_closeout_report.md -> dev/reports/PR_tool_uat_closeout_report.md -R dev/docs_build/dev/reports/PR_tool_uat_failure_fix_report.md -> dev/reports/PR_tool_uat_failure_fix_report.md -R dev/docs_build/dev/reports/PR_tool_uat_fix_fullscreen_header_wiring_report.md -> dev/reports/PR_tool_uat_fix_fullscreen_header_wiring_report.md -R dev/docs_build/dev/reports/PR_tool_uat_fix_header_asset_browser_report.md -> dev/reports/PR_tool_uat_fix_header_asset_browser_report.md -R dev/docs_build/dev/reports/README_BUILD_PR_LEVEL_20_4.md -> dev/reports/README_BUILD_PR_LEVEL_20_4.md -R dev/docs_build/dev/reports/README_PR_11_196.md -> dev/reports/README_PR_11_196.md -R dev/docs_build/dev/reports/README_PR_11_98.md -> dev/reports/README_PR_11_98.md -R dev/docs_build/dev/reports/README_PR_11_99.md -> dev/reports/README_PR_11_99.md -R dev/docs_build/dev/reports/REPORT_PR_10_10.md -> dev/reports/REPORT_PR_10_10.md -R dev/docs_build/dev/reports/REPORT_PR_10_11.md -> dev/reports/REPORT_PR_10_11.md -R dev/docs_build/dev/reports/REPORT_PR_10_12.md -> dev/reports/REPORT_PR_10_12.md -R dev/docs_build/dev/reports/REPORT_PR_10_13.md -> dev/reports/REPORT_PR_10_13.md -R dev/docs_build/dev/reports/REPORT_PR_10_14.md -> dev/reports/REPORT_PR_10_14.md -R dev/docs_build/dev/reports/REPORT_PR_10_15.md -> dev/reports/REPORT_PR_10_15.md -R dev/docs_build/dev/reports/REPORT_PR_10_16.md -> dev/reports/REPORT_PR_10_16.md -R dev/docs_build/dev/reports/REPORT_PR_10_17.md -> dev/reports/REPORT_PR_10_17.md -R dev/docs_build/dev/reports/REPORT_PR_10_19.md -> dev/reports/REPORT_PR_10_19.md -R dev/docs_build/dev/reports/REPORT_PR_10_20.md -> dev/reports/REPORT_PR_10_20.md -R dev/docs_build/dev/reports/REPORT_PR_10_21.md -> dev/reports/REPORT_PR_10_21.md -R dev/docs_build/dev/reports/REPORT_PR_10_22.md -> dev/reports/REPORT_PR_10_22.md -R dev/docs_build/dev/reports/REPORT_PR_10_23.md -> dev/reports/REPORT_PR_10_23.md -R dev/docs_build/dev/reports/REPORT_PR_10_24.md -> dev/reports/REPORT_PR_10_24.md -R dev/docs_build/dev/reports/REPORT_PR_10_25.md -> dev/reports/REPORT_PR_10_25.md -R dev/docs_build/dev/reports/REPORT_PR_10_26.md -> dev/reports/REPORT_PR_10_26.md -R dev/docs_build/dev/reports/REPORT_PR_10_27.md -> dev/reports/REPORT_PR_10_27.md -R dev/docs_build/dev/reports/REPORT_PR_10_7.md -> dev/reports/REPORT_PR_10_7.md -R dev/docs_build/dev/reports/REPORT_PR_10_8.md -> dev/reports/REPORT_PR_10_8.md -R dev/docs_build/dev/reports/REPORT_PR_10_9.md -> dev/reports/REPORT_PR_10_9.md -R dev/docs_build/dev/reports/REPORT_PR_11_1.md -> dev/reports/REPORT_PR_11_1.md -R dev/docs_build/dev/reports/REPORT_PR_11_10.md -> dev/reports/REPORT_PR_11_10.md -R dev/docs_build/dev/reports/REPORT_PR_11_11.md -> dev/reports/REPORT_PR_11_11.md -R dev/docs_build/dev/reports/REPORT_PR_11_12.md -> dev/reports/REPORT_PR_11_12.md -R dev/docs_build/dev/reports/REPORT_PR_11_13.md -> dev/reports/REPORT_PR_11_13.md -R dev/docs_build/dev/reports/REPORT_PR_11_14.md -> dev/reports/REPORT_PR_11_14.md -R dev/docs_build/dev/reports/REPORT_PR_11_18.md -> dev/reports/REPORT_PR_11_18.md -R dev/docs_build/dev/reports/REPORT_PR_11_19.md -> dev/reports/REPORT_PR_11_19.md -R dev/docs_build/dev/reports/REPORT_PR_11_2.md -> dev/reports/REPORT_PR_11_2.md -R dev/docs_build/dev/reports/REPORT_PR_11_20.md -> dev/reports/REPORT_PR_11_20.md -R dev/docs_build/dev/reports/REPORT_PR_11_21.md -> dev/reports/REPORT_PR_11_21.md -R dev/docs_build/dev/reports/REPORT_PR_11_22.md -> dev/reports/REPORT_PR_11_22.md -R dev/docs_build/dev/reports/REPORT_PR_11_3.md -> dev/reports/REPORT_PR_11_3.md -R dev/docs_build/dev/reports/REPORT_PR_11_4.md -> dev/reports/REPORT_PR_11_4.md -R dev/docs_build/dev/reports/REPORT_PR_11_5.md -> dev/reports/REPORT_PR_11_5.md -R dev/docs_build/dev/reports/REPORT_PR_11_6.md -> dev/reports/REPORT_PR_11_6.md -R dev/docs_build/dev/reports/REPORT_PR_11_7.md -> dev/reports/REPORT_PR_11_7.md -R dev/docs_build/dev/reports/REPORT_PR_11_8.md -> dev/reports/REPORT_PR_11_8.md -R dev/docs_build/dev/reports/REPORT_PR_11_9.md -> dev/reports/REPORT_PR_11_9.md -R dev/docs_build/dev/reports/ROADMAP_RENAME_REFERENCE_UPDATE.md -> dev/reports/ROADMAP_RENAME_REFERENCE_UPDATE.md -R dev/docs_build/dev/reports/account_achievements_tab_sidebar_fix_report.md -> dev/reports/account_achievements_tab_sidebar_fix_report.md -R dev/docs_build/dev/reports/account_achievements_wireframe_report.md -> dev/reports/account_achievements_wireframe_report.md -R dev/docs_build/dev/reports/achievements-project-data-alignment-report.md -> dev/reports/achievements-project-data-alignment-report.md -R dev/docs_build/dev/reports/active_asset_tile_renderer_11_159.txt -> dev/reports/active_asset_tile_renderer_11_159.txt -R dev/docs_build/dev/reports/active_game_manifest_discovery.md -> dev/reports/active_game_manifest_discovery.md -R dev/docs_build/dev/reports/active_surface_closeout_report.md -> dev/reports/active_surface_closeout_report.md -R dev/docs_build/dev/reports/active_test_suite_reconciliation_report.md -> dev/reports/active_test_suite_reconciliation_report.md -R dev/docs_build/dev/reports/active_toolbox_reduction_report.md -> dev/reports/active_toolbox_reduction_report.md -R dev/docs_build/dev/reports/admin-creator-view-banner.md -> dev/reports/admin-creator-view-banner.md -R dev/docs_build/dev/reports/admin-left-menu-alphabetical-report.md -> dev/reports/admin-left-menu-alphabetical-report.md -R dev/docs_build/dev/reports/admin-my-stuff-classification-report.md -> dev/reports/admin-my-stuff-classification-report.md -R dev/docs_build/dev/reports/admin-my-stuff-submenu-report.md -> dev/reports/admin-my-stuff-submenu-report.md -R dev/docs_build/dev/reports/admin-notes-cleanup-report.md -> dev/reports/admin-notes-cleanup-report.md -R dev/docs_build/dev/reports/admin-notes-directory-links-and-legend-report.md -> dev/reports/admin-notes-directory-links-and-legend-report.md -R dev/docs_build/dev/reports/admin-notes-index-and-custom-links-report.md -> dev/reports/admin-notes-index-and-custom-links-report.md -R dev/docs_build/dev/reports/admin-notes-legend-and-return-polish-report.md -> dev/reports/admin-notes-legend-and-return-polish-report.md -R dev/docs_build/dev/reports/admin-notes-live-folder-listing-report.md -> dev/reports/admin-notes-live-folder-listing-report.md -R dev/docs_build/dev/reports/admin-notes-local-menu-entry-report.md -> dev/reports/admin-notes-local-menu-entry-report.md -R dev/docs_build/dev/reports/admin-notes-local-viewer-restore-report.md -> dev/reports/admin-notes-local-viewer-restore-report.md -R dev/docs_build/dev/reports/admin-notes-menu-link-report.md -> dev/reports/admin-notes-menu-link-report.md -R dev/docs_build/dev/reports/admin-notes-menu-route-fix-report.md -> dev/reports/admin-notes-menu-route-fix-report.md -R dev/docs_build/dev/reports/admin-notes-menu-visible-local-report.md -> dev/reports/admin-notes-menu-visible-local-report.md -R dev/docs_build/dev/reports/admin-notes-navigation-polish-report.md -> dev/reports/admin-notes-navigation-polish-report.md -R dev/docs_build/dev/reports/admin-notes-template-route-report.md -> dev/reports/admin-notes-template-route-report.md -R dev/docs_build/dev/reports/admin-notes-viewer-page-fix-report.md -> dev/reports/admin-notes-viewer-page-fix-report.md -R dev/docs_build/dev/reports/admin-notes-viewer-report.md -> dev/reports/admin-notes-viewer-report.md -R dev/docs_build/dev/reports/admin-platform-tools-wireframes-report.md -> dev/reports/admin-platform-tools-wireframes-report.md -R dev/docs_build/dev/reports/admin-project-data-alignment.md -> dev/reports/admin-project-data-alignment.md -R dev/docs_build/dev/reports/admin-project-data-banner.md -> dev/reports/admin-project-data-banner.md -R dev/docs_build/dev/reports/admin-tool-vote-template-conversion-report.md -> dev/reports/admin-tool-vote-template-conversion-report.md -R dev/docs_build/dev/reports/admin-tools-progress-hydration.md -> dev/reports/admin-tools-progress-hydration.md -R dev/docs_build/dev/reports/admin-tools-progress-rename.md -> dev/reports/admin-tools-progress-rename.md -R dev/docs_build/dev/reports/admin_menu_configuration_link_validation.md -> dev/reports/admin_menu_configuration_link_validation.md -R dev/docs_build/dev/reports/advanced_index_barrel_removal_report.md -> dev/reports/advanced_index_barrel_removal_report.md -R dev/docs_build/dev/reports/all_game_manifest_workspace_v2_normalization_report.md -> dev/reports/all_game_manifest_workspace_v2_normalization_report.md -R dev/docs_build/dev/reports/api-static-route-recovery-report.md -> dev/reports/api-static-route-recovery-report.md -R dev/docs_build/dev/reports/api_contract_validation_report.md -> dev/reports/api_contract_validation_report.md -R dev/docs_build/dev/reports/api_lock_closeout_report.txt -> dev/reports/api_lock_closeout_report.txt -R dev/docs_build/dev/reports/archive_policy_final_alignment_report.md -> dev/reports/archive_policy_final_alignment_report.md -R dev/docs_build/dev/reports/archive_v1_v2_finalization_report.md -> dev/reports/archive_v1_v2_finalization_report.md -R dev/docs_build/dev/reports/archive_v1_v2_reference_material_report.md -> dev/reports/archive_v1_v2_reference_material_report.md -R dev/docs_build/dev/reports/array_formatting_rule_11_104.txt -> dev/reports/array_formatting_rule_11_104.txt -R dev/docs_build/dev/reports/asset-dynamic-picker-model-report.md -> dev/reports/asset-dynamic-picker-model-report.md -R dev/docs_build/dev/reports/asset-import-correction-stacked-report.md -> dev/reports/asset-import-correction-stacked-report.md -R dev/docs_build/dev/reports/asset-import-dropdown-layout-fix-report.md -> dev/reports/asset-import-dropdown-layout-fix-report.md -R dev/docs_build/dev/reports/asset-library-selection-layout-metadata-report.md -> dev/reports/asset-library-selection-layout-metadata-report.md -R dev/docs_build/dev/reports/asset-local-upload-reset-cleanup-report.md -> dev/reports/asset-local-upload-reset-cleanup-report.md -R dev/docs_build/dev/reports/asset-roles-storage-stacked-report.md -> dev/reports/asset-roles-storage-stacked-report.md -R dev/docs_build/dev/reports/asset-tool-rebuild-stacked-report.md -> dev/reports/asset-tool-rebuild-stacked-report.md -R dev/docs_build/dev/reports/asset_contract_tests_validation.md -> dev/reports/asset_contract_tests_validation.md -R dev/docs_build/dev/reports/asset_kind_canonicalization_11_106.txt -> dev/reports/asset_kind_canonicalization_11_106.txt -R dev/docs_build/dev/reports/asset_manifest_only_validation.md -> dev/reports/asset_manifest_only_validation.md -R dev/docs_build/dev/reports/asset_ownership_strategy_validation.txt -> dev/reports/asset_ownership_strategy_validation.txt -R dev/docs_build/dev/reports/assets-ready-gate.md -> dev/reports/assets-ready-gate.md -R dev/docs_build/dev/reports/asteroids_collision_and_object_vector_defaults_report.md -> dev/reports/asteroids_collision_and_object_vector_defaults_report.md -R dev/docs_build/dev/reports/asteroids_manifest_runtime_validation_report.md -> dev/reports/asteroids_manifest_runtime_validation_report.md -R dev/docs_build/dev/reports/asteroids_runtime_object_resolution_report.md -> dev/reports/asteroids_runtime_object_resolution_report.md -R dev/docs_build/dev/reports/asteroids_shared_tool_fallback_removal_report.md -> dev/reports/asteroids_shared_tool_fallback_removal_report.md -R dev/docs_build/dev/reports/asteroids_ship_state_visual_trace.md -> dev/reports/asteroids_ship_state_visual_trace.md -R dev/docs_build/dev/reports/asteroids_zip_inspection.md -> dev/reports/asteroids_zip_inspection.md -R dev/docs_build/dev/reports/audio_sfx_v8_coverage.md -> dev/reports/audio_sfx_v8_coverage.md -R dev/docs_build/dev/reports/audit_event_contract_tests_validation.md -> dev/reports/audit_event_contract_tests_validation.md -R dev/docs_build/dev/reports/audits/component-audit.md -> dev/reports/audits__component-audit.md -R dev/docs_build/dev/reports/audits/css-audit.md -> dev/reports/audits__css-audit.md -R dev/docs_build/dev/reports/audits/security-audit.md -> dev/reports/audits__security-audit.md -R dev/docs_build/dev/reports/auth-lockdown-and-audit-cleanup-report.md -> dev/reports/auth-lockdown-and-audit-cleanup-report.md -R dev/docs_build/dev/reports/backup_snapshot_contract_tests_validation.md -> dev/reports/backup_snapshot_contract_tests_validation.md -R dev/docs_build/dev/reports/batch_guardrail_contract.txt -> dev/reports/batch_guardrail_contract.txt -R dev/docs_build/dev/reports/blockers_11_113.txt -> dev/reports/blockers_11_113.txt -R dev/docs_build/dev/reports/boundary_cleanup_closeout_report.txt -> dev/reports/boundary_cleanup_closeout_report.txt -R dev/docs_build/dev/reports/branch-audit-colors-grid-selection-report.md -> dev/reports/branch-audit-colors-grid-selection-report.md -R dev/docs_build/dev/reports/branch_audit.md -> dev/reports/branch_audit.md -R dev/docs_build/dev/reports/branch_delete_report.md -> dev/reports/branch_delete_report.md -R dev/docs_build/dev/reports/branch_details_audit.md -> dev/reports/branch_details_audit.md -R dev/docs_build/dev/reports/broken_sample_tool_bindings_11_105.txt -> dev/reports/broken_sample_tool_bindings_11_105.txt -R dev/docs_build/dev/reports/browser-storage-product-data-audit-report.md -> dev/reports/browser-storage-product-data-audit-report.md -R dev/docs_build/dev/reports/browser_mock_debt_cleanup_report.md -> dev/reports/browser_mock_debt_cleanup_report.md -R dev/docs_build/dev/reports/browser_mock_remaining_audit.md -> dev/reports/browser_mock_remaining_audit.md -R dev/docs_build/dev/reports/build-path-progress-simplification.md -> dev/reports/build-path-progress-simplification.md -R dev/docs_build/dev/reports/build-path-status-table.md -> dev/reports/build-path-status-table.md -R dev/docs_build/dev/reports/build-path-targeted-msj-tests.md -> dev/reports/build-path-targeted-msj-tests.md -R dev/docs_build/dev/reports/build-path-tool-links-badges-report.md -> dev/reports/build-path-tool-links-badges-report.md -R dev/docs_build/dev/reports/builder_consolidation_report.md -> dev/reports/builder_consolidation_report.md -R dev/docs_build/dev/reports/canonical_tool_names_11_105.txt -> dev/reports/canonical_tool_names_11_105.txt -R dev/docs_build/dev/reports/capability-demo-project-seeds.md -> dev/reports/capability-demo-project-seeds.md -R dev/docs_build/dev/reports/change_summary.md -> dev/reports/change_summary.md -R dev/docs_build/dev/reports/change_summary.txt -> dev/reports/change_summary.txt -R dev/docs_build/dev/reports/cloud_template_styles_cleanup_report.md -> dev/reports/cloud_template_styles_cleanup_report.md -R dev/docs_build/dev/reports/codex_changed_files.txt -> dev/reports/codex_changed_files.txt -R dev/docs_build/dev/reports/codex_review.diff -> dev/reports/codex_review.diff -R dev/docs_build/dev/reports/collaboration_role_contract_tests_validation.md -> dev/reports/collaboration_role_contract_tests_validation.md -R dev/docs_build/dev/reports/colors-admin-menu-db-fonts-cleanup-report.md -> dev/reports/colors-admin-menu-db-fonts-cleanup-report.md -R dev/docs_build/dev/reports/colors-db-table-ownership-report.md -> dev/reports/colors-db-table-ownership-report.md -R dev/docs_build/dev/reports/colors-human-step-range-completion-report.md -> dev/reports/colors-human-step-range-completion-report.md -R dev/docs_build/dev/reports/colors-human-step-range-followup-report.md -> dev/reports/colors-human-step-range-followup-report.md -R dev/docs_build/dev/reports/colors-human-theme-step-range-report.md -> dev/reports/colors-human-theme-step-range-report.md -R dev/docs_build/dev/reports/colors-picker-duplicate-cleanup-report.md -> dev/reports/colors-picker-duplicate-cleanup-report.md -R dev/docs_build/dev/reports/colors-picker-layout-tags-report.md -> dev/reports/colors-picker-layout-tags-report.md -R dev/docs_build/dev/reports/colors-picker-metadata-layout-report.md -> dev/reports/colors-picker-metadata-layout-report.md -R dev/docs_build/dev/reports/colors-picker-preview-behavior-report.md -> dev/reports/colors-picker-preview-behavior-report.md -R dev/docs_build/dev/reports/colors-picker-preview-layout-report.md -> dev/reports/colors-picker-preview-layout-report.md -R dev/docs_build/dev/reports/colors-picker-viewer-restore-report.md -> dev/reports/colors-picker-viewer-restore-report.md -R dev/docs_build/dev/reports/colors-sorting-duplicate-grid-polish-report.md -> dev/reports/colors-sorting-duplicate-grid-polish-report.md -R dev/docs_build/dev/reports/colors-swatch-selection-restore-report.md -> dev/reports/colors-swatch-selection-restore-report.md -R dev/docs_build/dev/reports/colors-symbol-cleanup-preview-accordion-report.md -> dev/reports/colors-symbol-cleanup-preview-accordion-report.md -R dev/docs_build/dev/reports/colors-symbol-grid-fix-report.md -> dev/reports/colors-symbol-grid-fix-report.md -R dev/docs_build/dev/reports/colors-tags-accordions-report.md -> dev/reports/colors-tags-accordions-report.md -R dev/docs_build/dev/reports/colors-terminology-fullscreen-spacing-report.md -> dev/reports/colors-terminology-fullscreen-spacing-report.md -R dev/docs_build/dev/reports/colors-toolbox-admin-visibility-report.md -> dev/reports/colors-toolbox-admin-visibility-report.md -R dev/docs_build/dev/reports/colors_pr025_vs_current.diff -> dev/reports/colors_pr025_vs_current.diff -R dev/docs_build/dev/reports/colors_pr025_vs_current.md -> dev/reports/colors_pr025_vs_current.md -R dev/docs_build/dev/reports/config_driven_game_bootstrap.md -> dev/reports/config_driven_game_bootstrap.md -R dev/docs_build/dev/reports/config_driven_roadmap_baseline.md -> dev/reports/config_driven_roadmap_baseline.md -R dev/docs_build/dev/reports/console-root-cause-fix-report.md -> dev/reports/console-root-cause-fix-report.md -R dev/docs_build/dev/reports/continued_rollback_review.md -> dev/reports/continued_rollback_review.md -R dev/docs_build/dev/reports/contract_chain_validation.md -> dev/reports/contract_chain_validation.md -R dev/docs_build/dev/reports/contract_documentation_closeout_report.txt -> dev/reports/contract_documentation_closeout_report.txt -R dev/docs_build/dev/reports/contract_fixture_isolation_validation.md -> dev/reports/contract_fixture_isolation_validation.md -R dev/docs_build/dev/reports/contract_index_validation.md -> dev/reports/contract_index_validation.md -R dev/docs_build/dev/reports/contract_lane_closeout_validation.md -> dev/reports/contract_lane_closeout_validation.md -R dev/docs_build/dev/reports/contract_negative_case_coverage.md -> dev/reports/contract_negative_case_coverage.md -R dev/docs_build/dev/reports/contract_report_standardization.md -> dev/reports/contract_report_standardization.md -R dev/docs_build/dev/reports/controls-action-descriptions-report.md -> dev/reports/controls-action-descriptions-report.md -R dev/docs_build/dev/reports/controls-axis-direction-and-input-events-report.md -> dev/reports/controls-axis-direction-and-input-events-report.md -R dev/docs_build/dev/reports/controls-checkbox-state-styling-report.md -> dev/reports/controls-checkbox-state-styling-report.md -R dev/docs_build/dev/reports/controls-combo-framework-and-user-control-editing-report.md -> dev/reports/controls-combo-framework-and-user-control-editing-report.md -R dev/docs_build/dev/reports/controls-compact-controller-profile-report.md -> dev/reports/controls-compact-controller-profile-report.md -R dev/docs_build/dev/reports/controls-controller-profile-edit-mode-report.md -> dev/reports/controls-controller-profile-edit-mode-report.md -R dev/docs_build/dev/reports/controls-controller-profile-generation-report.md -> dev/reports/controls-controller-profile-generation-report.md -R dev/docs_build/dev/reports/controls-db-controller-profiles-report.md -> dev/reports/controls-db-controller-profiles-report.md -R dev/docs_build/dev/reports/controls-device-refresh-profile-polish-report.md -> dev/reports/controls-device-refresh-profile-polish-report.md -R dev/docs_build/dev/reports/controls-device-specific-input-report.md -> dev/reports/controls-device-specific-input-report.md -R dev/docs_build/dev/reports/controls-edit-gated-capture-devices-report.md -> dev/reports/controls-edit-gated-capture-devices-report.md -R dev/docs_build/dev/reports/controls-edit-row-in-place-fix-report.md -> dev/reports/controls-edit-row-in-place-fix-report.md -R dev/docs_build/dev/reports/controls-engine-input-and-profile-scope-report.md -> dev/reports/controls-engine-input-and-profile-scope-report.md -R dev/docs_build/dev/reports/controls-footer-action-object-selection-report.md -> dev/reports/controls-footer-action-object-selection-report.md -R dev/docs_build/dev/reports/controls-game-account-user-split-report.md -> dev/reports/controls-game-account-user-split-report.md -R dev/docs_build/dev/reports/controls-game-and-user-input-foundation-report.md -> dev/reports/controls-game-and-user-input-foundation-report.md -R dev/docs_build/dev/reports/controls-input-mapping-rebuild-report.md -> dev/reports/controls-input-mapping-rebuild-report.md -R dev/docs_build/dev/reports/controls-normalized-default-input-architecture-report.md -> dev/reports/controls-normalized-default-input-architecture-report.md -R dev/docs_build/dev/reports/controls-object-action-mapping-validation-report.md -> dev/reports/controls-object-action-mapping-validation-report.md -R dev/docs_build/dev/reports/controls-player-controller-split-report.md -> dev/reports/controls-player-controller-split-report.md -R dev/docs_build/dev/reports/controls-readable-input-columns-report.md -> dev/reports/controls-readable-input-columns-report.md -R dev/docs_build/dev/reports/controls-remove-physical-controller-actions-report.md -> dev/reports/controls-remove-physical-controller-actions-report.md -R dev/docs_build/dev/reports/controls-row-capture-cleanup-report.md -> dev/reports/controls-row-capture-cleanup-report.md -R dev/docs_build/dev/reports/controls-table-first-input-report.md -> dev/reports/controls-table-first-input-report.md -R dev/docs_build/dev/reports/controls-tooltips-defaults-pause-lock-report.md -> dev/reports/controls-tooltips-defaults-pause-lock-report.md -R dev/docs_build/dev/reports/controls-user-controls-copy-cleanup-report.md -> dev/reports/controls-user-controls-copy-cleanup-report.md -R dev/docs_build/dev/reports/controls-wireframe-controller-profiles-report.md -> dev/reports/controls-wireframe-controller-profiles-report.md -R dev/docs_build/dev/reports/coverage_changed_js_guardrail.txt -> dev/reports/coverage_changed_js_guardrail.txt -R dev/docs_build/dev/reports/creator_profile_contract_tests_validation.md -> dev/reports/creator_profile_contract_tests_validation.md -R dev/docs_build/dev/reports/css_template_consistency_audit.txt -> dev/reports/css_template_consistency_audit.txt -R dev/docs_build/dev/reports/css_template_launch_mode_validation.txt -> dev/reports/css_template_launch_mode_validation.txt -R dev/docs_build/dev/reports/current_route_closeout_11_141.txt -> dev/reports/current_route_closeout_11_141.txt -R dev/docs_build/dev/reports/db-consumer-audit-final-2.csv -> dev/reports/db-consumer-audit-final-2.csv -R dev/docs_build/dev/reports/db-consumer-audit-final-2.md -> dev/reports/db-consumer-audit-final-2.md -R dev/docs_build/dev/reports/db-consumer-audit-final.csv -> dev/reports/db-consumer-audit-final.csv -R dev/docs_build/dev/reports/db-consumer-audit-final.md -> dev/reports/db-consumer-audit-final.md -R dev/docs_build/dev/reports/db-consumer-audit.csv -> dev/reports/db-consumer-audit.csv -R dev/docs_build/dev/reports/db-consumer-audit.md -> dev/reports/db-consumer-audit.md -R dev/docs_build/dev/reports/db-leftovers-actual-cleanup-report.md -> dev/reports/db-leftovers-actual-cleanup-report.md -R dev/docs_build/dev/reports/db-leftovers-cleanup-report.md -> dev/reports/db-leftovers-cleanup-report.md -R dev/docs_build/dev/reports/db-migration-and-viewer-grouping-report.md -> dev/reports/db-migration-and-viewer-grouping-report.md -R dev/docs_build/dev/reports/db-object-model-contract-report.md -> dev/reports/db-object-model-contract-report.md -R dev/docs_build/dev/reports/db-seed-integrity-report.md -> dev/reports/db-seed-integrity-report.md -R dev/docs_build/dev/reports/db-ssot-governance-and-tool-audit-report.md -> dev/reports/db-ssot-governance-and-tool-audit-report.md -R dev/docs_build/dev/reports/db-viewer-table-classification-report.md -> dev/reports/db-viewer-table-classification-report.md -R dev/docs_build/dev/reports/db-viewer-table-inventory-report.md -> dev/reports/db-viewer-table-inventory-report.md -R dev/docs_build/dev/reports/dead_branch_delete_report.md -> dev/reports/dead_branch_delete_report.md -R dev/docs_build/dev/reports/dead_utils_audit.csv -> dev/reports/dead_utils_audit.csv -R dev/docs_build/dev/reports/dead_utils_audit_validation.md -> dev/reports/dead_utils_audit_validation.md -R dev/docs_build/dev/reports/deep-tool-name-cleanup.md -> dev/reports/deep-tool-name-cleanup.md -R dev/docs_build/dev/reports/dependency_gating_report.md -> dev/reports/dependency_gating_report.md -R dev/docs_build/dev/reports/dependency_hydration_reuse_report.md -> dev/reports/dependency_hydration_reuse_report.md -R dev/docs_build/dev/reports/design_system_v2_catalog_validation.md -> dev/reports/design_system_v2_catalog_validation.md -R dev/docs_build/dev/reports/design_system_validation.md -> dev/reports/design_system_validation.md -R dev/docs_build/dev/reports/dev-runtime-and-pr017-cleanup-report.md -> dev/reports/dev-runtime-and-pr017-cleanup-report.md -R dev/docs_build/dev/reports/dev-runtime-audit.md -> dev/reports/dev-runtime-audit.md -R dev/docs_build/dev/reports/dev-runtime-boundary-enforcement-report.md -> dev/reports/dev-runtime-boundary-enforcement-report.md -R dev/docs_build/dev/reports/dev-runtime-final-isolation-fix-report.md -> dev/reports/dev-runtime-final-isolation-fix-report.md -R dev/docs_build/dev/reports/direct_json_validation_11_112.txt -> dev/reports/direct_json_validation_11_112.txt -R dev/docs_build/dev/reports/docs_archive_test_output_cleanup_report.md -> dev/reports/docs_archive_test_output_cleanup_report.md -R dev/docs_build/dev/reports/docs_build_archive_consolidation_report.md -> dev/reports/docs_build_archive_consolidation_report.md -R dev/docs_build/dev/reports/docs_build_separation_report.md -> dev/reports/docs_build_separation_report.md -R dev/docs_build/dev/reports/docs_cleanup_deletion_ledger.txt -> dev/reports/docs_cleanup_deletion_ledger.txt -R dev/docs_build/dev/reports/documentation-ownership-report.md -> dev/reports/documentation-ownership-report.md -R dev/docs_build/dev/reports/download_grant_contract_tests_validation.md -> dev/reports/download_grant_contract_tests_validation.md -R dev/docs_build/dev/reports/e2e_sample_tool_validation_11_145.txt -> dev/reports/e2e_sample_tool_validation_11_145.txt -R dev/docs_build/dev/reports/enforced_write_11_125.txt -> dev/reports/enforced_write_11_125.txt -R dev/docs_build/dev/reports/engine_core_index_barrel_removal_report.md -> dev/reports/engine_core_index_barrel_removal_report.md -R dev/docs_build/dev/reports/engine_debug_index_barrel_removal_report.md -> dev/reports/engine_debug_index_barrel_removal_report.md -R dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase1_report.md -> dev/reports/engine_domain_index_barrel_removal_phase1_report.md -R dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase2_report.md -> dev/reports/engine_domain_index_barrel_removal_phase2_report.md -R dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase3_report.md -> dev/reports/engine_domain_index_barrel_removal_phase3_report.md -R dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase4_report.md -> dev/reports/engine_domain_index_barrel_removal_phase4_report.md -R dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase5_report.md -> dev/reports/engine_domain_index_barrel_removal_phase5_report.md -R dev/docs_build/dev/reports/engine_implementation_priority_plan.md -> dev/reports/engine_implementation_priority_plan.md -R dev/docs_build/dev/reports/engine_input_ownership_for_input_mapping_v2_report.md -> dev/reports/engine_input_ownership_for_input_mapping_v2_report.md -R dev/docs_build/dev/reports/engine_input_runtime_ownership_completion_report.md -> dev/reports/engine_input_runtime_ownership_completion_report.md -R dev/docs_build/dev/reports/engine_network_index_barrel_removal_report.md -> dev/reports/engine_network_index_barrel_removal_report.md -R dev/docs_build/dev/reports/engine_object_model_baseline.md -> dev/reports/engine_object_model_baseline.md -R dev/docs_build/dev/reports/engine_rule_registry_baseline.md -> dev/reports/engine_rule_registry_baseline.md -R dev/docs_build/dev/reports/engine_systems_index_barrel_removal_phase1_report.md -> dev/reports/engine_systems_index_barrel_removal_phase1_report.md -R dev/docs_build/dev/reports/engine_systems_index_barrel_removal_phase2_report.md -> dev/reports/engine_systems_index_barrel_removal_phase2_report.md -R dev/docs_build/dev/reports/engine_v2_ability_system.md -> dev/reports/engine_v2_ability_system.md -R dev/docs_build/dev/reports/engine_v2_ai_behavior_closeout.md -> dev/reports/engine_v2_ai_behavior_closeout.md -R dev/docs_build/dev/reports/engine_v2_ai_capability_audit.md -> dev/reports/engine_v2_ai_capability_audit.md -R dev/docs_build/dev/reports/engine_v2_animation_runtime.md -> dev/reports/engine_v2_animation_runtime.md -R dev/docs_build/dev/reports/engine_v2_audio_runtime.md -> dev/reports/engine_v2_audio_runtime.md -R dev/docs_build/dev/reports/engine_v2_camera_runtime.md -> dev/reports/engine_v2_camera_runtime.md -R dev/docs_build/dev/reports/engine_v2_chase_flee_behavior.md -> dev/reports/engine_v2_chase_flee_behavior.md -R dev/docs_build/dev/reports/engine_v2_checkpoint_system.md -> dev/reports/engine_v2_checkpoint_system.md -R dev/docs_build/dev/reports/engine_v2_combat_runtime_closeout.md -> dev/reports/engine_v2_combat_runtime_closeout.md -R dev/docs_build/dev/reports/engine_v2_config_driven_proof_scene.md -> dev/reports/engine_v2_config_driven_proof_scene.md -R dev/docs_build/dev/reports/engine_v2_container_system.md -> dev/reports/engine_v2_container_system.md -R dev/docs_build/dev/reports/engine_v2_crafting_foundation.md -> dev/reports/engine_v2_crafting_foundation.md -R dev/docs_build/dev/reports/engine_v2_custom_extension_approval_lifecycle.md -> dev/reports/engine_v2_custom_extension_approval_lifecycle.md -R dev/docs_build/dev/reports/engine_v2_custom_extensions_hook_runtime.md -> dev/reports/engine_v2_custom_extensions_hook_runtime.md -R dev/docs_build/dev/reports/engine_v2_dialogue_system.md -> dev/reports/engine_v2_dialogue_system.md -R dev/docs_build/dev/reports/engine_v2_economy_and_currency.md -> dev/reports/engine_v2_economy_and_currency.md -R dev/docs_build/dev/reports/engine_v2_effect_runtime.md -> dev/reports/engine_v2_effect_runtime.md -R dev/docs_build/dev/reports/engine_v2_equipment_system.md -> dev/reports/engine_v2_equipment_system.md -R dev/docs_build/dev/reports/engine_v2_existing_capability_audit.md -> dev/reports/engine_v2_existing_capability_audit.md -R dev/docs_build/dev/reports/engine_v2_feature_complete_closeout.md -> dev/reports/engine_v2_feature_complete_closeout.md -R dev/docs_build/dev/reports/engine_v2_interaction_runtime_closeout.md -> dev/reports/engine_v2_interaction_runtime_closeout.md -R dev/docs_build/dev/reports/engine_v2_interaction_system.md -> dev/reports/engine_v2_interaction_system.md -R dev/docs_build/dev/reports/engine_v2_inventory_system.md -> dev/reports/engine_v2_inventory_system.md -R dev/docs_build/dev/reports/engine_v2_item_and_loot_system.md -> dev/reports/engine_v2_item_and_loot_system.md -R dev/docs_build/dev/reports/engine_v2_location_report.md -> dev/reports/engine_v2_location_report.md -R dev/docs_build/dev/reports/engine_v2_modifier_stack.md -> dev/reports/engine_v2_modifier_stack.md -R dev/docs_build/dev/reports/engine_v2_multiplayer_boundary.md -> dev/reports/engine_v2_multiplayer_boundary.md -R dev/docs_build/dev/reports/engine_v2_objective_system.md -> dev/reports/engine_v2_objective_system.md -R dev/docs_build/dev/reports/engine_v2_pathfinding_baseline.md -> dev/reports/engine_v2_pathfinding_baseline.md -R dev/docs_build/dev/reports/engine_v2_patrol_behavior.md -> dev/reports/engine_v2_patrol_behavior.md -R dev/docs_build/dev/reports/engine_v2_persistence_closeout.md -> dev/reports/engine_v2_persistence_closeout.md -R dev/docs_build/dev/reports/engine_v2_persistence_runtime.md -> dev/reports/engine_v2_persistence_runtime.md -R dev/docs_build/dev/reports/engine_v2_player_runtime_closeout.md -> dev/reports/engine_v2_player_runtime_closeout.md -R dev/docs_build/dev/reports/engine_v2_possession_runtime_closeout.md -> dev/reports/engine_v2_possession_runtime_closeout.md -R dev/docs_build/dev/reports/engine_v2_profile_state_system.md -> dev/reports/engine_v2_profile_state_system.md -R dev/docs_build/dev/reports/engine_v2_projectile_system.md -> dev/reports/engine_v2_projectile_system.md -R dev/docs_build/dev/reports/engine_v2_quest_system.md -> dev/reports/engine_v2_quest_system.md -R dev/docs_build/dev/reports/engine_v2_runtime_media_closeout.md -> dev/reports/engine_v2_runtime_media_closeout.md -R dev/docs_build/dev/reports/engine_v2_save_load_validation.md -> dev/reports/engine_v2_save_load_validation.md -R dev/docs_build/dev/reports/engine_v2_save_state_model.md -> dev/reports/engine_v2_save_state_model.md -R dev/docs_build/dev/reports/engine_v2_state_machine_runtime.md -> dev/reports/engine_v2_state_machine_runtime.md -R dev/docs_build/dev/reports/engine_v2_status_effect_system.md -> dev/reports/engine_v2_status_effect_system.md -R dev/docs_build/dev/reports/engine_v2_ui_runtime.md -> dev/reports/engine_v2_ui_runtime.md -R dev/docs_build/dev/reports/engine_v2_v1_capability_inventory.md -> dev/reports/engine_v2_v1_capability_inventory.md -R dev/docs_build/dev/reports/engine_v2_v1_gap_analysis.md -> dev/reports/engine_v2_v1_gap_analysis.md -R dev/docs_build/dev/reports/engine_v2_vendor_system.md -> dev/reports/engine_v2_vendor_system.md -R dev/docs_build/dev/reports/engine_v2_weapon_system.md -> dev/reports/engine_v2_weapon_system.md -R dev/docs_build/dev/reports/entitlement_contract_tests_validation.md -> dev/reports/entitlement_contract_tests_validation.md -R dev/docs_build/dev/reports/environment_agnostic_browser_gate_report.md -> dev/reports/environment_agnostic_browser_gate_report.md -R dev/docs_build/dev/reports/execution_graph_reuse_report.md -> dev/reports/execution_graph_reuse_report.md -R dev/docs_build/dev/reports/expected_delta_template.md -> dev/reports/expected_delta_template.md -R dev/docs_build/dev/reports/failure_fingerprint_report.md -> dev/reports/failure_fingerprint_report.md -R dev/docs_build/dev/reports/file_diff_11_124.txt -> dev/reports/file_diff_11_124.txt -R dev/docs_build/dev/reports/file_tree.txt -> dev/reports/file_tree.txt -R dev/docs_build/dev/reports/filesystem_scan_reduction_report.md -> dev/reports/filesystem_scan_reduction_report.md -R dev/docs_build/dev/reports/final_active_toolbox_template_gate_report.md -> dev/reports/final_active_toolbox_template_gate_report.md -R dev/docs_build/dev/reports/final_cleanup_lane_audit_report.md -> dev/reports/final_cleanup_lane_audit_report.md -R dev/docs_build/dev/reports/final_done_check_report.md -> dev/reports/final_done_check_report.md -R dev/docs_build/dev/reports/final_monolith_cleanup_report.md -> dev/reports/final_monolith_cleanup_report.md -R dev/docs_build/dev/reports/final_rollback_verification.md -> dev/reports/final_rollback_verification.md -R dev/docs_build/dev/reports/final_testing_architecture_report.md -> dev/reports/final_testing_architecture_report.md -R dev/docs_build/dev/reports/final_theme_engine_removal_report.md -> dev/reports/final_theme_engine_removal_report.md -R dev/docs_build/dev/reports/final_tool_input_contract_11_132.txt -> dev/reports/final_tool_input_contract_11_132.txt -R dev/docs_build/dev/reports/final_verification_11_136.txt -> dev/reports/final_verification_11_136.txt -R dev/docs_build/dev/reports/final_workspace_deprecated_tool_residue_report.md -> dev/reports/final_workspace_deprecated_tool_residue_report.md -R dev/docs_build/dev/reports/first_manifest_driven_playable_scene.md -> dev/reports/first_manifest_driven_playable_scene.md -R dev/docs_build/dev/reports/fix_blockers_11_114.txt -> dev/reports/fix_blockers_11_114.txt -R dev/docs_build/dev/reports/fixes_applied_11_114.txt -> dev/reports/fixes_applied_11_114.txt -R dev/docs_build/dev/reports/forced_changes_11_124.txt -> dev/reports/forced_changes_11_124.txt -R dev/docs_build/dev/reports/fullscreen-scroll-audit-tags-help-report.md -> dev/reports/fullscreen-scroll-audit-tags-help-report.md -R dev/docs_build/dev/reports/fullscreen_audit_report.txt -> dev/reports/fullscreen_audit_report.txt -R dev/docs_build/dev/reports/fullscreen_rule_closeout_report.txt -> dev/reports/fullscreen_rule_closeout_report.txt -R dev/docs_build/dev/reports/fullscreen_validation_rules.txt -> dev/reports/fullscreen_validation_rules.txt -R dev/docs_build/dev/reports/game-configuration-output-no-json.md -> dev/reports/game-configuration-output-no-json.md -R dev/docs_build/dev/reports/game-configuration-ready-gate.md -> dev/reports/game-configuration-ready-gate.md -R dev/docs_build/dev/reports/game-configuration-repository-contract.md -> dev/reports/game-configuration-repository-contract.md -R dev/docs_build/dev/reports/game-configuration-targeted-msj-tests.md -> dev/reports/game-configuration-targeted-msj-tests.md -R dev/docs_build/dev/reports/game-configuration-validation.md -> dev/reports/game-configuration-validation.md -R dev/docs_build/dev/reports/game-configuration-wireframe-to-runtime.md -> dev/reports/game-configuration-wireframe-to-runtime.md -R dev/docs_build/dev/reports/game-deploy-path-plan-report.md -> dev/reports/game-deploy-path-plan-report.md -R dev/docs_build/dev/reports/game-design-capability-demo-authoring.md -> dev/reports/game-design-capability-demo-authoring.md -R dev/docs_build/dev/reports/game-design-center-fields-layout.md -> dev/reports/game-design-center-fields-layout.md -R dev/docs_build/dev/reports/game-design-output-no-json.md -> dev/reports/game-design-output-no-json.md -R dev/docs_build/dev/reports/game-design-project-context-cleanup.md -> dev/reports/game-design-project-context-cleanup.md -R dev/docs_build/dev/reports/game-design-project-design-table-report.md -> dev/reports/game-design-project-design-table-report.md -R dev/docs_build/dev/reports/game-design-project-purpose-flow.md -> dev/reports/game-design-project-purpose-flow.md -R dev/docs_build/dev/reports/game-design-ready-gate.md -> dev/reports/game-design-ready-gate.md -R dev/docs_build/dev/reports/game-design-repository-contract.md -> dev/reports/game-design-repository-contract.md -R dev/docs_build/dev/reports/game-design-targeted-msj-tests.md -> dev/reports/game-design-targeted-msj-tests.md -R dev/docs_build/dev/reports/game-design-to-configuration-handoff.md -> dev/reports/game-design-to-configuration-handoff.md -R dev/docs_build/dev/reports/game-design-toolbox-progress-integration.md -> dev/reports/game-design-toolbox-progress-integration.md -R dev/docs_build/dev/reports/game-design-type-genre-model.md -> dev/reports/game-design-type-genre-model.md -R dev/docs_build/dev/reports/game-design-validation-and-overlay.md -> dev/reports/game-design-validation-and-overlay.md -R dev/docs_build/dev/reports/game-design-wireframe-to-runtime.md -> dev/reports/game-design-wireframe-to-runtime.md -R dev/docs_build/dev/reports/game_input_mapping_source_controls_report.md -> dev/reports/game_input_mapping_source_controls_report.md -R dev/docs_build/dev/reports/game_manifest_schema_validation.csv -> dev/reports/game_manifest_schema_validation.csv -R dev/docs_build/dev/reports/game_manifest_ssot.md -> dev/reports/game_manifest_ssot.md -R dev/docs_build/dev/reports/game_workspace_boundary_contract.md -> dev/reports/game_workspace_boundary_contract.md -R dev/docs_build/dev/reports/gamefoundrystudio_about_footer_controls_validation.md -> dev/reports/gamefoundrystudio_about_footer_controls_validation.md -R dev/docs_build/dev/reports/gamefoundrystudio_admin_account_footer_validation.md -> dev/reports/gamefoundrystudio_admin_account_footer_validation.md -R dev/docs_build/dev/reports/gamefoundrystudio_footer_spacing_validation.md -> dev/reports/gamefoundrystudio_footer_spacing_validation.md -R dev/docs_build/dev/reports/gamefoundrystudio_localization_studio_validation.md -> dev/reports/gamefoundrystudio_localization_studio_validation.md -R dev/docs_build/dev/reports/gamefoundrystudio_release_notes_validation.md -> dev/reports/gamefoundrystudio_release_notes_validation.md -R dev/docs_build/dev/reports/gamefoundrystudio_vision_copy_validation.md -> dev/reports/gamefoundrystudio_vision_copy_validation.md -R dev/docs_build/dev/reports/games2tools_manual_qa_checklist.txt -> dev/reports/games2tools_manual_qa_checklist.txt -R dev/docs_build/dev/reports/games2tools_roundtrip_matrix.txt -> dev/reports/games2tools_roundtrip_matrix.txt -R dev/docs_build/dev/reports/games2tools_roundtrip_validation.txt -> dev/reports/games2tools_roundtrip_validation.txt -R dev/docs_build/dev/reports/games_template_contract_validation.txt -> dev/reports/games_template_contract_validation.txt -R dev/docs_build/dev/reports/global_input_removal_11_134.txt -> dev/reports/global_input_removal_11_134.txt -R dev/docs_build/dev/reports/group-color-propagation.md -> dev/reports/group-color-propagation.md -R dev/docs_build/dev/reports/guest-role-view.md -> dev/reports/guest-role-view.md -R dev/docs_build/dev/reports/header-navigation-validation-report.md -> dev/reports/header-navigation-validation-report.md -R dev/docs_build/dev/reports/header-role-banner-polish.md -> dev/reports/header-role-banner-polish.md -R dev/docs_build/dev/reports/header_lock_carry_forward_notes.txt -> dev/reports/header_lock_carry_forward_notes.txt -R dev/docs_build/dev/reports/identity_permissions_contract_tests_validation.md -> dev/reports/identity_permissions_contract_tests_validation.md -R dev/docs_build/dev/reports/identity_permissions_model_validation.md -> dev/reports/identity_permissions_model_validation.md -R dev/docs_build/dev/reports/in_memory_project_data_store.md -> dev/reports/in_memory_project_data_store.md -R dev/docs_build/dev/reports/incremental_validation_report.md -> dev/reports/incremental_validation_report.md -R dev/docs_build/dev/reports/index_consistency_fix_strategy.txt -> dev/reports/index_consistency_fix_strategy.txt -R dev/docs_build/dev/reports/inference_path_removal_11_111.txt -> dev/reports/inference_path_removal_11_111.txt -R dev/docs_build/dev/reports/inline_attr_cleanup_strategy.txt -> dev/reports/inline_attr_cleanup_strategy.txt -R dev/docs_build/dev/reports/inline_style_cleanup_strategy.txt -> dev/reports/inline_style_cleanup_strategy.txt -R dev/docs_build/dev/reports/input_mapping_v2_actions_combos_export_report.md -> dev/reports/input_mapping_v2_actions_combos_export_report.md -R dev/docs_build/dev/reports/input_mapping_v2_auto_gamepad_selection_flow_report.md -> dev/reports/input_mapping_v2_auto_gamepad_selection_flow_report.md -R dev/docs_build/dev/reports/input_mapping_v2_capture_device_gesture_flow_report.md -> dev/reports/input_mapping_v2_capture_device_gesture_flow_report.md -R dev/docs_build/dev/reports/input_mapping_v2_capture_device_labels_report.md -> dev/reports/input_mapping_v2_capture_device_labels_report.md -R dev/docs_build/dev/reports/input_mapping_v2_capture_flow_card_sizing_report.md -> dev/reports/input_mapping_v2_capture_flow_card_sizing_report.md -R dev/docs_build/dev/reports/input_mapping_v2_combo_device_capture_report.md -> dev/reports/input_mapping_v2_combo_device_capture_report.md -R dev/docs_build/dev/reports/input_mapping_v2_combo_token_actions_report.md -> dev/reports/input_mapping_v2_combo_token_actions_report.md -R dev/docs_build/dev/reports/input_mapping_v2_device_gesture_wiring_report.md -> dev/reports/input_mapping_v2_device_gesture_wiring_report.md -R dev/docs_build/dev/reports/input_mapping_v2_device_usage_tile_actions_report.md -> dev/reports/input_mapping_v2_device_usage_tile_actions_report.md -R dev/docs_build/dev/reports/input_mapping_v2_drag_capture_visual_state_report.md -> dev/reports/input_mapping_v2_drag_capture_visual_state_report.md -R dev/docs_build/dev/reports/input_mapping_v2_engine_ssot_combo_report.md -> dev/reports/input_mapping_v2_engine_ssot_combo_report.md -R dev/docs_build/dev/reports/input_mapping_v2_export_manifest_nav_report.md -> dev/reports/input_mapping_v2_export_manifest_nav_report.md -R dev/docs_build/dev/reports/input_mapping_v2_final_ownership_audit_report.md -> dev/reports/input_mapping_v2_final_ownership_audit_report.md -R dev/docs_build/dev/reports/input_mapping_v2_gamepad_capture_flow_report.md -> dev/reports/input_mapping_v2_gamepad_capture_flow_report.md -R dev/docs_build/dev/reports/input_mapping_v2_gamepad_detection_source_report.md -> dev/reports/input_mapping_v2_gamepad_detection_source_report.md -R dev/docs_build/dev/reports/input_mapping_v2_gamepad_diagnostics_report.md -> dev/reports/input_mapping_v2_gamepad_diagnostics_report.md -R dev/docs_build/dev/reports/input_mapping_v2_gesture_capture_flow_report.md -> dev/reports/input_mapping_v2_gesture_capture_flow_report.md -R dev/docs_build/dev/reports/input_mapping_v2_gesture_help_combo_actions_report.md -> dev/reports/input_mapping_v2_gesture_help_combo_actions_report.md -R dev/docs_build/dev/reports/input_mapping_v2_gesture_selection_highlights_report.md -> dev/reports/input_mapping_v2_gesture_selection_highlights_report.md -R dev/docs_build/dev/reports/input_mapping_v2_gesture_specific_capture_report.md -> dev/reports/input_mapping_v2_gesture_specific_capture_report.md -R dev/docs_build/dev/reports/input_mapping_v2_haptics_shortcut_suppression_report.md -> dev/reports/input_mapping_v2_haptics_shortcut_suppression_report.md -R dev/docs_build/dev/reports/input_mapping_v2_layout_engine_model_report.md -> dev/reports/input_mapping_v2_layout_engine_model_report.md -R dev/docs_build/dev/reports/input_mapping_v2_layout_manifest_report.md -> dev/reports/input_mapping_v2_layout_manifest_report.md -R dev/docs_build/dev/reports/input_mapping_v2_layout_sizing_mapping_display_report.md -> dev/reports/input_mapping_v2_layout_sizing_mapping_display_report.md -R dev/docs_build/dev/reports/input_mapping_v2_mouse_gesture_simplification_report.md -> dev/reports/input_mapping_v2_mouse_gesture_simplification_report.md -R dev/docs_build/dev/reports/input_mapping_v2_nav_layout_labels_report.md -> dev/reports/input_mapping_v2_nav_layout_labels_report.md -R dev/docs_build/dev/reports/input_mapping_v2_selection_context_report.md -> dev/reports/input_mapping_v2_selection_context_report.md -R dev/docs_build/dev/reports/input_mapping_v2_spacing_used_key_highlight_report.md -> dev/reports/input_mapping_v2_spacing_used_key_highlight_report.md -R dev/docs_build/dev/reports/input_mapping_v2_state_inspector_audit_report.md -> dev/reports/input_mapping_v2_state_inspector_audit_report.md -R dev/docs_build/dev/reports/input_mapping_v2_template_rebuild_report.md -> dev/reports/input_mapping_v2_template_rebuild_report.md -R dev/docs_build/dev/reports/input_mapping_v2_token_display_capture_gating_report.md -> dev/reports/input_mapping_v2_token_display_capture_gating_report.md -R dev/docs_build/dev/reports/install_receipt_contract_tests_validation.md -> dev/reports/install_receipt_contract_tests_validation.md -R dev/docs_build/dev/reports/internal_barrel_baseline_debt_removal_report.md -> dev/reports/internal_barrel_baseline_debt_removal_report.md -R dev/docs_build/dev/reports/internal_barrel_guardrails_report.md -> dev/reports/internal_barrel_guardrails_report.md -R dev/docs_build/dev/reports/json_schema_alignment_11_104.txt -> dev/reports/json_schema_alignment_11_104.txt -R dev/docs_build/dev/reports/json_schema_repair_loop_11_113.txt -> dev/reports/json_schema_repair_loop_11_113.txt -R dev/docs_build/dev/reports/known_bad_links_validation_11_119.txt -> dev/reports/known_bad_links_validation_11_119.txt -R dev/docs_build/dev/reports/lane_compilation_report.md -> dev/reports/lane_compilation_report.md -R dev/docs_build/dev/reports/lane_deduplication_report.md -> dev/reports/lane_deduplication_report.md -R dev/docs_build/dev/reports/lane_input_validation_report.md -> dev/reports/lane_input_validation_report.md -R dev/docs_build/dev/reports/lane_manifests/asset-tool.json -> dev/reports/lane_manifests__asset-tool.json -R dev/docs_build/dev/reports/lane_manifests/build-path.json -> dev/reports/lane_manifests__build-path.json -R dev/docs_build/dev/reports/lane_manifests/engine-src.json -> dev/reports/lane_manifests__engine-src.json -R dev/docs_build/dev/reports/lane_manifests/game-configuration.json -> dev/reports/lane_manifests__game-configuration.json -R dev/docs_build/dev/reports/lane_manifests/game-design.json -> dev/reports/lane_manifests__game-design.json -R dev/docs_build/dev/reports/lane_manifests/game-runtime.json -> dev/reports/lane_manifests__game-runtime.json -R dev/docs_build/dev/reports/lane_manifests/integration.json -> dev/reports/lane_manifests__integration.json -R dev/docs_build/dev/reports/lane_manifests/project-workspace.json -> dev/reports/lane_manifests__project-workspace.json -R dev/docs_build/dev/reports/lane_manifests/samples.json -> dev/reports/lane_manifests__samples.json -R dev/docs_build/dev/reports/lane_manifests/tool-display-mode.json -> dev/reports/lane_manifests__tool-display-mode.json -R dev/docs_build/dev/reports/lane_manifests/tool-images.json -> dev/reports/lane_manifests__tool-images.json -R dev/docs_build/dev/reports/lane_manifests/tool-navigation.json -> dev/reports/lane_manifests__tool-navigation.json -R dev/docs_build/dev/reports/lane_manifests/tool-runtime.json -> dev/reports/lane_manifests__tool-runtime.json -R dev/docs_build/dev/reports/lane_manifests/tools-progress.json -> dev/reports/lane_manifests__tools-progress.json -R dev/docs_build/dev/reports/lane_manifests/workspace-contract.json -> dev/reports/lane_manifests__workspace-contract.json -R dev/docs_build/dev/reports/lane_runtime_optimization_report.md -> dev/reports/lane_runtime_optimization_report.md -R dev/docs_build/dev/reports/lane_snapshot_report.md -> dev/reports/lane_snapshot_report.md -R dev/docs_build/dev/reports/lane_snapshots/asset-tool.json -> dev/reports/lane_snapshots__asset-tool.json -R dev/docs_build/dev/reports/lane_snapshots/build-path.json -> dev/reports/lane_snapshots__build-path.json -R dev/docs_build/dev/reports/lane_snapshots/engine-src.json -> dev/reports/lane_snapshots__engine-src.json -R dev/docs_build/dev/reports/lane_snapshots/game-configuration.json -> dev/reports/lane_snapshots__game-configuration.json -R dev/docs_build/dev/reports/lane_snapshots/game-design.json -> dev/reports/lane_snapshots__game-design.json -R dev/docs_build/dev/reports/lane_snapshots/game-runtime.json -> dev/reports/lane_snapshots__game-runtime.json -R dev/docs_build/dev/reports/lane_snapshots/integration.json -> dev/reports/lane_snapshots__integration.json -R dev/docs_build/dev/reports/lane_snapshots/project-workspace.json -> dev/reports/lane_snapshots__project-workspace.json -R dev/docs_build/dev/reports/lane_snapshots/tool-display-mode.json -> dev/reports/lane_snapshots__tool-display-mode.json -R dev/docs_build/dev/reports/lane_snapshots/tool-images.json -> dev/reports/lane_snapshots__tool-images.json -R dev/docs_build/dev/reports/lane_snapshots/tool-navigation.json -> dev/reports/lane_snapshots__tool-navigation.json -R dev/docs_build/dev/reports/lane_snapshots/tool-runtime.json -> dev/reports/lane_snapshots__tool-runtime.json -R dev/docs_build/dev/reports/lane_snapshots/tools-progress.json -> dev/reports/lane_snapshots__tools-progress.json -R dev/docs_build/dev/reports/lane_snapshots/workspace-contract.json -> dev/reports/lane_snapshots__workspace-contract.json -R dev/docs_build/dev/reports/lane_warm_start_report.md -> dev/reports/lane_warm_start_report.md -R dev/docs_build/dev/reports/lane_warm_starts/asset-tool.json -> dev/reports/lane_warm_starts__asset-tool.json -R dev/docs_build/dev/reports/lane_warm_starts/build-path.json -> dev/reports/lane_warm_starts__build-path.json -R dev/docs_build/dev/reports/lane_warm_starts/engine-src.json -> dev/reports/lane_warm_starts__engine-src.json -R dev/docs_build/dev/reports/lane_warm_starts/game-configuration.json -> dev/reports/lane_warm_starts__game-configuration.json -R dev/docs_build/dev/reports/lane_warm_starts/game-design.json -> dev/reports/lane_warm_starts__game-design.json -R dev/docs_build/dev/reports/lane_warm_starts/game-runtime.json -> dev/reports/lane_warm_starts__game-runtime.json -R dev/docs_build/dev/reports/lane_warm_starts/integration.json -> dev/reports/lane_warm_starts__integration.json -R dev/docs_build/dev/reports/lane_warm_starts/project-workspace.json -> dev/reports/lane_warm_starts__project-workspace.json -R dev/docs_build/dev/reports/lane_warm_starts/tool-display-mode.json -> dev/reports/lane_warm_starts__tool-display-mode.json -R dev/docs_build/dev/reports/lane_warm_starts/tool-images.json -> dev/reports/lane_warm_starts__tool-images.json -R dev/docs_build/dev/reports/lane_warm_starts/tool-navigation.json -> dev/reports/lane_warm_starts__tool-navigation.json -R dev/docs_build/dev/reports/lane_warm_starts/tool-runtime.json -> dev/reports/lane_warm_starts__tool-runtime.json -R dev/docs_build/dev/reports/lane_warm_starts/tools-progress.json -> dev/reports/lane_warm_starts__tools-progress.json -R dev/docs_build/dev/reports/lane_warm_starts/workspace-contract.json -> dev/reports/lane_warm_starts__workspace-contract.json -R dev/docs_build/dev/reports/launch_smoke_report.md -> dev/reports/launch_smoke_report.md -R dev/docs_build/dev/reports/learn-getting-started-screen-guidance.md -> dev/reports/learn-getting-started-screen-guidance.md -R dev/docs_build/dev/reports/learn-wireframe-pages.md -> dev/reports/learn-wireframe-pages.md -R dev/docs_build/dev/reports/legacy-docs-archive-report.md -> dev/reports/legacy-docs-archive-report.md -R dev/docs_build/dev/reports/legacy_alias_removal_closeout_report.md -> dev/reports/legacy_alias_removal_closeout_report.md -R dev/docs_build/dev/reports/legacy_launch_fallback_residue_validation.md -> dev/reports/legacy_launch_fallback_residue_validation.md -R dev/docs_build/dev/reports/legacy_ownership_final_audit_report.md -> dev/reports/legacy_ownership_final_audit_report.md -R dev/docs_build/dev/reports/legacy_surface_elimination_report.md -> dev/reports/legacy_surface_elimination_report.md -R dev/docs_build/dev/reports/level_10_1_game_palette_completeness_report.md -> dev/reports/level_10_1_game_palette_completeness_report.md -R dev/docs_build/dev/reports/level_10_1a_palette_singleton_correction_report.md -> dev/reports/level_10_1a_palette_singleton_correction_report.md -R dev/docs_build/dev/reports/level_10_1b_tool_section_metadata_and_palette_tool_singleton_report.md -> dev/reports/level_10_1b_tool_section_metadata_and_palette_tool_singleton_report.md -R dev/docs_build/dev/reports/level_10_2_asteroids_platform_demo_boundary_audit.md -> dev/reports/level_10_2_asteroids_platform_demo_boundary_audit.md -R dev/docs_build/dev/reports/level_10_2_workspace_manager_open_test_report.md -> dev/reports/level_10_2_workspace_manager_open_test_report.md -R dev/docs_build/dev/reports/level_10_2a_workspace_manager_asset_presence_validation_report.md -> dev/reports/level_10_2a_workspace_manager_asset_presence_validation_report.md -R dev/docs_build/dev/reports/level_10_2b_workspace_manager_palette_binding_report.md -> dev/reports/level_10_2b_workspace_manager_palette_binding_report.md -R dev/docs_build/dev/reports/level_10_2c_manifest_cleanup_report.md -> dev/reports/level_10_2c_manifest_cleanup_report.md -R dev/docs_build/dev/reports/level_10_2c_manifest_payload_expectation_report.md -> dev/reports/level_10_2c_manifest_payload_expectation_report.md -R dev/docs_build/dev/reports/level_10_2d_gravity_well_ship_vector_map_fix_report.md -> dev/reports/level_10_2d_gravity_well_ship_vector_map_fix_report.md -R dev/docs_build/dev/reports/level_10_2f_vector_asset_palette_paint_binding_report.md -> dev/reports/level_10_2f_vector_asset_palette_paint_binding_report.md -R dev/docs_build/dev/reports/level_10_3_tool_local_sample_migration_report.md -> dev/reports/level_10_3_tool_local_sample_migration_report.md -R dev/docs_build/dev/reports/level_10_5_hardcoded_asset_path_audit.md -> dev/reports/level_10_5_hardcoded_asset_path_audit.md -R dev/docs_build/dev/reports/level_10_5_no_hidden_tool_coupling_report.md -> dev/reports/level_10_5_no_hidden_tool_coupling_report.md -R dev/docs_build/dev/reports/level_10_6B_palette_contract_alignment.md -> dev/reports/level_10_6B_palette_contract_alignment.md -R dev/docs_build/dev/reports/level_10_6G_tool_input_fetch_load_diagnostics_report.md -> dev/reports/level_10_6G_tool_input_fetch_load_diagnostics_report.md -R dev/docs_build/dev/reports/level_10_6H_tool_load_expected_diagnostics_report.md -> dev/reports/level_10_6H_tool_load_expected_diagnostics_report.md -R dev/docs_build/dev/reports/level_10_6J_expected_results.md -> dev/reports/level_10_6J_expected_results.md -R dev/docs_build/dev/reports/level_10_6Q_tool_ui_readiness_dod_completion_report.md -> dev/reports/level_10_6Q_tool_ui_readiness_dod_completion_report.md -R dev/docs_build/dev/reports/level_10_6_sample_schema_validation_report.md -> dev/reports/level_10_6_sample_schema_validation_report.md -R dev/docs_build/dev/reports/level_10_6_standalone_tool_data_flow_report.md -> dev/reports/level_10_6_standalone_tool_data_flow_report.md -R dev/docs_build/dev/reports/level_10_6b_standalone_generic_failure_closeout_report.md -> dev/reports/level_10_6b_standalone_generic_failure_closeout_report.md -R dev/docs_build/dev/reports/level_10_6b_tool_contract_matrix.md -> dev/reports/level_10_6b_tool_contract_matrix.md -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/palette_contract_evidence_report.md -> dev/reports/level_10_6d_palette_contract_evidence__palette_contract_evidence_report.md -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/palette_shape_diff.json -> dev/reports/level_10_6d_palette_contract_evidence__palette_shape_diff.json -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/docs/dev/reports/level_10_6d_palette_contract_evidence/palette_shape_diff.json -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative__docs__dev__reports__level_10_6d_palette_contract_evidence__palette_shape_diff.json -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/docs/dev/reports/level_10_6d_palette_contract_evidence/test_sample_standalone_data_flow_output.txt -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative__docs__dev__reports__level_10_6d_palette_contract_evidence__test_sample_standalone_data_flow_output.txt -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/samples/phase-02/0213/sample.0213.palette-browser.json -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative__samples__phase-02__0213__sample.0213.palette-browser.json -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/samples/phase-03/0308/sample.0308.palette-browser.json -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative__samples__phase-03__0308__sample.0308.palette-browser.json -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/samples/phase-03/0313/sample.0313.palette-browser.json -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative__samples__phase-03__0313__sample.0313.palette-browser.json -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tests/runtime/SampleStandaloneToolDataFlow.test.mjs -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tests__runtime__SampleStandaloneToolDataFlow.test.mjs -R "dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tools/Palette Browser/index.html" -> "dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tools__Palette Browser__index.html" -R "dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tools/Palette Browser/main.js" -> "dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tools__Palette Browser__main.js" -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tools/toolRegistry.js -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tools__toolRegistry.js -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/README.md -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__README.md -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/samples/phase-02/0213/sample.0213.palette.json -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__samples__phase-02__0213__sample.0213.palette.json -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/samples/phase-03/0308/sample.0308.palette.json -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__samples__phase-03__0308__sample.0308.palette.json -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/samples/phase-03/0313/sample.0313.palette.json -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__samples__phase-03__0313__sample.0313.palette.json -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/src/engine/paletteList.js -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__src__engine__paletteList.js -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/tools/schemas/palette.schema.json -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__tools__schemas__palette.schema.json -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/tools/schemas/tools/palette-browser.schema.json -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__tools__schemas__tools__palette-browser.schema.json -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/tools/shared/paletteDocumentContract.js -> dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__tools__shared__paletteDocumentContract.js -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/test_sample_standalone_data_flow_output.txt -> dev/reports/level_10_6d_palette_contract_evidence__test_sample_standalone_data_flow_output.txt -R dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence_capture_build.md -> dev/reports/level_10_6d_palette_contract_evidence_capture_build.md -R dev/docs_build/dev/reports/level_10_6e_launch_smoke_games_output.txt -> dev/reports/level_10_6e_launch_smoke_games_output.txt -R dev/docs_build/dev/reports/level_10_6e_palette_ssot_normalization_report.md -> dev/reports/level_10_6e_palette_ssot_normalization_report.md -R dev/docs_build/dev/reports/level_10_6e_palette_ssot_removed_files.txt -> dev/reports/level_10_6e_palette_ssot_removed_files.txt -R dev/docs_build/dev/reports/level_10_6e_sample_standalone_data_flow_output.txt -> dev/reports/level_10_6e_sample_standalone_data_flow_output.txt -R dev/docs_build/dev/reports/level_10_6f_all_sample_palette_ssot_normalization_report.md -> dev/reports/level_10_6f_all_sample_palette_ssot_normalization_report.md -R dev/docs_build/dev/reports/level_10_6f_launch_smoke_games_output.txt -> dev/reports/level_10_6f_launch_smoke_games_output.txt -R dev/docs_build/dev/reports/level_10_6f_removed_palette_browser_files.txt -> dev/reports/level_10_6f_removed_palette_browser_files.txt -R dev/docs_build/dev/reports/level_10_6f_sample_standalone_data_flow_output.txt -> dev/reports/level_10_6f_sample_standalone_data_flow_output.txt -R dev/docs_build/dev/reports/level_10_6i_tool_load_expected_vs_actual_classification_report.md -> dev/reports/level_10_6i_tool_load_expected_vs_actual_classification_report.md -R dev/docs_build/dev/reports/level_10_6m_tool_ui_readiness_dod_gap_review.md -> dev/reports/level_10_6m_tool_ui_readiness_dod_gap_review.md -R dev/docs_build/dev/reports/level_10_6n_tool_ui_dod_audit_report.md -> dev/reports/level_10_6n_tool_ui_dod_audit_report.md -R dev/docs_build/dev/reports/level_10_6n_tool_ui_dod_audit_report_template.md -> dev/reports/level_10_6n_tool_ui_dod_audit_report_template.md -R dev/docs_build/dev/reports/level_10_6o_requested_uat_failures.md -> dev/reports/level_10_6o_requested_uat_failures.md -R dev/docs_build/dev/reports/level_10_6o_tool_uat_failure_stabilization_report.md -> dev/reports/level_10_6o_tool_uat_failure_stabilization_report.md -R dev/docs_build/dev/reports/level_10_6p_tool_ui_readiness_dod_gap_report.md -> dev/reports/level_10_6p_tool_ui_readiness_dod_gap_report.md -R dev/docs_build/dev/reports/level_8_17_roadmap_and_skin_editor_schema_report.md -> dev/reports/level_8_17_roadmap_and_skin_editor_schema_report.md -R dev/docs_build/dev/reports/level_8_19_sample_payload_audit_report.md -> dev/reports/level_8_19_sample_payload_audit_report.md -R dev/docs_build/dev/reports/level_8_20_workspace_schema_audit_report.md -> dev/reports/level_8_20_workspace_schema_audit_report.md -R dev/docs_build/dev/reports/level_8_23_workspace_manifest_games_field_alignment_report.md -> dev/reports/level_8_23_workspace_manifest_games_field_alignment_report.md -R dev/docs_build/dev/reports/level_8_26_manifest_ssot_audit_report.md -> dev/reports/level_8_26_manifest_ssot_audit_report.md -R dev/docs_build/dev/reports/level_8_26_unused_json_audit_report.md -> dev/reports/level_8_26_unused_json_audit_report.md -R dev/docs_build/dev/reports/level_8_26_user_blockers.md -> dev/reports/level_8_26_user_blockers.md -R dev/docs_build/dev/reports/level_8_27_code_asset_extraction_audit.md -> dev/reports/level_8_27_code_asset_extraction_audit.md -R dev/docs_build/dev/reports/level_8_27_extraction_candidate_matrix.md -> dev/reports/level_8_27_extraction_candidate_matrix.md -R dev/docs_build/dev/reports/level_8_28_asteroids_manifest_ssot_report.md -> dev/reports/level_8_28_asteroids_manifest_ssot_report.md -R dev/docs_build/dev/reports/level_8_30_all_games_manifest_ssot_rollout_report.md -> dev/reports/level_8_30_all_games_manifest_ssot_rollout_report.md -R dev/docs_build/dev/reports/level_8_31_asteroids_json_cleanup_report.md -> dev/reports/level_8_31_asteroids_json_cleanup_report.md -R dev/docs_build/dev/reports/level_8_32_direct_launch_hook_and_asteroids_parity_report.md -> dev/reports/level_8_32_direct_launch_hook_and_asteroids_parity_report.md -R dev/docs_build/dev/reports/level_8_33_legacy_catalog_parity_report.md -> dev/reports/level_8_33_legacy_catalog_parity_report.md -R dev/docs_build/dev/reports/level_8_34_final_clean_repo_baseline_report.md -> dev/reports/level_8_34_final_clean_repo_baseline_report.md -R dev/docs_build/dev/reports/level_9_10_single_manifest_runtime_stabilization_report.md -> dev/reports/level_9_10_single_manifest_runtime_stabilization_report.md -R dev/docs_build/dev/reports/level_9_1a_asteroids_manifest_model_review.md -> dev/reports/level_9_1a_asteroids_manifest_model_review.md -R dev/docs_build/dev/reports/level_9_3_multi_game_launch_validation_and_fix_report.md -> dev/reports/level_9_3_multi_game_launch_validation_and_fix_report.md -R dev/docs_build/dev/reports/level_9_5_final_review_and_next_phase_prep.md -> dev/reports/level_9_5_final_review_and_next_phase_prep.md -R dev/docs_build/dev/reports/level_9_6_asteroids_hard_cutover_report.md -> dev/reports/level_9_6_asteroids_hard_cutover_report.md -R dev/docs_build/dev/reports/level_9_7_remove_internal_references_report.md -> dev/reports/level_9_7_remove_internal_references_report.md -R dev/docs_build/dev/reports/level_9_8_direct_data_manifest_rollout_all_games_report.md -> dev/reports/level_9_8_direct_data_manifest_rollout_all_games_report.md -R dev/docs_build/dev/reports/level_9_9_launch_smoke_games_only_fast_path_report.md -> dev/reports/level_9_9_launch_smoke_games_only_fast_path_report.md -R dev/docs_build/dev/reports/library_item_contract_tests_validation.md -> dev/reports/library_item_contract_tests_validation.md -R dev/docs_build/dev/reports/literal_asset_none_renderer_11_158.txt -> dev/reports/literal_asset_none_renderer_11_158.txt -R dev/docs_build/dev/reports/local-api-url-guidance-report.md -> dev/reports/local-api-url-guidance-report.md -R dev/docs_build/dev/reports/local-db-server-adapter-report.md -> dev/reports/local-db-server-adapter-report.md -R dev/docs_build/dev/reports/local-db-viewer-readonly-report.md -> dev/reports/local-db-viewer-readonly-report.md -R dev/docs_build/dev/reports/local-server-entrypoint-cleanup-report.md -> dev/reports/local-server-entrypoint-cleanup-report.md -R dev/docs_build/dev/reports/localization_template_rebuild_report.md -> dev/reports/localization_template_rebuild_report.md -R dev/docs_build/dev/reports/login-db-reseed-control-report.md -> dev/reports/login-db-reseed-control-report.md -R dev/docs_build/dev/reports/login-local-server-status-report.md -> dev/reports/login-local-server-status-report.md -R dev/docs_build/dev/reports/login-page-session-mode-lockdown-report.md -> dev/reports/login-page-session-mode-lockdown-report.md -R dev/docs_build/dev/reports/login-tools-index-recovery-report.md -> dev/reports/login-tools-index-recovery-report.md -R dev/docs_build/dev/reports/manifest_contract_tests_validation.md -> dev/reports/manifest_contract_tests_validation.md -R dev/docs_build/dev/reports/manifest_documentkind_removal_report.md -> dev/reports/manifest_documentkind_removal_report.md -R dev/docs_build/dev/reports/manifest_driven_engine_audit.md -> dev/reports/manifest_driven_engine_audit.md -R dev/docs_build/dev/reports/manifest_runtime_boundary.md -> dev/reports/manifest_runtime_boundary.md -R dev/docs_build/dev/reports/manifest_runtime_loader_plan.md -> dev/reports/manifest_runtime_loader_plan.md -R dev/docs_build/dev/reports/marketplace_listing_contract_tests_validation.md -> dev/reports/marketplace_listing_contract_tests_validation.md -R dev/docs_build/dev/reports/marketplace_transaction_boundary_contract_tests_validation.md -> dev/reports/marketplace_transaction_boundary_contract_tests_validation.md -R dev/docs_build/dev/reports/master_roadmap_style_append_block.md -> dev/reports/master_roadmap_style_append_block.md -R dev/docs_build/dev/reports/middle_rounding_and_snap_angle_ui_verification.md -> dev/reports/middle_rounding_and_snap_angle_ui_verification.md -R dev/docs_build/dev/reports/migration_cleanup_share_tools_scripts_report.md -> dev/reports/migration_cleanup_share_tools_scripts_report.md -R dev/docs_build/dev/reports/migration_done_status_report.md -> dev/reports/migration_done_status_report.md -R dev/docs_build/dev/reports/migration_final_status_report.md -> dev/reports/migration_final_status_report.md -R dev/docs_build/dev/reports/migration_plan_contract_tests_validation.md -> dev/reports/migration_plan_contract_tests_validation.md -R dev/docs_build/dev/reports/minimal_validate_input_11_140.txt -> dev/reports/minimal_validate_input_11_140.txt -R dev/docs_build/dev/reports/missing_samples_0125_0126_0127.txt -> dev/reports/missing_samples_0125_0126_0127.txt -R dev/docs_build/dev/reports/mock-db-persistence-and-tool-hr-colors-report.md -> dev/reports/mock-db-persistence-and-tool-hr-colors-report.md -R dev/docs_build/dev/reports/mock-db-user-project-contract.md -> dev/reports/mock-db-user-project-contract.md -R dev/docs_build/dev/reports/mock-db-users-roles-and-data-contract-report.md -> dev/reports/mock-db-users-roles-and-data-contract-report.md -R dev/docs_build/dev/reports/model_b_contract_final_cleanup_validation.md -> dev/reports/model_b_contract_final_cleanup_validation.md -R dev/docs_build/dev/reports/moderation_queue_contract_tests_validation.md -> dev/reports/moderation_queue_contract_tests_validation.md -R dev/docs_build/dev/reports/monolith_split_execution_report.md -> dev/reports/monolith_split_execution_report.md -R dev/docs_build/dev/reports/monolith_trigger_removal_report.md -> dev/reports/monolith_trigger_removal_report.md -R dev/docs_build/dev/reports/monolithic_test_code_audit.md -> dev/reports/monolithic_test_code_audit.md -R dev/docs_build/dev/reports/monolithic_test_split_candidates.md -> dev/reports/monolithic_test_split_candidates.md -R dev/docs_build/dev/reports/mvp-path-validation-and-status-alignment-report.md -> dev/reports/mvp-path-validation-and-status-alignment-report.md -R dev/docs_build/dev/reports/mvp-tool-build-order-report.md -> dev/reports/mvp-tool-build-order-report.md -R dev/docs_build/dev/reports/navigation-and-list-sorting-rule.md -> dev/reports/navigation-and-list-sorting-rule.md -R dev/docs_build/dev/reports/navigation-db-contract-audit-report.md -> dev/reports/navigation-db-contract-audit-report.md -R dev/docs_build/dev/reports/no_transform_routing_11_128.txt -> dev/reports/no_transform_routing_11_128.txt -R dev/docs_build/dev/reports/non_schema_validation_paths_11_110.txt -> dev/reports/non_schema_validation_paths_11_110.txt -R dev/docs_build/dev/reports/normalize_path_removal_11_112.txt -> dev/reports/normalize_path_removal_11_112.txt -R dev/docs_build/dev/reports/notification_contract_tests_validation.md -> dev/reports/notification_contract_tests_validation.md -R dev/docs_build/dev/reports/object-catalog-compact-display-report.md -> dev/reports/object-catalog-compact-display-report.md -R dev/docs_build/dev/reports/object-render-asset-handoff-report.md -> dev/reports/object-render-asset-handoff-report.md -R dev/docs_build/dev/reports/object_id_slug_normalization_report.md -> dev/reports/object_id_slug_normalization_report.md -R dev/docs_build/dev/reports/object_id_ssot_cleanup_report.md -> dev/reports/object_id_ssot_cleanup_report.md -R dev/docs_build/dev/reports/object_id_ssot_migration_report.md -> dev/reports/object_id_ssot_migration_report.md -R dev/docs_build/dev/reports/object_preview_transform_bounds_report.md -> dev/reports/object_preview_transform_bounds_report.md -R dev/docs_build/dev/reports/object_state_shape_behavior_report.md -> dev/reports/object_state_shape_behavior_report.md -R dev/docs_build/dev/reports/object_transform_scale_resize_geometry_report.md -> dev/reports/object_transform_scale_resize_geometry_report.md -R dev/docs_build/dev/reports/object_type_foundation.md -> dev/reports/object_type_foundation.md -R dev/docs_build/dev/reports/object_vector_schema_geometry_style_ssot_report.md -> dev/reports/object_vector_schema_geometry_style_ssot_report.md -R dev/docs_build/dev/reports/object_vector_studio_starter_template_report.md -> dev/reports/object_vector_studio_starter_template_report.md -R dev/docs_build/dev/reports/object_vs_shape_transform_verification.md -> dev/reports/object_vs_shape_transform_verification.md -R dev/docs_build/dev/reports/objects-action-spacing-cleanup-report.md -> dev/reports/objects-action-spacing-cleanup-report.md -R dev/docs_build/dev/reports/objects-asset-return-display-report.md -> dev/reports/objects-asset-return-display-report.md -R dev/docs_build/dev/reports/objects-beta-promotion-and-catalog-relocation-report.md -> dev/reports/objects-beta-promotion-and-catalog-relocation-report.md -R dev/docs_build/dev/reports/objects-beta-rebuild-report.md -> dev/reports/objects-beta-rebuild-report.md -R dev/docs_build/dev/reports/objects-db-persistence-fix-report.md -> dev/reports/objects-db-persistence-fix-report.md -R dev/docs_build/dev/reports/objects-production-copy-and-status-report.md -> dev/reports/objects-production-copy-and-status-report.md -R dev/docs_build/dev/reports/objects-remove-type-choices-report.md -> dev/reports/objects-remove-type-choices-report.md -R dev/docs_build/dev/reports/objects-role-type-save-fix-report.md -> dev/reports/objects-role-type-save-fix-report.md -R dev/docs_build/dev/reports/objects-status-action-links-report.md -> dev/reports/objects-status-action-links-report.md -R dev/docs_build/dev/reports/objects-table-input-wireframe-report.md -> dev/reports/objects-table-input-wireframe-report.md -R dev/docs_build/dev/reports/objects-table-status-actions-report.md -> dev/reports/objects-table-status-actions-report.md -R dev/docs_build/dev/reports/old_tool_test_retirement_report.txt -> dev/reports/old_tool_test_retirement_report.txt -R dev/docs_build/dev/reports/organization_contract_tests_validation.md -> dev/reports/organization_contract_tests_validation.md -R dev/docs_build/dev/reports/owner_eod_report.md -> dev/reports/owner_eod_report.md -R dev/docs_build/dev/reports/page-local-product-data-audit-report.md -> dev/reports/page-local-product-data-audit-report.md -R dev/docs_build/dev/reports/palette-added-selection-and-tooltip-source-report.md -> dev/reports/palette-added-selection-and-tooltip-source-report.md -R dev/docs_build/dev/reports/palette-checkbox-tag-batch-recovery-report.md -> dev/reports/palette-checkbox-tag-batch-recovery-report.md -R dev/docs_build/dev/reports/palette-db-legacy-table-audit-report.md -> dev/reports/palette-db-legacy-table-audit-report.md -R dev/docs_build/dev/reports/palette-empty-editor-state-report.md -> dev/reports/palette-empty-editor-state-report.md -R dev/docs_build/dev/reports/palette-followup-stacked-report.md -> dev/reports/palette-followup-stacked-report.md -R dev/docs_build/dev/reports/palette-fullscreen-accordion-flex-fix-report.md -> dev/reports/palette-fullscreen-accordion-flex-fix-report.md -R dev/docs_build/dev/reports/palette-harmony-unique-generated-names-report.md -> dev/reports/palette-harmony-unique-generated-names-report.md -R dev/docs_build/dev/reports/palette-runtime-usage-verification-report.md -> dev/reports/palette-runtime-usage-verification-report.md -R dev/docs_build/dev/reports/palette-selected-swatch-and-harmony-display-report.md -> dev/reports/palette-selected-swatch-and-harmony-display-report.md -R dev/docs_build/dev/reports/palette-source-and-control-cleanup-report.md -> dev/reports/palette-source-and-control-cleanup-report.md -R dev/docs_build/dev/reports/palette-source-list-and-unpin-delete-report.md -> dev/reports/palette-source-list-and-unpin-delete-report.md -R dev/docs_build/dev/reports/palette-source-pinall-compact-buttons-report.md -> dev/reports/palette-source-pinall-compact-buttons-report.md -R dev/docs_build/dev/reports/palette-source-swatches-deprecation-report.md -> dev/reports/palette-source-swatches-deprecation-report.md -R dev/docs_build/dev/reports/palette-swatch-editor-disable-correction-report.md -> dev/reports/palette-swatch-editor-disable-correction-report.md -R dev/docs_build/dev/reports/palette-swatch-harmony-and-tool-center-flex-report.md -> dev/reports/palette-swatch-harmony-and-tool-center-flex-report.md -R dev/docs_build/dev/reports/palette-tag-and-editor-split-report.md -> dev/reports/palette-tag-and-editor-split-report.md -R dev/docs_build/dev/reports/palette-tool-and-asset-handoff-report.md -> dev/reports/palette-tool-and-asset-handoff-report.md -R dev/docs_build/dev/reports/palette-user-defined-add-state-report.md -> dev/reports/palette-user-defined-add-state-report.md -R dev/docs_build/dev/reports/palette_color_harmony_schemes_report.md -> dev/reports/palette_color_harmony_schemes_report.md -R dev/docs_build/dev/reports/palette_contract_tests_validation.md -> dev/reports/palette_contract_tests_validation.md -R dev/docs_build/dev/reports/palette_harmony_labeling_report.md -> dev/reports/palette_harmony_labeling_report.md -R dev/docs_build/dev/reports/palette_harmony_swatch_display_report.md -> dev/reports/palette_harmony_swatch_display_report.md -R dev/docs_build/dev/reports/palette_manager_v2_session_persistence.md -> dev/reports/palette_manager_v2_session_persistence.md -R dev/docs_build/dev/reports/palette_pass_through_11_131.txt -> dev/reports/palette_pass_through_11_131.txt -R dev/docs_build/dev/reports/palette_schema_payload_only_11_122.txt -> dev/reports/palette_schema_payload_only_11_122.txt -R dev/docs_build/dev/reports/palette_v2_directory_cleanup.md -> dev/reports/palette_v2_directory_cleanup.md -R dev/docs_build/dev/reports/persistent_lane_manifest_report.md -> dev/reports/persistent_lane_manifest_report.md -R dev/docs_build/dev/reports/phase17_browser_root_test_resolution_report.md -> dev/reports/phase17_browser_root_test_resolution_report.md -R dev/docs_build/dev/reports/phase20_codex_rules_recheck.md -> dev/reports/phase20_codex_rules_recheck.md -R dev/docs_build/dev/reports/phase20_recovery_gate_decision.md -> dev/reports/phase20_recovery_gate_decision.md -R dev/docs_build/dev/reports/phase20_recovery_uat_validation.md -> dev/reports/phase20_recovery_uat_validation.md -R dev/docs_build/dev/reports/phase20_tool_preset_integration_validation.txt -> dev/reports/phase20_tool_preset_integration_validation.txt -R dev/docs_build/dev/reports/phase20_tool_preset_mapping.txt -> dev/reports/phase20_tool_preset_mapping.txt -R dev/docs_build/dev/reports/phase20_tool_sample_map.json -> dev/reports/phase20_tool_sample_map.json -R dev/docs_build/dev/reports/phase20_tool_sample_map.md -> dev/reports/phase20_tool_sample_map.md -R dev/docs_build/dev/reports/phase_24_closeout_execution_guard_spec.txt -> dev/reports/phase_24_closeout_execution_guard_spec.txt -R dev/docs_build/dev/reports/planned-tool-shells.md -> dev/reports/planned-tool-shells.md -R dev/docs_build/dev/reports/platform_data_ownership_model_validation.md -> dev/reports/platform_data_ownership_model_validation.md -R dev/docs_build/dev/reports/platform_shell_pager_marker_validation.md -> dev/reports/platform_shell_pager_marker_validation.md -R dev/docs_build/dev/reports/playwright_active_game_manifest_discovery.md -> dev/reports/playwright_active_game_manifest_discovery.md -R dev/docs_build/dev/reports/playwright_audio_sfx_balanced_right_panel.md -> dev/reports/playwright_audio_sfx_balanced_right_panel.md -R dev/docs_build/dev/reports/playwright_audio_sfx_center_column_tight_layout.md -> dev/reports/playwright_audio_sfx_center_column_tight_layout.md -R dev/docs_build/dev/reports/playwright_audio_sfx_copy_json_frequency_alignment.md -> dev/reports/playwright_audio_sfx_copy_json_frequency_alignment.md -R dev/docs_build/dev/reports/playwright_audio_sfx_json_actions_and_name_controls.md -> dev/reports/playwright_audio_sfx_json_actions_and_name_controls.md -R dev/docs_build/dev/reports/playwright_audio_sfx_json_import_export.md -> dev/reports/playwright_audio_sfx_json_import_export.md -R dev/docs_build/dev/reports/playwright_audio_sfx_layout_density.md -> dev/reports/playwright_audio_sfx_layout_density.md -R dev/docs_build/dev/reports/playwright_audio_sfx_left_margin_reduction.md -> dev/reports/playwright_audio_sfx_left_margin_reduction.md -R dev/docs_build/dev/reports/playwright_audio_sfx_multi_sound_workflow.md -> dev/reports/playwright_audio_sfx_multi_sound_workflow.md -R dev/docs_build/dev/reports/playwright_audio_sfx_no_state_abstraction.md -> dev/reports/playwright_audio_sfx_no_state_abstraction.md -R dev/docs_build/dev/reports/playwright_audio_sfx_noise_and_slider_resolution.md -> dev/reports/playwright_audio_sfx_noise_and_slider_resolution.md -R dev/docs_build/dev/reports/playwright_audio_sfx_play_stop_loop_mode.md -> dev/reports/playwright_audio_sfx_play_stop_loop_mode.md -R dev/docs_build/dev/reports/playwright_audio_sfx_playback_layout.md -> dev/reports/playwright_audio_sfx_playback_layout.md -R dev/docs_build/dev/reports/playwright_audio_sfx_playground_v2.md -> dev/reports/playwright_audio_sfx_playground_v2.md -R dev/docs_build/dev/reports/playwright_audio_sfx_pure_tone_noise_modes.md -> dev/reports/playwright_audio_sfx_pure_tone_noise_modes.md -R dev/docs_build/dev/reports/playwright_audio_sfx_rebalanced_layout.md -> dev/reports/playwright_audio_sfx_rebalanced_layout.md -R dev/docs_build/dev/reports/playwright_audio_sfx_remove_copy_json_fallback.md -> dev/reports/playwright_audio_sfx_remove_copy_json_fallback.md -R dev/docs_build/dev/reports/playwright_audio_sfx_right_accordion_folding.md -> dev/reports/playwright_audio_sfx_right_accordion_folding.md -R dev/docs_build/dev/reports/playwright_audio_sfx_schema_and_copy_json.md -> dev/reports/playwright_audio_sfx_schema_and_copy_json.md -R dev/docs_build/dev/reports/playwright_audio_sfx_schema_location_unique_names.md -> dev/reports/playwright_audio_sfx_schema_location_unique_names.md -R dev/docs_build/dev/reports/playwright_audio_sfx_shared_dirty_contract.md -> dev/reports/playwright_audio_sfx_shared_dirty_contract.md -R dev/docs_build/dev/reports/playwright_audio_sfx_slider_focus.md -> dev/reports/playwright_audio_sfx_slider_focus.md -R dev/docs_build/dev/reports/playwright_audio_sfx_slider_undo_coalescing.md -> dev/reports/playwright_audio_sfx_slider_undo_coalescing.md -R dev/docs_build/dev/reports/playwright_audio_sfx_style_descriptions.md -> dev/reports/playwright_audio_sfx_style_descriptions.md -R dev/docs_build/dev/reports/playwright_audio_sfx_style_examples_and_helpers.md -> dev/reports/playwright_audio_sfx_style_examples_and_helpers.md -R dev/docs_build/dev/reports/playwright_audio_sfx_style_order.md -> dev/reports/playwright_audio_sfx_style_order.md -R dev/docs_build/dev/reports/playwright_audio_sfx_style_slider_clamps.md -> dev/reports/playwright_audio_sfx_style_slider_clamps.md -R dev/docs_build/dev/reports/playwright_audio_sfx_style_ux_noise_labels.md -> dev/reports/playwright_audio_sfx_style_ux_noise_labels.md -R dev/docs_build/dev/reports/playwright_audio_sfx_template_css_alignment.md -> dev/reports/playwright_audio_sfx_template_css_alignment.md -R dev/docs_build/dev/reports/playwright_audio_sfx_tile_play_and_button_move.md -> dev/reports/playwright_audio_sfx_tile_play_and_button_move.md -R dev/docs_build/dev/reports/playwright_audio_sfx_undo_redo.md -> dev/reports/playwright_audio_sfx_undo_redo.md -R dev/docs_build/dev/reports/playwright_audio_sfx_visible_style_ranges.md -> dev/reports/playwright_audio_sfx_visible_style_ranges.md -R dev/docs_build/dev/reports/playwright_audio_sfx_workspace_manifest_schema.md -> dev/reports/playwright_audio_sfx_workspace_manifest_schema.md -R dev/docs_build/dev/reports/playwright_discovery_ownership_report.md -> dev/reports/playwright_discovery_ownership_report.md -R dev/docs_build/dev/reports/playwright_discovery_scope_report.md -> dev/reports/playwright_discovery_scope_report.md -R dev/docs_build/dev/reports/playwright_e2e_flow_completion.txt -> dev/reports/playwright_e2e_flow_completion.txt -R dev/docs_build/dev/reports/playwright_game_manifest_ssot.md -> dev/reports/playwright_game_manifest_ssot.md -R dev/docs_build/dev/reports/playwright_game_workspace_boundary_contract.md -> dev/reports/playwright_game_workspace_boundary_contract.md -R dev/docs_build/dev/reports/playwright_palette_manager_v2_session_persistence.md -> dev/reports/playwright_palette_manager_v2_session_persistence.md -R dev/docs_build/dev/reports/playwright_preview_generator_real_root_path.md -> dev/reports/playwright_preview_generator_real_root_path.md -R dev/docs_build/dev/reports/playwright_preview_generator_repo_writer_retention.md -> dev/reports/playwright_preview_generator_repo_writer_retention.md -R dev/docs_build/dev/reports/playwright_preview_generator_session_repo_load.md -> dev/reports/playwright_preview_generator_session_repo_load.md -R dev/docs_build/dev/reports/playwright_preview_generator_write_path_logging.md -> dev/reports/playwright_preview_generator_write_path_logging.md -R dev/docs_build/dev/reports/playwright_session_delete_save_and_preview_root_handle.md -> dev/reports/playwright_session_delete_save_and_preview_root_handle.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_controls_polish.md -> dev/reports/playwright_session_inspector_v2_controls_polish.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_data_dirty_model.md -> dev/reports/playwright_session_inspector_v2_data_dirty_model.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_deep_rename.md -> dev/reports/playwright_session_inspector_v2_deep_rename.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_detail_panel_height.md -> dev/reports/playwright_session_inspector_v2_detail_panel_height.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_layout_fix.md -> dev/reports/playwright_session_inspector_v2_layout_fix.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_normalized_tool_keys.md -> dev/reports/playwright_session_inspector_v2_normalized_tool_keys.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_output_scrollbars.md -> dev/reports/playwright_session_inspector_v2_output_scrollbars.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_output_wrap_height.md -> dev/reports/playwright_session_inspector_v2_output_wrap_height.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_reapply_detail_accordions.md -> dev/reports/playwright_session_inspector_v2_reapply_detail_accordions.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_shared_detail_space.md -> dev/reports/playwright_session_inspector_v2_shared_detail_space.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_shell_layout.md -> dev/reports/playwright_session_inspector_v2_shell_layout.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_state_view.md -> dev/reports/playwright_session_inspector_v2_state_view.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_tile_nav_polish.md -> dev/reports/playwright_session_inspector_v2_tile_nav_polish.md -R dev/docs_build/dev/reports/playwright_session_inspector_v2_tile_sizing.md -> dev/reports/playwright_session_inspector_v2_tile_sizing.md -R dev/docs_build/dev/reports/playwright_structure_audit.md -> dev/reports/playwright_structure_audit.md -R dev/docs_build/dev/reports/playwright_v8_coverage.txt -> dev/reports/playwright_v8_coverage.txt -R dev/docs_build/dev/reports/playwright_v8_coverage_report.md -> dev/reports/playwright_v8_coverage_report.md -R dev/docs_build/dev/reports/playwright_v8_coverage_report.txt -> dev/reports/playwright_v8_coverage_report.txt -R dev/docs_build/dev/reports/playwright_workspace_hydrate_game_tools_only.md -> dev/reports/playwright_workspace_hydrate_game_tools_only.md -R dev/docs_build/dev/reports/playwright_workspace_recovery.md -> dev/reports/playwright_workspace_recovery.md -R dev/docs_build/dev/reports/playwright_workspace_return_repo_rehydrate.md -> dev/reports/playwright_workspace_return_repo_rehydrate.md -R dev/docs_build/dev/reports/playwright_workspace_selection_gates.md -> dev/reports/playwright_workspace_selection_gates.md -R dev/docs_build/dev/reports/playwright_workspace_session_hydration.md -> dev/reports/playwright_workspace_session_hydration.md -R dev/docs_build/dev/reports/playwright_workspace_tool_session_refresh.md -> dev/reports/playwright_workspace_tool_session_refresh.md -R dev/docs_build/dev/reports/playwright_workspace_v2_results.md -> dev/reports/playwright_workspace_v2_results.md -R dev/docs_build/dev/reports/pointer_drag_input_mapping_tiles_report.md -> dev/reports/pointer_drag_input_mapping_tiles_report.md -R dev/docs_build/dev/reports/post_closeout_monitoring.txt -> dev/reports/post_closeout_monitoring.txt -R dev/docs_build/dev/reports/post_migration_platform_roadmap_validation.md -> dev/reports/post_migration_platform_roadmap_validation.md -R dev/docs_build/dev/reports/pr-26157-010-historical-limitation.md -> dev/reports/pr-26157-010-historical-limitation.md -R dev/docs_build/dev/reports/pr-completion-rule-and-journey-filter-fix-report.md -> dev/reports/pr-completion-rule-and-journey-filter-fix-report.md -R dev/docs_build/dev/reports/pr097-admin-account-local-db-migration.md -> dev/reports/pr097-admin-account-local-db-migration.md -R dev/docs_build/dev/reports/pr098-toolbox-local-db-migration.md -> dev/reports/pr098-toolbox-local-db-migration.md -R dev/docs_build/dev/reports/pr099-site-setup-foundation.md -> dev/reports/pr099-site-setup-foundation.md -R dev/docs_build/dev/reports/pr100-auth-contract-foundation.md -> dev/reports/pr100-auth-contract-foundation.md -R dev/docs_build/dev/reports/pr101-db-auth-foundation-fixes.md -> dev/reports/pr101-db-auth-foundation-fixes.md -R dev/docs_build/dev/reports/pr102-production-sign-in-cleanup.md -> dev/reports/pr102-production-sign-in-cleanup.md -R dev/docs_build/dev/reports/pr103-pr102-auth-cleanup-fixes.md -> dev/reports/pr103-pr102-auth-cleanup-fixes.md -R dev/docs_build/dev/reports/pr104-complete-grouped-ddl.md -> dev/reports/pr104-complete-grouped-ddl.md -R dev/docs_build/dev/reports/pr105-complete-grouped-dml.md -> dev/reports/pr105-complete-grouped-dml.md -R dev/docs_build/dev/reports/pr106-server-side-seed-api.md -> dev/reports/pr106-server-side-seed-api.md -R dev/docs_build/dev/reports/pr107-guest-seed-data-migration.md -> dev/reports/pr107-guest-seed-data-migration.md -R dev/docs_build/dev/reports/pr108-complete-db-consumer-migration.md -> dev/reports/pr108-complete-db-consumer-migration.md -R dev/docs_build/dev/reports/pr109-final-db-migration-audit.md -> dev/reports/pr109-final-db-migration-audit.md -R dev/docs_build/dev/reports/pr110-local-api-naming-cleanup.md -> dev/reports/pr110-local-api-naming-cleanup.md -R dev/docs_build/dev/reports/pr111-local-db-schema-alignment.md -> dev/reports/pr111-local-db-schema-alignment.md -R dev/docs_build/dev/reports/pr112-dml-seed-execution-clarity.md -> dev/reports/pr112-dml-seed-execution-clarity.md -R dev/docs_build/dev/reports/pr113-db-review-items-cleanup.md -> dev/reports/pr113-db-review-items-cleanup.md -R dev/docs_build/dev/reports/pr118-external-auth-readiness-plan.md -> dev/reports/pr118-external-auth-readiness-plan.md -R dev/docs_build/dev/reports/pr119-supabase-environment-checklist.md -> dev/reports/pr119-supabase-environment-checklist.md -R dev/docs_build/dev/reports/pr120-supabase-provider-contract-stub.md -> dev/reports/pr120-supabase-provider-contract-stub.md -R dev/docs_build/dev/reports/pr121-supabase-dev-project-preparation.md -> dev/reports/pr121-supabase-dev-project-preparation.md -R dev/docs_build/dev/reports/pr122-supabase-dev-auth-stub.md -> dev/reports/pr122-supabase-dev-auth-stub.md -R dev/docs_build/dev/reports/pr123-supabase-dev-postgres-stub.md -> dev/reports/pr123-supabase-dev-postgres-stub.md -R dev/docs_build/dev/reports/pr125-supabase-dev-provider-prep.md -> dev/reports/pr125-supabase-dev-provider-prep.md -R dev/docs_build/dev/reports/pr126-supabase-auth-provider-adapter.md -> dev/reports/pr126-supabase-auth-provider-adapter.md -R dev/docs_build/dev/reports/pr127-supabase-postgres-provider-adapter.md -> dev/reports/pr127-supabase-postgres-provider-adapter.md -R dev/docs_build/dev/reports/pr128-supabase-dev-activation-checklist.md -> dev/reports/pr128-supabase-dev-activation-checklist.md -R dev/docs_build/dev/reports/pr129-local-db-migration-audit.md -> dev/reports/pr129-local-db-migration-audit.md -R dev/docs_build/dev/reports/pr130-provider-failure-contract.md -> dev/reports/pr130-provider-failure-contract.md -R dev/docs_build/dev/reports/pr131-supabase-dev-activation-runtime.md -> dev/reports/pr131-supabase-dev-activation-runtime.md -R dev/docs_build/dev/reports/pr132-supabase-users-roles-migration.md -> dev/reports/pr132-supabase-users-roles-migration.md -R dev/docs_build/dev/reports/pr133-site-setup-productionization.md -> dev/reports/pr133-site-setup-productionization.md -R dev/docs_build/dev/reports/pr134-db-migration-finish-line-audit.md -> dev/reports/pr134-db-migration-finish-line-audit.md -R dev/docs_build/dev/reports/pr135-site-setup-warning-cleanup.md -> dev/reports/pr135-site-setup-warning-cleanup.md -R dev/docs_build/dev/reports/pr136-objects-controls-db-catalog-migration.md -> dev/reports/pr136-objects-controls-db-catalog-migration.md -R dev/docs_build/dev/reports/pr137-supabase-dev-preflight-diagnostics.md -> dev/reports/pr137-supabase-dev-preflight-diagnostics.md -R dev/docs_build/dev/reports/pr138-db-auth-ready-for-dev-supabase-audit.md -> dev/reports/pr138-db-auth-ready-for-dev-supabase-audit.md -R dev/docs_build/dev/reports/pr139-supabase-dev-project-creation-guide.md -> dev/reports/pr139-supabase-dev-project-creation-guide.md -R dev/docs_build/dev/reports/pr_072_failure_classification_report.md -> dev/reports/pr_072_failure_classification_report.md -R dev/docs_build/dev/reports/pr_11_162_dead_wiring_report.txt -> dev/reports/pr_11_162_dead_wiring_report.txt -R dev/docs_build/dev/reports/pr_11_162_evidence_template.txt -> dev/reports/pr_11_162_evidence_template.txt -R dev/docs_build/dev/reports/pr_11_163_delivery_manifest.md -> dev/reports/pr_11_163_delivery_manifest.md -R dev/docs_build/dev/reports/pr_11_163_handoff_trace_report.md -> dev/reports/pr_11_163_handoff_trace_report.md -R dev/docs_build/dev/reports/pr_11_164_badge_ownership_map.md -> dev/reports/pr_11_164_badge_ownership_map.md -R dev/docs_build/dev/reports/pr_11_164_build_notes.md -> dev/reports/pr_11_164_build_notes.md -R dev/docs_build/dev/reports/pr_11_164_dead_code_ledger.md -> dev/reports/pr_11_164_dead_code_ledger.md -R dev/docs_build/dev/reports/pr_11_164_expected_outputs.md -> dev/reports/pr_11_164_expected_outputs.md -R dev/docs_build/dev/reports/pr_11_164_revert_map.md -> dev/reports/pr_11_164_revert_map.md -R dev/docs_build/dev/reports/pr_11_166_hosted_badge_clear_order_report.md -> dev/reports/pr_11_166_hosted_badge_clear_order_report.md -R dev/docs_build/dev/reports/pr_11_166_svg_badge_root_cause_review.md -> dev/reports/pr_11_166_svg_badge_root_cause_review.md -R dev/docs_build/dev/reports/pr_11_167_corrected_badge_ownership.md -> dev/reports/pr_11_167_corrected_badge_ownership.md -R dev/docs_build/dev/reports/pr_11_167_validation.md -> dev/reports/pr_11_167_validation.md -R dev/docs_build/dev/reports/pr_11_169_decision_record.md -> dev/reports/pr_11_169_decision_record.md -R dev/docs_build/dev/reports/pr_11_169_legacy_shell_replacement_ledger.md -> dev/reports/pr_11_169_legacy_shell_replacement_ledger.md -R dev/docs_build/dev/reports/pr_11_170_pass_two_decision_record.md -> dev/reports/pr_11_170_pass_two_decision_record.md -R dev/docs_build/dev/reports/pr_11_170_workspace_tile_state_ledger.md -> dev/reports/pr_11_170_workspace_tile_state_ledger.md -R dev/docs_build/dev/reports/pr_11_172_root_cause_lock.md -> dev/reports/pr_11_172_root_cause_lock.md -R dev/docs_build/dev/reports/pr_11_172_validation.md -> dev/reports/pr_11_172_validation.md -R dev/docs_build/dev/reports/pr_11_174_root_cause_final.md -> dev/reports/pr_11_174_root_cause_final.md -R dev/docs_build/dev/reports/pr_11_174_validation.md -> dev/reports/pr_11_174_validation.md -R dev/docs_build/dev/reports/pr_11_176_evidence.md -> dev/reports/pr_11_176_evidence.md -R dev/docs_build/dev/reports/pr_11_176_validation.md -> dev/reports/pr_11_176_validation.md -R dev/docs_build/dev/reports/pr_11_179_design_lock.md -> dev/reports/pr_11_179_design_lock.md -R dev/docs_build/dev/reports/pr_11_179_validation.md -> dev/reports/pr_11_179_validation.md -R dev/docs_build/dev/reports/pr_11_180_diagnosis.md -> dev/reports/pr_11_180_diagnosis.md -R dev/docs_build/dev/reports/pr_11_180_validation.md -> dev/reports/pr_11_180_validation.md -R dev/docs_build/dev/reports/pr_11_181_mapping_strategy.md -> dev/reports/pr_11_181_mapping_strategy.md -R dev/docs_build/dev/reports/pr_11_181_validation.md -> dev/reports/pr_11_181_validation.md -R dev/docs_build/dev/reports/pr_11_183_final_click_dispatch_lock.md -> dev/reports/pr_11_183_final_click_dispatch_lock.md -R dev/docs_build/dev/reports/pr_11_183_validation.md -> dev/reports/pr_11_183_validation.md -R dev/docs_build/dev/reports/pr_11_184_decision_record.md -> dev/reports/pr_11_184_decision_record.md -R dev/docs_build/dev/reports/pr_11_184_validation.md -> dev/reports/pr_11_184_validation.md -R dev/docs_build/dev/reports/pr_11_187_restart_notes.md -> dev/reports/pr_11_187_restart_notes.md -R dev/docs_build/dev/reports/pr_11_188_bundle_validation.md -> dev/reports/pr_11_188_bundle_validation.md -R dev/docs_build/dev/reports/pr_11_188_palette_manager_reverse_engineering.md -> dev/reports/pr_11_188_palette_manager_reverse_engineering.md -R dev/docs_build/dev/reports/pr_11_188_palette_reverse_engineering.md -> dev/reports/pr_11_188_palette_reverse_engineering.md -R dev/docs_build/dev/reports/pr_11_196_v2_runtime_validation_cleanup_report.md -> dev/reports/pr_11_196_v2_runtime_validation_cleanup_report.md -R dev/docs_build/dev/reports/pr_11_56_after_audit.txt -> dev/reports/pr_11_56_after_audit.txt -R dev/docs_build/dev/reports/pr_11_56_before_audit.txt -> dev/reports/pr_11_56_before_audit.txt -R dev/docs_build/dev/reports/pr_11_56_candidate_classification.md -> dev/reports/pr_11_56_candidate_classification.md -R dev/docs_build/dev/reports/pr_11_56_cleanup_actions.json -> dev/reports/pr_11_56_cleanup_actions.json -R dev/docs_build/dev/reports/pr_11_56_post_cleanup_checks.md -> dev/reports/pr_11_56_post_cleanup_checks.md -R dev/docs_build/dev/reports/pr_11_56_validation_requirements.md -> dev/reports/pr_11_56_validation_requirements.md -R dev/docs_build/dev/reports/pr_11_62_after_audit.txt -> dev/reports/pr_11_62_after_audit.txt -R dev/docs_build/dev/reports/pr_11_62_before_audit.txt -> dev/reports/pr_11_62_before_audit.txt -R dev/docs_build/dev/reports/pr_11_62_expected_report_template.md -> dev/reports/pr_11_62_expected_report_template.md -R dev/docs_build/dev/reports/pr_11_62_missing_reference_repair_report.md -> dev/reports/pr_11_62_missing_reference_repair_report.md -R dev/docs_build/dev/reports/pr_11_64_after_audit.txt -> dev/reports/pr_11_64_after_audit.txt -R dev/docs_build/dev/reports/pr_11_64_after_audit_details.txt -> dev/reports/pr_11_64_after_audit_details.txt -R dev/docs_build/dev/reports/pr_11_64_before_audit.txt -> dev/reports/pr_11_64_before_audit.txt -R dev/docs_build/dev/reports/pr_11_64_scope.md -> dev/reports/pr_11_64_scope.md -R dev/docs_build/dev/reports/pr_11_65_after_audit.txt -> dev/reports/pr_11_65_after_audit.txt -R dev/docs_build/dev/reports/pr_11_65_before_audit.txt -> dev/reports/pr_11_65_before_audit.txt -R dev/docs_build/dev/reports/pr_11_65_expected_report.md -> dev/reports/pr_11_65_expected_report.md -R dev/docs_build/dev/reports/pr_11_65_palette_reconstruction_report.md -> dev/reports/pr_11_65_palette_reconstruction_report.md -R dev/docs_build/dev/reports/pr_11_66_after_audit.txt -> dev/reports/pr_11_66_after_audit.txt -R dev/docs_build/dev/reports/pr_11_66_before_audit.txt -> dev/reports/pr_11_66_before_audit.txt -R dev/docs_build/dev/reports/pr_11_66_expected_validation.md -> dev/reports/pr_11_66_expected_validation.md -R dev/docs_build/dev/reports/pr_11_66_palette_audit_stabilization_report.md -> dev/reports/pr_11_66_palette_audit_stabilization_report.md -R dev/docs_build/dev/reports/pr_11_67_after_audit.txt -> dev/reports/pr_11_67_after_audit.txt -R dev/docs_build/dev/reports/pr_11_67_before_audit.txt -> dev/reports/pr_11_67_before_audit.txt -R dev/docs_build/dev/reports/pr_11_68_ci_exit.txt -> dev/reports/pr_11_68_ci_exit.txt -R dev/docs_build/dev/reports/pr_11_68_ci_output.txt -> dev/reports/pr_11_68_ci_output.txt -R dev/docs_build/dev/reports/pr_11_68_default_exit.txt -> dev/reports/pr_11_68_default_exit.txt -R dev/docs_build/dev/reports/pr_11_68_default_output.txt -> dev/reports/pr_11_68_default_output.txt -R dev/docs_build/dev/reports/pr_11_68_details_exit.txt -> dev/reports/pr_11_68_details_exit.txt -R dev/docs_build/dev/reports/pr_11_68_details_output.txt -> dev/reports/pr_11_68_details_output.txt -R dev/docs_build/dev/reports/pr_11_71_ci_output.txt -> dev/reports/pr_11_71_ci_output.txt -R dev/docs_build/dev/reports/pr_11_71_default_output.txt -> dev/reports/pr_11_71_default_output.txt -R dev/docs_build/dev/reports/pr_11_71_details_output.txt -> dev/reports/pr_11_71_details_output.txt -R dev/docs_build/dev/reports/pr_11_71_exit_codes.txt -> dev/reports/pr_11_71_exit_codes.txt -R dev/docs_build/dev/reports/pr_11_72_expected_evidence.md -> dev/reports/pr_11_72_expected_evidence.md -R dev/docs_build/dev/reports/pr_11_72_workspace_manager_tile_json_counts.md -> dev/reports/pr_11_72_workspace_manager_tile_json_counts.md -R dev/docs_build/dev/reports/pr_11_77_engine_utils_search_after.txt -> dev/reports/pr_11_77_engine_utils_search_after.txt -R dev/docs_build/dev/reports/pr_11_77_expected_report.md -> dev/reports/pr_11_77_expected_report.md -R dev/docs_build/dev/reports/pr_11_77_import_rewire_report.md -> dev/reports/pr_11_77_import_rewire_report.md -R dev/docs_build/dev/reports/pr_11_84_asteroids_manifest_validation.md -> dev/reports/pr_11_84_asteroids_manifest_validation.md -R dev/docs_build/dev/reports/pr_11_84_expected_validation.md -> dev/reports/pr_11_84_expected_validation.md -R dev/docs_build/dev/reports/pr_11_85_validation.md -> dev/reports/pr_11_85_validation.md -R dev/docs_build/dev/reports/pr_11_88_expected_validation.md -> dev/reports/pr_11_88_expected_validation.md -R dev/docs_build/dev/reports/pr_11_88_validation.md -> dev/reports/pr_11_88_validation.md -R dev/docs_build/dev/reports/pr_11_89_asteroids_engine_render_ownership_report.md -> dev/reports/pr_11_89_asteroids_engine_render_ownership_report.md -R dev/docs_build/dev/reports/pr_11_90_validation.md -> dev/reports/pr_11_90_validation.md -R dev/docs_build/dev/reports/pr_stack_summary.md -> dev/reports/pr_stack_summary.md -R dev/docs_build/dev/reports/preset_default_removal_11_135.txt -> dev/reports/preset_default_removal_11_135.txt -R dev/docs_build/dev/reports/preset_path_removal_11_112.txt -> dev/reports/preset_path_removal_11_112.txt -R dev/docs_build/dev/reports/preview_generator_real_root_path.md -> dev/reports/preview_generator_real_root_path.md -R dev/docs_build/dev/reports/preview_generator_repo_writer_retention.md -> dev/reports/preview_generator_repo_writer_retention.md -R dev/docs_build/dev/reports/preview_generator_session_repo_load.md -> dev/reports/preview_generator_session_repo_load.md -R dev/docs_build/dev/reports/preview_generator_v2_accordion_abstraction.txt -> dev/reports/preview_generator_v2_accordion_abstraction.txt -R dev/docs_build/dev/reports/preview_generator_v2_accordion_consistency.txt -> dev/reports/preview_generator_v2_accordion_consistency.txt -R dev/docs_build/dev/reports/preview_generator_v2_accordion_edge_cases.txt -> dev/reports/preview_generator_v2_accordion_edge_cases.txt -R dev/docs_build/dev/reports/preview_generator_v2_app_logger_separation.txt -> dev/reports/preview_generator_v2_app_logger_separation.txt -R dev/docs_build/dev/reports/preview_generator_v2_class_responsibilities.md -> dev/reports/preview_generator_v2_class_responsibilities.md -R dev/docs_build/dev/reports/preview_generator_v2_common_style_candidates.txt -> dev/reports/preview_generator_v2_common_style_candidates.txt -R dev/docs_build/dev/reports/preview_generator_v2_common_styles_applied.txt -> dev/reports/preview_generator_v2_common_styles_applied.txt -R dev/docs_build/dev/reports/preview_generator_v2_control_class_boundaries.txt -> dev/reports/preview_generator_v2_control_class_boundaries.txt -R dev/docs_build/dev/reports/preview_generator_v2_final_lock.txt -> dev/reports/preview_generator_v2_final_lock.txt -R dev/docs_build/dev/reports/preview_generator_v2_final_review.txt -> dev/reports/preview_generator_v2_final_review.txt -R dev/docs_build/dev/reports/preview_generator_v2_paths_accordion_collapse_fix.txt -> dev/reports/preview_generator_v2_paths_accordion_collapse_fix.txt -R dev/docs_build/dev/reports/preview_generator_v2_playwright_coverage.txt -> dev/reports/preview_generator_v2_playwright_coverage.txt -R dev/docs_build/dev/reports/preview_generator_v2_playwright_depth.txt -> dev/reports/preview_generator_v2_playwright_depth.txt -R dev/docs_build/dev/reports/preview_generator_v2_playwright_result.txt -> dev/reports/preview_generator_v2_playwright_result.txt -R dev/docs_build/dev/reports/preview_generator_v2_roadmap_update.txt -> dev/reports/preview_generator_v2_roadmap_update.txt -R dev/docs_build/dev/reports/preview_generator_v2_shared_dependency_audit.txt -> dev/reports/preview_generator_v2_shared_dependency_audit.txt -R dev/docs_build/dev/reports/preview_generator_v2_shared_removed.txt -> dev/reports/preview_generator_v2_shared_removed.txt -R dev/docs_build/dev/reports/preview_generator_v2_status_accordion_restore.txt -> dev/reports/preview_generator_v2_status_accordion_restore.txt -R dev/docs_build/dev/reports/preview_generator_v2_unexpected_changes_reverted.txt -> dev/reports/preview_generator_v2_unexpected_changes_reverted.txt -R dev/docs_build/dev/reports/preview_generator_write_path_logging.md -> dev/reports/preview_generator_write_path_logging.md -R dev/docs_build/dev/reports/primary-navigation-order.md -> dev/reports/primary-navigation-order.md -R dev/docs_build/dev/reports/project-journey-db-audit-and-usability-report.md -> dev/reports/project-journey-db-audit-and-usability-report.md -R dev/docs_build/dev/reports/project-journey-db-viewer-template-polish-report.md -> dev/reports/project-journey-db-viewer-template-polish-report.md -R dev/docs_build/dev/reports/project-journey-key-search-additem-polish-report.md -> dev/reports/project-journey-key-search-additem-polish-report.md -R dev/docs_build/dev/reports/project-journey-selection-counts-and-ownership-report.md -> dev/reports/project-journey-selection-counts-and-ownership-report.md -R dev/docs_build/dev/reports/project-journey-sort-and-skipped-status-report.md -> dev/reports/project-journey-sort-and-skipped-status-report.md -R dev/docs_build/dev/reports/project-journey-status-tiles-and-delete-polish-report.md -> dev/reports/project-journey-status-tiles-and-delete-polish-report.md -R dev/docs_build/dev/reports/project-journey-template-ssot-report.md -> dev/reports/project-journey-template-ssot-report.md -R dev/docs_build/dev/reports/project-journey-tool-v1-report.md -> dev/reports/project-journey-tool-v1-report.md -R dev/docs_build/dev/reports/project-journey-ulid-db-table-polish-report.md -> dev/reports/project-journey-ulid-db-table-polish-report.md -R dev/docs_build/dev/reports/project-member-role-model.md -> dev/reports/project-member-role-model.md -R dev/docs_build/dev/reports/project-progress-model.md -> dev/reports/project-progress-model.md -R dev/docs_build/dev/reports/project-purpose-model.md -> dev/reports/project-purpose-model.md -R dev/docs_build/dev/reports/project-workspace-button-style.md -> dev/reports/project-workspace-button-style.md -R dev/docs_build/dev/reports/project-workspace-contract.md -> dev/reports/project-workspace-contract.md -R dev/docs_build/dev/reports/project-workspace-create-open-delete.md -> dev/reports/project-workspace-create-open-delete.md -R dev/docs_build/dev/reports/project-workspace-layout-cleanup.md -> dev/reports/project-workspace-layout-cleanup.md -R dev/docs_build/dev/reports/project-workspace-mock-repository.md -> dev/reports/project-workspace-mock-repository.md -R dev/docs_build/dev/reports/project-workspace-msj-tests.md -> dev/reports/project-workspace-msj-tests.md -R dev/docs_build/dev/reports/project-workspace-open-project-state.md -> dev/reports/project-workspace-open-project-state.md -R dev/docs_build/dev/reports/project-workspace-panel-layout-polish.md -> dev/reports/project-workspace-panel-layout-polish.md -R dev/docs_build/dev/reports/project-workspace-progress-panel.md -> dev/reports/project-workspace-progress-panel.md -R dev/docs_build/dev/reports/project-workspace-purpose-role-ui.md -> dev/reports/project-workspace-purpose-role-ui.md -R dev/docs_build/dev/reports/project-workspace-ready-for-game-design.md -> dev/reports/project-workspace-ready-for-game-design.md -R dev/docs_build/dev/reports/project-workspace-ready-gate.md -> dev/reports/project-workspace-ready-gate.md -R dev/docs_build/dev/reports/project-workspace-targeted-msj-coverage.md -> dev/reports/project-workspace-targeted-msj-coverage.md -R dev/docs_build/dev/reports/project-workspace-toolbox-integration.md -> dev/reports/project-workspace-toolbox-integration.md -R dev/docs_build/dev/reports/project-workspace-wide-layout.md -> dev/reports/project-workspace-wide-layout.md -R dev/docs_build/dev/reports/project_contract_tests_validation.md -> dev/reports/project_contract_tests_validation.md -R dev/docs_build/dev/reports/project_data_store_contract.md -> dev/reports/project_data_store_contract.md -R dev/docs_build/dev/reports/project_instructions_completion_contracts.txt -> dev/reports/project_instructions_completion_contracts.txt -R dev/docs_build/dev/reports/project_instructions_dedup_cleanup.txt -> dev/reports/project_instructions_dedup_cleanup.txt -R dev/docs_build/dev/reports/project_instructions_dod_playwright.txt -> dev/reports/project_instructions_dod_playwright.txt -R dev/docs_build/dev/reports/project_instructions_final_gaps.txt -> dev/reports/project_instructions_final_gaps.txt -R dev/docs_build/dev/reports/project_instructions_full_output.txt -> dev/reports/project_instructions_full_output.txt -R dev/docs_build/dev/reports/project_instructions_organization.txt -> dev/reports/project_instructions_organization.txt -R dev/docs_build/dev/reports/project_instructions_playwright_depth.txt -> dev/reports/project_instructions_playwright_depth.txt -R dev/docs_build/dev/reports/project_lifecycle_model_validation.md -> dev/reports/project_lifecycle_model_validation.md -R dev/docs_build/dev/reports/project_system_validation.txt -> dev/reports/project_system_validation.txt -R dev/docs_build/dev/reports/project_type_contract_tests_validation.md -> dev/reports/project_type_contract_tests_validation.md -R dev/docs_build/dev/reports/project_workspace_contract_rename_validation.md -> dev/reports/project_workspace_contract_rename_validation.md -R dev/docs_build/dev/reports/project_workspace_governance_toolbox_modes_report.md -> dev/reports/project_workspace_governance_toolbox_modes_report.md -R dev/docs_build/dev/reports/projectworkspace_contract_uat_validation.md -> dev/reports/projectworkspace_contract_uat_validation.md -R dev/docs_build/dev/reports/projectworkspace_launch_boundary_validation.md -> dev/reports/projectworkspace_launch_boundary_validation.md -R dev/docs_build/dev/reports/projectworkspace_lifecycle_validation.md -> dev/reports/projectworkspace_lifecycle_validation.md -R dev/docs_build/dev/reports/projectworkspace_manifest_handoff_boundary_validation.md -> dev/reports/projectworkspace_manifest_handoff_boundary_validation.md -R dev/docs_build/dev/reports/projectworkspace_migration_closeout.md -> dev/reports/projectworkspace_migration_closeout.md -R dev/docs_build/dev/reports/projectworkspace_recovery_audit.md -> dev/reports/projectworkspace_recovery_audit.md -R dev/docs_build/dev/reports/projectworkspace_recovery_closeout.md -> dev/reports/projectworkspace_recovery_closeout.md -R dev/docs_build/dev/reports/projectworkspace_report_normalization.md -> dev/reports/projectworkspace_report_normalization.md -R dev/docs_build/dev/reports/projectworkspace_state_boundary_validation.md -> dev/reports/projectworkspace_state_boundary_validation.md -R dev/docs_build/dev/reports/projectworkspace_terminology_alignment.md -> dev/reports/projectworkspace_terminology_alignment.md -R dev/docs_build/dev/reports/projectworkspace_tool_compliance.md -> dev/reports/projectworkspace_tool_compliance.md -R dev/docs_build/dev/reports/projectworkspace_tool_registration_validation.md -> dev/reports/projectworkspace_tool_registration_validation.md -R dev/docs_build/dev/reports/projectworkspace_validation_boundaries.md -> dev/reports/projectworkspace_validation_boundaries.md -R dev/docs_build/dev/reports/publish_contract_tests_validation.md -> dev/reports/publish_contract_tests_validation.md -R dev/docs_build/dev/reports/ready-for-first-tool-rebuild.md -> dev/reports/ready-for-first-tool-rebuild.md -R dev/docs_build/dev/reports/recovery_antipattern_audit_from_20_1.md -> dev/reports/recovery_antipattern_audit_from_20_1.md -R dev/docs_build/dev/reports/recovery_change_audit_from_20_1.md -> dev/reports/recovery_change_audit_from_20_1.md -R dev/docs_build/dev/reports/recovery_file_risk_list_from_20_1.md -> dev/reports/recovery_file_risk_list_from_20_1.md -R dev/docs_build/dev/reports/recovery_reset_decision_from_20_1.md -> dev/reports/recovery_reset_decision_from_20_1.md -R dev/docs_build/dev/reports/recovery_status_gate.md -> dev/reports/recovery_status_gate.md -R dev/docs_build/dev/reports/relationships_fixed_11_121.txt -> dev/reports/relationships_fixed_11_121.txt -R dev/docs_build/dev/reports/relationships_removed_11_121.txt -> dev/reports/relationships_removed_11_121.txt -R dev/docs_build/dev/reports/relationships_working_11_121.txt -> dev/reports/relationships_working_11_121.txt -R dev/docs_build/dev/reports/release_contract_tests_validation.md -> dev/reports/release_contract_tests_validation.md -R dev/docs_build/dev/reports/remaining_cleanup_report.md -> dev/reports/remaining_cleanup_report.md -R dev/docs_build/dev/reports/remaining_mismatches_report.md -> dev/reports/remaining_mismatches_report.md -R dev/docs_build/dev/reports/remaining_monoliths_report.md -> dev/reports/remaining_monoliths_report.md -R dev/docs_build/dev/reports/remote_branch_review.md -> dev/reports/remote_branch_review.md -R dev/docs_build/dev/reports/remove-static-api-fallbacks-report.md -> dev/reports/remove-static-api-fallbacks-report.md -R dev/docs_build/dev/reports/rename_audit.txt -> dev/reports/rename_audit.txt -R dev/docs_build/dev/reports/renderer_toolhint_cleanup_11_119.txt -> dev/reports/renderer_toolhint_cleanup_11_119.txt -R dev/docs_build/dev/reports/repair_or_report_summary_11_113.txt -> dev/reports/repair_or_report_summary_11_113.txt -R dev/docs_build/dev/reports/replace_path_review_11_112.txt -> dev/reports/replace_path_review_11_112.txt -R dev/docs_build/dev/reports/replaced_vector_tools_deprecation_report.md -> dev/reports/replaced_vector_tools_deprecation_report.md -R dev/docs_build/dev/reports/repo_duplicate_file_content_audit.json -> dev/reports/repo_duplicate_file_content_audit.json -R dev/docs_build/dev/reports/restore_snapshot_contract_rename_validation.md -> dev/reports/restore_snapshot_contract_rename_validation.md -R dev/docs_build/dev/reports/restore_snapshot_contract_tests_validation.md -> dev/reports/restore_snapshot_contract_tests_validation.md -R dev/docs_build/dev/reports/retry_suppression_report.md -> dev/reports/retry_suppression_report.md -R dev/docs_build/dev/reports/review_artifact_handling_report.md -> dev/reports/review_artifact_handling_report.md -R dev/docs_build/dev/reports/review_rating_contract_tests_validation.md -> dev/reports/review_rating_contract_tests_validation.md -R dev/docs_build/dev/reports/roadmap_finalization_report.txt -> dev/reports/roadmap_finalization_report.txt -R dev/docs_build/dev/reports/roadmap_lock_report.txt -> dev/reports/roadmap_lock_report.txt -R dev/docs_build/dev/reports/roadmap_lock_validation.txt -> dev/reports/roadmap_lock_validation.txt -R dev/docs_build/dev/reports/roadmap_status_transition_matrix.txt -> dev/reports/roadmap_status_transition_matrix.txt -R dev/docs_build/dev/reports/rollback_preserved_items.md -> dev/reports/rollback_preserved_items.md -R dev/docs_build/dev/reports/rollback_removed_items.md -> dev/reports/rollback_removed_items.md -R dev/docs_build/dev/reports/root_account_pages_migration_validation.md -> dev/reports/root_account_pages_migration_validation.md -R dev/docs_build/dev/reports/root_admin_original_parity_recovery_validation.md -> dev/reports/root_admin_original_parity_recovery_validation.md -R dev/docs_build/dev/reports/root_admin_pages_migration_validation.md -> dev/reports/root_admin_pages_migration_validation.md -R dev/docs_build/dev/reports/root_admin_specific_page_replacement_validation.md -> dev/reports/root_admin_specific_page_replacement_validation.md -R dev/docs_build/dev/reports/root_admin_tools_parity_recovery_validation.md -> dev/reports/root_admin_tools_parity_recovery_validation.md -R dev/docs_build/dev/reports/root_asset_reference_cleanup_report.md -> dev/reports/root_asset_reference_cleanup_report.md -R dev/docs_build/dev/reports/root_company_pages_migration_validation.md -> dev/reports/root_company_pages_migration_validation.md -R dev/docs_build/dev/reports/root_first_tool_page_migration_validation.md -> dev/reports/root_first_tool_page_migration_validation.md -R dev/docs_build/dev/reports/root_gamefoundrystudio_css_copy_validation.md -> dev/reports/root_gamefoundrystudio_css_copy_validation.md -R dev/docs_build/dev/reports/root_ia_lowercase_validation.txt -> dev/reports/root_ia_lowercase_validation.txt -R dev/docs_build/dev/reports/root_index_from_gamefoundrystudio_validation.md -> dev/reports/root_index_from_gamefoundrystudio_validation.md -R dev/docs_build/dev/reports/root_migration_closeout_bundle_report.md -> dev/reports/root_migration_closeout_bundle_report.md -R dev/docs_build/dev/reports/root_migration_path_recovery_validation.md -> dev/reports/root_migration_path_recovery_validation.md -R dev/docs_build/dev/reports/root_migration_remaining_work_report.md -> dev/reports/root_migration_remaining_work_report.md -R dev/docs_build/dev/reports/root_structure_inventory_closeout_report.md -> dev/reports/root_structure_inventory_closeout_report.md -R dev/docs_build/dev/reports/root_structure_samples_tools_theme_license_report.md -> dev/reports/root_structure_samples_tools_theme_license_report.md -R dev/docs_build/dev/reports/root_tool_content_mapping_validation.md -> dev/reports/root_tool_content_mapping_validation.md -R dev/docs_build/dev/reports/root_tools_index_group_outline_validation.md -> dev/reports/root_tools_index_group_outline_validation.md -R dev/docs_build/dev/reports/root_tools_index_migration_validation.md -> dev/reports/root_tools_index_migration_validation.md -R dev/docs_build/dev/reports/root_tools_index_parity_lock_validation.md -> dev/reports/root_tools_index_parity_lock_validation.md -R dev/docs_build/dev/reports/root_tools_index_sort_group_validation.md -> dev/reports/root_tools_index_sort_group_validation.md -R dev/docs_build/dev/reports/root_tools_original_parity_recovery_validation.md -> dev/reports/root_tools_original_parity_recovery_validation.md -R dev/docs_build/dev/reports/root_tools_pages_batch_migration_validation.md -> dev/reports/root_tools_pages_batch_migration_validation.md -R dev/docs_build/dev/reports/root_tree_cleanup_review_report.md -> dev/reports/root_tree_cleanup_review_report.md -R dev/docs_build/dev/reports/rule_system_foundation.md -> dev/reports/rule_system_foundation.md -R dev/docs_build/dev/reports/runtime_action_system.md -> dev/reports/runtime_action_system.md -R dev/docs_build/dev/reports/runtime_assertions_11_133.txt -> dev/reports/runtime_assertions_11_133.txt -R dev/docs_build/dev/reports/runtime_behavior_composition.md -> dev/reports/runtime_behavior_composition.md -R dev/docs_build/dev/reports/runtime_behavior_composition_model.md -> dev/reports/runtime_behavior_composition_model.md -R dev/docs_build/dev/reports/runtime_collision_processing.md -> dev/reports/runtime_collision_processing.md -R dev/docs_build/dev/reports/runtime_condition_system.md -> dev/reports/runtime_condition_system.md -R dev/docs_build/dev/reports/runtime_config_model_closeout.md -> dev/reports/runtime_config_model_closeout.md -R dev/docs_build/dev/reports/runtime_contract_enforcement_11_108.txt -> dev/reports/runtime_contract_enforcement_11_108.txt -R dev/docs_build/dev/reports/runtime_contract_lock_11_137.txt -> dev/reports/runtime_contract_lock_11_137.txt -R dev/docs_build/dev/reports/runtime_cooldown_processing.md -> dev/reports/runtime_cooldown_processing.md -R dev/docs_build/dev/reports/runtime_damage_processing.md -> dev/reports/runtime_damage_processing.md -R dev/docs_build/dev/reports/runtime_determinism_validation.md -> dev/reports/runtime_determinism_validation.md -R dev/docs_build/dev/reports/runtime_engine_closeout.md -> dev/reports/runtime_engine_closeout.md -R dev/docs_build/dev/reports/runtime_environment_effects.md -> dev/reports/runtime_environment_effects.md -R dev/docs_build/dev/reports/runtime_environment_force_boundary.md -> dev/reports/runtime_environment_force_boundary.md -R dev/docs_build/dev/reports/runtime_environment_force_instantiation.md -> dev/reports/runtime_environment_force_instantiation.md -R dev/docs_build/dev/reports/runtime_error_reporting.md -> dev/reports/runtime_error_reporting.md -R dev/docs_build/dev/reports/runtime_event_system.md -> dev/reports/runtime_event_system.md -R dev/docs_build/dev/reports/runtime_game_rule_closeout.md -> dev/reports/runtime_game_rule_closeout.md -R dev/docs_build/dev/reports/runtime_gameplay_loop_closeout.md -> dev/reports/runtime_gameplay_loop_closeout.md -R dev/docs_build/dev/reports/runtime_health_model.md -> dev/reports/runtime_health_model.md -R dev/docs_build/dev/reports/runtime_input_pipeline.md -> dev/reports/runtime_input_pipeline.md -R dev/docs_build/dev/reports/runtime_lives_and_respawn.md -> dev/reports/runtime_lives_and_respawn.md -R dev/docs_build/dev/reports/runtime_loader_slice_closeout.md -> dev/reports/runtime_loader_slice_closeout.md -R dev/docs_build/dev/reports/runtime_loader_validation.md -> dev/reports/runtime_loader_validation.md -R dev/docs_build/dev/reports/runtime_manifest_fixture_hardening.md -> dev/reports/runtime_manifest_fixture_hardening.md -R dev/docs_build/dev/reports/runtime_manifest_parser_slice.md -> dev/reports/runtime_manifest_parser_slice.md -R dev/docs_build/dev/reports/runtime_movement_processing.md -> dev/reports/runtime_movement_processing.md -R dev/docs_build/dev/reports/runtime_multi_scene_loading.md -> dev/reports/runtime_multi_scene_loading.md -R dev/docs_build/dev/reports/runtime_object_capability_boundary.md -> dev/reports/runtime_object_capability_boundary.md -R dev/docs_build/dev/reports/runtime_object_default_rejection.md -> dev/reports/runtime_object_default_rejection.md -R dev/docs_build/dev/reports/runtime_object_definition_reader.md -> dev/reports/runtime_object_definition_reader.md -R dev/docs_build/dev/reports/runtime_object_instantiation.md -> dev/reports/runtime_object_instantiation.md -R dev/docs_build/dev/reports/runtime_object_record_factory.md -> dev/reports/runtime_object_record_factory.md -R dev/docs_build/dev/reports/runtime_object_record_validation.md -> dev/reports/runtime_object_record_validation.md -R dev/docs_build/dev/reports/runtime_object_slice_closeout.md -> dev/reports/runtime_object_slice_closeout.md -R dev/docs_build/dev/reports/runtime_object_type_validation.md -> dev/reports/runtime_object_type_validation.md -R dev/docs_build/dev/reports/runtime_outcome_processing.md -> dev/reports/runtime_outcome_processing.md -R dev/docs_build/dev/reports/runtime_playable_loop.md -> dev/reports/runtime_playable_loop.md -R dev/docs_build/dev/reports/runtime_playable_scene_uat.md -> dev/reports/runtime_playable_scene_uat.md -R dev/docs_build/dev/reports/runtime_render_pipeline.md -> dev/reports/runtime_render_pipeline.md -R dev/docs_build/dev/reports/runtime_rendering_bootstrap.md -> dev/reports/runtime_rendering_bootstrap.md -R dev/docs_build/dev/reports/runtime_rule_attachment.md -> dev/reports/runtime_rule_attachment.md -R dev/docs_build/dev/reports/runtime_rule_definition_reader.md -> dev/reports/runtime_rule_definition_reader.md -R dev/docs_build/dev/reports/runtime_scene_definition_support.md -> dev/reports/runtime_scene_definition_support.md -R dev/docs_build/dev/reports/runtime_schema_boundary_11_127.txt -> dev/reports/runtime_schema_boundary_11_127.txt -R dev/docs_build/dev/reports/runtime_scoring_and_state_processing.md -> dev/reports/runtime_scoring_and_state_processing.md -R dev/docs_build/dev/reports/runtime_spawn_despawn_processing.md -> dev/reports/runtime_spawn_despawn_processing.md -R dev/docs_build/dev/reports/runtime_terrain_effects.md -> dev/reports/runtime_terrain_effects.md -R dev/docs_build/dev/reports/runtime_terrain_material_boundary.md -> dev/reports/runtime_terrain_material_boundary.md -R dev/docs_build/dev/reports/runtime_terrain_material_instantiation.md -> dev/reports/runtime_terrain_material_instantiation.md -R dev/docs_build/dev/reports/runtime_tick_loop.md -> dev/reports/runtime_tick_loop.md -R dev/docs_build/dev/reports/runtime_trigger_processing.md -> dev/reports/runtime_trigger_processing.md -R dev/docs_build/dev/reports/sample_1902_direct_payload_fix_11_147.txt -> dev/reports/sample_1902_direct_payload_fix_11_147.txt -R dev/docs_build/dev/reports/sample_1902_workspace_manifest_launch_11_146.txt -> dev/reports/sample_1902_workspace_manifest_launch_11_146.txt -R dev/docs_build/dev/reports/sample_json_js_reference_audit.csv -> dev/reports/sample_json_js_reference_audit.csv -R dev/docs_build/dev/reports/sample_json_js_reference_audit.pr11_46.csv -> dev/reports/sample_json_js_reference_audit.pr11_46.csv -R dev/docs_build/dev/reports/sample_json_js_reference_audit.pr_upgrade.csv -> dev/reports/sample_json_js_reference_audit.pr_upgrade.csv -R dev/docs_build/dev/reports/sample_json_lockdown_audit.csv -> dev/reports/sample_json_lockdown_audit.csv -R dev/docs_build/dev/reports/sample_json_schema_validation.csv -> dev/reports/sample_json_schema_validation.csv -R dev/docs_build/dev/reports/sample_metadata_ssot_11_119.txt -> dev/reports/sample_metadata_ssot_11_119.txt -R dev/docs_build/dev/reports/sample_rebuild_authoritative_surfaces.md -> dev/reports/sample_rebuild_authoritative_surfaces.md -R dev/docs_build/dev/reports/sample_rebuild_execution_readiness.md -> dev/reports/sample_rebuild_execution_readiness.md -R dev/docs_build/dev/reports/sample_rebuild_inventory.md -> dev/reports/sample_rebuild_inventory.md -R dev/docs_build/dev/reports/sample_rebuild_planning_closeout.md -> dev/reports/sample_rebuild_planning_closeout.md -R dev/docs_build/dev/reports/sample_rebuild_validation_lane.md -> dev/reports/sample_rebuild_validation_lane.md -R dev/docs_build/dev/reports/sample_rebuild_wave_1_scope.md -> dev/reports/sample_rebuild_wave_1_scope.md -R dev/docs_build/dev/reports/sample_rebuild_wave_1_targets.md -> dev/reports/sample_rebuild_wave_1_targets.md -R dev/docs_build/dev/reports/sample_schema_dependency_map.md -> dev/reports/sample_schema_dependency_map.md -R dev/docs_build/dev/reports/sample_schema_discovery.md -> dev/reports/sample_schema_discovery.md -R dev/docs_build/dev/reports/sample_schema_target_plan.md -> dev/reports/sample_schema_target_plan.md -R dev/docs_build/dev/reports/sample_tile_bad_links_removed_11_118.txt -> dev/reports/sample_tile_bad_links_removed_11_118.txt -R dev/docs_build/dev/reports/sample_tile_link_ssot_11_118.txt -> dev/reports/sample_tile_link_ssot_11_118.txt -R dev/docs_build/dev/reports/sample_tool_relationship_reconciliation_11_120.txt -> dev/reports/sample_tool_relationship_reconciliation_11_120.txt -R dev/docs_build/dev/reports/sample_tool_ssot_after_11_120.txt -> dev/reports/sample_tool_ssot_after_11_120.txt -R dev/docs_build/dev/reports/samples2tools_batch_10_summary.txt -> dev/reports/samples2tools_batch_10_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_10_validation.txt -> dev/reports/samples2tools_batch_10_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_11_summary.txt -> dev/reports/samples2tools_batch_11_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_11_validation.txt -> dev/reports/samples2tools_batch_11_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_12_summary.txt -> dev/reports/samples2tools_batch_12_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_12_validation.txt -> dev/reports/samples2tools_batch_12_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_13_summary.txt -> dev/reports/samples2tools_batch_13_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_13_validation.txt -> dev/reports/samples2tools_batch_13_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_14_summary.txt -> dev/reports/samples2tools_batch_14_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_14_validation.txt -> dev/reports/samples2tools_batch_14_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_15_summary.txt -> dev/reports/samples2tools_batch_15_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_15_validation.txt -> dev/reports/samples2tools_batch_15_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_16_summary.txt -> dev/reports/samples2tools_batch_16_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_16_validation.txt -> dev/reports/samples2tools_batch_16_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_17_summary.txt -> dev/reports/samples2tools_batch_17_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_17_validation.txt -> dev/reports/samples2tools_batch_17_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_18_summary.txt -> dev/reports/samples2tools_batch_18_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_18_validation.txt -> dev/reports/samples2tools_batch_18_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_19_summary.txt -> dev/reports/samples2tools_batch_19_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_19_validation.txt -> dev/reports/samples2tools_batch_19_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_1_summary.txt -> dev/reports/samples2tools_batch_1_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_1_validation.txt -> dev/reports/samples2tools_batch_1_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_20_summary.txt -> dev/reports/samples2tools_batch_20_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_20_validation.txt -> dev/reports/samples2tools_batch_20_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_21_summary.txt -> dev/reports/samples2tools_batch_21_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_22_summary.txt -> dev/reports/samples2tools_batch_22_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_22_validation.txt -> dev/reports/samples2tools_batch_22_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_23_validation.txt -> dev/reports/samples2tools_batch_23_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_24_validation.txt -> dev/reports/samples2tools_batch_24_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_25_validation.txt -> dev/reports/samples2tools_batch_25_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_26_validation.txt -> dev/reports/samples2tools_batch_26_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_27_validation.txt -> dev/reports/samples2tools_batch_27_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_28_validation.txt -> dev/reports/samples2tools_batch_28_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_29_summary.txt -> dev/reports/samples2tools_batch_29_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_29_validation.txt -> dev/reports/samples2tools_batch_29_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_2_summary.txt -> dev/reports/samples2tools_batch_2_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_2_validation.txt -> dev/reports/samples2tools_batch_2_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_30_summary.txt -> dev/reports/samples2tools_batch_30_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_30_validation.txt -> dev/reports/samples2tools_batch_30_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_31_summary.txt -> dev/reports/samples2tools_batch_31_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_31_validation.txt -> dev/reports/samples2tools_batch_31_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_32_summary.txt -> dev/reports/samples2tools_batch_32_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_32_validation.txt -> dev/reports/samples2tools_batch_32_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_33_summary.txt -> dev/reports/samples2tools_batch_33_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_33_validation.txt -> dev/reports/samples2tools_batch_33_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_34_summary.txt -> dev/reports/samples2tools_batch_34_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_34_validation.txt -> dev/reports/samples2tools_batch_34_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_35_summary.txt -> dev/reports/samples2tools_batch_35_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_35_validation.txt -> dev/reports/samples2tools_batch_35_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_36_summary.txt -> dev/reports/samples2tools_batch_36_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_36_validation.txt -> dev/reports/samples2tools_batch_36_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_37_summary.txt -> dev/reports/samples2tools_batch_37_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_37_validation.txt -> dev/reports/samples2tools_batch_37_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_38_summary.txt -> dev/reports/samples2tools_batch_38_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_38_validation.txt -> dev/reports/samples2tools_batch_38_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_39_summary.txt -> dev/reports/samples2tools_batch_39_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_39_validation.txt -> dev/reports/samples2tools_batch_39_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_3_summary.txt -> dev/reports/samples2tools_batch_3_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_3_validation.txt -> dev/reports/samples2tools_batch_3_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_40_summary.txt -> dev/reports/samples2tools_batch_40_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_40_validation.txt -> dev/reports/samples2tools_batch_40_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_41_summary.txt -> dev/reports/samples2tools_batch_41_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_41_validation.txt -> dev/reports/samples2tools_batch_41_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_42_summary.txt -> dev/reports/samples2tools_batch_42_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_42_validation.txt -> dev/reports/samples2tools_batch_42_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_43_summary.txt -> dev/reports/samples2tools_batch_43_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_43_validation.txt -> dev/reports/samples2tools_batch_43_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_44_summary.txt -> dev/reports/samples2tools_batch_44_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_44_validation.txt -> dev/reports/samples2tools_batch_44_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_45_summary.txt -> dev/reports/samples2tools_batch_45_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_45_validation.txt -> dev/reports/samples2tools_batch_45_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_46_summary.txt -> dev/reports/samples2tools_batch_46_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_46_validation.txt -> dev/reports/samples2tools_batch_46_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_47_summary.txt -> dev/reports/samples2tools_batch_47_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_47_validation.txt -> dev/reports/samples2tools_batch_47_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_48_summary.txt -> dev/reports/samples2tools_batch_48_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_48_validation.txt -> dev/reports/samples2tools_batch_48_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_49_summary.txt -> dev/reports/samples2tools_batch_49_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_49_validation.txt -> dev/reports/samples2tools_batch_49_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_4_summary.txt -> dev/reports/samples2tools_batch_4_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_4_validation.txt -> dev/reports/samples2tools_batch_4_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_50_summary.txt -> dev/reports/samples2tools_batch_50_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_50_validation.txt -> dev/reports/samples2tools_batch_50_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_51_summary.txt -> dev/reports/samples2tools_batch_51_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_51_validation.txt -> dev/reports/samples2tools_batch_51_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_52_summary.txt -> dev/reports/samples2tools_batch_52_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_52_validation.txt -> dev/reports/samples2tools_batch_52_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_5_summary.txt -> dev/reports/samples2tools_batch_5_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_5_validation.txt -> dev/reports/samples2tools_batch_5_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_6_summary.txt -> dev/reports/samples2tools_batch_6_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_6_validation.txt -> dev/reports/samples2tools_batch_6_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_7_summary.txt -> dev/reports/samples2tools_batch_7_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_7_validation.txt -> dev/reports/samples2tools_batch_7_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_8_summary.txt -> dev/reports/samples2tools_batch_8_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_8_validation.txt -> dev/reports/samples2tools_batch_8_validation.txt -R dev/docs_build/dev/reports/samples2tools_batch_9_summary.txt -> dev/reports/samples2tools_batch_9_summary.txt -R dev/docs_build/dev/reports/samples2tools_batch_9_validation.txt -> dev/reports/samples2tools_batch_9_validation.txt -R dev/docs_build/dev/reports/samples2tools_completion_report.txt -> dev/reports/samples2tools_completion_report.txt -R dev/docs_build/dev/reports/samples2tools_known_bad_removals_11_116.txt -> dev/reports/samples2tools_known_bad_removals_11_116.txt -R dev/docs_build/dev/reports/samples2tools_link_map_1.json -> dev/reports/samples2tools_link_map_1.json -R dev/docs_build/dev/reports/samples2tools_link_map_10.json -> dev/reports/samples2tools_link_map_10.json -R dev/docs_build/dev/reports/samples2tools_link_map_11.json -> dev/reports/samples2tools_link_map_11.json -R dev/docs_build/dev/reports/samples2tools_link_map_12.json -> dev/reports/samples2tools_link_map_12.json -R dev/docs_build/dev/reports/samples2tools_link_map_13.json -> dev/reports/samples2tools_link_map_13.json -R dev/docs_build/dev/reports/samples2tools_link_map_14.json -> dev/reports/samples2tools_link_map_14.json -R dev/docs_build/dev/reports/samples2tools_link_map_15.json -> dev/reports/samples2tools_link_map_15.json -R dev/docs_build/dev/reports/samples2tools_link_map_16.json -> dev/reports/samples2tools_link_map_16.json -R dev/docs_build/dev/reports/samples2tools_link_map_17.json -> dev/reports/samples2tools_link_map_17.json -R dev/docs_build/dev/reports/samples2tools_link_map_18.json -> dev/reports/samples2tools_link_map_18.json -R dev/docs_build/dev/reports/samples2tools_link_map_19.json -> dev/reports/samples2tools_link_map_19.json -R dev/docs_build/dev/reports/samples2tools_link_map_2.json -> dev/reports/samples2tools_link_map_2.json -R dev/docs_build/dev/reports/samples2tools_link_map_20.json -> dev/reports/samples2tools_link_map_20.json -R dev/docs_build/dev/reports/samples2tools_link_map_22.json -> dev/reports/samples2tools_link_map_22.json -R dev/docs_build/dev/reports/samples2tools_link_map_3.json -> dev/reports/samples2tools_link_map_3.json -R dev/docs_build/dev/reports/samples2tools_link_map_5.json -> dev/reports/samples2tools_link_map_5.json -R dev/docs_build/dev/reports/samples2tools_link_map_6.json -> dev/reports/samples2tools_link_map_6.json -R dev/docs_build/dev/reports/samples2tools_link_map_7.json -> dev/reports/samples2tools_link_map_7.json -R dev/docs_build/dev/reports/samples2tools_link_map_8.json -> dev/reports/samples2tools_link_map_8.json -R dev/docs_build/dev/reports/samples2tools_link_map_9.json -> dev/reports/samples2tools_link_map_9.json -R dev/docs_build/dev/reports/samples2tools_phase20_deprecation_note.txt -> dev/reports/samples2tools_phase20_deprecation_note.txt -R dev/docs_build/dev/reports/samples2tools_remaining_entries_11_116.txt -> dev/reports/samples2tools_remaining_entries_11_116.txt -R dev/docs_build/dev/reports/samples_index_data_restore_strategy.txt -> dev/reports/samples_index_data_restore_strategy.txt -R dev/docs_build/dev/reports/samples_index_rendered_links_11_120.txt -> dev/reports/samples_index_rendered_links_11_120.txt -R dev/docs_build/dev/reports/samples_index_restore_strategy.txt -> dev/reports/samples_index_restore_strategy.txt -R dev/docs_build/dev/reports/samples_index_ui_behavior_restore_strategy.txt -> dev/reports/samples_index_ui_behavior_restore_strategy.txt -R dev/docs_build/dev/reports/samples_metadata_and_filter_bar_strategy.txt -> dev/reports/samples_metadata_and_filter_bar_strategy.txt -R dev/docs_build/dev/reports/samples_only_palette_json_audit.csv -> dev/reports/samples_only_palette_json_audit.csv -R dev/docs_build/dev/reports/samples_shared_cleanup_report.md -> dev/reports/samples_shared_cleanup_report.md -R dev/docs_build/dev/reports/schema_filename_canonicalization_11_104.txt -> dev/reports/schema_filename_canonicalization_11_104.txt -R dev/docs_build/dev/reports/schema_lock_enforcement_11_143.txt -> dev/reports/schema_lock_enforcement_11_143.txt -R dev/docs_build/dev/reports/schema_lock_readiness_11_142.txt -> dev/reports/schema_lock_readiness_11_142.txt -R dev/docs_build/dev/reports/schema_only_runtime_check_11_111.txt -> dev/reports/schema_only_runtime_check_11_111.txt -R dev/docs_build/dev/reports/schema_only_validation_11_110.txt -> dev/reports/schema_only_validation_11_110.txt -R dev/docs_build/dev/reports/schema_separation_revert_11_123.txt -> dev/reports/schema_separation_revert_11_123.txt -R dev/docs_build/dev/reports/schema_strictness_inventory.csv -> dev/reports/schema_strictness_inventory.csv -R dev/docs_build/dev/reports/schema_strictness_inventory.md -> dev/reports/schema_strictness_inventory.md -R dev/docs_build/dev/reports/schema_usage_code_updates.md -> dev/reports/schema_usage_code_updates.md -R dev/docs_build/dev/reports/schema_validation_sweep_11_144.txt -> dev/reports/schema_validation_sweep_11_144.txt -R dev/docs_build/dev/reports/schema_verification.md -> dev/reports/schema_verification.md -R dev/docs_build/dev/reports/screen_error_contract_11_110.txt -> dev/reports/screen_error_contract_11_110.txt -R dev/docs_build/dev/reports/server-api-migration-pass-3-login-environments-report.md -> dev/reports/server-api-migration-pass-3-login-environments-report.md -R dev/docs_build/dev/reports/server-api-migration-pass-4-local-mode-cleanup-report.md -> dev/reports/server-api-migration-pass-4-local-mode-cleanup-report.md -R dev/docs_build/dev/reports/server_api_migration_pass_2_report.md -> dev/reports/server_api_migration_pass_2_report.md -R dev/docs_build/dev/reports/server_mock_data_boundary_report.md -> dev/reports/server_mock_data_boundary_report.md -R dev/docs_build/dev/reports/session_delete_save_and_preview_root_handle.md -> dev/reports/session_delete_save_and_preview_root_handle.md -R dev/docs_build/dev/reports/session_inspector_restore.md -> dev/reports/session_inspector_restore.md -R dev/docs_build/dev/reports/session_inspector_v2_controls_polish.md -> dev/reports/session_inspector_v2_controls_polish.md -R dev/docs_build/dev/reports/session_inspector_v2_data_dirty_model.md -> dev/reports/session_inspector_v2_data_dirty_model.md -R dev/docs_build/dev/reports/session_inspector_v2_deep_rename.md -> dev/reports/session_inspector_v2_deep_rename.md -R dev/docs_build/dev/reports/session_inspector_v2_detail_panel_height.md -> dev/reports/session_inspector_v2_detail_panel_height.md -R dev/docs_build/dev/reports/session_inspector_v2_layout_fix.md -> dev/reports/session_inspector_v2_layout_fix.md -R dev/docs_build/dev/reports/session_inspector_v2_normalized_tool_keys.md -> dev/reports/session_inspector_v2_normalized_tool_keys.md -R dev/docs_build/dev/reports/session_inspector_v2_output_scrollbars.md -> dev/reports/session_inspector_v2_output_scrollbars.md -R dev/docs_build/dev/reports/session_inspector_v2_output_wrap_height.md -> dev/reports/session_inspector_v2_output_wrap_height.md -R dev/docs_build/dev/reports/session_inspector_v2_reapply_detail_accordions.md -> dev/reports/session_inspector_v2_reapply_detail_accordions.md -R dev/docs_build/dev/reports/session_inspector_v2_shared_detail_space.md -> dev/reports/session_inspector_v2_shared_detail_space.md -R dev/docs_build/dev/reports/session_inspector_v2_shell_layout.md -> dev/reports/session_inspector_v2_shell_layout.md -R dev/docs_build/dev/reports/session_inspector_v2_state_view.md -> dev/reports/session_inspector_v2_state_view.md -R dev/docs_build/dev/reports/session_inspector_v2_tile_nav_polish.md -> dev/reports/session_inspector_v2_tile_nav_polish.md -R dev/docs_build/dev/reports/session_inspector_v2_tile_sizing.md -> dev/reports/session_inspector_v2_tile_sizing.md -R dev/docs_build/dev/reports/shape_identity_schema_cleanup_report.md -> dev/reports/shape_identity_schema_cleanup_report.md -R dev/docs_build/dev/reports/shape_schema_field_reduction_report.md -> dev/reports/shape_schema_field_reduction_report.md -R dev/docs_build/dev/reports/shared-mock-db-completion-validation-report.md -> dev/reports/shared-mock-db-completion-validation-report.md -R dev/docs_build/dev/reports/shared_code_cleanup_11_113.txt -> dev/reports/shared_code_cleanup_11_113.txt -R dev/docs_build/dev/reports/shared_folder_layout_normalization_report.md -> dev/reports/shared_folder_layout_normalization_report.md -R dev/docs_build/dev/reports/shared_index_barrel_removal_report.md -> dev/reports/shared_index_barrel_removal_report.md -R dev/docs_build/dev/reports/shared_method_domain_audit_report.md -> dev/reports/shared_method_domain_audit_report.md -R dev/docs_build/dev/reports/shared_shell_svg_asset_badge_11_160.txt -> dev/reports/shared_shell_svg_asset_badge_11_160.txt -R dev/docs_build/dev/reports/shared_utils_consolidation_report.md -> dev/reports/shared_utils_consolidation_report.md -R dev/docs_build/dev/reports/slider-double-click-reset-report.md -> dev/reports/slider-double-click-reset-report.md -R dev/docs_build/dev/reports/slider-value-visibility-report.md -> dev/reports/slider-value-visibility-report.md -R dev/docs_build/dev/reports/slow_path_pruning_report.md -> dev/reports/slow_path_pruning_report.md -R dev/docs_build/dev/reports/snap_angle_rotate_verification.md -> dev/reports/snap_angle_rotate_verification.md -R dev/docs_build/dev/reports/space_invaders_manifest_collision_contract_report.md -> dev/reports/space_invaders_manifest_collision_contract_report.md -R dev/docs_build/dev/reports/split_tool_contracts_by_tool_validation.md -> dev/reports/split_tool_contracts_by_tool_validation.md -R dev/docs_build/dev/reports/sqlite-local-db-report.md -> dev/reports/sqlite-local-db-report.md -R dev/docs_build/dev/reports/src-shared-toolbox-import-fix.md -> dev/reports/src-shared-toolbox-import-fix.md -R dev/docs_build/dev/reports/ssot_branch_deep_review.md -> dev/reports/ssot_branch_deep_review.md -R dev/docs_build/dev/reports/ssot_branch_delete_report.md -> dev/reports/ssot_branch_delete_report.md -R dev/docs_build/dev/reports/ssot_ideas_captured.md -> dev/reports/ssot_ideas_captured.md -R dev/docs_build/dev/reports/ssot_relationship_load_validation_11_121.txt -> dev/reports/ssot_relationship_load_validation_11_121.txt -R dev/docs_build/dev/reports/stack-toolbox-wireframes.md -> dev/reports/stack-toolbox-wireframes.md -R dev/docs_build/dev/reports/stacked-pr-execution-report.md -> dev/reports/stacked-pr-execution-report.md -R dev/docs_build/dev/reports/staged_changes_review_11_123.txt -> dev/reports/staged_changes_review_11_123.txt -R dev/docs_build/dev/reports/stale_launcher_sources_deleted_11_118.txt -> dev/reports/stale_launcher_sources_deleted_11_118.txt -R dev/docs_build/dev/reports/stale_roundtrip_sources_11_119.txt -> dev/reports/stale_roundtrip_sources_11_119.txt -R dev/docs_build/dev/reports/static-login-disabled-message-report.md -> dev/reports/static-login-disabled-message-report.md -R dev/docs_build/dev/reports/static-server-login-fallback-report.md -> dev/reports/static-server-login-fallback-report.md -R dev/docs_build/dev/reports/static_validation_report.md -> dev/reports/static_validation_report.md -R dev/docs_build/dev/reports/status-legend-and-journey-counts-polish-report.md -> dev/reports/status-legend-and-journey-counts-polish-report.md -R dev/docs_build/dev/reports/status_clear_header_placement_fix.txt -> dev/reports/status_clear_header_placement_fix.txt -R dev/docs_build/dev/reports/status_clear_preview_generator_pattern.txt -> dev/reports/status_clear_preview_generator_pattern.txt -R dev/docs_build/dev/reports/status_clear_style_match.txt -> dev/reports/status_clear_style_match.txt -R dev/docs_build/dev/reports/storage_inspector_template_mapping.md -> dev/reports/storage_inspector_template_mapping.md -R dev/docs_build/dev/reports/strict_schema_unknown_field_validation_report.md -> dev/reports/strict_schema_unknown_field_validation_report.md -R dev/docs_build/dev/reports/studio-vocabulary-cleanup.md -> dev/reports/studio-vocabulary-cleanup.md -R dev/docs_build/dev/reports/style_06_planning_note.txt -> dev/reports/style_06_planning_note.txt -R dev/docs_build/dev/reports/style_08_planning_note.txt -> dev/reports/style_08_planning_note.txt -R dev/docs_build/dev/reports/style_09_planning_note.txt -> dev/reports/style_09_planning_note.txt -R dev/docs_build/dev/reports/style_10_12_bundle_rationale.txt -> dev/reports/style_10_12_bundle_rationale.txt -R dev/docs_build/dev/reports/style_13_15_bundle_rationale.txt -> dev/reports/style_13_15_bundle_rationale.txt -R dev/docs_build/dev/reports/style_execution_priority_rule.txt -> dev/reports/style_execution_priority_rule.txt -R dev/docs_build/dev/reports/style_final_closeout_strategy.txt -> dev/reports/style_final_closeout_strategy.txt -R dev/docs_build/dev/reports/style_final_system_completion_strategy.txt -> dev/reports/style_final_system_completion_strategy.txt -R dev/docs_build/dev/reports/style_migration_notes.txt -> dev/reports/style_migration_notes.txt -R dev/docs_build/dev/reports/style_roadmap_expansion_summary.txt -> dev/reports/style_roadmap_expansion_summary.txt -R dev/docs_build/dev/reports/supabase-auth-live-validation-evidence.json -> dev/reports/supabase-auth-live-validation-evidence.json -R dev/docs_build/dev/reports/supabase-preflight-report.md -> dev/reports/supabase-preflight-report.md -R dev/docs_build/dev/reports/svg_asset_none_trace_11_155.txt -> dev/reports/svg_asset_none_trace_11_155.txt -R dev/docs_build/dev/reports/svg_asset_studio_hosted_payload_boot_11_152.txt -> dev/reports/svg_asset_studio_hosted_payload_boot_11_152.txt -R dev/docs_build/dev/reports/svg_card_render_source_11_156.txt -> dev/reports/svg_card_render_source_11_156.txt -R dev/docs_build/dev/reports/svg_favicon_normalization_report.md -> dev/reports/svg_favicon_normalization_report.md -R dev/docs_build/dev/reports/svg_payload_detection_fix_11_154.txt -> dev/reports/svg_payload_detection_fix_11_154.txt -R dev/docs_build/dev/reports/svg_payload_to_shared_asset_badge_11_161.txt -> dev/reports/svg_payload_to_shared_asset_badge_11_161.txt -R dev/docs_build/dev/reports/targeted-msj-validation-rule.md -> dev/reports/targeted-msj-validation-rule.md -R dev/docs_build/dev/reports/targeted_file_manifest_report.md -> dev/reports/targeted_file_manifest_report.md -R dev/docs_build/dev/reports/targeted_testing_examples_report.md -> dev/reports/targeted_testing_examples_report.md -R dev/docs_build/dev/reports/targeted_testing_workflow_closeout.md -> dev/reports/targeted_testing_workflow_closeout.md -R dev/docs_build/dev/reports/team_alpha_beta_owner_approval_report.md -> dev/reports/team_alpha_beta_owner_approval_report.md -R dev/docs_build/dev/reports/template_consistency_after_theme_rename_report.md -> dev/reports/template_consistency_after_theme_rename_report.md -R dev/docs_build/dev/reports/template_consistency_after_toolbox_nav_report.md -> dev/reports/template_consistency_after_toolbox_nav_report.md -R dev/docs_build/dev/reports/template_consistency_before_after_report.md -> dev/reports/template_consistency_before_after_report.md -R dev/docs_build/dev/reports/template_editable_noneditable_input_pattern.txt -> dev/reports/template_editable_noneditable_input_pattern.txt -R dev/docs_build/dev/reports/template_form_style_match_palette_manager.txt -> dev/reports/template_form_style_match_palette_manager.txt -R dev/docs_build/dev/reports/template_v2_audit.md -> dev/reports/template_v2_audit.md -R dev/docs_build/dev/reports/template_v2_final_visual_contract_lock.txt -> dev/reports/template_v2_final_visual_contract_lock.txt -R dev/docs_build/dev/reports/test_cleanup_performance_report.md -> dev/reports/test_cleanup_performance_report.md -R dev/docs_build/dev/reports/test_cleanup_routing_report.md -> dev/reports/test_cleanup_routing_report.md -R dev/docs_build/dev/reports/test_location_audit_report.md -> dev/reports/test_location_audit_report.md -R dev/docs_build/dev/reports/testing_lane_execution_report.md -> dev/reports/testing_lane_execution_report.md -R dev/docs_build/dev/reports/theme_css_entrypoint_closeout_report.md -> dev/reports/theme_css_entrypoint_closeout_report.md -R dev/docs_build/dev/reports/theme_header_validation_checklist.txt -> dev/reports/theme_header_validation_checklist.txt -R dev/docs_build/dev/reports/theme_surface_boundary_validation.md -> dev/reports/theme_surface_boundary_validation.md -R dev/docs_build/dev/reports/theme_v1_assets_games_favicon_cleanup_report.md -> dev/reports/theme_v1_assets_games_favicon_cleanup_report.md -R dev/docs_build/dev/reports/theme_v1_final_teardown_report.md -> dev/reports/theme_v1_final_teardown_report.md -R dev/docs_build/dev/reports/theme_v1_removal_fontawesome_v2_report.md -> dev/reports/theme_v1_removal_fontawesome_v2_report.md -R dev/docs_build/dev/reports/theme_v2_admin_consumption_validation.md -> dev/reports/theme_v2_admin_consumption_validation.md -R dev/docs_build/dev/reports/theme_v2_admin_copy_correction_validation.md -> dev/reports/theme_v2_admin_copy_correction_validation.md -R dev/docs_build/dev/reports/theme_v2_admin_pages_validation.md -> dev/reports/theme_v2_admin_pages_validation.md -R dev/docs_build/dev/reports/theme_v2_asset_ownership_normalization_report.md -> dev/reports/theme_v2_asset_ownership_normalization_report.md -R dev/docs_build/dev/reports/theme_v2_bad_migration_removal_validation.md -> dev/reports/theme_v2_bad_migration_removal_validation.md -R dev/docs_build/dev/reports/theme_v2_company_pages_validation.md -> dev/reports/theme_v2_company_pages_validation.md -R dev/docs_build/dev/reports/theme_v2_css_foundation_validation.md -> dev/reports/theme_v2_css_foundation_validation.md -R dev/docs_build/dev/reports/theme_v2_css_structure_normalization_report.md -> dev/reports/theme_v2_css_structure_normalization_report.md -R dev/docs_build/dev/reports/theme_v2_design_system_gaps.md -> dev/reports/theme_v2_design_system_gaps.md -R dev/docs_build/dev/reports/theme_v2_direct_primitives_validation.md -> dev/reports/theme_v2_direct_primitives_validation.md -R dev/docs_build/dev/reports/theme_v2_final_normalization_report.md -> dev/reports/theme_v2_final_normalization_report.md -R dev/docs_build/dev/reports/theme_v2_gap_audit.md -> dev/reports/theme_v2_gap_audit.md -R dev/docs_build/dev/reports/theme_v2_governance_validation.md -> dev/reports/theme_v2_governance_validation.md -R dev/docs_build/dev/reports/theme_v2_home_migration_validation.md -> dev/reports/theme_v2_home_migration_validation.md -R dev/docs_build/dev/reports/theme_v2_legacy_assets_deprecation.md -> dev/reports/theme_v2_legacy_assets_deprecation.md -R dev/docs_build/dev/reports/theme_v2_legacy_reference_validation.md -> dev/reports/theme_v2_legacy_reference_validation.md -R dev/docs_build/dev/reports/theme_v2_only_css_governance_validation.md -> dev/reports/theme_v2_only_css_governance_validation.md -R dev/docs_build/dev/reports/theme_v2_ownership_validation.md -> dev/reports/theme_v2_ownership_validation.md -R dev/docs_build/dev/reports/theme_v2_public_asset_path_fix_report.md -> dev/reports/theme_v2_public_asset_path_fix_report.md -R dev/docs_build/dev/reports/theme_v2_public_asset_teardown_report.md -> dev/reports/theme_v2_public_asset_teardown_report.md -R dev/docs_build/dev/reports/theme_v2_remaining_inventory_report.md -> dev/reports/theme_v2_remaining_inventory_report.md -R dev/docs_build/dev/reports/theme_v2_root_rename_report.md -> dev/reports/theme_v2_root_rename_report.md -R dev/docs_build/dev/reports/theme_v2_template_cleanup_report.md -> dev/reports/theme_v2_template_cleanup_report.md -R dev/docs_build/dev/reports/theme_v2_template_correction.md -> dev/reports/theme_v2_template_correction.md -R dev/docs_build/dev/reports/theme_v2_template_dependency_map.md -> dev/reports/theme_v2_template_dependency_map.md -R dev/docs_build/dev/reports/theme_v2_template_foundation.md -> dev/reports/theme_v2_template_foundation.md -R dev/docs_build/dev/reports/theme_v2_template_reference_mapping.md -> dev/reports/theme_v2_template_reference_mapping.md -R dev/docs_build/dev/reports/theme_v2_tool_shell_gaps.md -> dev/reports/theme_v2_tool_shell_gaps.md -R dev/docs_build/dev/reports/today-pr-completion-audit.md -> dev/reports/today-pr-completion-audit.md -R dev/docs_build/dev/reports/tool-center-image-and-badge-cleanup-report.md -> dev/reports/tool-center-image-and-badge-cleanup-report.md -R dev/docs_build/dev/reports/tool-display-mode-build-game-regression.md -> dev/reports/tool-display-mode-build-game-regression.md -R dev/docs_build/dev/reports/tool-display-mode-layout-fix-report.md -> dev/reports/tool-display-mode-layout-fix-report.md -R dev/docs_build/dev/reports/tool-display-mode-links-not-buttons.md -> dev/reports/tool-display-mode-links-not-buttons.md -R dev/docs_build/dev/reports/tool-display-mode-multi-path-fallback.md -> dev/reports/tool-display-mode-multi-path-fallback.md -R dev/docs_build/dev/reports/tool-display-mode-nav-layout.md -> dev/reports/tool-display-mode-nav-layout.md -R dev/docs_build/dev/reports/tool-display-mode-prev-next.md -> dev/reports/tool-display-mode-prev-next.md -R dev/docs_build/dev/reports/tool-display-mode-registry-links.md -> dev/reports/tool-display-mode-registry-links.md -R dev/docs_build/dev/reports/tool-display-mode-targeted-msj-tests.md -> dev/reports/tool-display-mode-targeted-msj-tests.md -R dev/docs_build/dev/reports/tool-display-mode-two-row-layout.md -> dev/reports/tool-display-mode-two-row-layout.md -R dev/docs_build/dev/reports/tool-form-table-layout-standard-report.md -> dev/reports/tool-form-table-layout-standard-report.md -R dev/docs_build/dev/reports/tool-group-color-correction-pass-report.md -> dev/reports/tool-group-color-correction-pass-report.md -R dev/docs_build/dev/reports/tool-group-color-ssot-consolidation-report.md -> dev/reports/tool-group-color-ssot-consolidation-report.md -R dev/docs_build/dev/reports/tool-image-coverage-report.md -> dev/reports/tool-image-coverage-report.md -R dev/docs_build/dev/reports/tool-image-mapping.md -> dev/reports/tool-image-mapping.md -R dev/docs_build/dev/reports/tool-image-registry-contract.md -> dev/reports/tool-image-registry-contract.md -R dev/docs_build/dev/reports/tool-image-targeted-msj-tests.md -> dev/reports/tool-image-targeted-msj-tests.md -R dev/docs_build/dev/reports/tool-image-ui-closeout-report.md -> dev/reports/tool-image-ui-closeout-report.md -R dev/docs_build/dev/reports/tool-layout-wide-all-tool-pages.md -> dev/reports/tool-layout-wide-all-tool-pages.md -R dev/docs_build/dev/reports/tool-layout-width-standard.md -> dev/reports/tool-layout-width-standard.md -R dev/docs_build/dev/reports/tool-layout-width-validation-report.md -> dev/reports/tool-layout-width-validation-report.md -R dev/docs_build/dev/reports/tool-navigation-targeted-msj-tests.md -> dev/reports/tool-navigation-targeted-msj-tests.md -R dev/docs_build/dev/reports/tool-page-group-color-alignment-report.md -> dev/reports/tool-page-group-color-alignment-report.md -R dev/docs_build/dev/reports/tool-planning-db-ownership-report.md -> dev/reports/tool-planning-db-ownership-report.md -R dev/docs_build/dev/reports/tool-planning-field-audit-report.md -> dev/reports/tool-planning-field-audit-report.md -R dev/docs_build/dev/reports/tool-status-governance-report.md -> dev/reports/tool-status-governance-report.md -R dev/docs_build/dev/reports/tool-status-kickers-beta-access-report.md -> dev/reports/tool-status-kickers-beta-access-report.md -R dev/docs_build/dev/reports/tool-status-registry-enforcement-report.md -> dev/reports/tool-status-registry-enforcement-report.md -R dev/docs_build/dev/reports/tool-status-tooltip-update-report.md -> dev/reports/tool-status-tooltip-update-report.md -R dev/docs_build/dev/reports/tool_binding_truthfulness_11_113.txt -> dev/reports/tool_binding_truthfulness_11_113.txt -R dev/docs_build/dev/reports/tool_completion_audit.md -> dev/reports/tool_completion_audit.md -R dev/docs_build/dev/reports/tool_completion_batch_009.md -> dev/reports/tool_completion_batch_009.md -R dev/docs_build/dev/reports/tool_contract_bundle_tests_validation.md -> dev/reports/tool_contract_bundle_tests_validation.md -R dev/docs_build/dev/reports/tool_contract_deduplication_audit.md -> dev/reports/tool_contract_deduplication_audit.md -R dev/docs_build/dev/reports/tool_contract_location_correction_validation.md -> dev/reports/tool_contract_location_correction_validation.md -R dev/docs_build/dev/reports/tool_control_service_contracts.txt -> dev/reports/tool_control_service_contracts.txt -R dev/docs_build/dev/reports/tool_design_finalize_summary.md -> dev/reports/tool_design_finalize_summary.md -R dev/docs_build/dev/reports/tool_design_precision_summary.md -> dev/reports/tool_design_precision_summary.md -R dev/docs_build/dev/reports/tool_design_reset_summary.md -> dev/reports/tool_design_reset_summary.md -R dev/docs_build/dev/reports/tool_design_tighten_summary.md -> dev/reports/tool_design_tighten_summary.md -R dev/docs_build/dev/reports/tool_host_pager_inside_mount_container_validation.md -> dev/reports/tool_host_pager_inside_mount_container_validation.md -R dev/docs_build/dev/reports/tool_input_contract_11_129.txt -> dev/reports/tool_input_contract_11_129.txt -R dev/docs_build/dev/reports/tool_inventory.md -> dev/reports/tool_inventory.md -R dev/docs_build/dev/reports/tool_known_bugs.md -> dev/reports/tool_known_bugs.md -R dev/docs_build/dev/reports/tool_launch_ssot_data_layer_validation.md -> dev/reports/tool_launch_ssot_data_layer_validation.md -R dev/docs_build/dev/reports/tool_launch_ssot_external_memory_reset_validation.md -> dev/reports/tool_launch_ssot_external_memory_reset_validation.md -R dev/docs_build/dev/reports/tool_launch_ssot_routing_validation.md -> dev/reports/tool_launch_ssot_routing_validation.md -R dev/docs_build/dev/reports/tool_migration_lane_bootstrap.md -> dev/reports/tool_migration_lane_bootstrap.md -R dev/docs_build/dev/reports/tool_migration_wave_1_scope.md -> dev/reports/tool_migration_wave_1_scope.md -R dev/docs_build/dev/reports/tool_migration_wave_2_scope.md -> dev/reports/tool_migration_wave_2_scope.md -R dev/docs_build/dev/reports/tool_migration_wave_audit.md -> dev/reports/tool_migration_wave_audit.md -R dev/docs_build/dev/reports/tool_missing_functionality.md -> dev/reports/tool_missing_functionality.md -R dev/docs_build/dev/reports/tool_palette_dependency_11_130.txt -> dev/reports/tool_palette_dependency_11_130.txt -R dev/docs_build/dev/reports/tool_payload_schema_validation.csv -> dev/reports/tool_payload_schema_validation.csv -R dev/docs_build/dev/reports/tool_reference_cleanup_11_105.txt -> dev/reports/tool_reference_cleanup_11_105.txt -R dev/docs_build/dev/reports/tool_registry_validation.txt -> dev/reports/tool_registry_validation.txt -R dev/docs_build/dev/reports/tool_schema_boundary_11_122.txt -> dev/reports/tool_schema_boundary_11_122.txt -R dev/docs_build/dev/reports/tool_schema_fixture_relocation_11_111.txt -> dev/reports/tool_schema_fixture_relocation_11_111.txt -R dev/docs_build/dev/reports/tool_schema_payload_review_11_123.txt -> dev/reports/tool_schema_payload_review_11_123.txt -R dev/docs_build/dev/reports/tool_select_population_validation.md -> dev/reports/tool_select_population_validation.md -R dev/docs_build/dev/reports/tool_select_removed_validation.md -> dev/reports/tool_select_removed_validation.md -R dev/docs_build/dev/reports/tool_shell_flex_center_layout_validation.md -> dev/reports/tool_shell_flex_center_layout_validation.md -R dev/docs_build/dev/reports/tool_state_contract_tests_validation.md -> dev/reports/tool_state_contract_tests_validation.md -R dev/docs_build/dev/reports/tool_state_recovery_contract_validation.md -> dev/reports/tool_state_recovery_contract_validation.md -R dev/docs_build/dev/reports/tool_surface_removal_summary.md -> dev/reports/tool_surface_removal_summary.md -R dev/docs_build/dev/reports/tool_template_baseline_copy.md -> dev/reports/tool_template_baseline_copy.md -R dev/docs_build/dev/reports/tool_template_cleanup.md -> dev/reports/tool_template_cleanup.md -R dev/docs_build/dev/reports/tool_template_display_mode_layout.md -> dev/reports/tool_template_display_mode_layout.md -R dev/docs_build/dev/reports/tool_template_hardening.txt -> dev/reports/tool_template_hardening.txt -R dev/docs_build/dev/reports/tool_template_launch_mode_nav.txt -> dev/reports/tool_template_launch_mode_nav.txt -R dev/docs_build/dev/reports/tool_template_panel_role_standardization.txt -> dev/reports/tool_template_panel_role_standardization.txt -R dev/docs_build/dev/reports/tool_template_path_adjustments.md -> dev/reports/tool_template_path_adjustments.md -R dev/docs_build/dev/reports/tool_template_playwright_e2e_depth.txt -> dev/reports/tool_template_playwright_e2e_depth.txt -R dev/docs_build/dev/reports/tool_template_preview_generator_theme_match.txt -> dev/reports/tool_template_preview_generator_theme_match.txt -R dev/docs_build/dev/reports/tool_template_runtime_validation.txt -> dev/reports/tool_template_runtime_validation.txt -R dev/docs_build/dev/reports/tool_template_v2_rename.txt -> dev/reports/tool_template_v2_rename.txt -R dev/docs_build/dev/reports/tool_uat_template.md -> dev/reports/tool_uat_template.md -R dev/docs_build/dev/reports/tool_validation_report.json -> dev/reports/tool_validation_report.json -R dev/docs_build/dev/reports/tool_validation_report_template.md -> dev/reports/tool_validation_report_template.md -R dev/docs_build/dev/reports/tool_validation_results.md -> dev/reports/tool_validation_results.md -R dev/docs_build/dev/reports/tool_vs_asset_kind_11_107.txt -> dev/reports/tool_vs_asset_kind_11_107.txt -R dev/docs_build/dev/reports/toolbox-banner-and-image-polish.md -> dev/reports/toolbox-banner-and-image-polish.md -R dev/docs_build/dev/reports/toolbox-build-path-model.md -> dev/reports/toolbox-build-path-model.md -R dev/docs_build/dev/reports/toolbox-card-and-status-cleanup-report.md -> dev/reports/toolbox-card-and-status-cleanup-report.md -R dev/docs_build/dev/reports/toolbox-create-build-content-split.md -> dev/reports/toolbox-create-build-content-split.md -R dev/docs_build/dev/reports/toolbox-creator-grouping.md -> dev/reports/toolbox-creator-grouping.md -R dev/docs_build/dev/reports/toolbox-db-contract-enforcement-report.md -> dev/reports/toolbox-db-contract-enforcement-report.md -R dev/docs_build/dev/reports/toolbox-db-status-vote-restore-report.md -> dev/reports/toolbox-db-status-vote-restore-report.md -R dev/docs_build/dev/reports/toolbox-filters-and-color-picker-controls-report.md -> dev/reports/toolbox-filters-and-color-picker-controls-report.md -R dev/docs_build/dev/reports/toolbox-final-name-cleanup.md -> dev/reports/toolbox-final-name-cleanup.md -R dev/docs_build/dev/reports/toolbox-group-color-consistency.md -> dev/reports/toolbox-group-color-consistency.md -R dev/docs_build/dev/reports/toolbox-group-color-model-restore.md -> dev/reports/toolbox-group-color-model-restore.md -R dev/docs_build/dev/reports/toolbox-group-color-name-normalization.md -> dev/reports/toolbox-group-color-name-normalization.md -R dev/docs_build/dev/reports/toolbox-group-color-restore-report.md -> dev/reports/toolbox-group-color-restore-report.md -R dev/docs_build/dev/reports/toolbox-name-link-navigation-report.md -> dev/reports/toolbox-name-link-navigation-report.md -R dev/docs_build/dev/reports/toolbox-planned-filter-tiles-report.md -> dev/reports/toolbox-planned-filter-tiles-report.md -R dev/docs_build/dev/reports/toolbox-progress-foundation.md -> dev/reports/toolbox-progress-foundation.md -R dev/docs_build/dev/reports/toolbox-progress-game-configuration.md -> dev/reports/toolbox-progress-game-configuration.md -R dev/docs_build/dev/reports/toolbox-recovery-alignment.md -> dev/reports/toolbox-recovery-alignment.md -R dev/docs_build/dev/reports/toolbox-registry-contract.md -> dev/reports/toolbox-registry-contract.md -R dev/docs_build/dev/reports/toolbox-remove-bootstrap-registry-report.md -> dev/reports/toolbox-remove-bootstrap-registry-report.md -R dev/docs_build/dev/reports/toolbox-role-filter-wireframe.md -> dev/reports/toolbox-role-filter-wireframe.md -R dev/docs_build/dev/reports/toolbox-role-focused-filtering.md -> dev/reports/toolbox-role-focused-filtering.md -R dev/docs_build/dev/reports/toolbox-runtime-ownership.md -> dev/reports/toolbox-runtime-ownership.md -R dev/docs_build/dev/reports/toolbox-status-and-display-cleanup-report.md -> dev/reports/toolbox-status-and-display-cleanup-report.md -R dev/docs_build/dev/reports/toolbox-status-system.md -> dev/reports/toolbox-status-system.md -R dev/docs_build/dev/reports/toolbox-tile-layout-and-planned-filter-report.md -> dev/reports/toolbox-tile-layout-and-planned-filter-report.md -R dev/docs_build/dev/reports/toolbox-tile-layout-polish.md -> dev/reports/toolbox-tile-layout-polish.md -R dev/docs_build/dev/reports/toolbox-tool-count-and-group-name.md -> dev/reports/toolbox-tool-count-and-group-name.md -R dev/docs_build/dev/reports/toolbox-user-voting-and-admin-width-report.md -> dev/reports/toolbox-user-voting-and-admin-width-report.md -R dev/docs_build/dev/reports/toolbox-vote-review-ordering-report.md -> dev/reports/toolbox-vote-review-ordering-report.md -R dev/docs_build/dev/reports/toolbox-vote-review-ssot-report.md -> dev/reports/toolbox-vote-review-ssot-report.md -R dev/docs_build/dev/reports/toolbox-votes-and-state-cleanup-report.md -> dev/reports/toolbox-votes-and-state-cleanup-report.md -R dev/docs_build/dev/reports/toolbox-voting-and-color-ssot-report.md -> dev/reports/toolbox-voting-and-color-ssot-report.md -R dev/docs_build/dev/reports/toolbox-wireframe-and-port-guard-report.md -> dev/reports/toolbox-wireframe-and-port-guard-report.md -R dev/docs_build/dev/reports/toolbox-worlds-objects-naming.md -> dev/reports/toolbox-worlds-objects-naming.md -R dev/docs_build/dev/reports/toolbox-worlds-objects-submenus.md -> dev/reports/toolbox-worlds-objects-submenus.md -R dev/docs_build/dev/reports/toolbox_endstate_inventory_report.md -> dev/reports/toolbox_endstate_inventory_report.md -R dev/docs_build/dev/reports/toolbox_footer_template_bundle_report.md -> dev/reports/toolbox_footer_template_bundle_report.md -R dev/docs_build/dev/reports/toolbox_header_accordion_submenu.md -> dev/reports/toolbox_header_accordion_submenu.md -R dev/docs_build/dev/reports/toolbox_header_menu_structure_correction.md -> dev/reports/toolbox_header_menu_structure_correction.md -R dev/docs_build/dev/reports/toolbox_header_popout_safe_reapply.md -> dev/reports/toolbox_header_popout_safe_reapply.md -R dev/docs_build/dev/reports/toolbox_menu_ia.md -> dev/reports/toolbox_menu_ia.md -R dev/docs_build/dev/reports/toolbox_readiness_gate.md -> dev/reports/toolbox_readiness_gate.md -R dev/docs_build/dev/reports/toolbox_registry_final_cleanup_report.md -> dev/reports/toolbox_registry_final_cleanup_report.md -R dev/docs_build/dev/reports/toolbox_route_reference_hygiene_report.md -> dev/reports/toolbox_route_reference_hygiene_report.md -R dev/docs_build/dev/reports/toolbox_shared_dev_final_classification_report.md -> dev/reports/toolbox_shared_dev_final_classification_report.md -R dev/docs_build/dev/reports/toolbox_shared_dev_schema_audit_report.md -> dev/reports/toolbox_shared_dev_schema_audit_report.md -R dev/docs_build/dev/reports/toolbox_template_mismatch_closeout_report.md -> dev/reports/toolbox_template_mismatch_closeout_report.md -R dev/docs_build/dev/reports/toolbox_wireframe_rebuild_rule_report.md -> dev/reports/toolbox_wireframe_rebuild_rule_report.md -R dev/docs_build/dev/reports/tools-progress-targeted-msj-tests.md -> dev/reports/tools-progress-targeted-msj-tests.md -R dev/docs_build/dev/reports/tools-progress-tool-links.md -> dev/reports/tools-progress-tool-links.md -R dev/docs_build/dev/reports/tools_index_expected_relationships_11_120.txt -> dev/reports/tools_index_expected_relationships_11_120.txt -R dev/docs_build/dev/reports/tools_index_tile_image_size_validation.md -> dev/reports/tools_index_tile_image_size_validation.md -R dev/docs_build/dev/reports/tools_readme_v2_normalization_report.md -> dev/reports/tools_readme_v2_normalization_report.md -R dev/docs_build/dev/reports/tools_shared_index_barrel_removal_report.md -> dev/reports/tools_shared_index_barrel_removal_report.md -R dev/docs_build/dev/reports/unified_tool_contract_behavior_validation.md -> dev/reports/unified_tool_contract_behavior_validation.md -R dev/docs_build/dev/reports/update_channel_contract_tests_validation.md -> dev/reports/update_channel_contract_tests_validation.md -R dev/docs_build/dev/reports/user-controls-defaults-and-profile-rules-report.md -> dev/reports/user-controls-defaults-and-profile-rules-report.md -R dev/docs_build/dev/reports/user-controls-gamepad-table-and-defaults-report.md -> dev/reports/user-controls-gamepad-table-and-defaults-report.md -R dev/docs_build/dev/reports/user-controls-input-capture-cleanup-report.md -> dev/reports/user-controls-input-capture-cleanup-report.md -R dev/docs_build/dev/reports/user-controls-selected-device-fallback-report.md -> dev/reports/user-controls-selected-device-fallback-report.md -R dev/docs_build/dev/reports/users-roles-login-and-db-viewer-completion-report.md -> dev/reports/users-roles-login-and-db-viewer-completion-report.md -R dev/docs_build/dev/reports/utils_audit_summary.csv -> dev/reports/utils_audit_summary.csv -R dev/docs_build/dev/reports/utils_consolidation_inventory.csv -> dev/reports/utils_consolidation_inventory.csv -R dev/docs_build/dev/reports/utils_consolidation_inventory.md -> dev/reports/utils_consolidation_inventory.md -R dev/docs_build/dev/reports/utils_dead_usage_audit.md -> dev/reports/utils_dead_usage_audit.md -R dev/docs_build/dev/reports/utils_duplicate_exports_audit.md -> dev/reports/utils_duplicate_exports_audit.md -R dev/docs_build/dev/reports/utils_folder_category_audit.md -> dev/reports/utils_folder_category_audit.md -R dev/docs_build/dev/reports/utils_rules_audit.csv -> dev/reports/utils_rules_audit.csv -R dev/docs_build/dev/reports/validation.txt -> dev/reports/validation.txt -R dev/docs_build/dev/reports/validation_after_11_103.txt -> dev/reports/validation_after_11_103.txt -R dev/docs_build/dev/reports/validation_after_11_116.txt -> dev/reports/validation_after_11_116.txt -R dev/docs_build/dev/reports/validation_after_11_118.txt -> dev/reports/validation_after_11_118.txt -R dev/docs_build/dev/reports/validation_after_11_120.txt -> dev/reports/validation_after_11_120.txt -R dev/docs_build/dev/reports/validation_after_11_121.txt -> dev/reports/validation_after_11_121.txt -R dev/docs_build/dev/reports/validation_after_11_122.txt -> dev/reports/validation_after_11_122.txt -R dev/docs_build/dev/reports/validation_after_11_123.txt -> dev/reports/validation_after_11_123.txt -R dev/docs_build/dev/reports/validation_cache_report.md -> dev/reports/validation_cache_report.md -R dev/docs_build/dev/reports/validation_checklist.md -> dev/reports/validation_checklist.md -R dev/docs_build/dev/reports/validation_checklist.txt -> dev/reports/validation_checklist.txt -R dev/docs_build/dev/reports/vector_asset_contract_tests_validation.md -> dev/reports/vector_asset_contract_tests_validation.md -R dev/docs_build/dev/reports/vector_map_editor_removal_report.md -> dev/reports/vector_map_editor_removal_report.md -R dev/docs_build/dev/reports/vector_map_hosted_payload_boot_11_151.txt -> dev/reports/vector_map_hosted_payload_boot_11_151.txt -R dev/docs_build/dev/reports/vector_map_workspace_object_render_11_150.txt -> dev/reports/vector_map_workspace_object_render_11_150.txt -R dev/docs_build/dev/reports/version_compatibility_contract_tests_validation.md -> dev/reports/version_compatibility_contract_tests_validation.md -R dev/docs_build/dev/reports/wave_1_migration_closeout.md -> dev/reports/wave_1_migration_closeout.md -R dev/docs_build/dev/reports/wave_1_projectworkspace_integration.md -> dev/reports/wave_1_projectworkspace_integration.md -R dev/docs_build/dev/reports/wave_1_reporting_normalization.md -> dev/reports/wave_1_reporting_normalization.md -R dev/docs_build/dev/reports/wave_1_sample_execution_readiness.md -> dev/reports/wave_1_sample_execution_readiness.md -R dev/docs_build/dev/reports/wave_1_sample_fixture_baseline.md -> dev/reports/wave_1_sample_fixture_baseline.md -R dev/docs_build/dev/reports/wave_1_sample_manifest_alignment.md -> dev/reports/wave_1_sample_manifest_alignment.md -R dev/docs_build/dev/reports/wave_1_sample_reporting_baseline.md -> dev/reports/wave_1_sample_reporting_baseline.md -R dev/docs_build/dev/reports/wave_1_sample_validation_baseline.md -> dev/reports/wave_1_sample_validation_baseline.md -R dev/docs_build/dev/reports/wave_1_tool_contract_baseline.md -> dev/reports/wave_1_tool_contract_baseline.md -R dev/docs_build/dev/reports/wave_1_toolstate_boundary_validation.md -> dev/reports/wave_1_toolstate_boundary_validation.md -R dev/docs_build/dev/reports/wave_2_migration_closeout.md -> dev/reports/wave_2_migration_closeout.md -R dev/docs_build/dev/reports/wave_2_projectworkspace_integration.md -> dev/reports/wave_2_projectworkspace_integration.md -R dev/docs_build/dev/reports/wave_2_reporting_normalization.md -> dev/reports/wave_2_reporting_normalization.md -R dev/docs_build/dev/reports/wave_2_tool_contract_baseline.md -> dev/reports/wave_2_tool_contract_baseline.md -R dev/docs_build/dev/reports/wave_2_toolstate_boundary_validation.md -> dev/reports/wave_2_toolstate_boundary_validation.md -R dev/docs_build/dev/reports/wave_3_reporting_normalization.md -> dev/reports/wave_3_reporting_normalization.md -R dev/docs_build/dev/reports/workspace_asset_catalog_residue_cleanup_report.md -> dev/reports/workspace_asset_catalog_residue_cleanup_report.md -R dev/docs_build/dev/reports/workspace_cleanup_normalization_report.md -> dev/reports/workspace_cleanup_normalization_report.md -R dev/docs_build/dev/reports/workspace_direct_payload_card_status_11_149.txt -> dev/reports/workspace_direct_payload_card_status_11_149.txt -R dev/docs_build/dev/reports/workspace_host_size_and_tool_resolution_validation.md -> dev/reports/workspace_host_size_and_tool_resolution_validation.md -R dev/docs_build/dev/reports/workspace_hydrate_game_tools_only.md -> dev/reports/workspace_hydrate_game_tools_only.md -R dev/docs_build/dev/reports/workspace_manager_auto_mount_tool_selection_validation.md -> dev/reports/workspace_manager_auto_mount_tool_selection_validation.md -R dev/docs_build/dev/reports/workspace_manager_blank_game_launch_repair_validation.md -> dev/reports/workspace_manager_blank_game_launch_repair_validation.md -R dev/docs_build/dev/reports/workspace_manager_default_query_fallback_removal_validation.md -> dev/reports/workspace_manager_default_query_fallback_removal_validation.md -R dev/docs_build/dev/reports/workspace_manager_game_launch_tools_view_validation.md -> dev/reports/workspace_manager_game_launch_tools_view_validation.md -R dev/docs_build/dev/reports/workspace_manager_hide_tool_banner_validation.md -> dev/reports/workspace_manager_hide_tool_banner_validation.md -R dev/docs_build/dev/reports/workspace_manager_mount_container_pager_validation.md -> dev/reports/workspace_manager_mount_container_pager_validation.md -R dev/docs_build/dev/reports/workspace_manager_rollback_header_and_tool_pager_validation.md -> dev/reports/workspace_manager_rollback_header_and_tool_pager_validation.md -R dev/docs_build/dev/reports/workspace_manager_tool_pager_above_editors_validation.md -> dev/reports/workspace_manager_tool_pager_above_editors_validation.md -R dev/docs_build/dev/reports/workspace_manager_tool_selector_surface_validation.md -> dev/reports/workspace_manager_tool_selector_surface_validation.md -R dev/docs_build/dev/reports/workspace_manifest_documentkind_removal_report.md -> dev/reports/workspace_manifest_documentkind_removal_report.md -R dev/docs_build/dev/reports/workspace_manifest_final_removal_report.md -> dev/reports/workspace_manifest_final_removal_report.md -R dev/docs_build/dev/reports/workspace_pager_button_events_validation.md -> dev/reports/workspace_pager_button_events_validation.md -R dev/docs_build/dev/reports/workspace_pager_delegated_events_validation.md -> dev/reports/workspace_pager_delegated_events_validation.md -R dev/docs_build/dev/reports/workspace_payload_routing_review_11_123.txt -> dev/reports/workspace_payload_routing_review_11_123.txt -R dev/docs_build/dev/reports/workspace_removal_verification.md -> dev/reports/workspace_removal_verification.md -R dev/docs_build/dev/reports/workspace_repo_destination_control.md -> dev/reports/workspace_repo_destination_control.md -R dev/docs_build/dev/reports/workspace_return_repo_rehydrate.md -> dev/reports/workspace_return_repo_rehydrate.md -R dev/docs_build/dev/reports/workspace_schema_removal_report.md -> dev/reports/workspace_schema_removal_report.md -R dev/docs_build/dev/reports/workspace_selection_gates.md -> dev/reports/workspace_selection_gates.md -R dev/docs_build/dev/reports/workspace_session_hydration.md -> dev/reports/workspace_session_hydration.md -R dev/docs_build/dev/reports/workspace_svg_asset_status_label_11_153.txt -> dev/reports/workspace_svg_asset_status_label_11_153.txt -R dev/docs_build/dev/reports/workspace_tile_summary_display_model_11_157.txt -> dev/reports/workspace_tile_summary_display_model_11_157.txt -R dev/docs_build/dev/reports/workspace_tool_key_id_fix_11_148.txt -> dev/reports/workspace_tool_key_id_fix_11_148.txt -R dev/docs_build/dev/reports/workspace_tool_payload_routing_11_122.txt -> dev/reports/workspace_tool_payload_routing_11_122.txt -R dev/docs_build/dev/reports/workspace_tool_session_refresh.md -> dev/reports/workspace_tool_session_refresh.md -R dev/docs_build/dev/reports/workspace_v2_object_collision_enablement_report.md -> dev/reports/workspace_v2_object_collision_enablement_report.md -R dev/docs_build/dev/reports/zero_browser_preflight_report.md -> dev/reports/zero_browser_preflight_report.md -M dev/scripts/PS/audit-dead-utils.ps1 -M dev/scripts/PS/deploy/WebsiteRepoDeploymentCommon.ps1 -M dev/scripts/PS/enforce-utils-rules.ps1 -M dev/scripts/PS/find_json.ps1 -M dev/scripts/audit-playwright-test-locations.mjs -M dev/scripts/run-targeted-test-lanes.mjs -M dev/scripts/validate-asset-ownership-strategy.mjs -M dev/scripts/validate-canonical-repository-structure.mjs -M dev/scripts/validate-tool-registry.mjs -M dev/scripts/write-codex-review-artifacts.mjs -M dev/tests/helpers/playwrightV8CoverageReporter.mjs -M dev/tests/index.html -M dev/tests/playwright_installation.txt -M dev/tests/runtime/GamesIndexWorkspaceManagerOpen.test.mjs -M dev/tests/runtime/LaunchSmokeAllEntries.test.mjs -M dev/tests/shared/ContractIndexValidation.test.mjs -M dev/tests/shared/ContractReportStandardization.test.mjs -M dev/tests/shared/ProjectWorkspaceMigrationGovernanceCloseoutValidation.test.mjs -M dev/tests/tools/AssetOwnershipStrategyCloseout.test.mjs -A dev/workspace/artifacts/README.md +M dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md +M dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md +A dev/reports/PR_26179_OWNER_008-update-path-governance-final.md +A dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md +A dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md +A dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md +A dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md # git ls-files --others --exclude-standard (no output) diff --git a/dev/reports/codex_review.diff b/dev/reports/codex_review.diff index 4c7c94816..686e04921 100644 --- a/dev/reports/codex_review.diff +++ b/dev/reports/codex_review.diff @@ -1,15687 +1,292 @@ -diff --git a/.gitignore b/.gitignore -index 8f4247376..da70cf43c 100644 ---- a/.gitignore -+++ b/.gitignore -@@ -17,8 +17,10 @@ NEXT_COMMAND.txt - node_modules/ - tests/results/ - tests/results/** --tmp/test-results/ --tmp/test-results/** -+dev/workspace/artifacts/tmp/ -+dev/workspace/artifacts/tmp/** -+dev/workspace/artifacts/tmp/test-results/ -+dev/workspace/artifacts/tmp/test-results/** - tmp/ - scripts/untracked/ - projects/ -@@ -47,4 +49,4 @@ docs/dev/reports/playwright_v8_coverage_report.txt - - # Game Foundry Studio project files - assets/*.gfsp --docs_build/dev/ProjectInstructions.zip -+dev/docs_build/dev/ProjectInstructions.zip diff --git a/README.md b/README.md -index 07c311c8e..a1ce33d09 100644 +index a1ce33d09..e29c74907 100644 --- a/README.md +++ b/README.md -@@ -29,11 +29,11 @@ This repository follows a docs-first game/runtime model, combining a stable engi - ## ▶️ Start Here - - 1. Review the repo model in [docs/README.md](docs/README.md) --2. Explore the roadmap in [docs_build/dev/roadmaps/MASTER_ROADMAP_ENGINE.md](docs_build/dev/roadmaps/MASTER_ROADMAP_ENGINE.md) --3. Browse archived reference samples from [archive/v1-v2/samples/index.html](archive/v1-v2/samples/index.html) -+2. Explore active development governance in [dev/docs_build/dev/ProjectInstructions/](dev/docs_build/dev/ProjectInstructions/) -+3. Browse archived reference samples from [dev/archive/v1-v2/samples/index.html](dev/archive/v1-v2/samples/index.html) - 4. Explore tools under [toolbox/](toolbox/) - 5. Review engine and architecture boundaries in [docs/architecture/](docs/architecture/) --6. Follow the workflow in [docs_build/dev/](docs_build/dev/) and [docs_build/pr/](docs_build/pr/) -+6. Follow the workflow in [dev/docs_build/dev/](dev/docs_build/dev/) and [dev/docs_build/dev/PR/](dev/docs_build/dev/PR/) +@@ -90,8 +90,10 @@ This repo is designed as a learning system, not just a code dump. - --- + ## 🏗️ Architecture Overview -@@ -105,7 +105,7 @@ PLAN_PR → BUILD_PR → APPLY_PR - - One PR per purpose - - Small, surgical changes - - Docs-first implementation planning --- Delta ZIP outputs stored under `/tmp/` -+- Delta ZIP outputs stored under `/dev/workspace/artifacts/tmp/` +-- Engine Layer → [src/engine/](src/engine/) +-- Advanced Systems → [src/advanced/](src/advanced/) ++- Web layer target → `src/web/` ++- API runtime target → `src/api-runtime/` ++- Runtime layer target → `src/runtime/` ++- Existing `src/engine/`, `src/advanced/`, `src/shared/`, `src/tools/`, `src/api/`, and `src/dev-runtime/` folders are legacy transition buckets until dedicated migration PRs move them. + - Tools, samples, and games consume public contracts only --- +@@ -122,8 +124,8 @@ PLAN_PR → BUILD_PR → APPLY_PR -@@ -113,10 +113,10 @@ PLAN_PR → BUILD_PR → APPLY_PR + ## ⚠️ Runtime Boundary Rules - - [docs/README.md](docs/README.md) → top-level documentation index - - [docs/architecture/](docs/architecture/) → durable architecture and boundary contracts --- [docs_build/pr/](docs_build/pr/) → preserved PR history and architecture evolution --- [docs_build/dev/](docs_build/dev/) → active workflow controls and implementation planning --- [docs_build/dev/reports/](docs_build/dev/reports/) → active report artifacts --- [docs_build/archive/](docs_build/archive/) → archived dev-ops notes and generated reports -+- [dev/docs_build/dev/PR/](dev/docs_build/dev/PR/) → preserved PR history and architecture evolution -+- [dev/docs_build/dev/](dev/docs_build/dev/) → active workflow controls and implementation planning -+- [dev/reports/](dev/reports/) → active report artifacts -+- [dev/archive/](dev/archive/) → archived dev-ops notes and generated reports - - --- +-- Engine code lives in [src/engine/](src/engine/) +-- Advanced systems live in [src/advanced/](src/advanced/) ++- New deployable source belongs under `src/web/`, `src/api-runtime/`, or `src/runtime/`. ++- Existing legacy `src/*` buckets remain transition-only until scoped migration PRs move them. + - Tools, samples, and games must use public contracts only + - Engine boundaries should not be bypassed diff --git a/dev/README.md b/dev/README.md -index 2d5d5ccb5..c5220fc99 100644 +index c5220fc99..38c4687dc 100644 --- a/dev/README.md +++ b/dev/README.md -@@ -13,7 +13,9 @@ This folder is the destination shell for non-deployable development workspace ma - - ## Governance Workspace - --- `dev/docs_build/` owns active development governance, PR workflow material, and generated reports. -+- `dev/docs_build/` owns active development governance and PR workflow material. -+- `dev/reports/` owns generated reports. -+- `dev/workspace/artifacts/` owns generated non-report artifacts and local temporary workspace output. +@@ -16,6 +16,9 @@ This folder is the destination shell for non-deployable development workspace ma + - `dev/docs_build/` owns active development governance and PR workflow material. + - `dev/reports/` owns generated reports. + - `dev/workspace/artifacts/` owns generated non-report artifacts and local temporary workspace output. ++- `dev/tests/` owns non-deployable tests. ++- `dev/scripts/` owns development-only scripts and runners. ++- `dev/config/` owns development-only runner and tooling configuration. - `dev/archive/` owns historical development reference material. - `dev/project-instructions/` is deprecated reference only; active Project Instructions live under `dev/docs_build/dev/ProjectInstructions/`. -diff --git a/dev/config/playwright.config.cjs b/dev/config/playwright.config.cjs -index 524dbdc39..a8f87ea2a 100644 ---- a/dev/config/playwright.config.cjs -+++ b/dev/config/playwright.config.cjs -@@ -5,23 +5,23 @@ const repoPath = (...segments) => path.join(repoRoot, ...segments); - - module.exports = { - timeout: 120000, -- outputDir: repoPath("tmp", "test-results"), -+ outputDir: repoPath("dev", "workspace", "artifacts", "tmp", "test-results"), - projects: [ - { - name: "ui", - testDir: repoPath("dev", "tests", "ui"), -- outputDir: repoPath("tmp", "test-results", "artifacts") -+ outputDir: repoPath("dev", "workspace", "artifacts", "tmp", "test-results", "artifacts") - }, - { - name: "playwright", - testDir: repoPath("dev", "tests", "playwright"), -- outputDir: repoPath("tmp", "test-results", "artifacts") -+ outputDir: repoPath("dev", "workspace", "artifacts", "tmp", "test-results", "artifacts") - } - ], - reporter: [ - ["list"], -- ["html", { outputFolder: repoPath("tmp", "test-results", "report"), open: "always" }], -- ["json", { outputFile: repoPath("tmp", "test-results", "playwright-results.json") }] -+ ["html", { outputFolder: repoPath("dev", "workspace", "artifacts", "tmp", "test-results", "report"), open: "always" }], -+ ["json", { outputFile: repoPath("dev", "workspace", "artifacts", "tmp", "test-results", "playwright-results.json") }] - ], - use: { - headless: false, -diff --git a/dev/docs_build/dev/PR/README.md b/dev/docs_build/dev/PR/README.md -index 96c4d7a22..c826900cd 100644 ---- a/dev/docs_build/dev/PR/README.md -+++ b/dev/docs_build/dev/PR/README.md -@@ -8,7 +8,7 @@ This folder owns reusable PR workflow material and historical PR reference docum - - `reference/` contains historical or reference PR documents. - - Reusable PR templates must not live outside `dev/docs_build/dev/PR/templates/`. --Generated PR reports must live under `dev/docs_build/dev/reports/`. -+Generated PR reports must live under `dev/reports/`. - Permanent governance must live under `dev/docs_build/dev/ProjectInstructions/`. - - ## Rules -diff --git a/dev/docs_build/dev/PR/reference/OWNER_007_BUILD_PR.md b/dev/docs_build/dev/PR/reference/OWNER_007_BUILD_PR.md -index afddac997..7c3045fd8 100644 ---- a/dev/docs_build/dev/PR/reference/OWNER_007_BUILD_PR.md -+++ b/dev/docs_build/dev/PR/reference/OWNER_007_BUILD_PR.md -@@ -16,7 +16,7 @@ This `dev/docs_build/dev/pr/BUILD_PR.md`, `dev/docs_build/dev/pr/PLAN_PR.md`, an - - Remove stale one-off PR/restart files from `dev/docs_build/dev/` root. - - Move PR-specific docs from `dev/docs_build/dev/` root into `dev/docs_build/dev/pr/`. - - Move active governance/contract docs from `dev/docs_build/dev/` root into `dev/docs_build/dev/ProjectInstructions/addendums/`. --- Move audit outputs from `dev/docs_build/dev/` root into `dev/docs_build/dev/reports/audits/`. -+- Move audit outputs from `dev/docs_build/dev/` root into `dev/reports/audits/`. - - Delete stale one-off bundle metadata from `dev/docs_build/dev/` root. - - Add Tool MVP Stacked PR Standard under `dev/docs_build/dev/ProjectInstructions/`. - - Update PR planning/template and report requirements for tool MVP PRs. -@@ -28,7 +28,7 @@ This `dev/docs_build/dev/pr/BUILD_PR.md`, `dev/docs_build/dev/pr/PLAN_PR.md`, an - - Keep `dev/project-instructions/` out of this PR except for a tiny deprecated pointer. - - Update active team start/governance docs to reference only `dev/docs_build/dev/ProjectInstructions/`. - - Add EOD main lock, next-day reset governance, and canonical START / WORK / END branch lifecycle rules. --- Add required reports under `dev/docs_build/dev/reports/`. -+- Add required reports under `dev/reports/`. - - ## Exact Targets - -@@ -43,7 +43,7 @@ This `dev/docs_build/dev/pr/BUILD_PR.md`, `dev/docs_build/dev/pr/PLAN_PR.md`, an - - `dev/docs_build/dev/ProjectInstructions/addendums/tool_mvp_stacked_pr_standard.md` - - `dev/docs_build/dev/ProjectInstructions/addendums/no_mock_repository_runtime_source.md` - - `dev/docs_build/dev/ProjectInstructions/addendums/preservation.md` --- `dev/docs_build/dev/reports/audits/*.md` -+- `dev/reports/audits/*.md` - - `dev/archive/docs_build/dev/dod/*.md` - - `dev/archive/docs_build/dev/roadmaps/*.md` - - `dev/project-instructions/README.md` (tiny deprecated pointer only) -@@ -80,10 +80,10 @@ This `dev/docs_build/dev/pr/BUILD_PR.md`, `dev/docs_build/dev/pr/PLAN_PR.md`, an - - `dev/docs_build/dev/roadmaps/MIDI_STUDIO_V2_ROADMAP.md` (move to root archive) - - `dev/docs_build/dev/roadmaps/phases.txt` (move to root archive) - - `dev/docs_build/dev/roadmaps/README.md` (move to root archive) --- `dev/docs_build/dev/reports/legacy-docs-archive-report.md` --- `dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock*.md` --- `dev/docs_build/dev/reports/codex_review.diff` --- `dev/docs_build/dev/reports/codex_changed_files.txt` -+- `dev/reports/legacy-docs-archive-report.md` -+- `dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock*.md` -+- `dev/reports/codex_review.diff` -+- `dev/reports/codex_changed_files.txt` - - ## Out Of Scope - -@@ -111,14 +111,14 @@ Test-Path dev/docs_build/dev/validation_checklist.txt - rg -n 'only active Project Instructions source|dev/docs_build/dev/ProjectInstructions/' dev/docs_build/dev/ProjectInstructions - rg -n 'Tool MVP Stacked PR Standard|Creator-testable outcome|What can Mr\\. Q test after applying this ZIP|What Playwright tests|What Mr\\. Q should manually test|Previous PR dependency|Next PR dependency' dev/docs_build/dev/ProjectInstructions - rg -n 'No Mock Repository Runtime Source|Browser → API → Database|Mock repositories are 100% technical debt|Game Configuration mock repository ready|Seeded demo data is fine only when it is stored in the database and read back through the API' dev/docs_build/dev/ProjectInstructions --rg -n 'dev/archive/docs_build/dev/ProjectInstructions/history|dev/archive/docs_build/dev/dod|dev/archive/docs_build/dev/roadmaps' dev/docs_build/dev/ProjectInstructions dev/docs_build/dev/reports/legacy-docs-archive-report.md -+rg -n 'dev/archive/docs_build/dev/ProjectInstructions/history|dev/archive/docs_build/dev/dod|dev/archive/docs_build/dev/roadmaps' dev/docs_build/dev/ProjectInstructions dev/reports/legacy-docs-archive-report.md - Test-Path dev/docs_build/dev/archive - Test-Path dev/docs_build/dev/dod - Test-Path dev/docs_build/dev/dod/tool_ui_readiness_dod.md - Test-Path dev/docs_build/dev/roadmaps/MASTER_ROADMAP_ENGINE.md - rg -n 'dev/docs_build/dev/PROJECT_INSTRUCTIONS.md.*source of truth|Codex must always read `dev/docs_build/dev/PROJECT_INSTRUCTIONS.md`|Read `dev/docs_build/dev/PROJECT_INSTRUCTIONS.md`' dev/docs_build/dev/ProjectInstructions project-instructions - git diff --name-status $(git merge-base HEAD origin/main) -- project-instructions --git diff --name-status $(git merge-base HEAD origin/main) -- dev/docs_build/dev/pr dev/docs_build/dev/ProjectInstructions/addendums dev/docs_build/dev/reports/audits -+git diff --name-status $(git merge-base HEAD origin/main) -- dev/docs_build/dev/pr dev/docs_build/dev/ProjectInstructions/addendums dev/reports/audits - rg -n "Branch Lifecycle \\(Canonical\\)|Every PR follows exactly three phases|^START$|^WORK$|^END$|Mandatory Hard Stops|tomorrow's official baseline|No commits on main|Never checkout main|Only after ALL four pass" dev/docs_build/dev/ProjectInstructions - git diff --name-only -- src assets toolbox games api serverside package.json package-lock.json dev/docs_build/dev/start_of_day - git diff --check -diff --git a/dev/docs_build/dev/PR/reference/OWNER_007_PLAN_PR.md b/dev/docs_build/dev/PR/reference/OWNER_007_PLAN_PR.md -index 422f4ec9c..8f90e2148 100644 ---- a/dev/docs_build/dev/PR/reference/OWNER_007_PLAN_PR.md -+++ b/dev/docs_build/dev/PR/reference/OWNER_007_PLAN_PR.md -@@ -11,7 +11,7 @@ Make `dev/docs_build/dev/ProjectInstructions/` the only active Project Instructi - - Delete stale one-off PR/restart files from `dev/docs_build/dev/` root. - - Move PR-specific docs from `dev/docs_build/dev/` root into `dev/docs_build/dev/pr/`. - - Move active governance/contract docs from `dev/docs_build/dev/` root into `dev/docs_build/dev/ProjectInstructions/addendums/`. --- Move audit outputs from `dev/docs_build/dev/` root into `dev/docs_build/dev/reports/audits/`. -+- Move audit outputs from `dev/docs_build/dev/` root into `dev/reports/audits/`. - - Delete stale one-off bundle metadata from `dev/docs_build/dev/` root. - - Add Tool MVP Stacked PR Standard under `dev/docs_build/dev/ProjectInstructions/`. - - Update PR planning/template and report requirements for tool MVP PRs. -@@ -24,7 +24,7 @@ Make `dev/docs_build/dev/ProjectInstructions/` the only active Project Instructi - - Move active legacy addendums into `dev/docs_build/dev/ProjectInstructions/addendums/`. - - Update active team start and governance docs to reference only `dev/docs_build/dev/ProjectInstructions/`. - - Add EOD main lock, next-day reset, team PR branch creation gate, and canonical START / WORK / END branch lifecycle rules. --- Add required Codex reports under `dev/docs_build/dev/reports/`. -+- Add required Codex reports under `dev/reports/`. - - ## Out Of Scope - -@@ -40,7 +40,7 @@ Make `dev/docs_build/dev/ProjectInstructions/` the only active Project Instructi - 3. Confirm `dev/project-instructions/**` has no PR changes except the tiny deprecated pointer. - 4. Confirm dev/docs_build/dev root no longer contains active loose instruction, audit, contract, or PR files. - 5. Confirm moved active governance/contract docs are under `dev/docs_build/dev/ProjectInstructions/addendums/`. --6. Confirm moved audit outputs are under `dev/docs_build/dev/reports/audits/`. -+6. Confirm moved audit outputs are under `dev/reports/audits/`. - 7. Confirm Tool MVP Stacked PR Standard appears in active ProjectInstructions. - 8. Confirm tool MVP PR template/report requirements include Creator-testable outcome, Playwright tests, Mr. Q manual test, stack membership, and previous/next dependency. - 9. Confirm No Mock Repository Runtime Source governance appears in active ProjectInstructions. -diff --git a/dev/docs_build/dev/PR/reference/pr_koti_layout_contract.md b/dev/docs_build/dev/PR/reference/pr_koti_layout_contract.md -index 8d883aeb3..115c3c78c 100644 ---- a/dev/docs_build/dev/PR/reference/pr_koti_layout_contract.md -+++ b/dev/docs_build/dev/PR/reference/pr_koti_layout_contract.md -@@ -12,9 +12,9 @@ This PR is documentation/contract only. Do not implement gameplay. - - Use the validated artifacts from the prior workflow pass: - --- `tmp/uat_exports/king_of_the_iceberg_layout_snapshot.json` --- `tmp/uat_tool_layout_workflow_results.json` --- `dev/docs_build/dev/reports/PR_tool_layout_workflow_baseline_report.md` -+- `dev/workspace/artifacts/tmp/uat_exports/king_of_the_iceberg_layout_snapshot.json` -+- `dev/workspace/artifacts/tmp/uat_tool_layout_workflow_results.json` -+- `dev/reports/PR_tool_layout_workflow_baseline_report.md` - - --- - -diff --git a/dev/docs_build/dev/PR/reference/pr_tool_fix_fullscreen_exit_state.md b/dev/docs_build/dev/PR/reference/pr_tool_fix_fullscreen_exit_state.md -index 2471e2c2c..7b5aaf630 100644 ---- a/dev/docs_build/dev/PR/reference/pr_tool_fix_fullscreen_exit_state.md -+++ b/dev/docs_build/dev/PR/reference/pr_tool_fix_fullscreen_exit_state.md -@@ -129,7 +129,7 @@ Browser validation: - Create: - - ```txt --tmp/pr_tool_fix_fullscreen_exit_state_validation.json -+dev/workspace/artifacts/tmp/pr_tool_fix_fullscreen_exit_state_validation.json - ``` - - Include: -@@ -149,7 +149,7 @@ Include: - Create: - - ```txt --dev/docs_build/dev/reports/PR_tool_fix_fullscreen_exit_state_report.md -+dev/reports/PR_tool_fix_fullscreen_exit_state_report.md - ``` - - Include: -diff --git a/dev/docs_build/dev/PR/reference/pr_tool_fix_parallax_header_metadata.md b/dev/docs_build/dev/PR/reference/pr_tool_fix_parallax_header_metadata.md -index cddd80940..f6ae629bd 100644 ---- a/dev/docs_build/dev/PR/reference/pr_tool_fix_parallax_header_metadata.md -+++ b/dev/docs_build/dev/PR/reference/pr_tool_fix_parallax_header_metadata.md -@@ -189,7 +189,7 @@ Browser validation: - Create: - - ```txt --tmp/pr_tool_fix_parallax_header_metadata_validation.json -+dev/workspace/artifacts/tmp/pr_tool_fix_parallax_header_metadata_validation.json - ``` - - Include: -@@ -210,7 +210,7 @@ Include: - Create: - - ```txt --dev/docs_build/dev/reports/PR_tool_fix_parallax_header_metadata_report.md -+dev/reports/PR_tool_fix_parallax_header_metadata_report.md - ``` - - Include: -diff --git a/dev/docs_build/dev/PR/reference/pr_tool_layout_workflow_baseline.md b/dev/docs_build/dev/PR/reference/pr_tool_layout_workflow_baseline.md -index d95df1e7a..5badde2e0 100644 ---- a/dev/docs_build/dev/PR/reference/pr_tool_layout_workflow_baseline.md -+++ b/dev/docs_build/dev/PR/reference/pr_tool_layout_workflow_baseline.md -@@ -142,7 +142,7 @@ Do not invent a new runtime schema in this PR unless the existing tool requires - Create a short report under: - - ```txt --dev/docs_build/dev/reports/PR_tool_layout_workflow_baseline_report.md -+dev/reports/PR_tool_layout_workflow_baseline_report.md - ``` - - The report must include: -diff --git a/dev/docs_build/dev/PR/reference/pr_tool_remove_future_import_hints.md b/dev/docs_build/dev/PR/reference/pr_tool_remove_future_import_hints.md -index d55d59ec1..3847fa32e 100644 ---- a/dev/docs_build/dev/PR/reference/pr_tool_remove_future_import_hints.md -+++ b/dev/docs_build/dev/PR/reference/pr_tool_remove_future_import_hints.md -@@ -133,7 +133,7 @@ Remaining hits must be either: - Create: - - ```txt --dev/docs_build/dev/reports/PR_tool_remove_future_import_hints_report.md -+dev/reports/PR_tool_remove_future_import_hints_report.md - ``` - - Include: -diff --git a/dev/docs_build/dev/PR/reference/pr_tool_remove_static_header_intro.md b/dev/docs_build/dev/PR/reference/pr_tool_remove_static_header_intro.md -index 742ec5a1e..add341870 100644 ---- a/dev/docs_build/dev/PR/reference/pr_tool_remove_static_header_intro.md -+++ b/dev/docs_build/dev/PR/reference/pr_tool_remove_static_header_intro.md -@@ -153,7 +153,7 @@ Run targeted browser validation: - Create: - - ```txt --tmp/pr_tool_remove_static_header_intro_validation.json -+dev/workspace/artifacts/tmp/pr_tool_remove_static_header_intro_validation.json - ``` - - It should include: -@@ -173,7 +173,7 @@ It should include: - Create: - - ```txt --dev/docs_build/dev/reports/PR_tool_remove_static_header_intro_report.md -+dev/reports/PR_tool_remove_static_header_intro_report.md - ``` - - Include: -diff --git a/dev/docs_build/dev/PR/reference/pr_tool_uat_closeout.md b/dev/docs_build/dev/PR/reference/pr_tool_uat_closeout.md -index 2973285b6..c2a71dbd6 100644 ---- a/dev/docs_build/dev/PR/reference/pr_tool_uat_closeout.md -+++ b/dev/docs_build/dev/PR/reference/pr_tool_uat_closeout.md -@@ -23,9 +23,9 @@ Validate and close UAT for the four target tools: - - Use the latest UAT/fix artifacts already in the workspace: - --- `tmp/uat_failed_cases_rerun.json` -+- `dev/workspace/artifacts/tmp/uat_failed_cases_rerun.json` - - `tmp/interactive_uat_report_4tools.json` --- `dev/docs_build/dev/reports/PR_tool_uat_failure_fix_report.md` -+- `dev/reports/PR_tool_uat_failure_fix_report.md` - - Any current tool smoke/UAT reports already produced - - Do not create new King of the Iceberg artifacts. -@@ -37,7 +37,7 @@ Do not create new King of the Iceberg artifacts. - Create: - - ```txt --dev/docs_build/dev/reports/PR_tool_uat_closeout_report.md -+dev/reports/PR_tool_uat_closeout_report.md - ``` - - The report must include: -@@ -110,7 +110,7 @@ If no JavaScript files change, `node --check` is not required. - - ## Acceptance Criteria - --- `dev/docs_build/dev/reports/PR_tool_uat_closeout_report.md` exists. -+- `dev/reports/PR_tool_uat_closeout_report.md` exists. - - All four tools are marked PASS or remaining issues are explicitly documented. - - No King of the Iceberg work is advanced. - - No runtime game code is changed. -diff --git a/dev/docs_build/dev/PR/reference/pr_tool_uat_fix_fullscreen_header_wiring.md b/dev/docs_build/dev/PR/reference/pr_tool_uat_fix_fullscreen_header_wiring.md -index 9ce62142b..ce87efde8 100644 ---- a/dev/docs_build/dev/PR/reference/pr_tool_uat_fix_fullscreen_header_wiring.md -+++ b/dev/docs_build/dev/PR/reference/pr_tool_uat_fix_fullscreen_header_wiring.md -@@ -135,7 +135,7 @@ Perform browser validation: - - Save evidence JSON under: - - ```txt --tmp/pr_tool_uat_fix_fullscreen_header_wiring_validation.json -+dev/workspace/artifacts/tmp/pr_tool_uat_fix_fullscreen_header_wiring_validation.json - ``` - - --- -@@ -145,7 +145,7 @@ tmp/pr_tool_uat_fix_fullscreen_header_wiring_validation.json - Create: - - ```txt --dev/docs_build/dev/reports/PR_tool_uat_fix_fullscreen_header_wiring_report.md -+dev/reports/PR_tool_uat_fix_fullscreen_header_wiring_report.md - ``` - - Report must include: -diff --git a/dev/docs_build/dev/PR/reference/pr_tool_uat_fix_header_asset_browser.md b/dev/docs_build/dev/PR/reference/pr_tool_uat_fix_header_asset_browser.md -index 2f7f52a35..1fdcfbdbb 100644 ---- a/dev/docs_build/dev/PR/reference/pr_tool_uat_fix_header_asset_browser.md -+++ b/dev/docs_build/dev/PR/reference/pr_tool_uat_fix_header_asset_browser.md -@@ -186,7 +186,7 @@ Do not run long samples suite unless a changed file requires it. - Create: - - ```txt --dev/docs_build/dev/reports/PR_tool_uat_fix_header_asset_browser_report.md -+dev/reports/PR_tool_uat_fix_header_asset_browser_report.md - ``` - - Include: -diff --git a/dev/docs_build/dev/PR/templates/BUILD_PR.md b/dev/docs_build/dev/PR/templates/BUILD_PR.md -index 7fdfb6e6f..6bc09773e 100644 ---- a/dev/docs_build/dev/PR/templates/BUILD_PR.md -+++ b/dev/docs_build/dev/PR/templates/BUILD_PR.md -@@ -34,11 +34,11 @@ git diff --check - - Create or update: - --- `dev/docs_build/dev/reports/codex_review.diff` --- `dev/docs_build/dev/reports/codex_changed_files.txt` --- PR-specific report under `dev/docs_build/dev/reports/` -+- `dev/reports/codex_review.diff` -+- `dev/reports/codex_changed_files.txt` -+- PR-specific report under `dev/reports/` - - branch validation PASS/FAIL - - requirement checklist PASS/FAIL - - validation lane report - - manual validation notes --- repo-structured ZIP under `tmp/` -+- repo-structured ZIP under `dev/workspace/artifacts/tmp/` diff --git a/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md b/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md -index 4707ecc57..e26df0978 100644 +index e26df0978..f14002820 100644 --- a/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md +++ b/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md -@@ -52,7 +52,8 @@ Existing Project Instructions outside `dev/docs_build/dev/ProjectInstructions/` - - - `dev/docs_build/dev/ProjectInstructions/` owns governance, team instructions, standards, and addendums. - - `dev/docs_build/dev/PR/` owns PR workflow documents, templates, and examples. --- `dev/docs_build/dev/reports/` owns generated reports, audits, and validation artifacts. -+- `dev/reports/` owns generated reports and audits. -+- `dev/workspace/artifacts/` owns generated non-report artifacts, repo-structured ZIPs, and local temporary workspace output. - - root `dev/archive/` owns historical reference material only. - - ## Team Backlog, SOD, And EOD Governance -diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/codex_artifact_and_reporting_standard.md b/dev/docs_build/dev/ProjectInstructions/addendums/codex_artifact_and_reporting_standard.md -index 9278afc62..ca4b4a2d3 100644 ---- a/dev/docs_build/dev/ProjectInstructions/addendums/codex_artifact_and_reporting_standard.md -+++ b/dev/docs_build/dev/ProjectInstructions/addendums/codex_artifact_and_reporting_standard.md -@@ -26,7 +26,15 @@ No exceptions. - Minimum ZIP contents: - - - changed or preserved repo files from the run, stored at repo-relative paths --- required reports under `dev/docs_build/dev/reports/` -+- required reports under `dev/reports/` +@@ -66,7 +66,7 @@ When active guidance overlaps, use these canonical owner documents: + + - Workflow and Product Owner testable completion: `dev/docs_build/dev/ProjectInstructions/addendums/pr_workflow.md` + - START / WORK / END lifecycle, branch gates, mandatory hard stops, and EOD main lock: `dev/docs_build/dev/ProjectInstructions/addendums/project_instructions_single_source_eod_lock.md` +-- Repository directory ownership and restructure boundaries: `dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md` ++- Repository directory ownership, final root standard, final `src/` layer standard, final `dev/` workspace standard, and restructure boundaries: `dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md` + - Page-level Playwright organization and completion coverage: `dev/docs_build/dev/ProjectInstructions/addendums/test_structure_standardization.md` + - API/environment model and `Browser -> API -> Database` rule: `dev/docs_build/dev/ProjectInstructions/addendums/environment_governance_model.md` + - Environment variable, URL, R2 prefix, and feature flag configuration: `dev/docs_build/dev/ProjectInstructions/addendums/environment_configuration_standards.md` +diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md b/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md +index e26939469..ced3fe354 100644 +--- a/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md ++++ b/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md +@@ -6,6 +6,29 @@ Establish the canonical repository structure for future development and reduce t + + ## Canonical Structure + ++Root product sections: ++- docs/ ++- games/ ++- toolbox/ ++- account/ ++- admin/ ++- legal/ ++- assets/ + -+ZIP artifacts must be written under: ++Deployable application source: ++- src/web/{feature-name}/ ++- src/api-runtime/{feature-name}/ ++- src/runtime/{feature-name}/ + -+```text -+dev/workspace/artifacts/tmp/ -+``` ++Development workspace: ++- dev/docs_build/ ++- dev/reports/ ++- dev/tests/ ++- dev/scripts/ ++- dev/config/ ++- dev/archive/ ++- dev/workspace/artifacts/ + -+Reports must remain flat under `dev/reports/`. Use descriptive filenames that include the PR, team, runner, or lane context instead of nested team or runner report folders. - - Optional: + Tools: + - toolbox/{tool-name}/index.html + +@@ -20,14 +43,15 @@ Themes: + Shared JavaScript: + - assets/js/shared/ + +-Engine: +-- src/engine/{feature-name}/ +- +-API: +-- api/{feature-name}/ ++Legacy transition buckets: ++- src/advanced/ ++- src/api/ ++- src/dev-runtime/ ++- src/engine/ ++- src/shared/ ++- src/tools/ + +-Serverside: +-- serverside/{feature-name}/ ++These legacy transition buckets may remain until explicit migration PRs move them into `src/web/`, `src/api-runtime/`, or `src/runtime/`. -@@ -36,6 +44,8 @@ Optional: - - validation.txt - - generated artifacts + ## Rules -+Generated non-report artifacts must live under `dev/workspace/artifacts/`. +@@ -37,3 +61,7 @@ Serverside: + - No new scattered JS folders. + - No new scattered CSS folders. + - New development follows the canonical structure. ++- New deployable `src/` work follows `src/web/`, `src/api-runtime/`, or `src/runtime/`. ++- New non-deployable work belongs under `dev/`. ++- Required reports belong under flat `dev/reports/`. ++- Required ZIPs and generated temporary artifacts belong under `dev/workspace/artifacts/tmp/`. +diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md b/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md +index 82efbf588..c1ce4d859 100644 +--- a/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md ++++ b/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md +@@ -5,25 +5,57 @@ Owner: OWNER + + ## Purpose + +-Define the target repository directory ownership model before the development workspace restructure chain begins. ++Define the target repository directory ownership model for the post-restructure repository. + + This document is governance only. It does not move runtime, UI, API, tests, or production files by itself. + + ## Directory Ownership + +-- Repository root contains production/public product sections and standard repository configuration. ++- Repository root contains production/public product sections and standard repository configuration only. + - `src/` contains deployable application code. + - `dev/` contains non-deployable build, test, bootstrap, governance, report, and local workspace items. + - `docs/` remains at root because it is production Docs & Help. + - `games/` remains at root because it is public game discovery. + - `toolbox/` remains at root because it is the Creator toolbox/workspace. ++- Other public product roots such as `account/`, `admin/`, `legal/`, and `assets/` remain root-level product sections when present. + - ## Completion Reporting - - Codex responses must include: -diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/documentation_ownership.md b/dev/docs_build/dev/ProjectInstructions/addendums/documentation_ownership.md -index 49edb1c81..f46b55eb8 100644 ---- a/dev/docs_build/dev/ProjectInstructions/addendums/documentation_ownership.md -+++ b/dev/docs_build/dev/ProjectInstructions/addendums/documentation_ownership.md -@@ -20,11 +20,15 @@ Define the ownership model for documentation under `dev/docs_build/dev/` after P - - reusable PR templates - - historical or reference PR documents - --`dev/docs_build/dev/reports/` owns: -+`dev/reports/` owns: - - generated reports --- generated validation artifacts - - audits - -+`dev/workspace/artifacts/` owns: -+- generated non-report artifacts -+- generated ZIP files -+- local temporary workspace output ++## Final Src Layer Standard + - The repository root `dev/archive/` owns: - - historical reference material only - -@@ -32,7 +36,8 @@ The repository root `dev/archive/` owns: - - - No active governance may exist outside `dev/docs_build/dev/ProjectInstructions/`. - - No reusable PR template may exist outside `dev/docs_build/dev/PR/templates/`. --- No generated report may exist outside `dev/docs_build/dev/reports/`. -+- No generated report may exist outside `dev/reports/`. -+- No generated non-report artifact may exist outside `dev/workspace/artifacts/`. - - No active document may exist outside its owning area. - - Historical reference material must not be treated as active governance. - - `dev/docs_build/dev/start_of_day/` is a protected legacy handoff area and must not become an active Project Instructions source. -@@ -42,7 +47,8 @@ The repository root `dev/archive/` owns: - - `dev/docs_build/dev/ProjectInstructions/standards/` contains active contract, model, and platform standards. - - `dev/docs_build/dev/PR/templates/` contains reusable PR templates. - - `dev/docs_build/dev/PR/reference/` contains historical or reference PR documents. --- `dev/docs_build/dev/reports/audits/` contains audit report outputs. -+- `dev/reports/` contains flat generated report outputs. Use team, runner, lane, or PR naming in filenames instead of nested report folders. -+- `dev/workspace/artifacts/tmp/` contains repo-structured ZIP outputs and temporary generated files. - - ## Validation - -@@ -50,5 +56,6 @@ Documentation ownership cleanup PRs must verify: - - - no active Project Instructions outside `dev/docs_build/dev/ProjectInstructions/` - - no reusable PR templates outside `dev/docs_build/dev/PR/templates/` --- no generated reports outside `dev/docs_build/dev/reports/` -+- no generated reports outside `dev/reports/` -+- no generated non-report artifacts outside `dev/workspace/artifacts/` - - no runtime/product/API/database files changed unless explicitly scoped -diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/koti_layout_contract.md b/dev/docs_build/dev/ProjectInstructions/addendums/koti_layout_contract.md -index 486ab5990..bd3fc5271 100644 ---- a/dev/docs_build/dev/ProjectInstructions/addendums/koti_layout_contract.md -+++ b/dev/docs_build/dev/ProjectInstructions/addendums/koti_layout_contract.md -@@ -6,9 +6,9 @@ Define the minimal, explicit data contract for a King of the Iceberg (KOTI) base - - ## 2. Source Artifacts Used - --- `tmp/uat_exports/king_of_the_iceberg_layout_snapshot.json` --- `tmp/uat_tool_layout_workflow_results.json` --- `dev/docs_build/dev/reports/PR_tool_layout_workflow_baseline_report.md` -+- `dev/workspace/artifacts/tmp/uat_exports/king_of_the_iceberg_layout_snapshot.json` -+- `dev/workspace/artifacts/tmp/uat_tool_layout_workflow_results.json` -+- `dev/reports/PR_tool_layout_workflow_baseline_report.md` - - Observed baseline facts from these artifacts: - -diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/multi_team.md b/dev/docs_build/dev/ProjectInstructions/addendums/multi_team.md -index d13cabba0..e89b4c24c 100644 ---- a/dev/docs_build/dev/ProjectInstructions/addendums/multi_team.md -+++ b/dev/docs_build/dev/ProjectInstructions/addendums/multi_team.md -@@ -129,7 +129,7 @@ Required gate: - - blocked PRs with blockers - - next review queue - - final branch/worktree/local-origin sync -- - repo-structured ZIP path under `tmp/` -+ - repo-structured ZIP path under `dev/workspace/artifacts/tmp/` - - final repository state block - - OWNER_049 lesson: -@@ -158,7 +158,7 @@ Required steps: - - local/origin sync = 0 0 - 5. Record final main commit. - 6. Report final repository state. --7. Produce a repo-structured ZIP under `tmp/` that includes the EOD report and all changed or preserved repo files from the closeout. -+7. Produce a repo-structured ZIP under `dev/workspace/artifacts/tmp/` that includes the EOD report and all changed or preserved repo files from the closeout. - 8. Record source branch disposition as `retained`. - 9. Mark the PR Closed only when every Closed gate passes. - -@@ -180,9 +180,9 @@ Rules: - - Do not leave Codex on a feature, team, workstream, recovery, governance, or owner branch after successful merge. - - Plan, Build, validation, reports, ZIP packaging, and closeout stay tied to the same PR identity and source branch. - - Source branches are retained by default after merge and closeout. --- A PR is not Closed until the PR merged, changes are pushed, the repository is on `main`, `main` includes the merge or final commit, the worktree is clean, local/origin sync is `0/0`, no untracked files exist, branch disposition is recorded as `retained`, required reports exist, the required repo-structured ZIP exists under `tmp/`, backlog is updated, and tool state is updated when applicable. -+- A PR is not Closed until the PR merged, changes are pushed, the repository is on `main`, `main` includes the merge or final commit, the worktree is clean, local/origin sync is `0/0`, no untracked files exist, branch disposition is recorded as `retained`, required reports exist, the required repo-structured ZIP exists under `dev/workspace/artifacts/tmp/`, backlog is updated, and tool state is updated when applicable. - - A completed EOD closeout must produce the required ZIP even when the closeout changed no repo files; in that case, the ZIP must contain the EOD report proving the no-change result. --- The EOD ZIP does not replace the EOD report or other required reports under `dev/docs_build/dev/reports/`. -+- The EOD ZIP does not replace the EOD report or other required reports under `dev/reports/`. - - If merge succeeds but repository is not returned to main: - closeout status = FAIL. - -diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/pr_workflow.md b/dev/docs_build/dev/ProjectInstructions/addendums/pr_workflow.md -index cb6917540..3fa3c3fe2 100644 ---- a/dev/docs_build/dev/ProjectInstructions/addendums/pr_workflow.md -+++ b/dev/docs_build/dev/ProjectInstructions/addendums/pr_workflow.md -@@ -86,7 +86,7 @@ Closed gates: - - No untracked files. - - Branch disposition is recorded as `retained`. - - Required reports exist. --- Required repo-structured ZIP under `tmp/` exists. -+- Required repo-structured ZIP under `dev/workspace/artifacts/tmp/` exists. - - Backlog is updated. - - Tool state is updated when applicable. - -@@ -106,9 +106,9 @@ Closed gates: - - If validation fails, stop and report. - - If conflict occurs, stop and report. - - If OWNER decision is required, stop and report. --- Every Codex execution must produce a repo-structured ZIP under `tmp/`. -+- Every Codex execution must produce a repo-structured ZIP under `dev/workspace/artifacts/tmp/`. - - The ZIP rule applies to implementation, audit, report-only, validation-only, governance, cleanup, hard-stop, blocked, validation-failure, partial-completion, new-information, and no-change runs. --- The ZIP must include all changed or preserved repo files from the run and must not replace required reports under `dev/docs_build/dev/reports/`. -+- The ZIP must include all changed or preserved repo files from the run and must not replace required reports under `dev/reports/`. - - If no repo files changed, Codex must still create a ZIP containing the report that proves the no-change, hard-stop, blocked, validation-failure, or partial-completion result. - - No exceptions. - -diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/team_start_and_release.md b/dev/docs_build/dev/ProjectInstructions/addendums/team_start_and_release.md -index 089e2d8cb..5cef16910 100644 ---- a/dev/docs_build/dev/ProjectInstructions/addendums/team_start_and_release.md -+++ b/dev/docs_build/dev/ProjectInstructions/addendums/team_start_and_release.md -@@ -98,7 +98,7 @@ A team or OWNER PR is release-ready when: - - active assignment or OWNER ownership is clear - - PR summary states the validation result - - lifecycle state is at least Validation --- required reports and repo-structured ZIP under `tmp/` exist before Closed -+- required reports and repo-structured ZIP under `dev/workspace/artifacts/tmp/` exist before Closed - - canonical END publishes branch, HEAD SHA, and date/time when the PR merges - - Closed readiness requires: -@@ -110,7 +110,7 @@ Closed readiness requires: - - merge or final commit recorded - - branch disposition recorded as `retained` - - required reports exist --- required repo-structured ZIP under `tmp/` exists -+- required repo-structured ZIP under `dev/workspace/artifacts/tmp/` exists - - backlog updated - - tool state updated when applicable - -diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/workspace_v2_playwright_gate.md b/dev/docs_build/dev/ProjectInstructions/addendums/workspace_v2_playwright_gate.md -index f5b22ae6c..2f40cf03a 100644 ---- a/dev/docs_build/dev/ProjectInstructions/addendums/workspace_v2_playwright_gate.md -+++ b/dev/docs_build/dev/ProjectInstructions/addendums/workspace_v2_playwright_gate.md -@@ -10,9 +10,9 @@ Use this gate for repeatable local validation of Workspace Manager V2 UI behavio - - Fails fast and returns a non-zero exit code on any test failure. - - ## Output Paths --- Test artifacts are written under `tmp/test-results/`. --- Trace artifacts are written under `tmp/test-results/**` (for example in artifacts folders). --- HTML report is written under `tmp/test-results/report`. -+- Test artifacts are written under `dev/workspace/artifacts/tmp/test-results/`. -+- Trace artifacts are written under `dev/workspace/artifacts/tmp/test-results/**` (for example in artifacts folders). -+- HTML report is written under `dev/workspace/artifacts/tmp/test-results/report`. - - Reporter auto-open behavior is controlled by `dev/config/playwright.config.cjs`. - - ## Pass/Fail Behavior -diff --git a/dev/docs_build/dev/ProjectInstructions/standards/IDENTITY_PERMISSIONS_CONTRACT.md b/dev/docs_build/dev/ProjectInstructions/standards/IDENTITY_PERMISSIONS_CONTRACT.md -index 759704177..1a84fea22 100644 ---- a/dev/docs_build/dev/ProjectInstructions/standards/IDENTITY_PERMISSIONS_CONTRACT.md -+++ b/dev/docs_build/dev/ProjectInstructions/standards/IDENTITY_PERMISSIONS_CONTRACT.md -@@ -25,4 +25,4 @@ Identity and permission rules validate database object ownership and access deci - - - Contract test: `dev/tests/shared/IdentityPermissionsContract.test.mjs` - - Fixture file: `dev/tests/fixtures/identity-permissions/permission-scenarios.json` --- Validation report: `dev/docs_build/dev/reports/identity_permissions_contract_tests_validation.md` -+- Validation report: `dev/reports/identity_permissions_contract_tests_validation.md` -diff --git a/dev/docs_build/dev/ProjectInstructions/standards/PROJECT_CONTRACT.md b/dev/docs_build/dev/ProjectInstructions/standards/PROJECT_CONTRACT.md -index bd9fc10a0..174fe4c12 100644 ---- a/dev/docs_build/dev/ProjectInstructions/standards/PROJECT_CONTRACT.md -+++ b/dev/docs_build/dev/ProjectInstructions/standards/PROJECT_CONTRACT.md -@@ -26,4 +26,4 @@ Project may contain Tool States, Assets, Palettes, Game Manifest, Releases, and ++The final `src/` ownership model is: ++ ++- `src/web/` for browser-facing deployable application modules used by public pages, account/admin surfaces, and Creator tools. ++- `src/api-runtime/` for deployable API/runtime service modules that back the shared Browser -> API -> Postgres/R2 contract. ++- `src/runtime/` for deployable game, tool, engine, and shared runtime capabilities. ++ ++Transition rule: ++ ++- Existing top-level `src/advanced/`, `src/api/`, `src/dev-runtime/`, `src/engine/`, `src/shared/`, and `src/tools/` directories are legacy transition buckets until explicit migration PRs move them. ++- Do not add new top-level `src/` layer names outside `src/web/`, `src/api-runtime/`, or `src/runtime/` without OWNER approval. ++- Do not use team names in runtime source filenames. + + ## Development Workspace Paths + +-- `dev/docs_build/` owns active development governance, Project Instructions, PR workflow material, validation reports, and generated documentation-workspace artifacts. ++- `dev/docs_build/` owns active development governance, Project Instructions, and PR workflow material. ++- `dev/reports/` owns generated reports using flat filenames. ++- `dev/tests/` owns non-deployable test suites. ++- `dev/scripts/` owns development-only scripts and runners. ++- `dev/config/` owns development-only runner and tooling configuration. ++- `dev/workspace/artifacts/` owns generated non-report artifacts and ignored local temporary workspace output. + - `dev/archive/` owns historical development reference material that is not active governance. + - `dev/project-instructions/` is deprecated reference only when retained; it must point to `dev/docs_build/dev/ProjectInstructions/`. +-- Root `docs_build/`, root `archive/`, and root `project-instructions/` are not active workspace locations after the governance workspace move. ++- Root `docs_build/`, root `tests/`, root `archive/`, root `tmp/`, and root `project-instructions/` are not active workspace locations after the restructure. ++- Root `tmp/` may remain ignored as legacy local scratch only; required Codex ZIPs and generated temporary artifacts belong under `dev/workspace/artifacts/tmp/`. ++ ++## Legacy Reference Exceptions ++ ++Path references to old root `docs_build/`, `tests/`, `archive/`, or `tmp/` locations are allowed only when they are: ++ ++- historical/reference content under `dev/archive/` or `dev/docs_build/dev/PR/reference/` ++- explicit legacy exception notes in active governance ++- ignore rules that keep obsolete local scratch from entering commits ++- migration reports documenting the old path and its replacement ++ ++Active commands, templates, and Project Instructions must use the final `dev/`, `dev/reports/`, and `dev/workspace/artifacts/` paths. - - Contract test: `dev/tests/shared/ProjectContract.test.mjs` - - Fixture file: `dev/tests/fixtures/projects/project-scenarios.json` --- Validation report: `dev/docs_build/dev/reports/project_contract_tests_validation.md` -+- Validation report: `dev/reports/project_contract_tests_validation.md` -diff --git a/dev/docs_build/dev/ProjectInstructions/standards/README.md b/dev/docs_build/dev/ProjectInstructions/standards/README.md -index 215f93e3a..c6026381a 100644 ---- a/dev/docs_build/dev/ProjectInstructions/standards/README.md -+++ b/dev/docs_build/dev/ProjectInstructions/standards/README.md -@@ -5,6 +5,6 @@ This folder contains active contract, model, and platform standards that belong - Rules: + ## Creator Data Boundary - - Standards here are active governance. --- Generated validation evidence belongs under `dev/docs_build/dev/reports/`. -+- Generated validation evidence belongs under `dev/reports/`. - - Historical reference material belongs under the root `dev/archive/` tree. - - Reusable PR templates belong under `dev/docs_build/dev/PR/templates/`. -diff --git a/dev/docs_build/dev/ProjectInstructions/standards/TOOL_STATE_CONTRACT.md b/dev/docs_build/dev/ProjectInstructions/standards/TOOL_STATE_CONTRACT.md -index 44b1801fe..b0b15652b 100644 ---- a/dev/docs_build/dev/ProjectInstructions/standards/TOOL_STATE_CONTRACT.md -+++ b/dev/docs_build/dev/ProjectInstructions/standards/TOOL_STATE_CONTRACT.md -@@ -30,4 +30,4 @@ Tool State export is a portable format. The database remains the working system, +@@ -42,3 +74,5 @@ This document is governance only. It does not move runtime, UI, API, tests, or p + ## PR Chain Boundary - - Contract test: `dev/tests/shared/ToolStateContract.test.mjs` - - Fixture file: `dev/tests/fixtures/tool-states/tool-state-scenarios.json` --- Validation report: `dev/docs_build/dev/reports/tool_state_contract_tests_validation.md` -+- Validation report: `dev/reports/tool_state_contract_tests_validation.md` -diff --git a/dev/docs_build/dev/reports/BIG_PICTURE_ROADMAP_ARCHIVE_MAP.md b/dev/reports/BIG_PICTURE_ROADMAP_ARCHIVE_MAP.md -similarity index 100% -rename from dev/docs_build/dev/reports/BIG_PICTURE_ROADMAP_ARCHIVE_MAP.md -rename to dev/reports/BIG_PICTURE_ROADMAP_ARCHIVE_MAP.md -diff --git a/dev/docs_build/dev/reports/BRAVO_EOD_2026-06-23.md b/dev/reports/BRAVO_EOD_2026-06-23.md -similarity index 100% -rename from dev/docs_build/dev/reports/BRAVO_EOD_2026-06-23.md -rename to dev/reports/BRAVO_EOD_2026-06-23.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_ASTEROIDS_LAUNCH_TARGETS_VALIDATION.md b/dev/reports/BUILD_PR_ASTEROIDS_LAUNCH_TARGETS_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_ASTEROIDS_LAUNCH_TARGETS_VALIDATION.md -rename to dev/reports/BUILD_PR_ASTEROIDS_LAUNCH_TARGETS_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_ASTEROIDS_TARGETS_AND_AUDIO_PATH_VALIDATION.md b/dev/reports/BUILD_PR_ASTEROIDS_TARGETS_AND_AUDIO_PATH_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_ASTEROIDS_TARGETS_AND_AUDIO_PATH_VALIDATION.md -rename to dev/reports/BUILD_PR_ASTEROIDS_TARGETS_AND_AUDIO_PATH_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_GAMES_HEADER_INTRO_STRUCTURE_APPLY_VALIDATION.md b/dev/reports/BUILD_PR_GAMES_HEADER_INTRO_STRUCTURE_APPLY_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_GAMES_HEADER_INTRO_STRUCTURE_APPLY_VALIDATION.md -rename to dev/reports/BUILD_PR_GAMES_HEADER_INTRO_STRUCTURE_APPLY_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_10_6K_validation_report.md b/dev/reports/BUILD_PR_LEVEL_10_6K_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_10_6K_validation_report.md -rename to dev/reports/BUILD_PR_LEVEL_10_6K_validation_report.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DELETION_MAP.md b/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DELETION_MAP.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DELETION_MAP.md -rename to dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DELETION_MAP.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DUPLICATE_MATRIX.md b/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DUPLICATE_MATRIX.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DUPLICATE_MATRIX.md -rename to dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_DUPLICATE_MATRIX.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_FEATURE_ALIGNMENT_MAP.md b/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_FEATURE_ALIGNMENT_MAP.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_FEATURE_ALIGNMENT_MAP.md -rename to dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_FEATURE_ALIGNMENT_MAP.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_REFERENCE_UPDATE_LOG.md b/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_REFERENCE_UPDATE_LOG.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_REFERENCE_UPDATE_LOG.md -rename to dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_REFERENCE_UPDATE_LOG.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_18_18_TRACK_F_DOCS_SYSTEM_COMPLETION_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_EMPTY_FOLDER_REMOVAL.md b/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_EMPTY_FOLDER_REMOVAL.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_EMPTY_FOLDER_REMOVAL.md -rename to dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_EMPTY_FOLDER_REMOVAL.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_FOLDER_OWNERSHIP_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_FOLDER_OWNERSHIP_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_FOLDER_OWNERSHIP_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_FOLDER_OWNERSHIP_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_IMPORT_EXPORT_CLEANUP.md b/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_IMPORT_EXPORT_CLEANUP.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_IMPORT_EXPORT_CLEANUP.md -rename to dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_IMPORT_EXPORT_CLEANUP.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_KEEP_FILE_AUDIT.md b/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_KEEP_FILE_AUDIT.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_KEEP_FILE_AUDIT.md -rename to dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_KEEP_FILE_AUDIT.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_18_19_TRACK_G_REPO_HYGIENE_COMPLETION_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CAPABILITY_GROUPS.md b/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CAPABILITY_GROUPS.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CAPABILITY_GROUPS.md -rename to dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CAPABILITY_GROUPS.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CONSOLIDATION_MAP.md b/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CONSOLIDATION_MAP.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CONSOLIDATION_MAP.md -rename to dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_CONSOLIDATION_MAP.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_FRAGMENTATION_AUDIT.md b/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_FRAGMENTATION_AUDIT.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_FRAGMENTATION_AUDIT.md -rename to dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_FRAGMENTATION_AUDIT.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_18_20_TRACK_H_PR_CONSOLIDATION_EXECUTION_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_DUPLICATE_DOC_SURFACES.md b/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_DUPLICATE_DOC_SURFACES.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_DUPLICATE_DOC_SURFACES.md -rename to dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_DUPLICATE_DOC_SURFACES.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_EMPTY_DOC_DIRECTORIES.md b/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_EMPTY_DOC_DIRECTORIES.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_EMPTY_DOC_DIRECTORIES.md -rename to dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_EMPTY_DOC_DIRECTORIES.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_ONBOARDING_FLOW_CHECK.md b/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_ONBOARDING_FLOW_CHECK.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_ONBOARDING_FLOW_CHECK.md -rename to dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_ONBOARDING_FLOW_CHECK.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_REFERENCE_UPDATE_LOG.md b/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_REFERENCE_UPDATE_LOG.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_REFERENCE_UPDATE_LOG.md -rename to dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_REFERENCE_UPDATE_LOG.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_20_2_TRACK_C_DOCUMENTATION_COMPLETENESS_RESIDUE_CLOSEOUT_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_bundle_report.md b/dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_bundle_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_bundle_report.md -rename to dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_bundle_report.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_uat_report.md b/dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_uat_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_uat_report.md -rename to dev/reports/BUILD_PR_LEVEL_20_2_WORKSPACE_MANAGER_GAMES_TILE_UAT_RECOVERY_uat_report.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_TOOL_INVENTORY.md b/dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_TOOL_INVENTORY.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_TOOL_INVENTORY.md -rename to dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_TOOL_INVENTORY.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_21_2_TOOL_TESTING_DOCUMENTATION_AND_REPORT_STANDARDIZATION_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_MATRIX.md b/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_MATRIX.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_MATRIX.md -rename to dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_MATRIX.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_RESULTS.md b/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_RESULTS.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_RESULTS.md -rename to dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_AUTOMATION_RESULTS.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_21_3_TOOL_AUTOMATION_AND_TOOL_QUALITY_BASELINE_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_HEADER_REAL_ESTATE_AUDIT.md b/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_HEADER_REAL_ESTATE_AUDIT.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_HEADER_REAL_ESTATE_AUDIT.md -rename to dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_HEADER_REAL_ESTATE_AUDIT.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_TOOL_ALIGNMENT_MATRIX.md b/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_TOOL_ALIGNMENT_MATRIX.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_TOOL_ALIGNMENT_MATRIX.md -rename to dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_TOOL_ALIGNMENT_MATRIX.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_21_4_TOOL_ALIGNMENT_AND_HEADER_REAL_ESTATE_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_CONTROL_PLACEMENT_MATRIX.md b/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_CONTROL_PLACEMENT_MATRIX.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_CONTROL_PLACEMENT_MATRIX.md -rename to dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_CONTROL_PLACEMENT_MATRIX.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_DOCKING_RESIZING_MATRIX.md b/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_DOCKING_RESIZING_MATRIX.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_DOCKING_RESIZING_MATRIX.md -rename to dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_DOCKING_RESIZING_MATRIX.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_LAYOUT_SPACING_AUDIT.md b/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_LAYOUT_SPACING_AUDIT.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_LAYOUT_SPACING_AUDIT.md -rename to dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_LAYOUT_SPACING_AUDIT.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_21_5_TOOL_LAYOUT_DOCKING_AND_CONTROL_NORMALIZATION_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_ERROR_TRACKING.md b/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_ERROR_TRACKING.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_ERROR_TRACKING.md -rename to dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_ERROR_TRACKING.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_LOGGING_STANDARD.md b/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_LOGGING_STANDARD.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_LOGGING_STANDARD.md -rename to dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_LOGGING_STANDARD.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_PERFORMANCE_MONITORING.md b/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_PERFORMANCE_MONITORING.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_PERFORMANCE_MONITORING.md -rename to dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_PERFORMANCE_MONITORING.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_MONITORING_AND_LOGGING_FOUNDATION_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_ERROR_TRACKING.md b/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_ERROR_TRACKING.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_ERROR_TRACKING.md -rename to dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_ERROR_TRACKING.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_LOGGING_STANDARD.md b/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_LOGGING_STANDARD.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_LOGGING_STANDARD.md -rename to dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_LOGGING_STANDARD.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_OBSERVABILITY_MATRIX.md b/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_OBSERVABILITY_MATRIX.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_OBSERVABILITY_MATRIX.md -rename to dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_OBSERVABILITY_MATRIX.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_PERFORMANCE_MONITORING.md b/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_PERFORMANCE_MONITORING.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_PERFORMANCE_MONITORING.md -rename to dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_PERFORMANCE_MONITORING.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_22_1_RUNTIME_OBSERVABILITY_FOUNDATION_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_IMPLEMENTED_GAPS.md b/dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_IMPLEMENTED_GAPS.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_IMPLEMENTED_GAPS.md -rename to dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_IMPLEMENTED_GAPS.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_22_2_TOOL_FEATURE_COMPLETION_FROM_GAPS_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_DEDUPE_DECISIONS.md b/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_DEDUPE_DECISIONS.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_DEDUPE_DECISIONS.md -rename to dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_DEDUPE_DECISIONS.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_INVENTORY.md b/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_INVENTORY.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_INVENTORY.md -rename to dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_INVENTORY.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_MOVE_MAP.md b/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_MOVE_MAP.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_MOVE_MAP.md -rename to dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_MOVE_MAP.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_REFERENCE_UPDATE_LOG.md b/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_REFERENCE_UPDATE_LOG.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_REFERENCE_UPDATE_LOG.md -rename to dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_REFERENCE_UPDATE_LOG.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_22_3_TOOLS_SHARED_LAYER_CONSOLIDATION_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_BUG_FIXES.md b/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_BUG_FIXES.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_BUG_FIXES.md -rename to dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_BUG_FIXES.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_POLISH_SUMMARY.md b/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_POLISH_SUMMARY.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_POLISH_SUMMARY.md -rename to dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_POLISH_SUMMARY.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_22_4_TOOL_POLISH_AND_KNOWN_BUGS_CLOSEOUT_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_10_FULLSCREEN_RULE_CLOSEOUT_AND_ROADMAP_STATUS.md b/dev/reports/BUILD_PR_LEVEL_23_10_FULLSCREEN_RULE_CLOSEOUT_AND_ROADMAP_STATUS.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_10_FULLSCREEN_RULE_CLOSEOUT_AND_ROADMAP_STATUS.md -rename to dev/reports/BUILD_PR_LEVEL_23_10_FULLSCREEN_RULE_CLOSEOUT_AND_ROADMAP_STATUS.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_FAILURES.md b/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_FAILURES.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_FAILURES.md -rename to dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_FAILURES.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_INTEGRATION_GAPS.md b/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_INTEGRATION_GAPS.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_INTEGRATION_GAPS.md -rename to dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_INTEGRATION_GAPS.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_VALIDATION_REPORT.md b/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_VALIDATION_REPORT.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_VALIDATION_REPORT.md -rename to dev/reports/BUILD_PR_LEVEL_23_1_ENGINE_RUNTIME_VALIDATION_SWEEP_VALIDATION_REPORT.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_FIXES_APPLIED.md b/dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_FIXES_APPLIED.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_FIXES_APPLIED.md -rename to dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_FIXES_APPLIED.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_23_2_ENGINE_RUNTIME_INTEGRATION_FIXES_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FAILURES.md b/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FAILURES.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FAILURES.md -rename to dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FAILURES.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FIXES_APPLIED.md b/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FIXES_APPLIED.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FIXES_APPLIED.md -rename to dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_FIXES_APPLIED.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_SAMPLE_INVENTORY.md b/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_SAMPLE_INVENTORY.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_SAMPLE_INVENTORY.md -rename to dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_SAMPLE_INVENTORY.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_23_4_SAMPLE_SYSTEM_VALIDATION_AND_FIXES_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_FIXES_APPLIED.md b/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_FIXES_APPLIED.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_FIXES_APPLIED.md -rename to dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_FIXES_APPLIED.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_ROUTING_AUDIT.md b/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_ROUTING_AUDIT.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_ROUTING_AUDIT.md -rename to dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_ROUTING_AUDIT.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_23_5_SAMPLE_INDEX_AND_ROUTING_NORMALIZATION_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_FULL_SCREEN_USAGE_AUDIT.md b/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_FULL_SCREEN_USAGE_AUDIT.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_FULL_SCREEN_USAGE_AUDIT.md -rename to dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_FULL_SCREEN_USAGE_AUDIT.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_SAMPLE_0713_FULLSCREEN_FIX.md b/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_SAMPLE_0713_FULLSCREEN_FIX.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_SAMPLE_0713_FULLSCREEN_FIX.md -rename to dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_SAMPLE_0713_FULLSCREEN_FIX.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_UNAUTHORIZED_REMOVALS.md b/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_UNAUTHORIZED_REMOVALS.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_UNAUTHORIZED_REMOVALS.md -rename to dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_UNAUTHORIZED_REMOVALS.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_VALIDATION.md b/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_VALIDATION.md -rename to dev/reports/BUILD_PR_LEVEL_23_7_FULLSCREEN_RULE_ENFORCEMENT_AND_SAMPLE_0713_FIX_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_LEVEL_24_5_PHASE_24_CLOSEOUT_EXECUTION_GUARD_REPORT.txt b/dev/reports/BUILD_PR_LEVEL_24_5_PHASE_24_CLOSEOUT_EXECUTION_GUARD_REPORT.txt -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_LEVEL_24_5_PHASE_24_CLOSEOUT_EXECUTION_GUARD_REPORT.txt -rename to dev/reports/BUILD_PR_LEVEL_24_5_PHASE_24_CLOSEOUT_EXECUTION_GUARD_REPORT.txt -diff --git a/dev/docs_build/dev/reports/BUILD_PR_SHARED_HEADER_TEMPLATE_AND_GAME_IMPORT_VALIDATION.md b/dev/reports/BUILD_PR_SHARED_HEADER_TEMPLATE_AND_GAME_IMPORT_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_SHARED_HEADER_TEMPLATE_AND_GAME_IMPORT_VALIDATION.md -rename to dev/reports/BUILD_PR_SHARED_HEADER_TEMPLATE_AND_GAME_IMPORT_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_STYLE_16_17_PERF_FINAL_QA_AND_ROADMAP_CLOSEOUT_MAPPING.md b/dev/reports/BUILD_PR_STYLE_16_17_PERF_FINAL_QA_AND_ROADMAP_CLOSEOUT_MAPPING.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_STYLE_16_17_PERF_FINAL_QA_AND_ROADMAP_CLOSEOUT_MAPPING.md -rename to dev/reports/BUILD_PR_STYLE_16_17_PERF_FINAL_QA_AND_ROADMAP_CLOSEOUT_MAPPING.md -diff --git a/dev/docs_build/dev/reports/BUILD_PR_STYLE_FINAL_SYSTEM_COMPLETION_AND_UAT_READY_MAPPING.md b/dev/reports/BUILD_PR_STYLE_FINAL_SYSTEM_COMPLETION_AND_UAT_READY_MAPPING.md -similarity index 100% -rename from dev/docs_build/dev/reports/BUILD_PR_STYLE_FINAL_SYSTEM_COMPLETION_AND_UAT_READY_MAPPING.md -rename to dev/reports/BUILD_PR_STYLE_FINAL_SYSTEM_COMPLETION_AND_UAT_READY_MAPPING.md -diff --git a/dev/docs_build/dev/reports/CLEANUP_EMPTY_DIRECTORIES.md b/dev/reports/CLEANUP_EMPTY_DIRECTORIES.md -similarity index 100% -rename from dev/docs_build/dev/reports/CLEANUP_EMPTY_DIRECTORIES.md -rename to dev/reports/CLEANUP_EMPTY_DIRECTORIES.md -diff --git a/dev/docs_build/dev/reports/CLEANUP_KEEP_FILES.md b/dev/reports/CLEANUP_KEEP_FILES.md -similarity index 100% -rename from dev/docs_build/dev/reports/CLEANUP_KEEP_FILES.md -rename to dev/reports/CLEANUP_KEEP_FILES.md -diff --git a/dev/docs_build/dev/reports/DOCS_RESIDUE_CLEANUP.md b/dev/reports/DOCS_RESIDUE_CLEANUP.md -similarity index 100% -rename from dev/docs_build/dev/reports/DOCS_RESIDUE_CLEANUP.md -rename to dev/reports/DOCS_RESIDUE_CLEANUP.md -diff --git a/dev/docs_build/dev/reports/FINAL_VALIDATION.md b/dev/reports/FINAL_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/FINAL_VALIDATION.md -rename to dev/reports/FINAL_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/PR_10_10_tilemap_studio_uat_report.md b/dev/reports/PR_10_10_tilemap_studio_uat_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_10_tilemap_studio_uat_report.md -rename to dev/reports/PR_10_10_tilemap_studio_uat_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_11_vector_asset_studio_uat_report.md b/dev/reports/PR_10_11_vector_asset_studio_uat_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_11_vector_asset_studio_uat_report.md -rename to dev/reports/PR_10_11_vector_asset_studio_uat_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_12_vector_map_editor_uat_report.md b/dev/reports/PR_10_12_vector_map_editor_uat_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_12_vector_map_editor_uat_report.md -rename to dev/reports/PR_10_12_vector_map_editor_uat_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_13_workspace_integration_polish_report.md b/dev/reports/PR_10_13_workspace_integration_polish_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_13_workspace_integration_polish_report.md -rename to dev/reports/PR_10_13_workspace_integration_polish_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_14_FULLSCREEN_HEADER_SUMMARY_LINE_FIX_report.md b/dev/reports/PR_10_14_FULLSCREEN_HEADER_SUMMARY_LINE_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_14_FULLSCREEN_HEADER_SUMMARY_LINE_FIX_report.md -rename to dev/reports/PR_10_14_FULLSCREEN_HEADER_SUMMARY_LINE_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_15_FULLSCREEN_HEADER_STATE_TEXT_FIX_report.md b/dev/reports/PR_10_15_FULLSCREEN_HEADER_STATE_TEXT_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_15_FULLSCREEN_HEADER_STATE_TEXT_FIX_report.md -rename to dev/reports/PR_10_15_FULLSCREEN_HEADER_STATE_TEXT_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_16_FULLSCREEN_EXIT_STATE_RESTORE_FIX_report.md b/dev/reports/PR_10_16_FULLSCREEN_EXIT_STATE_RESTORE_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_16_FULLSCREEN_EXIT_STATE_RESTORE_FIX_report.md -rename to dev/reports/PR_10_16_FULLSCREEN_EXIT_STATE_RESTORE_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_17_ASSET_BROWSER_IMPORT_HUB_SAMPLE_0204_LOAD_FIX_report.md b/dev/reports/PR_10_17_ASSET_BROWSER_IMPORT_HUB_SAMPLE_0204_LOAD_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_17_ASSET_BROWSER_IMPORT_HUB_SAMPLE_0204_LOAD_FIX_report.md -rename to dev/reports/PR_10_17_ASSET_BROWSER_IMPORT_HUB_SAMPLE_0204_LOAD_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_19_SAMPLES_0204_1413_1505_JSON_SSOT_FIX_report.md b/dev/reports/PR_10_19_SAMPLES_0204_1413_1505_JSON_SSOT_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_19_SAMPLES_0204_1413_1505_JSON_SSOT_FIX_report.md -rename to dev/reports/PR_10_19_SAMPLES_0204_1413_1505_JSON_SSOT_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_20_TOOL_OWNED_JSON_ASSET_CATALOG_FIX_report.md b/dev/reports/PR_10_20_TOOL_OWNED_JSON_ASSET_CATALOG_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_20_TOOL_OWNED_JSON_ASSET_CATALOG_FIX_report.md -rename to dev/reports/PR_10_20_TOOL_OWNED_JSON_ASSET_CATALOG_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_21_CURRICULUM_VALIDATION_ARTIFACT_LOCATION_AND_PHASE_ORDER_FIX_report.md b/dev/reports/PR_10_21_CURRICULUM_VALIDATION_ARTIFACT_LOCATION_AND_PHASE_ORDER_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_21_CURRICULUM_VALIDATION_ARTIFACT_LOCATION_AND_PHASE_ORDER_FIX_report.md -rename to dev/reports/PR_10_21_CURRICULUM_VALIDATION_ARTIFACT_LOCATION_AND_PHASE_ORDER_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_22_VALIDATION_ARTIFACT_RELOCATION_report.md b/dev/reports/PR_10_22_VALIDATION_ARTIFACT_RELOCATION_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_22_VALIDATION_ARTIFACT_RELOCATION_report.md -rename to dev/reports/PR_10_22_VALIDATION_ARTIFACT_RELOCATION_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_23_SAMPLE_IMPORT_DESTINATION_PRESET_FIX_report.md b/dev/reports/PR_10_23_SAMPLE_IMPORT_DESTINATION_PRESET_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_23_SAMPLE_IMPORT_DESTINATION_PRESET_FIX_report.md -rename to dev/reports/PR_10_23_SAMPLE_IMPORT_DESTINATION_PRESET_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_24_SAMPLE_JSON_DESTINATION_NORMALIZATION_report.md b/dev/reports/PR_10_24_SAMPLE_JSON_DESTINATION_NORMALIZATION_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_24_SAMPLE_JSON_DESTINATION_NORMALIZATION_report.md -rename to dev/reports/PR_10_24_SAMPLE_JSON_DESTINATION_NORMALIZATION_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_25_SAMPLE_METADATA_SSOT_DUPLICATE_EVIDENCE_FIX_report.md b/dev/reports/PR_10_25_SAMPLE_METADATA_SSOT_DUPLICATE_EVIDENCE_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_25_SAMPLE_METADATA_SSOT_DUPLICATE_EVIDENCE_FIX_report.md -rename to dev/reports/PR_10_25_SAMPLE_METADATA_SSOT_DUPLICATE_EVIDENCE_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_26_REPO_DUPLICATE_FILE_CONTENT_AUDIT_report.md b/dev/reports/PR_10_26_REPO_DUPLICATE_FILE_CONTENT_AUDIT_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_26_REPO_DUPLICATE_FILE_CONTENT_AUDIT_report.md -rename to dev/reports/PR_10_26_REPO_DUPLICATE_FILE_CONTENT_AUDIT_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_27_DUPLICATE_CLASSIFICATION_AND_SAFE_CLEANUP_report.md b/dev/reports/PR_10_27_DUPLICATE_CLASSIFICATION_AND_SAFE_CLEANUP_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_27_DUPLICATE_CLASSIFICATION_AND_SAFE_CLEANUP_report.md -rename to dev/reports/PR_10_27_DUPLICATE_CLASSIFICATION_AND_SAFE_CLEANUP_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_6R_expected_outputs.md b/dev/reports/PR_10_6R_expected_outputs.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6R_expected_outputs.md -rename to dev/reports/PR_10_6R_expected_outputs.md -diff --git a/dev/docs_build/dev/reports/PR_10_6R_tool_ui_control_gaps.md b/dev/reports/PR_10_6R_tool_ui_control_gaps.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6R_tool_ui_control_gaps.md -rename to dev/reports/PR_10_6R_tool_ui_control_gaps.md -diff --git a/dev/docs_build/dev/reports/PR_10_6R_tool_ui_control_inventory.md b/dev/reports/PR_10_6R_tool_ui_control_inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6R_tool_ui_control_inventory.md -rename to dev/reports/PR_10_6R_tool_ui_control_inventory.md -diff --git a/dev/docs_build/dev/reports/PR_10_6S_expected_outputs.md b/dev/reports/PR_10_6S_expected_outputs.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6S_expected_outputs.md -rename to dev/reports/PR_10_6S_expected_outputs.md -diff --git a/dev/docs_build/dev/reports/PR_10_6S_gap_closure_report.md b/dev/reports/PR_10_6S_gap_closure_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6S_gap_closure_report.md -rename to dev/reports/PR_10_6S_gap_closure_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_6S_tool_ui_readiness_result.md b/dev/reports/PR_10_6S_tool_ui_readiness_result.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6S_tool_ui_readiness_result.md -rename to dev/reports/PR_10_6S_tool_ui_readiness_result.md -diff --git a/dev/docs_build/dev/reports/PR_10_6T_expected_outputs.md b/dev/reports/PR_10_6T_expected_outputs.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6T_expected_outputs.md -rename to dev/reports/PR_10_6T_expected_outputs.md -diff --git a/dev/docs_build/dev/reports/PR_10_6T_vector_tool_ui_state_finalization_report.md b/dev/reports/PR_10_6T_vector_tool_ui_state_finalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6T_vector_tool_ui_state_finalization_report.md -rename to dev/reports/PR_10_6T_vector_tool_ui_state_finalization_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_6U_tool_uat_gap_closure_report.md b/dev/reports/PR_10_6U_tool_uat_gap_closure_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6U_tool_uat_gap_closure_report.md -rename to dev/reports/PR_10_6U_tool_uat_gap_closure_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_6V_final_dod_validation.md b/dev/reports/PR_10_6V_final_dod_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6V_final_dod_validation.md -rename to dev/reports/PR_10_6V_final_dod_validation.md -diff --git a/dev/docs_build/dev/reports/PR_10_6V_remaining_uat_gate.md b/dev/reports/PR_10_6V_remaining_uat_gate.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6V_remaining_uat_gate.md -rename to dev/reports/PR_10_6V_remaining_uat_gate.md -diff --git a/dev/docs_build/dev/reports/PR_10_6V_required_outputs.md b/dev/reports/PR_10_6V_required_outputs.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_6V_required_outputs.md -rename to dev/reports/PR_10_6V_required_outputs.md -diff --git a/dev/docs_build/dev/reports/PR_10_8_asset_browser_uat_report.md b/dev/reports/PR_10_8_asset_browser_uat_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_8_asset_browser_uat_report.md -rename to dev/reports/PR_10_8_asset_browser_uat_report.md -diff --git a/dev/docs_build/dev/reports/PR_10_9_sprite_editor_uat_report.md b/dev/reports/PR_10_9_sprite_editor_uat_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_10_9_sprite_editor_uat_report.md -rename to dev/reports/PR_10_9_sprite_editor_uat_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_10_ALL_SAMPLES_STANDALONE_TOOL_JSON_SSOT_ENFORCEMENT_report.md b/dev/reports/PR_11_10_ALL_SAMPLES_STANDALONE_TOOL_JSON_SSOT_ENFORCEMENT_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_10_ALL_SAMPLES_STANDALONE_TOOL_JSON_SSOT_ENFORCEMENT_report.md -rename to dev/reports/PR_11_10_ALL_SAMPLES_STANDALONE_TOOL_JSON_SSOT_ENFORCEMENT_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_11_WORKSPACE_ALL_TOOLS_INTEGRATION_SAMPLE_report.md b/dev/reports/PR_11_11_WORKSPACE_ALL_TOOLS_INTEGRATION_SAMPLE_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_11_WORKSPACE_ALL_TOOLS_INTEGRATION_SAMPLE_report.md -rename to dev/reports/PR_11_11_WORKSPACE_ALL_TOOLS_INTEGRATION_SAMPLE_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_12_REBUILD_SAMPLE_1902_WORKSPACE_ALL_TOOLS_report.md b/dev/reports/PR_11_12_REBUILD_SAMPLE_1902_WORKSPACE_ALL_TOOLS_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_12_REBUILD_SAMPLE_1902_WORKSPACE_ALL_TOOLS_report.md -rename to dev/reports/PR_11_12_REBUILD_SAMPLE_1902_WORKSPACE_ALL_TOOLS_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_13_WORKSPACE_1902_SCHEMA_CONFORMANCE_FIX_report.md b/dev/reports/PR_11_13_WORKSPACE_1902_SCHEMA_CONFORMANCE_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_13_WORKSPACE_1902_SCHEMA_CONFORMANCE_FIX_report.md -rename to dev/reports/PR_11_13_WORKSPACE_1902_SCHEMA_CONFORMANCE_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_14_WORKSPACE_SCHEMA_PALETTE_TOOL_AND_1902_REBUILD_report.md b/dev/reports/PR_11_14_WORKSPACE_SCHEMA_PALETTE_TOOL_AND_1902_REBUILD_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_14_WORKSPACE_SCHEMA_PALETTE_TOOL_AND_1902_REBUILD_report.md -rename to dev/reports/PR_11_14_WORKSPACE_SCHEMA_PALETTE_TOOL_AND_1902_REBUILD_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_17_SCHEMA_SET_NORMALIZATION_AND_WORKSPACE_REF_ENFORCEMENT_report.md b/dev/reports/PR_11_17_SCHEMA_SET_NORMALIZATION_AND_WORKSPACE_REF_ENFORCEMENT_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_17_SCHEMA_SET_NORMALIZATION_AND_WORKSPACE_REF_ENFORCEMENT_report.md -rename to dev/reports/PR_11_17_SCHEMA_SET_NORMALIZATION_AND_WORKSPACE_REF_ENFORCEMENT_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_188B_palette_manager_v2_header_alignment_report.md b/dev/reports/PR_11_188B_palette_manager_v2_header_alignment_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_188B_palette_manager_v2_header_alignment_report.md -rename to dev/reports/PR_11_188B_palette_manager_v2_header_alignment_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_189B_validation_report.md b/dev/reports/PR_11_189B_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_189B_validation_report.md -rename to dev/reports/PR_11_189B_validation_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_189_validation_report.md b/dev/reports/PR_11_189_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_189_validation_report.md -rename to dev/reports/PR_11_189_validation_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_18_FULL_STRICT_SCHEMA_MODE_report.md b/dev/reports/PR_11_18_FULL_STRICT_SCHEMA_MODE_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_18_FULL_STRICT_SCHEMA_MODE_report.md -rename to dev/reports/PR_11_18_FULL_STRICT_SCHEMA_MODE_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_190_bundle_manifest.md b/dev/reports/PR_11_190_bundle_manifest.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_190_bundle_manifest.md -rename to dev/reports/PR_11_190_bundle_manifest.md -diff --git a/dev/docs_build/dev/reports/PR_11_190_validation.md b/dev/reports/PR_11_190_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_190_validation.md -rename to dev/reports/PR_11_190_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_191_VECTOR_MAP_EDITOR_V2_VALIDATION.md b/dev/reports/PR_11_191_VECTOR_MAP_EDITOR_V2_VALIDATION.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_191_VECTOR_MAP_EDITOR_V2_VALIDATION.md -rename to dev/reports/PR_11_191_VECTOR_MAP_EDITOR_V2_VALIDATION.md -diff --git a/dev/docs_build/dev/reports/PR_11_192_validation.md b/dev/reports/PR_11_192_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_192_validation.md -rename to dev/reports/PR_11_192_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_193C_validation.md b/dev/reports/PR_11_193C_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_193C_validation.md -rename to dev/reports/PR_11_193C_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_193_V2_HTML_FIRST_BATCH_validation.md b/dev/reports/PR_11_193_V2_HTML_FIRST_BATCH_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_193_V2_HTML_FIRST_BATCH_validation.md -rename to dev/reports/PR_11_193_V2_HTML_FIRST_BATCH_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_193_validation_plan.md b/dev/reports/PR_11_193_validation_plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_193_validation_plan.md -rename to dev/reports/PR_11_193_validation_plan.md -diff --git a/dev/docs_build/dev/reports/PR_11_194_expected_evidence.md b/dev/reports/PR_11_194_expected_evidence.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_194_expected_evidence.md -rename to dev/reports/PR_11_194_expected_evidence.md -diff --git a/dev/docs_build/dev/reports/PR_11_194_v2_html_first_remaining_tools_report.md b/dev/reports/PR_11_194_v2_html_first_remaining_tools_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_194_v2_html_first_remaining_tools_report.md -rename to dev/reports/PR_11_194_v2_html_first_remaining_tools_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_195_validation.md b/dev/reports/PR_11_195_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_195_validation.md -rename to dev/reports/PR_11_195_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_197B_expected_evidence.md b/dev/reports/PR_11_197B_expected_evidence.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_197B_expected_evidence.md -rename to dev/reports/PR_11_197B_expected_evidence.md -diff --git a/dev/docs_build/dev/reports/PR_11_197B_v2_asset_browser_validation.md b/dev/reports/PR_11_197B_v2_asset_browser_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_197B_v2_asset_browser_validation.md -rename to dev/reports/PR_11_197B_v2_asset_browser_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_198_report.md b/dev/reports/PR_11_198_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_198_report.md -rename to dev/reports/PR_11_198_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_199_report.md b/dev/reports/PR_11_199_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_199_report.md -rename to dev/reports/PR_11_199_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_19_SCHEMA_CLEANUP_TOOL_PAYLOADS_AND_PALETTE_CANONICALIZATION_report.md b/dev/reports/PR_11_19_SCHEMA_CLEANUP_TOOL_PAYLOADS_AND_PALETTE_CANONICALIZATION_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_19_SCHEMA_CLEANUP_TOOL_PAYLOADS_AND_PALETTE_CANONICALIZATION_report.md -rename to dev/reports/PR_11_19_SCHEMA_CLEANUP_TOOL_PAYLOADS_AND_PALETTE_CANONICALIZATION_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_1_TOOLBAR_AND_VISUAL_POLISH_report.md b/dev/reports/PR_11_1_TOOLBAR_AND_VISUAL_POLISH_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_1_TOOLBAR_AND_VISUAL_POLISH_report.md -rename to dev/reports/PR_11_1_TOOLBAR_AND_VISUAL_POLISH_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_200_report.md b/dev/reports/PR_11_200_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_200_report.md -rename to dev/reports/PR_11_200_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_201_report.md b/dev/reports/PR_11_201_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_201_report.md -rename to dev/reports/PR_11_201_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_202_report.md b/dev/reports/PR_11_202_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_202_report.md -rename to dev/reports/PR_11_202_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_203B_report.md b/dev/reports/PR_11_203B_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_203B_report.md -rename to dev/reports/PR_11_203B_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_203_report.md b/dev/reports/PR_11_203_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_203_report.md -rename to dev/reports/PR_11_203_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_204_report.md b/dev/reports/PR_11_204_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_204_report.md -rename to dev/reports/PR_11_204_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_205_report.md b/dev/reports/PR_11_205_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_205_report.md -rename to dev/reports/PR_11_205_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_206_report.md b/dev/reports/PR_11_206_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_206_report.md -rename to dev/reports/PR_11_206_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_207_report.md b/dev/reports/PR_11_207_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_207_report.md -rename to dev/reports/PR_11_207_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_208_report.md b/dev/reports/PR_11_208_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_208_report.md -rename to dev/reports/PR_11_208_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_209_report.md b/dev/reports/PR_11_209_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_209_report.md -rename to dev/reports/PR_11_209_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_20_WORKSPACE_LOADER_SCHEMA_V2_TOOLS_PAYLOAD_SUPPORT_report.md b/dev/reports/PR_11_20_WORKSPACE_LOADER_SCHEMA_V2_TOOLS_PAYLOAD_SUPPORT_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_20_WORKSPACE_LOADER_SCHEMA_V2_TOOLS_PAYLOAD_SUPPORT_report.md -rename to dev/reports/PR_11_20_WORKSPACE_LOADER_SCHEMA_V2_TOOLS_PAYLOAD_SUPPORT_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_210_report.md b/dev/reports/PR_11_210_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_210_report.md -rename to dev/reports/PR_11_210_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_211_report.md b/dev/reports/PR_11_211_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_211_report.md -rename to dev/reports/PR_11_211_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_212_report.md b/dev/reports/PR_11_212_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_212_report.md -rename to dev/reports/PR_11_212_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_213_report.md b/dev/reports/PR_11_213_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_213_report.md -rename to dev/reports/PR_11_213_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_214_report.md b/dev/reports/PR_11_214_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_214_report.md -rename to dev/reports/PR_11_214_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_215_report.md b/dev/reports/PR_11_215_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_215_report.md -rename to dev/reports/PR_11_215_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_216_report.md b/dev/reports/PR_11_216_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_216_report.md -rename to dev/reports/PR_11_216_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_217_report.md b/dev/reports/PR_11_217_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_217_report.md -rename to dev/reports/PR_11_217_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_218_report.md b/dev/reports/PR_11_218_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_218_report.md -rename to dev/reports/PR_11_218_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_219_report.md b/dev/reports/PR_11_219_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_219_report.md -rename to dev/reports/PR_11_219_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_21_WORKSPACE_MANAGER_TOOL_PRESENT_DETECTION_FIX_report.md b/dev/reports/PR_11_21_WORKSPACE_MANAGER_TOOL_PRESENT_DETECTION_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_21_WORKSPACE_MANAGER_TOOL_PRESENT_DETECTION_FIX_report.md -rename to dev/reports/PR_11_21_WORKSPACE_MANAGER_TOOL_PRESENT_DETECTION_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_21_workspace_tool_presence_evidence.json b/dev/reports/PR_11_21_workspace_tool_presence_evidence.json -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_21_workspace_tool_presence_evidence.json -rename to dev/reports/PR_11_21_workspace_tool_presence_evidence.json -diff --git a/dev/docs_build/dev/reports/PR_11_220_report.md b/dev/reports/PR_11_220_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_220_report.md -rename to dev/reports/PR_11_220_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_221_report.md b/dev/reports/PR_11_221_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_221_report.md -rename to dev/reports/PR_11_221_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_222_report.md b/dev/reports/PR_11_222_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_222_report.md -rename to dev/reports/PR_11_222_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_223_report.md b/dev/reports/PR_11_223_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_223_report.md -rename to dev/reports/PR_11_223_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_224_report.md b/dev/reports/PR_11_224_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_224_report.md -rename to dev/reports/PR_11_224_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_225_report.md b/dev/reports/PR_11_225_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_225_report.md -rename to dev/reports/PR_11_225_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_226_report.md b/dev/reports/PR_11_226_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_226_report.md -rename to dev/reports/PR_11_226_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_227_report.md b/dev/reports/PR_11_227_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_227_report.md -rename to dev/reports/PR_11_227_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_228_report.md b/dev/reports/PR_11_228_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_228_report.md -rename to dev/reports/PR_11_228_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_229_report.md b/dev/reports/PR_11_229_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_229_report.md -rename to dev/reports/PR_11_229_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_22_WORKSPACE_MANAGER_EMBEDDED_PAYLOAD_ASSET_STATUS_FIX_report.md b/dev/reports/PR_11_22_WORKSPACE_MANAGER_EMBEDDED_PAYLOAD_ASSET_STATUS_FIX_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_22_WORKSPACE_MANAGER_EMBEDDED_PAYLOAD_ASSET_STATUS_FIX_report.md -rename to dev/reports/PR_11_22_WORKSPACE_MANAGER_EMBEDDED_PAYLOAD_ASSET_STATUS_FIX_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_22_workspace_embedded_payload_asset_status_evidence.json b/dev/reports/PR_11_22_workspace_embedded_payload_asset_status_evidence.json -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_22_workspace_embedded_payload_asset_status_evidence.json -rename to dev/reports/PR_11_22_workspace_embedded_payload_asset_status_evidence.json -diff --git a/dev/docs_build/dev/reports/PR_11_230_report.md b/dev/reports/PR_11_230_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_230_report.md -rename to dev/reports/PR_11_230_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_231_report.md b/dev/reports/PR_11_231_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_231_report.md -rename to dev/reports/PR_11_231_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_232_session_merge_preview_report.md b/dev/reports/PR_11_232_session_merge_preview_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_232_session_merge_preview_report.md -rename to dev/reports/PR_11_232_session_merge_preview_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_233_merge_apply_guard_audit_report.md b/dev/reports/PR_11_233_merge_apply_guard_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_233_merge_apply_guard_audit_report.md -rename to dev/reports/PR_11_233_merge_apply_guard_audit_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_234_merge_apply_session_gate_fix_report.md b/dev/reports/PR_11_234_merge_apply_session_gate_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_234_merge_apply_session_gate_fix_report.md -rename to dev/reports/PR_11_234_merge_apply_session_gate_fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_234_merge_preview_selection_fix_report.md b/dev/reports/PR_11_234_merge_preview_selection_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_234_merge_preview_selection_fix_report.md -rename to dev/reports/PR_11_234_merge_preview_selection_fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_235_merge_selector_population_report.md b/dev/reports/PR_11_235_merge_selector_population_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_235_merge_selector_population_report.md -rename to dev/reports/PR_11_235_merge_selector_population_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_236_session_inventory_for_diff_merge_report.md b/dev/reports/PR_11_236_session_inventory_for_diff_merge_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_236_session_inventory_for_diff_merge_report.md -rename to dev/reports/PR_11_236_session_inventory_for_diff_merge_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_237_recent_session_selector_binding_report.md b/dev/reports/PR_11_237_recent_session_selector_binding_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_237_recent_session_selector_binding_report.md -rename to dev/reports/PR_11_237_recent_session_selector_binding_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_238_selector_placeholder_fix_report.md b/dev/reports/PR_11_238_selector_placeholder_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_238_selector_placeholder_fix_report.md -rename to dev/reports/PR_11_238_selector_placeholder_fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_239_diff_merge_button_state_report.md b/dev/reports/PR_11_239_diff_merge_button_state_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_239_diff_merge_button_state_report.md -rename to dev/reports/PR_11_239_diff_merge_button_state_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_239_selection_feedback_and_enable_state_report.md b/dev/reports/PR_11_239_selection_feedback_and_enable_state_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_239_selection_feedback_and_enable_state_report.md -rename to dev/reports/PR_11_239_selection_feedback_and_enable_state_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_240_selection_persistence_report.md b/dev/reports/PR_11_240_selection_persistence_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_240_selection_persistence_report.md -rename to dev/reports/PR_11_240_selection_persistence_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_241_session_id_usability_report.md b/dev/reports/PR_11_241_session_id_usability_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_241_session_id_usability_report.md -rename to dev/reports/PR_11_241_session_id_usability_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_242_recent_session_delete_report.md b/dev/reports/PR_11_242_recent_session_delete_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_242_recent_session_delete_report.md -rename to dev/reports/PR_11_242_recent_session_delete_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_243_saved_session_delete_feedback_report.md b/dev/reports/PR_11_243_saved_session_delete_feedback_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_243_saved_session_delete_feedback_report.md -rename to dev/reports/PR_11_243_saved_session_delete_feedback_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_244_session_library_actions_report.md b/dev/reports/PR_11_244_session_library_actions_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_244_session_library_actions_report.md -rename to dev/reports/PR_11_244_session_library_actions_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_245_save_library_from_recent_session_report.md b/dev/reports/PR_11_245_save_library_from_recent_session_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_245_save_library_from_recent_session_report.md -rename to dev/reports/PR_11_245_save_library_from_recent_session_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_246_block_fake_session_save_report.md b/dev/reports/PR_11_246_block_fake_session_save_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_246_block_fake_session_save_report.md -rename to dev/reports/PR_11_246_block_fake_session_save_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_247_saved_session_row_actions_report.md b/dev/reports/PR_11_247_saved_session_row_actions_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_247_saved_session_row_actions_report.md -rename to dev/reports/PR_11_247_saved_session_row_actions_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_248_selection_sync_report.md b/dev/reports/PR_11_248_selection_sync_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_248_selection_sync_report.md -rename to dev/reports/PR_11_248_selection_sync_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_249_session_library_action_label_report.md b/dev/reports/PR_11_249_session_library_action_label_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_249_session_library_action_label_report.md -rename to dev/reports/PR_11_249_session_library_action_label_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_24_validation.txt b/dev/reports/PR_11_24_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_24_validation.txt -rename to dev/reports/PR_11_24_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_24_validation_template.txt b/dev/reports/PR_11_24_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_24_validation_template.txt -rename to dev/reports/PR_11_24_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_250_confirm_preview_enable_state_report.md b/dev/reports/PR_11_250_confirm_preview_enable_state_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_250_confirm_preview_enable_state_report.md -rename to dev/reports/PR_11_250_confirm_preview_enable_state_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_250_enable_state_feedback_report.md b/dev/reports/PR_11_250_enable_state_feedback_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_250_enable_state_feedback_report.md -rename to dev/reports/PR_11_250_enable_state_feedback_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_250_merge_preview_overlay_fix_report.md b/dev/reports/PR_11_250_merge_preview_overlay_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_250_merge_preview_overlay_fix_report.md -rename to dev/reports/PR_11_250_merge_preview_overlay_fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_251_merge_conflict_summary_report.md b/dev/reports/PR_11_251_merge_conflict_summary_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_251_merge_conflict_summary_report.md -rename to dev/reports/PR_11_251_merge_conflict_summary_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_252_cross_tool_merge_block_report.md b/dev/reports/PR_11_252_cross_tool_merge_block_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_252_cross_tool_merge_block_report.md -rename to dev/reports/PR_11_252_cross_tool_merge_block_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_253_merge_output_persistence_report.md b/dev/reports/PR_11_253_merge_output_persistence_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_253_merge_output_persistence_report.md -rename to dev/reports/PR_11_253_merge_output_persistence_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_254_merged_recent_session_registration_report.md b/dev/reports/PR_11_254_merged_recent_session_registration_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_254_merged_recent_session_registration_report.md -rename to dev/reports/PR_11_254_merged_recent_session_registration_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_255_undo_last_merge_report.md b/dev/reports/PR_11_255_undo_last_merge_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_255_undo_last_merge_report.md -rename to dev/reports/PR_11_255_undo_last_merge_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_256_undo_button_render_report.md b/dev/reports/PR_11_256_undo_button_render_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_256_undo_button_render_report.md -rename to dev/reports/PR_11_256_undo_button_render_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_257_undo_enable_state_refresh_report.md b/dev/reports/PR_11_257_undo_enable_state_refresh_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_257_undo_enable_state_refresh_report.md -rename to dev/reports/PR_11_257_undo_enable_state_refresh_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_258_merge_result_summary_report.md b/dev/reports/PR_11_258_merge_result_summary_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_258_merge_result_summary_report.md -rename to dev/reports/PR_11_258_merge_result_summary_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_259_clear_stale_merge_preview_report.md b/dev/reports/PR_11_259_clear_stale_merge_preview_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_259_clear_stale_merge_preview_report.md -rename to dev/reports/PR_11_259_clear_stale_merge_preview_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_260_undo_enable_state_fix_report.md b/dev/reports/PR_11_260_undo_enable_state_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_260_undo_enable_state_fix_report.md -rename to dev/reports/PR_11_260_undo_enable_state_fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_261_merge_state_status_reset_report.md b/dev/reports/PR_11_261_merge_state_status_reset_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_261_merge_state_status_reset_report.md -rename to dev/reports/PR_11_261_merge_state_status_reset_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_262_merge_state_ssot_report.md b/dev/reports/PR_11_262_merge_state_ssot_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_262_merge_state_ssot_report.md -rename to dev/reports/PR_11_262_merge_state_ssot_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_263_session_ux_stabilization_report.md b/dev/reports/PR_11_263_session_ux_stabilization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_263_session_ux_stabilization_report.md -rename to dev/reports/PR_11_263_session_ux_stabilization_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_264_session_state_model_consolidation_report.md b/dev/reports/PR_11_264_session_state_model_consolidation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_264_session_state_model_consolidation_report.md -rename to dev/reports/PR_11_264_session_state_model_consolidation_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_265_deterministic_state_transition_enforcement_report.md b/dev/reports/PR_11_265_deterministic_state_transition_enforcement_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_265_deterministic_state_transition_enforcement_report.md -rename to dev/reports/PR_11_265_deterministic_state_transition_enforcement_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_266_session_tools_closeout_bundle_report.md b/dev/reports/PR_11_266_session_tools_closeout_bundle_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_266_session_tools_closeout_bundle_report.md -rename to dev/reports/PR_11_266_session_tools_closeout_bundle_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_267_workspace_default_tool_producer_init_fix_report.md b/dev/reports/PR_11_267_workspace_default_tool_producer_init_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_267_workspace_default_tool_producer_init_fix_report.md -rename to dev/reports/PR_11_267_workspace_default_tool_producer_init_fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_268_workspace_v2_session_library_action_cleanup_report.md b/dev/reports/PR_11_268_workspace_v2_session_library_action_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_268_workspace_v2_session_library_action_cleanup_report.md -rename to dev/reports/PR_11_268_workspace_v2_session_library_action_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_269_workspace_v2_session_library_save_guard_load_explanation_report.md b/dev/reports/PR_11_269_workspace_v2_session_library_save_guard_load_explanation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_269_workspace_v2_session_library_save_guard_load_explanation_report.md -rename to dev/reports/PR_11_269_workspace_v2_session_library_save_guard_load_explanation_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_270_workspace_v2_session_library_overwrite_action_report.md b/dev/reports/PR_11_270_workspace_v2_session_library_overwrite_action_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_270_workspace_v2_session_library_overwrite_action_report.md -rename to dev/reports/PR_11_270_workspace_v2_session_library_overwrite_action_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_273_workspace_v2_wording_clarity_report.md b/dev/reports/PR_11_273_workspace_v2_wording_clarity_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_273_workspace_v2_wording_clarity_report.md -rename to dev/reports/PR_11_273_workspace_v2_wording_clarity_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_274_workspace_v2_diff_viewer_summary_counts_report.md b/dev/reports/PR_11_274_workspace_v2_diff_viewer_summary_counts_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_274_workspace_v2_diff_viewer_summary_counts_report.md -rename to dev/reports/PR_11_274_workspace_v2_diff_viewer_summary_counts_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_275_workspace_v2_current_session_export_fix_report.md b/dev/reports/PR_11_275_workspace_v2_current_session_export_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_275_workspace_v2_current_session_export_fix_report.md -rename to dev/reports/PR_11_275_workspace_v2_current_session_export_fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_276_workspace_v2_full_session_export_contract_correction_report.md b/dev/reports/PR_11_276_workspace_v2_full_session_export_contract_correction_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_276_workspace_v2_full_session_export_contract_correction_report.md -rename to dev/reports/PR_11_276_workspace_v2_full_session_export_contract_correction_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_276_workspace_v2_nav_mode_and_export_contract_report.md b/dev/reports/PR_11_276_workspace_v2_nav_mode_and_export_contract_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_276_workspace_v2_nav_mode_and_export_contract_report.md -rename to dev/reports/PR_11_276_workspace_v2_nav_mode_and_export_contract_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_277_workspace_v2_manifest_only_export_enforcement_report.md b/dev/reports/PR_11_277_workspace_v2_manifest_only_export_enforcement_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_277_workspace_v2_manifest_only_export_enforcement_report.md -rename to dev/reports/PR_11_277_workspace_v2_manifest_only_export_enforcement_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_278_workspace_schema_export_enforcement_and_same_tool_diff_guard_report.md b/dev/reports/PR_11_278_workspace_schema_export_enforcement_and_same_tool_diff_guard_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_278_workspace_schema_export_enforcement_and_same_tool_diff_guard_report.md -rename to dev/reports/PR_11_278_workspace_schema_export_enforcement_and_same_tool_diff_guard_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_279_workspace_schema_restore_and_minimal_workspace_session_block_report.md b/dev/reports/PR_11_279_workspace_schema_restore_and_minimal_workspace_session_block_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_279_workspace_schema_restore_and_minimal_workspace_session_block_report.md -rename to dev/reports/PR_11_279_workspace_schema_restore_and_minimal_workspace_session_block_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_27_validation.txt b/dev/reports/PR_11_27_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_27_validation.txt -rename to dev/reports/PR_11_27_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_27_validation_template.txt b/dev/reports/PR_11_27_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_27_validation_template.txt -rename to dev/reports/PR_11_27_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_28_validation.txt b/dev/reports/PR_11_28_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_28_validation.txt -rename to dev/reports/PR_11_28_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_28_validation_template.txt b/dev/reports/PR_11_28_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_28_validation_template.txt -rename to dev/reports/PR_11_28_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_29_validation.txt b/dev/reports/PR_11_29_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_29_validation.txt -rename to dev/reports/PR_11_29_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_29_validation_template.txt b/dev/reports/PR_11_29_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_29_validation_template.txt -rename to dev/reports/PR_11_29_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_2_INTERACTION_AND_FEEDBACK_POLISH_report.md b/dev/reports/PR_11_2_INTERACTION_AND_FEEDBACK_POLISH_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_2_INTERACTION_AND_FEEDBACK_POLISH_report.md -rename to dev/reports/PR_11_2_INTERACTION_AND_FEEDBACK_POLISH_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_304_report.md b/dev/reports/PR_11_304_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_304_report.md -rename to dev/reports/PR_11_304_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_308_report.md b/dev/reports/PR_11_308_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_308_report.md -rename to dev/reports/PR_11_308_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_309_report.md b/dev/reports/PR_11_309_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_309_report.md -rename to dev/reports/PR_11_309_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_30_validation.txt b/dev/reports/PR_11_30_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_30_validation.txt -rename to dev/reports/PR_11_30_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_30_validation_template.txt b/dev/reports/PR_11_30_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_30_validation_template.txt -rename to dev/reports/PR_11_30_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_310_report.md b/dev/reports/PR_11_310_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_310_report.md -rename to dev/reports/PR_11_310_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_311_report.md b/dev/reports/PR_11_311_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_311_report.md -rename to dev/reports/PR_11_311_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_313_report.md b/dev/reports/PR_11_313_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_313_report.md -rename to dev/reports/PR_11_313_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_313_single_contract_rename_report.md b/dev/reports/PR_11_313_single_contract_rename_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_313_single_contract_rename_report.md -rename to dev/reports/PR_11_313_single_contract_rename_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_313_workspace_tool_launcher_asset_manager_report.md b/dev/reports/PR_11_313_workspace_tool_launcher_asset_manager_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_313_workspace_tool_launcher_asset_manager_report.md -rename to dev/reports/PR_11_313_workspace_tool_launcher_asset_manager_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_314_report.md b/dev/reports/PR_11_314_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_314_report.md -rename to dev/reports/PR_11_314_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_315_report.md b/dev/reports/PR_11_315_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_315_report.md -rename to dev/reports/PR_11_315_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_316_report.md b/dev/reports/PR_11_316_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_316_report.md -rename to dev/reports/PR_11_316_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_317_report.md b/dev/reports/PR_11_317_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_317_report.md -rename to dev/reports/PR_11_317_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_318A_report.md b/dev/reports/PR_11_318A_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_318A_report.md -rename to dev/reports/PR_11_318A_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_318B_report.md b/dev/reports/PR_11_318B_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_318B_report.md -rename to dev/reports/PR_11_318B_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_318C_report.md b/dev/reports/PR_11_318C_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_318C_report.md -rename to dev/reports/PR_11_318C_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_318D_report.md b/dev/reports/PR_11_318D_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_318D_report.md -rename to dev/reports/PR_11_318D_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_318E_report.md b/dev/reports/PR_11_318E_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_318E_report.md -rename to dev/reports/PR_11_318E_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_318_report.md b/dev/reports/PR_11_318_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_318_report.md -rename to dev/reports/PR_11_318_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_319_report.md b/dev/reports/PR_11_319_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_319_report.md -rename to dev/reports/PR_11_319_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_320_report.md b/dev/reports/PR_11_320_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_320_report.md -rename to dev/reports/PR_11_320_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_321_report.md b/dev/reports/PR_11_321_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_321_report.md -rename to dev/reports/PR_11_321_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_322_report.md b/dev/reports/PR_11_322_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_322_report.md -rename to dev/reports/PR_11_322_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_323_report.md b/dev/reports/PR_11_323_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_323_report.md -rename to dev/reports/PR_11_323_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_324_report.md b/dev/reports/PR_11_324_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_324_report.md -rename to dev/reports/PR_11_324_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_325_report.md b/dev/reports/PR_11_325_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_325_report.md -rename to dev/reports/PR_11_325_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_326_report.md b/dev/reports/PR_11_326_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_326_report.md -rename to dev/reports/PR_11_326_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_327_report.md b/dev/reports/PR_11_327_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_327_report.md -rename to dev/reports/PR_11_327_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_32_validation_template.txt b/dev/reports/PR_11_32_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_32_validation_template.txt -rename to dev/reports/PR_11_32_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_33_validation.txt b/dev/reports/PR_11_33_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_33_validation.txt -rename to dev/reports/PR_11_33_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_33_validation_template.txt b/dev/reports/PR_11_33_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_33_validation_template.txt -rename to dev/reports/PR_11_33_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_34_validation.txt b/dev/reports/PR_11_34_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_34_validation.txt -rename to dev/reports/PR_11_34_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_34_vector_tool_comparison.md b/dev/reports/PR_11_34_vector_tool_comparison.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_34_vector_tool_comparison.md -rename to dev/reports/PR_11_34_vector_tool_comparison.md -diff --git a/dev/docs_build/dev/reports/PR_11_34_vector_tool_comparison_template.md b/dev/reports/PR_11_34_vector_tool_comparison_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_34_vector_tool_comparison_template.md -rename to dev/reports/PR_11_34_vector_tool_comparison_template.md -diff --git a/dev/docs_build/dev/reports/PR_11_35_vector_tool_naming_recommendation.txt b/dev/reports/PR_11_35_vector_tool_naming_recommendation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_35_vector_tool_naming_recommendation.txt -rename to dev/reports/PR_11_35_vector_tool_naming_recommendation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_37_deep_rename_validation.txt b/dev/reports/PR_11_37_deep_rename_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_37_deep_rename_validation.txt -rename to dev/reports/PR_11_37_deep_rename_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_37_deep_rename_validation_template.txt b/dev/reports/PR_11_37_deep_rename_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_37_deep_rename_validation_template.txt -rename to dev/reports/PR_11_37_deep_rename_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_3_VISUAL_HIERARCHY_AND_SPACING_REFINEMENT_report.md b/dev/reports/PR_11_3_VISUAL_HIERARCHY_AND_SPACING_REFINEMENT_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_3_VISUAL_HIERARCHY_AND_SPACING_REFINEMENT_report.md -rename to dev/reports/PR_11_3_VISUAL_HIERARCHY_AND_SPACING_REFINEMENT_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_41_sample_json_ownership_audit.md b/dev/reports/PR_11_41_sample_json_ownership_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_41_sample_json_ownership_audit.md -rename to dev/reports/PR_11_41_sample_json_ownership_audit.md -diff --git a/dev/docs_build/dev/reports/PR_11_41_sample_json_ownership_audit_template.md b/dev/reports/PR_11_41_sample_json_ownership_audit_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_41_sample_json_ownership_audit_template.md -rename to dev/reports/PR_11_41_sample_json_ownership_audit_template.md -diff --git a/dev/docs_build/dev/reports/PR_11_41_validation.txt b/dev/reports/PR_11_41_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_41_validation.txt -rename to dev/reports/PR_11_41_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_41_validation_template.txt b/dev/reports/PR_11_41_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_41_validation_template.txt -rename to dev/reports/PR_11_41_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_42_validation.txt b/dev/reports/PR_11_42_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_42_validation.txt -rename to dev/reports/PR_11_42_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_42_validation_template.txt b/dev/reports/PR_11_42_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_42_validation_template.txt -rename to dev/reports/PR_11_42_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_43_cleanup_batch_1.md b/dev/reports/PR_11_43_cleanup_batch_1.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_43_cleanup_batch_1.md -rename to dev/reports/PR_11_43_cleanup_batch_1.md -diff --git a/dev/docs_build/dev/reports/PR_11_43_cleanup_batch_1_template.md b/dev/reports/PR_11_43_cleanup_batch_1_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_43_cleanup_batch_1_template.md -rename to dev/reports/PR_11_43_cleanup_batch_1_template.md -diff --git a/dev/docs_build/dev/reports/PR_11_43_validation.txt b/dev/reports/PR_11_43_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_43_validation.txt -rename to dev/reports/PR_11_43_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_43_validation_template.txt b/dev/reports/PR_11_43_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_43_validation_template.txt -rename to dev/reports/PR_11_43_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_44_cleanup_batch_2.md b/dev/reports/PR_11_44_cleanup_batch_2.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_44_cleanup_batch_2.md -rename to dev/reports/PR_11_44_cleanup_batch_2.md -diff --git a/dev/docs_build/dev/reports/PR_11_44_cleanup_batch_2_template.md b/dev/reports/PR_11_44_cleanup_batch_2_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_44_cleanup_batch_2_template.md -rename to dev/reports/PR_11_44_cleanup_batch_2_template.md -diff --git a/dev/docs_build/dev/reports/PR_11_44_validation.txt b/dev/reports/PR_11_44_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_44_validation.txt -rename to dev/reports/PR_11_44_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_44_validation_template.txt b/dev/reports/PR_11_44_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_44_validation_template.txt -rename to dev/reports/PR_11_44_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_45_validation_template.txt b/dev/reports/PR_11_45_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_45_validation_template.txt -rename to dev/reports/PR_11_45_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_46_cleanup_batch_3.md b/dev/reports/PR_11_46_cleanup_batch_3.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_46_cleanup_batch_3.md -rename to dev/reports/PR_11_46_cleanup_batch_3.md -diff --git a/dev/docs_build/dev/reports/PR_11_46_cleanup_batch_3_template.md b/dev/reports/PR_11_46_cleanup_batch_3_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_46_cleanup_batch_3_template.md -rename to dev/reports/PR_11_46_cleanup_batch_3_template.md -diff --git a/dev/docs_build/dev/reports/PR_11_46_validation.txt b/dev/reports/PR_11_46_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_46_validation.txt -rename to dev/reports/PR_11_46_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_46_validation_template.txt b/dev/reports/PR_11_46_validation_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_46_validation_template.txt -rename to dev/reports/PR_11_46_validation_template.txt -diff --git a/dev/docs_build/dev/reports/PR_11_47_complex_json_classification.md b/dev/reports/PR_11_47_complex_json_classification.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_47_complex_json_classification.md -rename to dev/reports/PR_11_47_complex_json_classification.md -diff --git a/dev/docs_build/dev/reports/PR_11_47_complex_json_classification_template.md b/dev/reports/PR_11_47_complex_json_classification_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_47_complex_json_classification_template.md -rename to dev/reports/PR_11_47_complex_json_classification_template.md -diff --git a/dev/docs_build/dev/reports/PR_11_48_validation.txt b/dev/reports/PR_11_48_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_48_validation.txt -rename to dev/reports/PR_11_48_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_49_audit_after.txt b/dev/reports/PR_11_49_audit_after.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_49_audit_after.txt -rename to dev/reports/PR_11_49_audit_after.txt -diff --git a/dev/docs_build/dev/reports/PR_11_49_audit_before.txt b/dev/reports/PR_11_49_audit_before.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_49_audit_before.txt -rename to dev/reports/PR_11_49_audit_before.txt -diff --git a/dev/docs_build/dev/reports/PR_11_49_controlled_json_cleanup_prompt.md b/dev/reports/PR_11_49_controlled_json_cleanup_prompt.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_49_controlled_json_cleanup_prompt.md -rename to dev/reports/PR_11_49_controlled_json_cleanup_prompt.md -diff --git a/dev/docs_build/dev/reports/PR_11_49_controlled_json_cleanup_report.md b/dev/reports/PR_11_49_controlled_json_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_49_controlled_json_cleanup_report.md -rename to dev/reports/PR_11_49_controlled_json_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_4_FINAL_UI_POLISH_AND_CONSISTENCY_PASS_report.md b/dev/reports/PR_11_4_FINAL_UI_POLISH_AND_CONSISTENCY_PASS_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_4_FINAL_UI_POLISH_AND_CONSISTENCY_PASS_report.md -rename to dev/reports/PR_11_4_FINAL_UI_POLISH_AND_CONSISTENCY_PASS_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_50_audit_after.txt b/dev/reports/PR_11_50_audit_after.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_50_audit_after.txt -rename to dev/reports/PR_11_50_audit_after.txt -diff --git a/dev/docs_build/dev/reports/PR_11_50_audit_before.txt b/dev/reports/PR_11_50_audit_before.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_50_audit_before.txt -rename to dev/reports/PR_11_50_audit_before.txt -diff --git a/dev/docs_build/dev/reports/PR_11_50_controlled_json_cleanup_report.md b/dev/reports/PR_11_50_controlled_json_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_50_controlled_json_cleanup_report.md -rename to dev/reports/PR_11_50_controlled_json_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_50_validation_plan.md b/dev/reports/PR_11_50_validation_plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_50_validation_plan.md -rename to dev/reports/PR_11_50_validation_plan.md -diff --git a/dev/docs_build/dev/reports/PR_11_51_audit_after.txt b/dev/reports/PR_11_51_audit_after.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_51_audit_after.txt -rename to dev/reports/PR_11_51_audit_after.txt -diff --git a/dev/docs_build/dev/reports/PR_11_51_audit_before.txt b/dev/reports/PR_11_51_audit_before.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_51_audit_before.txt -rename to dev/reports/PR_11_51_audit_before.txt -diff --git a/dev/docs_build/dev/reports/PR_11_51_audit_report.md b/dev/reports/PR_11_51_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_51_audit_report.md -rename to dev/reports/PR_11_51_audit_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_51_targeted_reference_checks.txt b/dev/reports/PR_11_51_targeted_reference_checks.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_51_targeted_reference_checks.txt -rename to dev/reports/PR_11_51_targeted_reference_checks.txt -diff --git a/dev/docs_build/dev/reports/PR_11_52_audit_after.txt b/dev/reports/PR_11_52_audit_after.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_52_audit_after.txt -rename to dev/reports/PR_11_52_audit_after.txt -diff --git a/dev/docs_build/dev/reports/PR_11_52_audit_before.txt b/dev/reports/PR_11_52_audit_before.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_52_audit_before.txt -rename to dev/reports/PR_11_52_audit_before.txt -diff --git a/dev/docs_build/dev/reports/PR_11_52_audit_report.md b/dev/reports/PR_11_52_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_52_audit_report.md -rename to dev/reports/PR_11_52_audit_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_52_candidate_validation.txt b/dev/reports/PR_11_52_candidate_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_52_candidate_validation.txt -rename to dev/reports/PR_11_52_candidate_validation.txt -diff --git a/dev/docs_build/dev/reports/PR_11_54_audit_after.txt b/dev/reports/PR_11_54_audit_after.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_54_audit_after.txt -rename to dev/reports/PR_11_54_audit_after.txt -diff --git a/dev/docs_build/dev/reports/PR_11_54_audit_before.txt b/dev/reports/PR_11_54_audit_before.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_54_audit_before.txt -rename to dev/reports/PR_11_54_audit_before.txt -diff --git a/dev/docs_build/dev/reports/PR_11_54_candidate_reference_checks.md b/dev/reports/PR_11_54_candidate_reference_checks.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_54_candidate_reference_checks.md -rename to dev/reports/PR_11_54_candidate_reference_checks.md -diff --git a/dev/docs_build/dev/reports/PR_11_54_controlled_json_cleanup_8_report.md b/dev/reports/PR_11_54_controlled_json_cleanup_8_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_54_controlled_json_cleanup_8_report.md -rename to dev/reports/PR_11_54_controlled_json_cleanup_8_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_56_metadata_reference_cleanup_report.md b/dev/reports/PR_11_56_metadata_reference_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_56_metadata_reference_cleanup_report.md -rename to dev/reports/PR_11_56_metadata_reference_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_57_audit_after.txt b/dev/reports/PR_11_57_audit_after.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_57_audit_after.txt -rename to dev/reports/PR_11_57_audit_after.txt -diff --git a/dev/docs_build/dev/reports/PR_11_57_audit_before.txt b/dev/reports/PR_11_57_audit_before.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_57_audit_before.txt -rename to dev/reports/PR_11_57_audit_before.txt -diff --git a/dev/docs_build/dev/reports/PR_11_57_cleanup_actions.json b/dev/reports/PR_11_57_cleanup_actions.json -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_57_cleanup_actions.json -rename to dev/reports/PR_11_57_cleanup_actions.json -diff --git a/dev/docs_build/dev/reports/PR_11_57_validation.md b/dev/reports/PR_11_57_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_57_validation.md -rename to dev/reports/PR_11_57_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_59_audit_after.txt b/dev/reports/PR_11_59_audit_after.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_59_audit_after.txt -rename to dev/reports/PR_11_59_audit_after.txt -diff --git a/dev/docs_build/dev/reports/PR_11_59_audit_before.txt b/dev/reports/PR_11_59_audit_before.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_59_audit_before.txt -rename to dev/reports/PR_11_59_audit_before.txt -diff --git a/dev/docs_build/dev/reports/PR_11_59_audit_report.md b/dev/reports/PR_11_59_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_59_audit_report.md -rename to dev/reports/PR_11_59_audit_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_59_candidate_classification.md b/dev/reports/PR_11_59_candidate_classification.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_59_candidate_classification.md -rename to dev/reports/PR_11_59_candidate_classification.md -diff --git a/dev/docs_build/dev/reports/PR_11_59_candidate_paths.txt b/dev/reports/PR_11_59_candidate_paths.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_59_candidate_paths.txt -rename to dev/reports/PR_11_59_candidate_paths.txt -diff --git a/dev/docs_build/dev/reports/PR_11_59_cleanup_actions.json b/dev/reports/PR_11_59_cleanup_actions.json -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_59_cleanup_actions.json -rename to dev/reports/PR_11_59_cleanup_actions.json -diff --git a/dev/docs_build/dev/reports/PR_11_59_expected_report.md b/dev/reports/PR_11_59_expected_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_59_expected_report.md -rename to dev/reports/PR_11_59_expected_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_59_safe_candidates.json b/dev/reports/PR_11_59_safe_candidates.json -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_59_safe_candidates.json -rename to dev/reports/PR_11_59_safe_candidates.json -diff --git a/dev/docs_build/dev/reports/PR_11_5_WORKSPACE_HEADER_BUTTON_NORMALIZATION_report.md b/dev/reports/PR_11_5_WORKSPACE_HEADER_BUTTON_NORMALIZATION_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_5_WORKSPACE_HEADER_BUTTON_NORMALIZATION_report.md -rename to dev/reports/PR_11_5_WORKSPACE_HEADER_BUTTON_NORMALIZATION_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_60_audit_after.txt b/dev/reports/PR_11_60_audit_after.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_60_audit_after.txt -rename to dev/reports/PR_11_60_audit_after.txt -diff --git a/dev/docs_build/dev/reports/PR_11_60_audit_before.txt b/dev/reports/PR_11_60_audit_before.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_60_audit_before.txt -rename to dev/reports/PR_11_60_audit_before.txt -diff --git a/dev/docs_build/dev/reports/PR_11_60_audit_report.md b/dev/reports/PR_11_60_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_60_audit_report.md -rename to dev/reports/PR_11_60_audit_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_60_candidate_validation.md b/dev/reports/PR_11_60_candidate_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_60_candidate_validation.md -rename to dev/reports/PR_11_60_candidate_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_60_cleanup_actions.json b/dev/reports/PR_11_60_cleanup_actions.json -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_60_cleanup_actions.json -rename to dev/reports/PR_11_60_cleanup_actions.json -diff --git a/dev/docs_build/dev/reports/PR_11_60_cleanup_summary.md b/dev/reports/PR_11_60_cleanup_summary.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_60_cleanup_summary.md -rename to dev/reports/PR_11_60_cleanup_summary.md -diff --git a/dev/docs_build/dev/reports/PR_11_60_expected_validation.md b/dev/reports/PR_11_60_expected_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_60_expected_validation.md -rename to dev/reports/PR_11_60_expected_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_61_audit_after.txt b/dev/reports/PR_11_61_audit_after.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_61_audit_after.txt -rename to dev/reports/PR_11_61_audit_after.txt -diff --git a/dev/docs_build/dev/reports/PR_11_61_audit_before.txt b/dev/reports/PR_11_61_audit_before.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_61_audit_before.txt -rename to dev/reports/PR_11_61_audit_before.txt -diff --git a/dev/docs_build/dev/reports/PR_11_61_bulk_metadata_cleanup_report.md b/dev/reports/PR_11_61_bulk_metadata_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_61_bulk_metadata_cleanup_report.md -rename to dev/reports/PR_11_61_bulk_metadata_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_61_candidate_validation.md b/dev/reports/PR_11_61_candidate_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_61_candidate_validation.md -rename to dev/reports/PR_11_61_candidate_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_61_cleanup_actions.json b/dev/reports/PR_11_61_cleanup_actions.json -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_61_cleanup_actions.json -rename to dev/reports/PR_11_61_cleanup_actions.json -diff --git a/dev/docs_build/dev/reports/PR_11_61_expected_report_template.md b/dev/reports/PR_11_61_expected_report_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_61_expected_report_template.md -rename to dev/reports/PR_11_61_expected_report_template.md -diff --git a/dev/docs_build/dev/reports/PR_11_67_expected_report.md b/dev/reports/PR_11_67_expected_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_67_expected_report.md -rename to dev/reports/PR_11_67_expected_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_67_sample_json_audit_closure.md b/dev/reports/PR_11_67_sample_json_audit_closure.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_67_sample_json_audit_closure.md -rename to dev/reports/PR_11_67_sample_json_audit_closure.md -diff --git a/dev/docs_build/dev/reports/PR_11_68_bundle_manifest.md b/dev/reports/PR_11_68_bundle_manifest.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_68_bundle_manifest.md -rename to dev/reports/PR_11_68_bundle_manifest.md -diff --git a/dev/docs_build/dev/reports/PR_11_68_sample_json_audit_lockdown_report.md b/dev/reports/PR_11_68_sample_json_audit_lockdown_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_68_sample_json_audit_lockdown_report.md -rename to dev/reports/PR_11_68_sample_json_audit_lockdown_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_71_validation.md b/dev/reports/PR_11_71_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_71_validation.md -rename to dev/reports/PR_11_71_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_74_expected_outputs.md b/dev/reports/PR_11_74_expected_outputs.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_74_expected_outputs.md -rename to dev/reports/PR_11_74_expected_outputs.md -diff --git a/dev/docs_build/dev/reports/PR_11_75_expected_report.md b/dev/reports/PR_11_75_expected_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_75_expected_report.md -rename to dev/reports/PR_11_75_expected_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_75_utils_consolidation_report.md b/dev/reports/PR_11_75_utils_consolidation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_75_utils_consolidation_report.md -rename to dev/reports/PR_11_75_utils_consolidation_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_75_utils_inventory.csv b/dev/reports/PR_11_75_utils_inventory.csv -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_75_utils_inventory.csv -rename to dev/reports/PR_11_75_utils_inventory.csv -diff --git a/dev/docs_build/dev/reports/PR_11_76_ACCEPTANCE_CHECKLIST.md b/dev/reports/PR_11_76_ACCEPTANCE_CHECKLIST.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_76_ACCEPTANCE_CHECKLIST.md -rename to dev/reports/PR_11_76_ACCEPTANCE_CHECKLIST.md -diff --git a/dev/docs_build/dev/reports/PR_11_76_ENGINE_UTILS_TO_SHARED_UTILS_report.md b/dev/reports/PR_11_76_ENGINE_UTILS_TO_SHARED_UTILS_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_76_ENGINE_UTILS_TO_SHARED_UTILS_report.md -rename to dev/reports/PR_11_76_ENGINE_UTILS_TO_SHARED_UTILS_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_78_ENGINE_UTILS_REFERENCE_CLOSURE_report.md b/dev/reports/PR_11_78_ENGINE_UTILS_REFERENCE_CLOSURE_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_78_ENGINE_UTILS_REFERENCE_CLOSURE_report.md -rename to dev/reports/PR_11_78_ENGINE_UTILS_REFERENCE_CLOSURE_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_78_validation_requirements.md b/dev/reports/PR_11_78_validation_requirements.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_78_validation_requirements.md -rename to dev/reports/PR_11_78_validation_requirements.md -diff --git a/dev/docs_build/dev/reports/PR_11_81_EXPECTED_REPORTS.md b/dev/reports/PR_11_81_EXPECTED_REPORTS.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_81_EXPECTED_REPORTS.md -rename to dev/reports/PR_11_81_EXPECTED_REPORTS.md -diff --git a/dev/docs_build/dev/reports/PR_11_86_validation.md b/dev/reports/PR_11_86_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_86_validation.md -rename to dev/reports/PR_11_86_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_87_validation.md b/dev/reports/PR_11_87_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_87_validation.md -rename to dev/reports/PR_11_87_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_8_TOOL_LINKED_SAMPLE_JSON_SSOT_AUDIT_report.md b/dev/reports/PR_11_8_TOOL_LINKED_SAMPLE_JSON_SSOT_AUDIT_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_8_TOOL_LINKED_SAMPLE_JSON_SSOT_AUDIT_report.md -rename to dev/reports/PR_11_8_TOOL_LINKED_SAMPLE_JSON_SSOT_AUDIT_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_91_validation.md b/dev/reports/PR_11_91_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_91_validation.md -rename to dev/reports/PR_11_91_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_92_findings.md b/dev/reports/PR_11_92_findings.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_92_findings.md -rename to dev/reports/PR_11_92_findings.md -diff --git a/dev/docs_build/dev/reports/PR_11_92_validation.md b/dev/reports/PR_11_92_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_92_validation.md -rename to dev/reports/PR_11_92_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_93_validation.md b/dev/reports/PR_11_93_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_93_validation.md -rename to dev/reports/PR_11_93_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_95_validation.md b/dev/reports/PR_11_95_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_95_validation.md -rename to dev/reports/PR_11_95_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_96_validation.md b/dev/reports/PR_11_96_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_96_validation.md -rename to dev/reports/PR_11_96_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_96_validation_checklist.md b/dev/reports/PR_11_96_validation_checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_96_validation_checklist.md -rename to dev/reports/PR_11_96_validation_checklist.md -diff --git a/dev/docs_build/dev/reports/PR_11_97_expected_validation.md b/dev/reports/PR_11_97_expected_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_97_expected_validation.md -rename to dev/reports/PR_11_97_expected_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_97_schema_validation.md b/dev/reports/PR_11_97_schema_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_97_schema_validation.md -rename to dev/reports/PR_11_97_schema_validation.md -diff --git a/dev/docs_build/dev/reports/PR_11_98_strict_schema_validation_and_usage_review_report.md b/dev/reports/PR_11_98_strict_schema_validation_and_usage_review_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_98_strict_schema_validation_and_usage_review_report.md -rename to dev/reports/PR_11_98_strict_schema_validation_and_usage_review_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_99_schema_failure_cleanup_report.md b/dev/reports/PR_11_99_schema_failure_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_99_schema_failure_cleanup_report.md -rename to dev/reports/PR_11_99_schema_failure_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_11_9_STANDALONE_SAMPLE_TOOL_JSON_DIRECT_LOAD_AUDIT_report.md b/dev/reports/PR_11_9_STANDALONE_SAMPLE_TOOL_JSON_DIRECT_LOAD_AUDIT_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_11_9_STANDALONE_SAMPLE_TOOL_JSON_DIRECT_LOAD_AUDIT_report.md -rename to dev/reports/PR_11_9_STANDALONE_SAMPLE_TOOL_JSON_DIRECT_LOAD_AUDIT_report.md -diff --git a/dev/docs_build/dev/reports/PR_26123_001_project_instructions_update_report.md b/dev/reports/PR_26123_001_project_instructions_update_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26123_001_project_instructions_update_report.md -rename to dev/reports/PR_26123_001_project_instructions_update_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_002_report.md b/dev/reports/PR_26124_002_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_002_report.md -rename to dev/reports/PR_26124_002_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_003_report.md b/dev/reports/PR_26124_003_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_003_report.md -rename to dev/reports/PR_26124_003_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_004_report.md b/dev/reports/PR_26124_004_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_004_report.md -rename to dev/reports/PR_26124_004_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_006_report.md b/dev/reports/PR_26124_006_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_006_report.md -rename to dev/reports/PR_26124_006_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_007_report.md b/dev/reports/PR_26124_007_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_007_report.md -rename to dev/reports/PR_26124_007_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_008_failing_tool_list.md b/dev/reports/PR_26124_008_failing_tool_list.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_008_failing_tool_list.md -rename to dev/reports/PR_26124_008_failing_tool_list.md -diff --git a/dev/docs_build/dev/reports/PR_26124_008_report.md b/dev/reports/PR_26124_008_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_008_report.md -rename to dev/reports/PR_26124_008_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_009_report.md b/dev/reports/PR_26124_009_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_009_report.md -rename to dev/reports/PR_26124_009_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_010_report.md b/dev/reports/PR_26124_010_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_010_report.md -rename to dev/reports/PR_26124_010_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_011_report.md b/dev/reports/PR_26124_011_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_011_report.md -rename to dev/reports/PR_26124_011_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_012_tool_state_terminology_report.md b/dev/reports/PR_26124_012_tool_state_terminology_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_012_tool_state_terminology_report.md -rename to dev/reports/PR_26124_012_tool_state_terminology_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_014_include_review_diff_report.md b/dev/reports/PR_26124_014_include_review_diff_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_014_include_review_diff_report.md -rename to dev/reports/PR_26124_014_include_review_diff_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_015_toolstate_producer_filtering_report.md b/dev/reports/PR_26124_015_toolstate_producer_filtering_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_015_toolstate_producer_filtering_report.md -rename to dev/reports/PR_26124_015_toolstate_producer_filtering_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_016_fix_playwright_toolstate_scope_report.md b/dev/reports/PR_26124_016_fix_playwright_toolstate_scope_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_016_fix_playwright_toolstate_scope_report.md -rename to dev/reports/PR_26124_016_fix_playwright_toolstate_scope_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_017_explicit_promote_to_tools_report.md b/dev/reports/PR_26124_017_explicit_promote_to_tools_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_017_explicit_promote_to_tools_report.md -rename to dev/reports/PR_26124_017_explicit_promote_to_tools_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_018_clarify_tools_vs_toolstate_ux_report.md b/dev/reports/PR_26124_018_clarify_tools_vs_toolstate_ux_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_018_clarify_tools_vs_toolstate_ux_report.md -rename to dev/reports/PR_26124_018_clarify_tools_vs_toolstate_ux_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_018_workspace_toolstate_lifecycle_ux_report.md b/dev/reports/PR_26124_018_workspace_toolstate_lifecycle_ux_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_018_workspace_toolstate_lifecycle_ux_report.md -rename to dev/reports/PR_26124_018_workspace_toolstate_lifecycle_ux_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_020_workspace_tools_reengineering_design_docs_report.md b/dev/reports/PR_26124_020_workspace_tools_reengineering_design_docs_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_020_workspace_tools_reengineering_design_docs_report.md -rename to dev/reports/PR_26124_020_workspace_tools_reengineering_design_docs_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_026_report.md b/dev/reports/PR_26124_026_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_026_report.md -rename to dev/reports/PR_26124_026_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_027_report.md b/dev/reports/PR_26124_027_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_027_report.md -rename to dev/reports/PR_26124_027_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_028_report.md b/dev/reports/PR_26124_028_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_028_report.md -rename to dev/reports/PR_26124_028_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_029_report.md b/dev/reports/PR_26124_029_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_029_report.md -rename to dev/reports/PR_26124_029_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_030_report.md b/dev/reports/PR_26124_030_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_030_report.md -rename to dev/reports/PR_26124_030_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_031_report.md b/dev/reports/PR_26124_031_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_031_report.md -rename to dev/reports/PR_26124_031_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_032_report.md b/dev/reports/PR_26124_032_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_032_report.md -rename to dev/reports/PR_26124_032_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_033_report.md b/dev/reports/PR_26124_033_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_033_report.md -rename to dev/reports/PR_26124_033_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_034_report.md b/dev/reports/PR_26124_034_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_034_report.md -rename to dev/reports/PR_26124_034_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_035_report.md b/dev/reports/PR_26124_035_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_035_report.md -rename to dev/reports/PR_26124_035_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_035_scrollbar_completion_report.md b/dev/reports/PR_26124_035_scrollbar_completion_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_035_scrollbar_completion_report.md -rename to dev/reports/PR_26124_035_scrollbar_completion_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_037_report.md b/dev/reports/PR_26124_037_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_037_report.md -rename to dev/reports/PR_26124_037_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_038_report.md b/dev/reports/PR_26124_038_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_038_report.md -rename to dev/reports/PR_26124_038_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_039_report.md b/dev/reports/PR_26124_039_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_039_report.md -rename to dev/reports/PR_26124_039_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_040_report.md b/dev/reports/PR_26124_040_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_040_report.md -rename to dev/reports/PR_26124_040_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_041_report.md b/dev/reports/PR_26124_041_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_041_report.md -rename to dev/reports/PR_26124_041_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_042_report.md b/dev/reports/PR_26124_042_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_042_report.md -rename to dev/reports/PR_26124_042_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_043_report.md b/dev/reports/PR_26124_043_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_043_report.md -rename to dev/reports/PR_26124_043_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_044_report.md b/dev/reports/PR_26124_044_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_044_report.md -rename to dev/reports/PR_26124_044_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_045_report.md b/dev/reports/PR_26124_045_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_045_report.md -rename to dev/reports/PR_26124_045_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_046_report.md b/dev/reports/PR_26124_046_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_046_report.md -rename to dev/reports/PR_26124_046_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_047_report.md b/dev/reports/PR_26124_047_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_047_report.md -rename to dev/reports/PR_26124_047_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_048_report.md b/dev/reports/PR_26124_048_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_048_report.md -rename to dev/reports/PR_26124_048_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_049_report.md b/dev/reports/PR_26124_049_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_049_report.md -rename to dev/reports/PR_26124_049_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_050_report.md b/dev/reports/PR_26124_050_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_050_report.md -rename to dev/reports/PR_26124_050_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_051_report.md b/dev/reports/PR_26124_051_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_051_report.md -rename to dev/reports/PR_26124_051_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_052_report.md b/dev/reports/PR_26124_052_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_052_report.md -rename to dev/reports/PR_26124_052_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_053_report.md b/dev/reports/PR_26124_053_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_053_report.md -rename to dev/reports/PR_26124_053_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_054_report.md b/dev/reports/PR_26124_054_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_054_report.md -rename to dev/reports/PR_26124_054_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_055_report.md b/dev/reports/PR_26124_055_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_055_report.md -rename to dev/reports/PR_26124_055_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_056_report.md b/dev/reports/PR_26124_056_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_056_report.md -rename to dev/reports/PR_26124_056_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_057_report.md b/dev/reports/PR_26124_057_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_057_report.md -rename to dev/reports/PR_26124_057_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/README.md b/dev/reports/PR_26124_058-palette-manager-restore-point__README.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/README.md -rename to dev/reports/PR_26124_058-palette-manager-restore-point__README.md -diff --git a/dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/controls/SourcePaletteBrowserControl.js b/dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__controls__SourcePaletteBrowserControl.js -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/controls/SourcePaletteBrowserControl.js -rename to dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__controls__SourcePaletteBrowserControl.js -diff --git a/dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/index.html b/dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__index.html -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/index.html -rename to dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__index.html -diff --git a/dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/modules/PaletteManagerApp.js b/dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__modules__PaletteManagerApp.js -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/modules/PaletteManagerApp.js -rename to dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__modules__PaletteManagerApp.js -diff --git a/dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/paletteManagerV2.css b/dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__paletteManagerV2.css -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_058-palette-manager-restore-point/tools/palette-manager-v2/paletteManagerV2.css -rename to dev/reports/PR_26124_058-palette-manager-restore-point__tools__palette-manager-v2__paletteManagerV2.css -diff --git a/dev/docs_build/dev/reports/PR_26124_058_report.md b/dev/reports/PR_26124_058_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_058_report.md -rename to dev/reports/PR_26124_058_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_059_report.md b/dev/reports/PR_26124_059_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_059_report.md -rename to dev/reports/PR_26124_059_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_060_report.md b/dev/reports/PR_26124_060_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_060_report.md -rename to dev/reports/PR_26124_060_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_061_report.md b/dev/reports/PR_26124_061_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_061_report.md -rename to dev/reports/PR_26124_061_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_063_report.md b/dev/reports/PR_26124_063_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_063_report.md -rename to dev/reports/PR_26124_063_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_064_report.md b/dev/reports/PR_26124_064_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_064_report.md -rename to dev/reports/PR_26124_064_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_065_report.md b/dev/reports/PR_26124_065_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_065_report.md -rename to dev/reports/PR_26124_065_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_066_report.md b/dev/reports/PR_26124_066_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_066_report.md -rename to dev/reports/PR_26124_066_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_068_report.md b/dev/reports/PR_26124_068_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_068_report.md -rename to dev/reports/PR_26124_068_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_069_report.md b/dev/reports/PR_26124_069_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_069_report.md -rename to dev/reports/PR_26124_069_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_070_report.md b/dev/reports/PR_26124_070_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_070_report.md -rename to dev/reports/PR_26124_070_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_071_report.md b/dev/reports/PR_26124_071_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_071_report.md -rename to dev/reports/PR_26124_071_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_072_rollback_report.md b/dev/reports/PR_26124_072_rollback_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_072_rollback_report.md -rename to dev/reports/PR_26124_072_rollback_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_073_report.md b/dev/reports/PR_26124_073_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_073_report.md -rename to dev/reports/PR_26124_073_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_074_report.md b/dev/reports/PR_26124_074_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_074_report.md -rename to dev/reports/PR_26124_074_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_075_report.md b/dev/reports/PR_26124_075_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_075_report.md -rename to dev/reports/PR_26124_075_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_076_report.md b/dev/reports/PR_26124_076_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_076_report.md -rename to dev/reports/PR_26124_076_report.md -diff --git a/dev/docs_build/dev/reports/PR_26124_077_report.md b/dev/reports/PR_26124_077_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26124_077_report.md -rename to dev/reports/PR_26124_077_report.md -diff --git a/dev/docs_build/dev/reports/PR_26126_082_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_082_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_082_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_082_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_082_asset_manager_v2_schema_validation_notes.md b/dev/reports/PR_26126_082_asset_manager_v2_schema_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_082_asset_manager_v2_schema_validation_notes.md -rename to dev/reports/PR_26126_082_asset_manager_v2_schema_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_082_schema_validation/game_manifest_schema_validation.csv b/dev/reports/PR_26126_082_schema_validation__game_manifest_schema_validation.csv -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_082_schema_validation/game_manifest_schema_validation.csv -rename to dev/reports/PR_26126_082_schema_validation__game_manifest_schema_validation.csv -diff --git a/dev/docs_build/dev/reports/PR_26126_082_schema_validation/sample_json_schema_validation.csv b/dev/reports/PR_26126_082_schema_validation__sample_json_schema_validation.csv -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_082_schema_validation/sample_json_schema_validation.csv -rename to dev/reports/PR_26126_082_schema_validation__sample_json_schema_validation.csv -diff --git a/dev/docs_build/dev/reports/PR_26126_082_schema_validation/schema_strictness_inventory.csv b/dev/reports/PR_26126_082_schema_validation__schema_strictness_inventory.csv -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_082_schema_validation/schema_strictness_inventory.csv -rename to dev/reports/PR_26126_082_schema_validation__schema_strictness_inventory.csv -diff --git a/dev/docs_build/dev/reports/PR_26126_082_schema_validation/schema_strictness_inventory.md b/dev/reports/PR_26126_082_schema_validation__schema_strictness_inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_082_schema_validation/schema_strictness_inventory.md -rename to dev/reports/PR_26126_082_schema_validation__schema_strictness_inventory.md -diff --git a/dev/docs_build/dev/reports/PR_26126_082_schema_validation/schema_usage_code_updates.md b/dev/reports/PR_26126_082_schema_validation__schema_usage_code_updates.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_082_schema_validation/schema_usage_code_updates.md -rename to dev/reports/PR_26126_082_schema_validation__schema_usage_code_updates.md -diff --git a/dev/docs_build/dev/reports/PR_26126_082_schema_validation/tool_payload_schema_validation.csv b/dev/reports/PR_26126_082_schema_validation__tool_payload_schema_validation.csv -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_082_schema_validation/tool_payload_schema_validation.csv -rename to dev/reports/PR_26126_082_schema_validation__tool_payload_schema_validation.csv -diff --git a/dev/docs_build/dev/reports/PR_26126_083_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_083_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_083_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_083_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_083_asset_manager_v2_theme_comparison_notes.md b/dev/reports/PR_26126_083_asset_manager_v2_theme_comparison_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_083_asset_manager_v2_theme_comparison_notes.md -rename to dev/reports/PR_26126_083_asset_manager_v2_theme_comparison_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_084_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_084_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_084_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_084_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_084_asset_manager_v2_path_normalization_notes.md b/dev/reports/PR_26126_084_asset_manager_v2_path_normalization_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_084_asset_manager_v2_path_normalization_notes.md -rename to dev/reports/PR_26126_084_asset_manager_v2_path_normalization_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_084_asset_manager_v2_schema_validation_notes.md b/dev/reports/PR_26126_084_asset_manager_v2_schema_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_084_asset_manager_v2_schema_validation_notes.md -rename to dev/reports/PR_26126_084_asset_manager_v2_schema_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_085_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_085_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_085_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_085_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_085_asset_manager_v2_schema_validation_notes.md b/dev/reports/PR_26126_085_asset_manager_v2_schema_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_085_asset_manager_v2_schema_validation_notes.md -rename to dev/reports/PR_26126_085_asset_manager_v2_schema_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_085_asset_manager_v2_ui_control_notes.md b/dev/reports/PR_26126_085_asset_manager_v2_ui_control_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_085_asset_manager_v2_ui_control_notes.md -rename to dev/reports/PR_26126_085_asset_manager_v2_ui_control_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_086_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_086_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_086_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_086_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_086_asset_manager_v2_ui_control_notes.md b/dev/reports/PR_26126_086_asset_manager_v2_ui_control_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_086_asset_manager_v2_ui_control_notes.md -rename to dev/reports/PR_26126_086_asset_manager_v2_ui_control_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_087_asset_manager_v2_accordion_behavior_notes.md b/dev/reports/PR_26126_087_asset_manager_v2_accordion_behavior_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_087_asset_manager_v2_accordion_behavior_notes.md -rename to dev/reports/PR_26126_087_asset_manager_v2_accordion_behavior_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_087_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_087_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_087_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_087_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_088_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_088_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_schema_consistency_notes.md b/dev/reports/PR_26126_088_asset_manager_v2_schema_consistency_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_schema_consistency_notes.md -rename to dev/reports/PR_26126_088_asset_manager_v2_schema_consistency_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_ui_layout_notes.md b/dev/reports/PR_26126_088_asset_manager_v2_ui_layout_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_ui_layout_notes.md -rename to dev/reports/PR_26126_088_asset_manager_v2_ui_layout_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_undo_redo_behavior_notes.md b/dev/reports/PR_26126_088_asset_manager_v2_undo_redo_behavior_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_088_asset_manager_v2_undo_redo_behavior_notes.md -rename to dev/reports/PR_26126_088_asset_manager_v2_undo_redo_behavior_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_089_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_089_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_089_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_089_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_089_asset_manager_v2_status_log_notes.md b/dev/reports/PR_26126_089_asset_manager_v2_status_log_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_089_asset_manager_v2_status_log_notes.md -rename to dev/reports/PR_26126_089_asset_manager_v2_status_log_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_089_asset_manager_v2_ui_control_notes.md b/dev/reports/PR_26126_089_asset_manager_v2_ui_control_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_089_asset_manager_v2_ui_control_notes.md -rename to dev/reports/PR_26126_089_asset_manager_v2_ui_control_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_090_asset_manager_v2_asset_id_naming_notes.md b/dev/reports/PR_26126_090_asset_manager_v2_asset_id_naming_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_090_asset_manager_v2_asset_id_naming_notes.md -rename to dev/reports/PR_26126_090_asset_manager_v2_asset_id_naming_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_090_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_090_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_090_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_090_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_090_asset_manager_v2_tile_layout_notes.md b/dev/reports/PR_26126_090_asset_manager_v2_tile_layout_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_090_asset_manager_v2_tile_layout_notes.md -rename to dev/reports/PR_26126_090_asset_manager_v2_tile_layout_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_bezel_stretch_override_notes.md b/dev/reports/PR_26126_091_asset_manager_v2_bezel_stretch_override_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_bezel_stretch_override_notes.md -rename to dev/reports/PR_26126_091_asset_manager_v2_bezel_stretch_override_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_inspector_behavior_notes.md b/dev/reports/PR_26126_091_asset_manager_v2_inspector_behavior_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_inspector_behavior_notes.md -rename to dev/reports/PR_26126_091_asset_manager_v2_inspector_behavior_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_091_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_091_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_type_kind_schema_notes.md b/dev/reports/PR_26126_091_asset_manager_v2_type_kind_schema_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_091_asset_manager_v2_type_kind_schema_notes.md -rename to dev/reports/PR_26126_091_asset_manager_v2_type_kind_schema_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_092_asset_manager_v2_color_asset_schema_notes.md b/dev/reports/PR_26126_092_asset_manager_v2_color_asset_schema_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_092_asset_manager_v2_color_asset_schema_notes.md -rename to dev/reports/PR_26126_092_asset_manager_v2_color_asset_schema_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_092_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_092_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_092_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_092_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_092_asset_manager_v2_palette_picker_notes.md b/dev/reports/PR_26126_092_asset_manager_v2_palette_picker_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_092_asset_manager_v2_palette_picker_notes.md -rename to dev/reports/PR_26126_092_asset_manager_v2_palette_picker_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_093_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_093_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_palette_sample_notes.md b/dev/reports/PR_26126_093_asset_manager_v2_palette_sample_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_palette_sample_notes.md -rename to dev/reports/PR_26126_093_asset_manager_v2_palette_sample_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_preview_path_resolution_notes.md b/dev/reports/PR_26126_093_asset_manager_v2_preview_path_resolution_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_preview_path_resolution_notes.md -rename to dev/reports/PR_26126_093_asset_manager_v2_preview_path_resolution_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_selected_asset_detail_notes.md b/dev/reports/PR_26126_093_asset_manager_v2_selected_asset_detail_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_093_asset_manager_v2_selected_asset_detail_notes.md -rename to dev/reports/PR_26126_093_asset_manager_v2_selected_asset_detail_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_094_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_094_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_palette_swatch_notes.md b/dev/reports/PR_26126_094_asset_manager_v2_palette_swatch_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_palette_swatch_notes.md -rename to dev/reports/PR_26126_094_asset_manager_v2_palette_swatch_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_preview_helper_location_notes.md b/dev/reports/PR_26126_094_asset_manager_v2_preview_helper_location_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_preview_helper_location_notes.md -rename to dev/reports/PR_26126_094_asset_manager_v2_preview_helper_location_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_selected_asset_detail_notes.md b/dev/reports/PR_26126_094_asset_manager_v2_selected_asset_detail_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_094_asset_manager_v2_selected_asset_detail_notes.md -rename to dev/reports/PR_26126_094_asset_manager_v2_selected_asset_detail_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_095_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_095_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_095_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_095_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_095_asset_manager_v2_preview_path_resolution_notes.md b/dev/reports/PR_26126_095_asset_manager_v2_preview_path_resolution_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_095_asset_manager_v2_preview_path_resolution_notes.md -rename to dev/reports/PR_26126_095_asset_manager_v2_preview_path_resolution_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_095_asset_manager_v2_selected_asset_detail_placement_notes.md b/dev/reports/PR_26126_095_asset_manager_v2_selected_asset_detail_placement_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_095_asset_manager_v2_selected_asset_detail_placement_notes.md -rename to dev/reports/PR_26126_095_asset_manager_v2_selected_asset_detail_placement_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_games_only_workspace_context_notes.md b/dev/reports/PR_26126_096_asset_manager_v2_games_only_workspace_context_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_games_only_workspace_context_notes.md -rename to dev/reports/PR_26126_096_asset_manager_v2_games_only_workspace_context_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_096_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_096_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_selected_detail_placement_notes.md b/dev/reports/PR_26126_096_asset_manager_v2_selected_detail_placement_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_selected_detail_placement_notes.md -rename to dev/reports/PR_26126_096_asset_manager_v2_selected_detail_placement_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_temporary_uat_session_root_notes.md b/dev/reports/PR_26126_096_asset_manager_v2_temporary_uat_session_root_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_096_asset_manager_v2_temporary_uat_session_root_notes.md -rename to dev/reports/PR_26126_096_asset_manager_v2_temporary_uat_session_root_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_097_asset_manager_v2_font_preview_notes.md b/dev/reports/PR_26126_097_asset_manager_v2_font_preview_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_097_asset_manager_v2_font_preview_notes.md -rename to dev/reports/PR_26126_097_asset_manager_v2_font_preview_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_097_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_097_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_097_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_097_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_097_asset_manager_v2_selected_detail_height_notes.md b/dev/reports/PR_26126_097_asset_manager_v2_selected_detail_height_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_097_asset_manager_v2_selected_detail_height_notes.md -rename to dev/reports/PR_26126_097_asset_manager_v2_selected_detail_height_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_098_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_098_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_098_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_098_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_098_asset_manager_v2_nav_import_export_notes.md b/dev/reports/PR_26126_098_asset_manager_v2_nav_import_export_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_098_asset_manager_v2_nav_import_export_notes.md -rename to dev/reports/PR_26126_098_asset_manager_v2_nav_import_export_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_098_asset_manager_v2_path_preservation_notes.md b/dev/reports/PR_26126_098_asset_manager_v2_path_preservation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_098_asset_manager_v2_path_preservation_notes.md -rename to dev/reports/PR_26126_098_asset_manager_v2_path_preservation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_099_asset_manager_v2_accordion_spacing_notes.md b/dev/reports/PR_26126_099_asset_manager_v2_accordion_spacing_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_099_asset_manager_v2_accordion_spacing_notes.md -rename to dev/reports/PR_26126_099_asset_manager_v2_accordion_spacing_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_099_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_099_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_099_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_099_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_100_asset_manager_v2_color_usage_id_notes.md b/dev/reports/PR_26126_100_asset_manager_v2_color_usage_id_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_100_asset_manager_v2_color_usage_id_notes.md -rename to dev/reports/PR_26126_100_asset_manager_v2_color_usage_id_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_100_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_100_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_100_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_100_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_100_asset_manager_v2_selected_detail_height_notes.md b/dev/reports/PR_26126_100_asset_manager_v2_selected_detail_height_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_100_asset_manager_v2_selected_detail_height_notes.md -rename to dev/reports/PR_26126_100_asset_manager_v2_selected_detail_height_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_101_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_101_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_101_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_101_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_101_asset_manager_v2_missing_file_logging_notes.md b/dev/reports/PR_26126_101_asset_manager_v2_missing_file_logging_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_101_asset_manager_v2_missing_file_logging_notes.md -rename to dev/reports/PR_26126_101_asset_manager_v2_missing_file_logging_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_101_asset_manager_v2_selected_swatch_notes.md b/dev/reports/PR_26126_101_asset_manager_v2_selected_swatch_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_101_asset_manager_v2_selected_swatch_notes.md -rename to dev/reports/PR_26126_101_asset_manager_v2_selected_swatch_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_102_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_102_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_102_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_102_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_102_asset_manager_v2_missing_file_tile_notes.md b/dev/reports/PR_26126_102_asset_manager_v2_missing_file_tile_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_102_asset_manager_v2_missing_file_tile_notes.md -rename to dev/reports/PR_26126_102_asset_manager_v2_missing_file_tile_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_103_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_103_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_103_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_103_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_103_asset_manager_v2_scope_cleanup_notes.md b/dev/reports/PR_26126_103_asset_manager_v2_scope_cleanup_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_103_asset_manager_v2_scope_cleanup_notes.md -rename to dev/reports/PR_26126_103_asset_manager_v2_scope_cleanup_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_104_asset_manager_v2_keyboard_removal_notes.md b/dev/reports/PR_26126_104_asset_manager_v2_keyboard_removal_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_104_asset_manager_v2_keyboard_removal_notes.md -rename to dev/reports/PR_26126_104_asset_manager_v2_keyboard_removal_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_104_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_104_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_104_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_104_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_105_asset_manager_v2_keyboard_cleanup_notes.md b/dev/reports/PR_26126_105_asset_manager_v2_keyboard_cleanup_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_105_asset_manager_v2_keyboard_cleanup_notes.md -rename to dev/reports/PR_26126_105_asset_manager_v2_keyboard_cleanup_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_105_asset_manager_v2_launch_guard_notes.md b/dev/reports/PR_26126_105_asset_manager_v2_launch_guard_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_105_asset_manager_v2_launch_guard_notes.md -rename to dev/reports/PR_26126_105_asset_manager_v2_launch_guard_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_105_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_105_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_105_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_105_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_106_asset_manager_v2_keyboard_cleanup_review_notes.md b/dev/reports/PR_26126_106_asset_manager_v2_keyboard_cleanup_review_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_106_asset_manager_v2_keyboard_cleanup_review_notes.md -rename to dev/reports/PR_26126_106_asset_manager_v2_keyboard_cleanup_review_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_106_asset_manager_v2_test_separation_notes.md b/dev/reports/PR_26126_106_asset_manager_v2_test_separation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_106_asset_manager_v2_test_separation_notes.md -rename to dev/reports/PR_26126_106_asset_manager_v2_test_separation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_106_asset_manager_v2_workspace_uat_notes.md b/dev/reports/PR_26126_106_asset_manager_v2_workspace_uat_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_106_asset_manager_v2_workspace_uat_notes.md -rename to dev/reports/PR_26126_106_asset_manager_v2_workspace_uat_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_107_asset_manager_v2_code_review_cleanup_notes.md b/dev/reports/PR_26126_107_asset_manager_v2_code_review_cleanup_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_107_asset_manager_v2_code_review_cleanup_notes.md -rename to dev/reports/PR_26126_107_asset_manager_v2_code_review_cleanup_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_107_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_107_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_107_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_107_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_108_asset_manager_v2_final_code_review_notes.md b/dev/reports/PR_26126_108_asset_manager_v2_final_code_review_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_108_asset_manager_v2_final_code_review_notes.md -rename to dev/reports/PR_26126_108_asset_manager_v2_final_code_review_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_108_asset_manager_v2_manual_validation_notes.md b/dev/reports/PR_26126_108_asset_manager_v2_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_108_asset_manager_v2_manual_validation_notes.md -rename to dev/reports/PR_26126_108_asset_manager_v2_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_109_manual_validation_notes.md b/dev/reports/PR_26126_109_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_109_manual_validation_notes.md -rename to dev/reports/PR_26126_109_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_109_test_script_ssot_notes.md b/dev/reports/PR_26126_109_test_script_ssot_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_109_test_script_ssot_notes.md -rename to dev/reports/PR_26126_109_test_script_ssot_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_110_manual_validation_notes.md b/dev/reports/PR_26126_110_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_110_manual_validation_notes.md -rename to dev/reports/PR_26126_110_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_110_test_directory_ssot_notes.md b/dev/reports/PR_26126_110_test_directory_ssot_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_110_test_directory_ssot_notes.md -rename to dev/reports/PR_26126_110_test_directory_ssot_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_110_workspace_launch_guard_notes.md b/dev/reports/PR_26126_110_workspace_launch_guard_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_110_workspace_launch_guard_notes.md -rename to dev/reports/PR_26126_110_workspace_launch_guard_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_111_manual_validation_notes.md b/dev/reports/PR_26126_111_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_111_manual_validation_notes.md -rename to dev/reports/PR_26126_111_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_111_workspace_manager_v2_bootstrap_notes.md b/dev/reports/PR_26126_111_workspace_manager_v2_bootstrap_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_111_workspace_manager_v2_bootstrap_notes.md -rename to dev/reports/PR_26126_111_workspace_manager_v2_bootstrap_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_112_deprecated_workspace_v2_notes.md b/dev/reports/PR_26126_112_deprecated_workspace_v2_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_112_deprecated_workspace_v2_notes.md -rename to dev/reports/PR_26126_112_deprecated_workspace_v2_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_112_manual_validation_notes.md b/dev/reports/PR_26126_112_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_112_manual_validation_notes.md -rename to dev/reports/PR_26126_112_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_112_theme_parity_notes.md b/dev/reports/PR_26126_112_theme_parity_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_112_theme_parity_notes.md -rename to dev/reports/PR_26126_112_theme_parity_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_113_asset_manager_integration_notes.md b/dev/reports/PR_26126_113_asset_manager_integration_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_113_asset_manager_integration_notes.md -rename to dev/reports/PR_26126_113_asset_manager_integration_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_113_manual_validation_notes.md b/dev/reports/PR_26126_113_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_113_manual_validation_notes.md -rename to dev/reports/PR_26126_113_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_113_workspace_session_launch_notes.md b/dev/reports/PR_26126_113_workspace_session_launch_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_113_workspace_session_launch_notes.md -rename to dev/reports/PR_26126_113_workspace_session_launch_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_114_generated_json_validation_notes.md b/dev/reports/PR_26126_114_generated_json_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_114_generated_json_validation_notes.md -rename to dev/reports/PR_26126_114_generated_json_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_114_manual_validation_notes.md b/dev/reports/PR_26126_114_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_114_manual_validation_notes.md -rename to dev/reports/PR_26126_114_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_114_workspace_schema_alignment_notes.md b/dev/reports/PR_26126_114_workspace_schema_alignment_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_114_workspace_schema_alignment_notes.md -rename to dev/reports/PR_26126_114_workspace_schema_alignment_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_115_generated_manifest_validation_notes.md b/dev/reports/PR_26126_115_generated_manifest_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_115_generated_manifest_validation_notes.md -rename to dev/reports/PR_26126_115_generated_manifest_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_115_manual_validation_notes.md b/dev/reports/PR_26126_115_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_115_manual_validation_notes.md -rename to dev/reports/PR_26126_115_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_115_workspace_manifest_ssot_notes.md b/dev/reports/PR_26126_115_workspace_manifest_ssot_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_115_workspace_manifest_ssot_notes.md -rename to dev/reports/PR_26126_115_workspace_manifest_ssot_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_116_manual_validation_notes.md b/dev/reports/PR_26126_116_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_116_manual_validation_notes.md -rename to dev/reports/PR_26126_116_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_116_save_manifest_notes.md b/dev/reports/PR_26126_116_save_manifest_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_116_save_manifest_notes.md -rename to dev/reports/PR_26126_116_save_manifest_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_116_v2_schema_naming_audit_notes.md b/dev/reports/PR_26126_116_v2_schema_naming_audit_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_116_v2_schema_naming_audit_notes.md -rename to dev/reports/PR_26126_116_v2_schema_naming_audit_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_116_workspace_launch_fix_notes.md b/dev/reports/PR_26126_116_workspace_launch_fix_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_116_workspace_launch_fix_notes.md -rename to dev/reports/PR_26126_116_workspace_launch_fix_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_117_asteroids_manifest_upgrade_notes.md b/dev/reports/PR_26126_117_asteroids_manifest_upgrade_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_117_asteroids_manifest_upgrade_notes.md -rename to dev/reports/PR_26126_117_asteroids_manifest_upgrade_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_117_manifest_validation_notes.md b/dev/reports/PR_26126_117_manifest_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_117_manifest_validation_notes.md -rename to dev/reports/PR_26126_117_manifest_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_117_manual_validation_notes.md b/dev/reports/PR_26126_117_manual_validation_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_117_manual_validation_notes.md -rename to dev/reports/PR_26126_117_manual_validation_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_117_return_to_workspace_notes.md b/dev/reports/PR_26126_117_return_to_workspace_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_117_return_to_workspace_notes.md -rename to dev/reports/PR_26126_117_return_to_workspace_notes.md -diff --git a/dev/docs_build/dev/reports/PR_26126_118_asteroids_asset_loading_notes.txt b/dev/reports/PR_26126_118_asteroids_asset_loading_notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_118_asteroids_asset_loading_notes.txt -rename to dev/reports/PR_26126_118_asteroids_asset_loading_notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26126_118_manifest_writeback_notes.txt b/dev/reports/PR_26126_118_manifest_writeback_notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_118_manifest_writeback_notes.txt -rename to dev/reports/PR_26126_118_manifest_writeback_notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26126_118_manual_validation_notes.txt b/dev/reports/PR_26126_118_manual_validation_notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_118_manual_validation_notes.txt -rename to dev/reports/PR_26126_118_manual_validation_notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26126_118_vector_map_manifest_notes.txt b/dev/reports/PR_26126_118_vector_map_manifest_notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_118_vector_map_manifest_notes.txt -rename to dev/reports/PR_26126_118_vector_map_manifest_notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26126_119_manifest_import_export_notes.txt b/dev/reports/PR_26126_119_manifest_import_export_notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_119_manifest_import_export_notes.txt -rename to dev/reports/PR_26126_119_manifest_import_export_notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26126_119_manual_validation_notes.txt b/dev/reports/PR_26126_119_manual_validation_notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_119_manual_validation_notes.txt -rename to dev/reports/PR_26126_119_manual_validation_notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26126_119_tool_tile_launch_notes.txt b/dev/reports/PR_26126_119_tool_tile_launch_notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_119_tool_tile_launch_notes.txt -rename to dev/reports/PR_26126_119_tool_tile_launch_notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26126_119_uat_ssot_notes.txt b/dev/reports/PR_26126_119_uat_ssot_notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26126_119_uat_ssot_notes.txt -rename to dev/reports/PR_26126_119_uat_ssot_notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26127_001-workspace-manager-v2-uat-template-manifest.md b/dev/reports/PR_26127_001-workspace-manager-v2-uat-template-manifest.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_001-workspace-manager-v2-uat-template-manifest.md -rename to dev/reports/PR_26127_001-workspace-manager-v2-uat-template-manifest.md -diff --git a/dev/docs_build/dev/reports/PR_26127_002-workspace-manager-v2-tools-control-and-nav.md b/dev/reports/PR_26127_002-workspace-manager-v2-tools-control-and-nav.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_002-workspace-manager-v2-tools-control-and-nav.md -rename to dev/reports/PR_26127_002-workspace-manager-v2-tools-control-and-nav.md -diff --git a/dev/docs_build/dev/reports/PR_26127_003-workspace-manager-v2-layout-space-fix.md b/dev/reports/PR_26127_003-workspace-manager-v2-layout-space-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_003-workspace-manager-v2-layout-space-fix.md -rename to dev/reports/PR_26127_003-workspace-manager-v2-layout-space-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26127_004-workspace-manager-v2-return-context-and-tool-launch-fixes.md b/dev/reports/PR_26127_004-workspace-manager-v2-return-context-and-tool-launch-fixes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_004-workspace-manager-v2-return-context-and-tool-launch-fixes.md -rename to dev/reports/PR_26127_004-workspace-manager-v2-return-context-and-tool-launch-fixes.md -diff --git a/dev/docs_build/dev/reports/PR_26127_005-workspace-manager-v2-tool-tile-cleanup-preview-fix.md b/dev/reports/PR_26127_005-workspace-manager-v2-tool-tile-cleanup-preview-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_005-workspace-manager-v2-tool-tile-cleanup-preview-fix.md -rename to dev/reports/PR_26127_005-workspace-manager-v2-tool-tile-cleanup-preview-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26127_006-preview-generator-v2-workspace-launch-hydration-fix.md b/dev/reports/PR_26127_006-preview-generator-v2-workspace-launch-hydration-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_006-preview-generator-v2-workspace-launch-hydration-fix.md -rename to dev/reports/PR_26127_006-preview-generator-v2-workspace-launch-hydration-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26127_006-preview-image-manifest-selection-and-launch-hydration.md b/dev/reports/PR_26127_006-preview-image-manifest-selection-and-launch-hydration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_006-preview-image-manifest-selection-and-launch-hydration.md -rename to dev/reports/PR_26127_006-preview-image-manifest-selection-and-launch-hydration.md -diff --git a/dev/docs_build/dev/reports/PR_26127_007-schema-alignment-preview-role-and-workspace-filtering.md b/dev/reports/PR_26127_007-schema-alignment-preview-role-and-workspace-filtering.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_007-schema-alignment-preview-role-and-workspace-filtering.md -rename to dev/reports/PR_26127_007-schema-alignment-preview-role-and-workspace-filtering.md -diff --git a/dev/docs_build/dev/reports/PR_26127_008-asset-role-preview-and-background-stretch.md b/dev/reports/PR_26127_008-asset-role-preview-and-background-stretch.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_008-asset-role-preview-and-background-stretch.md -rename to dev/reports/PR_26127_008-asset-role-preview-and-background-stretch.md -diff --git a/dev/docs_build/dev/reports/PR_26127_009-preview-svg-selection-and-background-hydration.md b/dev/reports/PR_26127_009-preview-svg-selection-and-background-hydration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_009-preview-svg-selection-and-background-hydration.md -rename to dev/reports/PR_26127_009-preview-svg-selection-and-background-hydration.md -diff --git a/dev/docs_build/dev/reports/PR_26127_010-workspace-json-copy-and-game-manifest-updates.md b/dev/reports/PR_26127_010-workspace-json-copy-and-game-manifest-updates.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_010-workspace-json-copy-and-game-manifest-updates.md -rename to dev/reports/PR_26127_010-workspace-json-copy-and-game-manifest-updates.md -diff --git a/dev/docs_build/dev/reports/PR_26127_011-workspace-v2-cleanup-and-status-clear-fix.md b/dev/reports/PR_26127_011-workspace-v2-cleanup-and-status-clear-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_011-workspace-v2-cleanup-and-status-clear-fix.md -rename to dev/reports/PR_26127_011-workspace-v2-cleanup-and-status-clear-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26127_012-preview-launch-ui-and-generate-enable-fix.md b/dev/reports/PR_26127_012-preview-launch-ui-and-generate-enable-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_012-preview-launch-ui-and-generate-enable-fix.md -rename to dev/reports/PR_26127_012-preview-launch-ui-and-generate-enable-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26127_013-status-header-order-and-preview-write-path-fix.md b/dev/reports/PR_26127_013-status-header-order-and-preview-write-path-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_013-status-header-order-and-preview-write-path-fix.md -rename to dev/reports/PR_26127_013-status-header-order-and-preview-write-path-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26127_014-preview-generator-real-repo-root-hydration.md b/dev/reports/PR_26127_014-preview-generator-real-repo-root-hydration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_014-preview-generator-real-repo-root-hydration.md -rename to dev/reports/PR_26127_014-preview-generator-real-repo-root-hydration.md -diff --git a/dev/docs_build/dev/reports/PR_26127_015-preview-generator-repo-root-resolution-fix.md b/dev/reports/PR_26127_015-preview-generator-repo-root-resolution-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_015-preview-generator-repo-root-resolution-fix.md -rename to dev/reports/PR_26127_015-preview-generator-repo-root-resolution-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26127_016-preview-generator-manifest-repo-path.md b/dev/reports/PR_26127_016-preview-generator-manifest-repo-path.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_016-preview-generator-manifest-repo-path.md -rename to dev/reports/PR_26127_016-preview-generator-manifest-repo-path.md -diff --git a/dev/docs_build/dev/reports/PR_26127_017-repo-path-manifest-hydration-fix.md b/dev/reports/PR_26127_017-repo-path-manifest-hydration-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_017-repo-path-manifest-hydration-fix.md -rename to dev/reports/PR_26127_017-repo-path-manifest-hydration-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26127_018-preview-repopath-debug-and-enable-fix.md b/dev/reports/PR_26127_018-preview-repopath-debug-and-enable-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26127_018-preview-repopath-debug-and-enable-fix.md -rename to dev/reports/PR_26127_018-preview-repopath-debug-and-enable-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26130_001-workspace-header-save-validation.md b/dev/reports/PR_26130_001-workspace-header-save-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_001-workspace-header-save-validation.md -rename to dev/reports/PR_26130_001-workspace-header-save-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26130_002-save-source-binding-validation.md b/dev/reports/PR_26130_002-save-source-binding-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_002-save-source-binding-validation.md -rename to dev/reports/PR_26130_002-save-source-binding-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26130_003-session-restore-file-handle-guard.md b/dev/reports/PR_26130_003-session-restore-file-handle-guard.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_003-session-restore-file-handle-guard.md -rename to dev/reports/PR_26130_003-session-restore-file-handle-guard.md -diff --git a/dev/docs_build/dev/reports/PR_26130_004-workspace-return-tool-enable-regression.md b/dev/reports/PR_26130_004-workspace-return-tool-enable-regression.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_004-workspace-return-tool-enable-regression.md -rename to dev/reports/PR_26130_004-workspace-return-tool-enable-regression.md -diff --git a/dev/docs_build/dev/reports/PR_26130_005-runtime-handle-state-visibility.md b/dev/reports/PR_26130_005-runtime-handle-state-visibility.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_005-runtime-handle-state-visibility.md -rename to dev/reports/PR_26130_005-runtime-handle-state-visibility.md -diff --git a/dev/docs_build/dev/reports/PR_26130_006-preview-generator-handle-write-verification.md b/dev/reports/PR_26130_006-preview-generator-handle-write-verification.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_006-preview-generator-handle-write-verification.md -rename to dev/reports/PR_26130_006-preview-generator-handle-write-verification.md -diff --git a/dev/docs_build/dev/reports/PR_26130_008-text2speach-v2-schema-queue.md b/dev/reports/PR_26130_008-text2speach-v2-schema-queue.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_008-text2speach-v2-schema-queue.md -rename to dev/reports/PR_26130_008-text2speach-v2-schema-queue.md -diff --git a/dev/docs_build/dev/reports/PR_26130_009-text2speach-v2-full-tts-options.md b/dev/reports/PR_26130_009-text2speach-v2-full-tts-options.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_009-text2speach-v2-full-tts-options.md -rename to dev/reports/PR_26130_009-text2speach-v2-full-tts-options.md -diff --git a/dev/docs_build/dev/reports/PR_26130_010-text2speach-v2-language-filtering.md b/dev/reports/PR_26130_010-text2speach-v2-language-filtering.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_010-text2speach-v2-language-filtering.md -rename to dev/reports/PR_26130_010-text2speach-v2-language-filtering.md -diff --git a/dev/docs_build/dev/reports/PR_26130_011-text2speach-v2-control-dependency-order.md b/dev/reports/PR_26130_011-text2speach-v2-control-dependency-order.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_011-text2speach-v2-control-dependency-order.md -rename to dev/reports/PR_26130_011-text2speach-v2-control-dependency-order.md -diff --git a/dev/docs_build/dev/reports/PR_26130_012-text2speach-v2-pitch-age-labels.md b/dev/reports/PR_26130_012-text2speach-v2-pitch-age-labels.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_012-text2speach-v2-pitch-age-labels.md -rename to dev/reports/PR_26130_012-text2speach-v2-pitch-age-labels.md -diff --git a/dev/docs_build/dev/reports/PR_26130_013-text-to-speech-v2-polish.md b/dev/reports/PR_26130_013-text-to-speech-v2-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_013-text-to-speech-v2-polish.md -rename to dev/reports/PR_26130_013-text-to-speech-v2-polish.md -diff --git a/dev/docs_build/dev/reports/PR_26130_014-tools-roadmap-tts-engine-planning.md b/dev/reports/PR_26130_014-tools-roadmap-tts-engine-planning.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_014-tools-roadmap-tts-engine-planning.md -rename to dev/reports/PR_26130_014-tools-roadmap-tts-engine-planning.md -diff --git a/dev/docs_build/dev/reports/PR_26130_015-text-to-speech-v2-layout-controls.md b/dev/reports/PR_26130_015-text-to-speech-v2-layout-controls.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_015-text-to-speech-v2-layout-controls.md -rename to dev/reports/PR_26130_015-text-to-speech-v2-layout-controls.md -diff --git a/dev/docs_build/dev/reports/PR_26130_016-text-to-speech-v2-named-speech-selection.md b/dev/reports/PR_26130_016-text-to-speech-v2-named-speech-selection.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_016-text-to-speech-v2-named-speech-selection.md -rename to dev/reports/PR_26130_016-text-to-speech-v2-named-speech-selection.md -diff --git a/dev/docs_build/dev/reports/PR_26130_017-text-to-speech-v2-queue-behavior-cleanup.md b/dev/reports/PR_26130_017-text-to-speech-v2-queue-behavior-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_017-text-to-speech-v2-queue-behavior-cleanup.md -rename to dev/reports/PR_26130_017-text-to-speech-v2-queue-behavior-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26130_018-text-to-speech-v2-workspace-nav-only.md b/dev/reports/PR_26130_018-text-to-speech-v2-workspace-nav-only.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_018-text-to-speech-v2-workspace-nav-only.md -rename to dev/reports/PR_26130_018-text-to-speech-v2-workspace-nav-only.md -diff --git a/dev/docs_build/dev/reports/PR_26130_018-text-to-speech-v2-workspace-save-contract.md b/dev/reports/PR_26130_018-text-to-speech-v2-workspace-save-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_018-text-to-speech-v2-workspace-save-contract.md -rename to dev/reports/PR_26130_018-text-to-speech-v2-workspace-save-contract.md -diff --git a/dev/docs_build/dev/reports/PR_26130_019-text-to-speech-v2-schema-and-tool-json-nav.md b/dev/reports/PR_26130_019-text-to-speech-v2-schema-and-tool-json-nav.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_019-text-to-speech-v2-schema-and-tool-json-nav.md -rename to dev/reports/PR_26130_019-text-to-speech-v2-schema-and-tool-json-nav.md -diff --git a/dev/docs_build/dev/reports/PR_26130_020-text-to-speech-v2-sample-json-source.md b/dev/reports/PR_26130_020-text-to-speech-v2-sample-json-source.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_020-text-to-speech-v2-sample-json-source.md -rename to dev/reports/PR_26130_020-text-to-speech-v2-sample-json-source.md -diff --git a/dev/docs_build/dev/reports/PR_26130_021-text-to-speech-v2-fullscreen-and-source-fix.md b/dev/reports/PR_26130_021-text-to-speech-v2-fullscreen-and-source-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_021-text-to-speech-v2-fullscreen-and-source-fix.md -rename to dev/reports/PR_26130_021-text-to-speech-v2-fullscreen-and-source-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26130_022-text-to-speech-v2-layout-schema-cleanup.md b/dev/reports/PR_26130_022-text-to-speech-v2-layout-schema-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_022-text-to-speech-v2-layout-schema-cleanup.md -rename to dev/reports/PR_26130_022-text-to-speech-v2-layout-schema-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26130_023-text-to-speech-v2-layout-height-fix.md b/dev/reports/PR_26130_023-text-to-speech-v2-layout-height-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_023-text-to-speech-v2-layout-height-fix.md -rename to dev/reports/PR_26130_023-text-to-speech-v2-layout-height-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26130_024-text-to-speech-v2-fullscreen-scroll-and-workspace-tile.md b/dev/reports/PR_26130_024-text-to-speech-v2-fullscreen-scroll-and-workspace-tile.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_024-text-to-speech-v2-fullscreen-scroll-and-workspace-tile.md -rename to dev/reports/PR_26130_024-text-to-speech-v2-fullscreen-scroll-and-workspace-tile.md -diff --git a/dev/docs_build/dev/reports/PR_26130_025-text-to-speech-v2-deep-rename-and-accordion-state.md b/dev/reports/PR_26130_025-text-to-speech-v2-deep-rename-and-accordion-state.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_025-text-to-speech-v2-deep-rename-and-accordion-state.md -rename to dev/reports/PR_26130_025-text-to-speech-v2-deep-rename-and-accordion-state.md -diff --git a/dev/docs_build/dev/reports/PR_26130_026-text-to-speech-v2-queue-removal-and-layout-fix.md b/dev/reports/PR_26130_026-text-to-speech-v2-queue-removal-and-layout-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_026-text-to-speech-v2-queue-removal-and-layout-fix.md -rename to dev/reports/PR_26130_026-text-to-speech-v2-queue-removal-and-layout-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26130_027-text-to-speech-v2-scrollbar-and-nav-css.md b/dev/reports/PR_26130_027-text-to-speech-v2-scrollbar-and-nav-css.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_027-text-to-speech-v2-scrollbar-and-nav-css.md -rename to dev/reports/PR_26130_027-text-to-speech-v2-scrollbar-and-nav-css.md -diff --git a/dev/docs_build/dev/reports/PR_26130_028-text-to-speech-v2-empty-array-save-fix.md b/dev/reports/PR_26130_028-text-to-speech-v2-empty-array-save-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_028-text-to-speech-v2-empty-array-save-fix.md -rename to dev/reports/PR_26130_028-text-to-speech-v2-empty-array-save-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26130_029-tools-index-cleanup-and-text-to-speech-count.md b/dev/reports/PR_26130_029-tools-index-cleanup-and-text-to-speech-count.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_029-tools-index-cleanup-and-text-to-speech-count.md -rename to dev/reports/PR_26130_029-tools-index-cleanup-and-text-to-speech-count.md -diff --git a/dev/docs_build/dev/reports/PR_26130_030-remove-deprecated-tools-and-align-tile-actions.md b/dev/reports/PR_26130_030-remove-deprecated-tools-and-align-tile-actions.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_030-remove-deprecated-tools-and-align-tile-actions.md -rename to dev/reports/PR_26130_030-remove-deprecated-tools-and-align-tile-actions.md -diff --git a/dev/docs_build/dev/reports/PR_26130_031-workspace-status-preview-and-text2speech-scroll-cleanup.md b/dev/reports/PR_26130_031-workspace-status-preview-and-text2speech-scroll-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_031-workspace-status-preview-and-text2speech-scroll-cleanup.md -rename to dev/reports/PR_26130_031-workspace-status-preview-and-text2speech-scroll-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26130_032-text-to-speech-v2-status-log-fill.md b/dev/reports/PR_26130_032-text-to-speech-v2-status-log-fill.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_032-text-to-speech-v2-status-log-fill.md -rename to dev/reports/PR_26130_032-text-to-speech-v2-status-log-fill.md -diff --git a/dev/docs_build/dev/reports/PR_26130_034-active-game-lifecycle-controls.md b/dev/reports/PR_26130_034-active-game-lifecycle-controls.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26130_034-active-game-lifecycle-controls.md -rename to dev/reports/PR_26130_034-active-game-lifecycle-controls.md -diff --git a/dev/docs_build/dev/reports/PR_26133_099-storage-preview-workspace-followup_report.md b/dev/reports/PR_26133_099-storage-preview-workspace-followup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_099-storage-preview-workspace-followup_report.md -rename to dev/reports/PR_26133_099-storage-preview-workspace-followup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_100-object-vector-shape-selection-fixes_report.md b/dev/reports/PR_26133_100-object-vector-shape-selection-fixes_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_100-object-vector-shape-selection-fixes_report.md -rename to dev/reports/PR_26133_100-object-vector-shape-selection-fixes_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_101-object-vector-zoom-and-layout-fixes_report.md b/dev/reports/PR_26133_101-object-vector-zoom-and-layout-fixes_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_101-object-vector-zoom-and-layout-fixes_report.md -rename to dev/reports/PR_26133_101-object-vector-zoom-and-layout-fixes_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_102-object-vector-scale-anchor-fix_report.md b/dev/reports/PR_26133_102-object-vector-scale-anchor-fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_102-object-vector-scale-anchor-fix_report.md -rename to dev/reports/PR_26133_102-object-vector-scale-anchor-fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_103-object-vector-snap-drag-fix_report.md b/dev/reports/PR_26133_103-object-vector-snap-drag-fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_103-object-vector-snap-drag-fix_report.md -rename to dev/reports/PR_26133_103-object-vector-snap-drag-fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_104-object-vector-transform-ui-cleanup_report.md b/dev/reports/PR_26133_104-object-vector-transform-ui-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_104-object-vector-transform-ui-cleanup_report.md -rename to dev/reports/PR_26133_104-object-vector-transform-ui-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_105-object-vector-snapline-scale-controls_report.md b/dev/reports/PR_26133_105-object-vector-snapline-scale-controls_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_105-object-vector-snapline-scale-controls_report.md -rename to dev/reports/PR_26133_105-object-vector-snapline-scale-controls_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_106-asteroids-bezel-rounding-fixes_report.md b/dev/reports/PR_26133_106-asteroids-bezel-rounding-fixes_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_106-asteroids-bezel-rounding-fixes_report.md -rename to dev/reports/PR_26133_106-asteroids-bezel-rounding-fixes_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_107-asteroids-bezel-collision-fixes_report.md b/dev/reports/PR_26133_107-asteroids-bezel-collision-fixes_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_107-asteroids-bezel-collision-fixes_report.md -rename to dev/reports/PR_26133_107-asteroids-bezel-collision-fixes_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_108-shared-vector-collision-and-bezel-fix_report.md b/dev/reports/PR_26133_108-shared-vector-collision-and-bezel-fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_108-shared-vector-collision-and-bezel-fix_report.md -rename to dev/reports/PR_26133_108-shared-vector-collision-and-bezel-fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_109-object-vector-fullscreen-pan-and-bezel-fix_report.md b/dev/reports/PR_26133_109-object-vector-fullscreen-pan-and-bezel-fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_109-object-vector-fullscreen-pan-and-bezel-fix_report.md -rename to dev/reports/PR_26133_109-object-vector-fullscreen-pan-and-bezel-fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_110-collision-inspector-and-background-flow_report.md b/dev/reports/PR_26133_110-collision-inspector-and-background-flow_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_110-collision-inspector-and-background-flow_report.md -rename to dev/reports/PR_26133_110-collision-inspector-and-background-flow_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_111-engine-background-render-pipeline_report.md b/dev/reports/PR_26133_111-engine-background-render-pipeline_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_111-engine-background-render-pipeline_report.md -rename to dev/reports/PR_26133_111-engine-background-render-pipeline_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_112-object-vector-shape-geometry-layout_report.md b/dev/reports/PR_26133_112-object-vector-shape-geometry-layout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_112-object-vector-shape-geometry-layout_report.md -rename to dev/reports/PR_26133_112-object-vector-shape-geometry-layout_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_113-manifest-vector-map-migration_report.md b/dev/reports/PR_26133_113-manifest-vector-map-migration_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_113-manifest-vector-map-migration_report.md -rename to dev/reports/PR_26133_113-manifest-vector-map-migration_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_114-asteroids-manifest-geometry-completion_report.md b/dev/reports/PR_26133_114-asteroids-manifest-geometry-completion_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_114-asteroids-manifest-geometry-completion_report.md -rename to dev/reports/PR_26133_114-asteroids-manifest-geometry-completion_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_115-object-vector-studio-manifest-map-cleanup_report.md b/dev/reports/PR_26133_115-object-vector-studio-manifest-map-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_115-object-vector-studio-manifest-map-cleanup_report.md -rename to dev/reports/PR_26133_115-object-vector-studio-manifest-map-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_116-asteroids-vector-map-ssoT-cleanup_report.md b/dev/reports/PR_26133_116-asteroids-vector-map-ssoT-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_116-asteroids-vector-map-ssoT-cleanup_report.md -rename to dev/reports/PR_26133_116-asteroids-vector-map-ssoT-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_117-asteroids-older-vector-geometry-restore_report.md b/dev/reports/PR_26133_117-asteroids-older-vector-geometry-restore_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_117-asteroids-older-vector-geometry-restore_report.md -rename to dev/reports/PR_26133_117-asteroids-older-vector-geometry-restore_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_118-asteroids-single-vector-geometry-source_report.md b/dev/reports/PR_26133_118-asteroids-single-vector-geometry-source_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_118-asteroids-single-vector-geometry-source_report.md -rename to dev/reports/PR_26133_118-asteroids-single-vector-geometry-source_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_119-object-vector-delete-and-manifest-cleanup_report.md b/dev/reports/PR_26133_119-object-vector-delete-and-manifest-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_119-object-vector-delete-and-manifest-cleanup_report.md -rename to dev/reports/PR_26133_119-object-vector-delete-and-manifest-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_120-object-vector-shapes-ssoT-cleanup_report.md b/dev/reports/PR_26133_120-object-vector-shapes-ssoT-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_120-object-vector-shapes-ssoT-cleanup_report.md -rename to dev/reports/PR_26133_120-object-vector-shapes-ssoT-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_121-object-vector-role-flatten-and-game-discovery_report.md b/dev/reports/PR_26133_121-object-vector-role-flatten-and-game-discovery_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_121-object-vector-role-flatten-and-game-discovery_report.md -rename to dev/reports/PR_26133_121-object-vector-role-flatten-and-game-discovery_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_122-object-vector-final-manifest-cleanup_report.md b/dev/reports/PR_26133_122-object-vector-final-manifest-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_122-object-vector-final-manifest-cleanup_report.md -rename to dev/reports/PR_26133_122-object-vector-final-manifest-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_123-object-vector-workspace-schema-cleanup_report.md b/dev/reports/PR_26133_123-object-vector-workspace-schema-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_123-object-vector-workspace-schema-cleanup_report.md -rename to dev/reports/PR_26133_123-object-vector-workspace-schema-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_124-object-vector-final-runtime-cleanup_report.md b/dev/reports/PR_26133_124-object-vector-final-runtime-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_124-object-vector-final-runtime-cleanup_report.md -rename to dev/reports/PR_26133_124-object-vector-final-runtime-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_125-asteroids-manifest-demo-attract-rendering_report.md b/dev/reports/PR_26133_125-asteroids-manifest-demo-attract-rendering_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_125-asteroids-manifest-demo-attract-rendering_report.md -rename to dev/reports/PR_26133_125-asteroids-manifest-demo-attract-rendering_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_126-asteroids-manifest-bullet-rotation_report.md b/dev/reports/PR_26133_126-asteroids-manifest-bullet-rotation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_126-asteroids-manifest-bullet-rotation_report.md -rename to dev/reports/PR_26133_126-asteroids-manifest-bullet-rotation_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_127-asteroids-manifest-render-path-cleanup_report.md b/dev/reports/PR_26133_127-asteroids-manifest-render-path-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_127-asteroids-manifest-render-path-cleanup_report.md -rename to dev/reports/PR_26133_127-asteroids-manifest-render-path-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_128-asteroids-effect-render-path-audit_report.md b/dev/reports/PR_26133_128-asteroids-effect-render-path-audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_128-asteroids-effect-render-path-audit_report.md -rename to dev/reports/PR_26133_128-asteroids-effect-render-path-audit_report.md -diff --git a/dev/docs_build/dev/reports/PR_26133_129-asteroids-manifest-runtime-normalization_report.md b/dev/reports/PR_26133_129-asteroids-manifest-runtime-normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26133_129-asteroids-manifest-runtime-normalization_report.md -rename to dev/reports/PR_26133_129-asteroids-manifest-runtime-normalization_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_001-asteroids-dvg-manifest-geometry_report.md b/dev/reports/PR_26139_001-asteroids-dvg-manifest-geometry_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_001-asteroids-dvg-manifest-geometry_report.md -rename to dev/reports/PR_26139_001-asteroids-dvg-manifest-geometry_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_003-collision-inspector-v2_report.md b/dev/reports/PR_26139_003-collision-inspector-v2_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_003-collision-inspector-v2_report.md -rename to dev/reports/PR_26139_003-collision-inspector-v2_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_004-collision-inspector-engine-alignment_report.md b/dev/reports/PR_26139_004-collision-inspector-engine-alignment_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_004-collision-inspector-engine-alignment_report.md -rename to dev/reports/PR_26139_004-collision-inspector-engine-alignment_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_005-collision-inspector-shared-tool-polish_report.md b/dev/reports/PR_26139_005-collision-inspector-shared-tool-polish_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_005-collision-inspector-shared-tool-polish_report.md -rename to dev/reports/PR_26139_005-collision-inspector-shared-tool-polish_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_006-collision-inspector-template-layout-fixes_report.md b/dev/reports/PR_26139_006-collision-inspector-template-layout-fixes_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_006-collision-inspector-template-layout-fixes_report.md -rename to dev/reports/PR_26139_006-collision-inspector-template-layout-fixes_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_007-collision-inspector-results-layout_report.md b/dev/reports/PR_26139_007-collision-inspector-results-layout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_007-collision-inspector-results-layout_report.md -rename to dev/reports/PR_26139_007-collision-inspector-results-layout_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_008-collision-inspector-template-reset_report.md b/dev/reports/PR_26139_008-collision-inspector-template-reset_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_008-collision-inspector-template-reset_report.md -rename to dev/reports/PR_26139_008-collision-inspector-template-reset_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_009-collision-inspector-css-template-only_report.md b/dev/reports/PR_26139_009-collision-inspector-css-template-only_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_009-collision-inspector-css-template-only_report.md -rename to dev/reports/PR_26139_009-collision-inspector-css-template-only_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_010-collision-inspector-usability-polish_report.md b/dev/reports/PR_26139_010-collision-inspector-usability-polish_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_010-collision-inspector-usability-polish_report.md -rename to dev/reports/PR_26139_010-collision-inspector-usability-polish_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_011-shared-world-scale-normalization_report.md b/dev/reports/PR_26139_011-shared-world-scale-normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_011-shared-world-scale-normalization_report.md -rename to dev/reports/PR_26139_011-shared-world-scale-normalization_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_012-collision-orientation-runtime-alignment_report.md b/dev/reports/PR_26139_012-collision-orientation-runtime-alignment_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_012-collision-orientation-runtime-alignment_report.md -rename to dev/reports/PR_26139_012-collision-orientation-runtime-alignment_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_013-final-transform-pipeline-cleanup_report.md b/dev/reports/PR_26139_013-final-transform-pipeline-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_013-final-transform-pipeline-cleanup_report.md -rename to dev/reports/PR_26139_013-final-transform-pipeline-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_014-shared-transform-service-extraction_report.md b/dev/reports/PR_26139_014-shared-transform-service-extraction_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_014-shared-transform-service-extraction_report.md -rename to dev/reports/PR_26139_014-shared-transform-service-extraction_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_015-manifest-background-asset-resolution_report.md b/dev/reports/PR_26139_015-manifest-background-asset-resolution_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_015-manifest-background-asset-resolution_report.md -rename to dev/reports/PR_26139_015-manifest-background-asset-resolution_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_016-final-manifest-runtime-cleanup_report.md b/dev/reports/PR_26139_016-final-manifest-runtime-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_016-final-manifest-runtime-cleanup_report.md -rename to dev/reports/PR_26139_016-final-manifest-runtime-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_017-game-index-preview-manifest-resolution_report.md b/dev/reports/PR_26139_017-game-index-preview-manifest-resolution_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_017-game-index-preview-manifest-resolution_report.md -rename to dev/reports/PR_26139_017-game-index-preview-manifest-resolution_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_018-asset-manager-id-builder-fixes_report.md b/dev/reports/PR_26139_018-asset-manager-id-builder-fixes_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_018-asset-manager-id-builder-fixes_report.md -rename to dev/reports/PR_26139_018-asset-manager-id-builder-fixes_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_019-game-manifest-version-preview-normalization_report.md b/dev/reports/PR_26139_019-game-manifest-version-preview-normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_019-game-manifest-version-preview-normalization_report.md -rename to dev/reports/PR_26139_019-game-manifest-version-preview-normalization_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_020-remove-legacy-tool-references-from-game-manifests_report.md b/dev/reports/PR_26139_020-remove-legacy-tool-references-from-game-manifests_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_020-remove-legacy-tool-references-from-game-manifests_report.md -rename to dev/reports/PR_26139_020-remove-legacy-tool-references-from-game-manifests_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_021-manifest-tooling-normalization-followup_report.md b/dev/reports/PR_26139_021-manifest-tooling-normalization-followup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_021-manifest-tooling-normalization-followup_report.md -rename to dev/reports/PR_26139_021-manifest-tooling-normalization-followup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_022-final-manifest-audit-and-cleanup_report.md b/dev/reports/PR_26139_022-final-manifest-audit-and-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_022-final-manifest-audit-and-cleanup_report.md -rename to dev/reports/PR_26139_022-final-manifest-audit-and-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_023-shared-debug-config-normalization_report.md b/dev/reports/PR_26139_023-shared-debug-config-normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_023-shared-debug-config-normalization_report.md -rename to dev/reports/PR_26139_023-shared-debug-config-normalization_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_024-workspace-manager-schema-ref-resolution-fix_report.md b/dev/reports/PR_26139_024-workspace-manager-schema-ref-resolution-fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_024-workspace-manager-schema-ref-resolution-fix_report.md -rename to dev/reports/PR_26139_024-workspace-manager-schema-ref-resolution-fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_025-schema-regression-followup_report.md b/dev/reports/PR_26139_025-schema-regression-followup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_025-schema-regression-followup_report.md -rename to dev/reports/PR_26139_025-schema-regression-followup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_026-asteroids-weighted-beat-timing_report.md b/dev/reports/PR_26139_026-asteroids-weighted-beat-timing_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_026-asteroids-weighted-beat-timing_report.md -rename to dev/reports/PR_26139_026-asteroids-weighted-beat-timing_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_027-asteroids-beat-timing-helper-cleanup_report.md b/dev/reports/PR_26139_027-asteroids-beat-timing-helper-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_027-asteroids-beat-timing-helper-cleanup_report.md -rename to dev/reports/PR_26139_027-asteroids-beat-timing-helper-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_028-asteroids-game-scene-cleanup_report.md b/dev/reports/PR_26139_028-asteroids-game-scene-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_028-asteroids-game-scene-cleanup_report.md -rename to dev/reports/PR_26139_028-asteroids-game-scene-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_029-remove-skin-editor-and-skin-main-files_report.md b/dev/reports/PR_26139_029-remove-skin-editor-and-skin-main-files_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_029-remove-skin-editor-and-skin-main-files_report.md -rename to dev/reports/PR_26139_029-remove-skin-editor-and-skin-main-files_report.md -diff --git a/dev/docs_build/dev/reports/PR_26139_030-shared-utils-duplicate-method-extraction_report.md b/dev/reports/PR_26139_030-shared-utils-duplicate-method-extraction_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26139_030-shared-utils-duplicate-method-extraction_report.md -rename to dev/reports/PR_26139_030-shared-utils-duplicate-method-extraction_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_031-dupe-scanner-node-modules-exclusion_report.md b/dev/reports/PR_26140_031-dupe-scanner-node-modules-exclusion_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_031-dupe-scanner-node-modules-exclusion_report.md -rename to dev/reports/PR_26140_031-dupe-scanner-node-modules-exclusion_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_032-shared-utils-phase-1_report.md b/dev/reports/PR_26140_032-shared-utils-phase-1_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_032-shared-utils-phase-1_report.md -rename to dev/reports/PR_26140_032-shared-utils-phase-1_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_033-shared-utils-phase-2_report.md b/dev/reports/PR_26140_033-shared-utils-phase-2_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_033-shared-utils-phase-2_report.md -rename to dev/reports/PR_26140_033-shared-utils-phase-2_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_034-shared-utils-phase-3_report.md b/dev/reports/PR_26140_034-shared-utils-phase-3_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_034-shared-utils-phase-3_report.md -rename to dev/reports/PR_26140_034-shared-utils-phase-3_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_035-shared-utils-phase-4-finalization_report.md b/dev/reports/PR_26140_035-shared-utils-phase-4-finalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_035-shared-utils-phase-4-finalization_report.md -rename to dev/reports/PR_26140_035-shared-utils-phase-4-finalization_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_036-remove-import-alias-confusion_report.md b/dev/reports/PR_26140_036-remove-import-alias-confusion_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_036-remove-import-alias-confusion_report.md -rename to dev/reports/PR_26140_036-remove-import-alias-confusion_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_037-remove-export-alias-confusion_report.md b/dev/reports/PR_26140_037-remove-export-alias-confusion_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_037-remove-export-alias-confusion_report.md -rename to dev/reports/PR_26140_037-remove-export-alias-confusion_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_038-canonical-shared-utility-naming-final-pass_report.md b/dev/reports/PR_26140_038-canonical-shared-utility-naming-final-pass_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_038-canonical-shared-utility-naming-final-pass_report.md -rename to dev/reports/PR_26140_038-canonical-shared-utility-naming-final-pass_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_039-intentional-alias-ledger-guard_report.md b/dev/reports/PR_26140_039-intentional-alias-ledger-guard_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_039-intentional-alias-ledger-guard_report.md -rename to dev/reports/PR_26140_039-intentional-alias-ledger-guard_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_048-move-file-persistence-to-engine_report.md b/dev/reports/PR_26140_048-move-file-persistence-to-engine_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_048-move-file-persistence-to-engine_report.md -rename to dev/reports/PR_26140_048-move-file-persistence-to-engine_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_049-normalize-vector-tool-zoom-percent_report.md b/dev/reports/PR_26140_049-normalize-vector-tool-zoom-percent_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_049-normalize-vector-tool-zoom-percent_report.md -rename to dev/reports/PR_26140_049-normalize-vector-tool-zoom-percent_report.md -diff --git a/dev/docs_build/dev/reports/PR_26140_050-remove-vector-hidden-zoom-scale_report.md b/dev/reports/PR_26140_050-remove-vector-hidden-zoom-scale_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26140_050-remove-vector-hidden-zoom-scale_report.md -rename to dev/reports/PR_26140_050-remove-vector-hidden-zoom-scale_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_002-midi-studio-v2-details_validation.md b/dev/reports/PR_26146_002-midi-studio-v2-details_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_002-midi-studio-v2-details_validation.md -rename to dev/reports/PR_26146_002-midi-studio-v2-details_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_003-build-midi-tools-v2_validation.md b/dev/reports/PR_26146_003-build-midi-tools-v2_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_003-build-midi-tools-v2_validation.md -rename to dev/reports/PR_26146_003-build-midi-tools-v2_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_004-midi-studio-v2-real-playback-foundation_validation.md b/dev/reports/PR_26146_004-midi-studio-v2-real-playback-foundation_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_004-midi-studio-v2-real-playback-foundation_validation.md -rename to dev/reports/PR_26146_004-midi-studio-v2-real-playback-foundation_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_005-midi-studio-v2-midi-source-inspection_validation.md b/dev/reports/PR_26146_005-midi-studio-v2-midi-source-inspection_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_005-midi-studio-v2-midi-source-inspection_validation.md -rename to dev/reports/PR_26146_005-midi-studio-v2-midi-source-inspection_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_006-midi-studio-v2-header-actions-layout_validation.md b/dev/reports/PR_26146_006-midi-studio-v2-header-actions-layout_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_006-midi-studio-v2-header-actions-layout_validation.md -rename to dev/reports/PR_26146_006-midi-studio-v2-header-actions-layout_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_007-midi-studio-v2-shared-midi-parser-foundation_validation.md b/dev/reports/PR_26146_007-midi-studio-v2-shared-midi-parser-foundation_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_007-midi-studio-v2-shared-midi-parser-foundation_validation.md -rename to dev/reports/PR_26146_007-midi-studio-v2-shared-midi-parser-foundation_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_008-midi-studio-v2-normalized-event-timeline_validation.md b/dev/reports/PR_26146_008-midi-studio-v2-normalized-event-timeline_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_008-midi-studio-v2-normalized-event-timeline_validation.md -rename to dev/reports/PR_26146_008-midi-studio-v2-normalized-event-timeline_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_009-midi-studio-v2-song-sheet-foundation_validation.md b/dev/reports/PR_26146_009-midi-studio-v2-song-sheet-foundation_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_009-midi-studio-v2-song-sheet-foundation_validation.md -rename to dev/reports/PR_26146_009-midi-studio-v2-song-sheet-foundation_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_010-midi-studio-v2-guided-song-sheet-fields_validation.md b/dev/reports/PR_26146_010-midi-studio-v2-guided-song-sheet-fields_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_010-midi-studio-v2-guided-song-sheet-fields_validation.md -rename to dev/reports/PR_26146_010-midi-studio-v2-guided-song-sheet-fields_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_011-midi-studio-v2-multi-instrument-grid_validation.md b/dev/reports/PR_26146_011-midi-studio-v2-multi-instrument-grid_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_011-midi-studio-v2-multi-instrument-grid_validation.md -rename to dev/reports/PR_26146_011-midi-studio-v2-multi-instrument-grid_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_012-midi-studio-v2-grid-snapping-and-lane-generation_validation.md b/dev/reports/PR_26146_012-midi-studio-v2-grid-snapping-and-lane-generation_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_012-midi-studio-v2-grid-snapping-and-lane-generation_validation.md -rename to dev/reports/PR_26146_012-midi-studio-v2-grid-snapping-and-lane-generation_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_013-midi-studio-v2-playhead-loop-and-sections_validation.md b/dev/reports/PR_26146_013-midi-studio-v2-playhead-loop-and-sections_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_013-midi-studio-v2-playhead-loop-and-sections_validation.md -rename to dev/reports/PR_26146_013-midi-studio-v2-playhead-loop-and-sections_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_014-midi-studio-v2-uat-testability-and-guided-defaults_validation.md b/dev/reports/PR_26146_014-midi-studio-v2-uat-testability-and-guided-defaults_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_014-midi-studio-v2-uat-testability-and-guided-defaults_validation.md -rename to dev/reports/PR_26146_014-midi-studio-v2-uat-testability-and-guided-defaults_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_015-midi-studio-v2-uat-layout-repair_validation.md b/dev/reports/PR_26146_015-midi-studio-v2-uat-layout-repair_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_015-midi-studio-v2-uat-layout-repair_validation.md -rename to dev/reports/PR_26146_015-midi-studio-v2-uat-layout-repair_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_016-midi-studio-v2-audible-preview-engine_validation.md b/dev/reports/PR_26146_016-midi-studio-v2-audible-preview-engine_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_016-midi-studio-v2-audible-preview-engine_validation.md -rename to dev/reports/PR_26146_016-midi-studio-v2-audible-preview-engine_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_017-midi-studio-v2-preview-instrument-packs_validation.md b/dev/reports/PR_26146_017-midi-studio-v2-preview-instrument-packs_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_017-midi-studio-v2-preview-instrument-packs_validation.md -rename to dev/reports/PR_26146_017-midi-studio-v2-preview-instrument-packs_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_018-midi-studio-v2-playable-mvp-closeout_validation.md b/dev/reports/PR_26146_018-midi-studio-v2-playable-mvp-closeout_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_018-midi-studio-v2-playable-mvp-closeout_validation.md -rename to dev/reports/PR_26146_018-midi-studio-v2-playable-mvp-closeout_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_019-midi-studio-v2-spreadsheet-note-grid_validation.md b/dev/reports/PR_26146_019-midi-studio-v2-spreadsheet-note-grid_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_019-midi-studio-v2-spreadsheet-note-grid_validation.md -rename to dev/reports/PR_26146_019-midi-studio-v2-spreadsheet-note-grid_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_020-midi-studio-v2-signal-style-note-table_validation.md b/dev/reports/PR_26146_020-midi-studio-v2-signal-style-note-table_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_020-midi-studio-v2-signal-style-note-table_validation.md -rename to dev/reports/PR_26146_020-midi-studio-v2-signal-style-note-table_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_021-midi-studio-v2-testable-playable-build_validation.md b/dev/reports/PR_26146_021-midi-studio-v2-testable-playable-build_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_021-midi-studio-v2-testable-playable-build_validation.md -rename to dev/reports/PR_26146_021-midi-studio-v2-testable-playable-build_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_022-midi-studio-v2-uat-completion-build_validation.md b/dev/reports/PR_26146_022-midi-studio-v2-uat-completion-build_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_022-midi-studio-v2-uat-completion-build_validation.md -rename to dev/reports/PR_26146_022-midi-studio-v2-uat-completion-build_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_023-midi-studio-v2-uat-layout-roadmap-and-playable-manifest_validation.md b/dev/reports/PR_26146_023-midi-studio-v2-uat-layout-roadmap-and-playable-manifest_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_023-midi-studio-v2-uat-layout-roadmap-and-playable-manifest_validation.md -rename to dev/reports/PR_26146_023-midi-studio-v2-uat-layout-roadmap-and-playable-manifest_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_024-midi-studio-v2-studio-layout-correction_validation.md b/dev/reports/PR_26146_024-midi-studio-v2-studio-layout-correction_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_024-midi-studio-v2-studio-layout-correction_validation.md -rename to dev/reports/PR_26146_024-midi-studio-v2-studio-layout-correction_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_025-midi-studio-v2-timeline-instrument-rows-and-songs_validation.md b/dev/reports/PR_26146_025-midi-studio-v2-timeline-instrument-rows-and-songs_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_025-midi-studio-v2-timeline-instrument-rows-and-songs_validation.md -rename to dev/reports/PR_26146_025-midi-studio-v2-timeline-instrument-rows-and-songs_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_026-midi-studio-v2-uat-usability-and-sound-repair_validation.md b/dev/reports/PR_26146_026-midi-studio-v2-uat-usability-and-sound-repair_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_026-midi-studio-v2-uat-usability-and-sound-repair_validation.md -rename to dev/reports/PR_26146_026-midi-studio-v2-uat-usability-and-sound-repair_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_027-midi-studio-v2-instrument-import-and-layout-repair_validation.md b/dev/reports/PR_26146_027-midi-studio-v2-instrument-import-and-layout-repair_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_027-midi-studio-v2-instrument-import-and-layout-repair_validation.md -rename to dev/reports/PR_26146_027-midi-studio-v2-instrument-import-and-layout-repair_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_028-midi-studio-v2-octave-timeline-editor_validation.md b/dev/reports/PR_26146_028-midi-studio-v2-octave-timeline-editor_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_028-midi-studio-v2-octave-timeline-editor_validation.md -rename to dev/reports/PR_26146_028-midi-studio-v2-octave-timeline-editor_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_029-midi-studio-v2-octave-grid-density-and-chords_validation.md b/dev/reports/PR_26146_029-midi-studio-v2-octave-grid-density-and-chords_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_029-midi-studio-v2-octave-grid-density-and-chords_validation.md -rename to dev/reports/PR_26146_029-midi-studio-v2-octave-grid-density-and-chords_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_030-midi-studio-v2-instrument-row-polish_validation.md b/dev/reports/PR_26146_030-midi-studio-v2-instrument-row-polish_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_030-midi-studio-v2-instrument-row-polish_validation.md -rename to dev/reports/PR_26146_030-midi-studio-v2-instrument-row-polish_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_031-midi-studio-v2-instrument-audibility-and-tooltips_validation.md b/dev/reports/PR_26146_031-midi-studio-v2-instrument-audibility-and-tooltips_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_031-midi-studio-v2-instrument-audibility-and-tooltips_validation.md -rename to dev/reports/PR_26146_031-midi-studio-v2-instrument-audibility-and-tooltips_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_032-midi-studio-v2-fast-note-editing-and-keyboard-flow_validation.md b/dev/reports/PR_26146_032-midi-studio-v2-fast-note-editing-and-keyboard-flow_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_032-midi-studio-v2-fast-note-editing-and-keyboard-flow_validation.md -rename to dev/reports/PR_26146_032-midi-studio-v2-fast-note-editing-and-keyboard-flow_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_033-midi-studio-v2-implementation-audit.md b/dev/reports/PR_26146_033-midi-studio-v2-implementation-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_033-midi-studio-v2-implementation-audit.md -rename to dev/reports/PR_26146_033-midi-studio-v2-implementation-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_033-midi-studio-v2-implementation-audit_validation.md b/dev/reports/PR_26146_033-midi-studio-v2-implementation-audit_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_033-midi-studio-v2-implementation-audit_validation.md -rename to dev/reports/PR_26146_033-midi-studio-v2-implementation-audit_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_034-midi-studio-v2-export-ui-simplification_validation.md b/dev/reports/PR_26146_034-midi-studio-v2-export-ui-simplification_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_034-midi-studio-v2-export-ui-simplification_validation.md -rename to dev/reports/PR_26146_034-midi-studio-v2-export-ui-simplification_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_035-midi-studio-v2-octave-grid-freeze-and-highlight_validation.md b/dev/reports/PR_26146_035-midi-studio-v2-octave-grid-freeze-and-highlight_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_035-midi-studio-v2-octave-grid-freeze-and-highlight_validation.md -rename to dev/reports/PR_26146_035-midi-studio-v2-octave-grid-freeze-and-highlight_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_036-midi-studio-v2-octave-grid-layout-polish_validation.md b/dev/reports/PR_26146_036-midi-studio-v2-octave-grid-layout-polish_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_036-midi-studio-v2-octave-grid-layout-polish_validation.md -rename to dev/reports/PR_26146_036-midi-studio-v2-octave-grid-layout-polish_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_037-midi-studio-v2-grid-performance-and-json-header-polish_validation.md b/dev/reports/PR_26146_037-midi-studio-v2-grid-performance-and-json-header-polish_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_037-midi-studio-v2-grid-performance-and-json-header-polish_validation.md -rename to dev/reports/PR_26146_037-midi-studio-v2-grid-performance-and-json-header-polish_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_038-midi-studio-v2-instrument-grid-scroll-and-cell-width_validation.md b/dev/reports/PR_26146_038-midi-studio-v2-instrument-grid-scroll-and-cell-width_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_038-midi-studio-v2-instrument-grid-scroll-and-cell-width_validation.md -rename to dev/reports/PR_26146_038-midi-studio-v2-instrument-grid-scroll-and-cell-width_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_039-midi-studio-v2-octave-grid-zoom-and-square-cells_validation.md b/dev/reports/PR_26146_039-midi-studio-v2-octave-grid-zoom-and-square-cells_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_039-midi-studio-v2-octave-grid-zoom-and-square-cells_validation.md -rename to dev/reports/PR_26146_039-midi-studio-v2-octave-grid-zoom-and-square-cells_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_040-midi-studio-v2-piano-key-grid-height_validation.md b/dev/reports/PR_26146_040-midi-studio-v2-piano-key-grid-height_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_040-midi-studio-v2-piano-key-grid-height_validation.md -rename to dev/reports/PR_26146_040-midi-studio-v2-piano-key-grid-height_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_041-midi-studio-v2-piano-style-and-section-feedback_validation.md b/dev/reports/PR_26146_041-midi-studio-v2-piano-style-and-section-feedback_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_041-midi-studio-v2-piano-style-and-section-feedback_validation.md -rename to dev/reports/PR_26146_041-midi-studio-v2-piano-style-and-section-feedback_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_042-midi-studio-v2-single-studio-octave-editor_validation.md b/dev/reports/PR_26146_042-midi-studio-v2-single-studio-octave-editor_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_042-midi-studio-v2-single-studio-octave-editor_validation.md -rename to dev/reports/PR_26146_042-midi-studio-v2-single-studio-octave-editor_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_043-midi-studio-v2-piano-roll-keyboard-grid_validation.md b/dev/reports/PR_26146_043-midi-studio-v2-piano-roll-keyboard-grid_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_043-midi-studio-v2-piano-roll-keyboard-grid_validation.md -rename to dev/reports/PR_26146_043-midi-studio-v2-piano-roll-keyboard-grid_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_044-midi-studio-v2-piano-key-right-alignment_validation.md b/dev/reports/PR_26146_044-midi-studio-v2-piano-key-right-alignment_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_044-midi-studio-v2-piano-key-right-alignment_validation.md -rename to dev/reports/PR_26146_044-midi-studio-v2-piano-key-right-alignment_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_045-midi-studio-v2-canonical-song-model-cleanup_validation.md b/dev/reports/PR_26146_045-midi-studio-v2-canonical-song-model-cleanup_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_045-midi-studio-v2-canonical-song-model-cleanup_validation.md -rename to dev/reports/PR_26146_045-midi-studio-v2-canonical-song-model-cleanup_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_045-midi-studio-v2-duplicate-data-audit.md b/dev/reports/PR_26146_045-midi-studio-v2-duplicate-data-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_045-midi-studio-v2-duplicate-data-audit.md -rename to dev/reports/PR_26146_045-midi-studio-v2-duplicate-data-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_046-midi-studio-v2-tab-cleanup-and-section-warning-repair_validation.md b/dev/reports/PR_26146_046-midi-studio-v2-tab-cleanup-and-section-warning-repair_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_046-midi-studio-v2-tab-cleanup-and-section-warning-repair_validation.md -rename to dev/reports/PR_26146_046-midi-studio-v2-tab-cleanup-and-section-warning-repair_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_047-midi-studio-v2-note-edit-persistence-and-playback-truth_validation.md b/dev/reports/PR_26146_047-midi-studio-v2-note-edit-persistence-and-playback-truth_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_047-midi-studio-v2-note-edit-persistence-and-playback-truth_validation.md -rename to dev/reports/PR_26146_047-midi-studio-v2-note-edit-persistence-and-playback-truth_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_048-midi-studio-v2-launch-mode-save-ownership_validation.md b/dev/reports/PR_26146_048-midi-studio-v2-launch-mode-save-ownership_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_048-midi-studio-v2-launch-mode-save-ownership_validation.md -rename to dev/reports/PR_26146_048-midi-studio-v2-launch-mode-save-ownership_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_049-midi-studio-v2-nav-and-tab-mode-polish_validation.md b/dev/reports/PR_26146_049-midi-studio-v2-nav-and-tab-mode-polish_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_049-midi-studio-v2-nav-and-tab-mode-polish_validation.md -rename to dev/reports/PR_26146_049-midi-studio-v2-nav-and-tab-mode-polish_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_050-midi-studio-v2-grid-shadow-outline-removal_validation.md b/dev/reports/PR_26146_050-midi-studio-v2-grid-shadow-outline-removal_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_050-midi-studio-v2-grid-shadow-outline-removal_validation.md -rename to dev/reports/PR_26146_050-midi-studio-v2-grid-shadow-outline-removal_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_051-midi-studio-v2-canvas-octave-timeline-foundation_validation.md b/dev/reports/PR_26146_051-midi-studio-v2-canvas-octave-timeline-foundation_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_051-midi-studio-v2-canvas-octave-timeline-foundation_validation.md -rename to dev/reports/PR_26146_051-midi-studio-v2-canvas-octave-timeline-foundation_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_052-midi-studio-v2-song-setup-tab-cleanup_validation.md b/dev/reports/PR_26146_052-midi-studio-v2-song-setup-tab-cleanup_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_052-midi-studio-v2-song-setup-tab-cleanup_validation.md -rename to dev/reports/PR_26146_052-midi-studio-v2-song-setup-tab-cleanup_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_053-midi-studio-v2-song-setup-buckets-restore_validation.md b/dev/reports/PR_26146_053-midi-studio-v2-song-setup-buckets-restore_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_053-midi-studio-v2-song-setup-buckets-restore_validation.md -rename to dev/reports/PR_26146_053-midi-studio-v2-song-setup-buckets-restore_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_053-midi-studio-v2-tab-bucket-map.md b/dev/reports/PR_26146_053-midi-studio-v2-tab-bucket-map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_053-midi-studio-v2-tab-bucket-map.md -rename to dev/reports/PR_26146_053-midi-studio-v2-tab-bucket-map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_054-midi-studio-v2-existing-tab-bucket-consolidation_validation.md b/dev/reports/PR_26146_054-midi-studio-v2-existing-tab-bucket-consolidation_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_054-midi-studio-v2-existing-tab-bucket-consolidation_validation.md -rename to dev/reports/PR_26146_054-midi-studio-v2-existing-tab-bucket-consolidation_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_054-midi-studio-v2-tab-bucket-map.md b/dev/reports/PR_26146_054-midi-studio-v2-tab-bucket-map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_054-midi-studio-v2-tab-bucket-map.md -rename to dev/reports/PR_26146_054-midi-studio-v2-tab-bucket-map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_055-midi-studio-v2-unwired-control-audit.md b/dev/reports/PR_26146_055-midi-studio-v2-unwired-control-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_055-midi-studio-v2-unwired-control-audit.md -rename to dev/reports/PR_26146_055-midi-studio-v2-unwired-control-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_055-midi-studio-v2-unwired-control-visibility_validation.md b/dev/reports/PR_26146_055-midi-studio-v2-unwired-control-visibility_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_055-midi-studio-v2-unwired-control-visibility_validation.md -rename to dev/reports/PR_26146_055-midi-studio-v2-unwired-control-visibility_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_056-midi-studio-v2-canvas-note-editing-flow_validation.md b/dev/reports/PR_26146_056-midi-studio-v2-canvas-note-editing-flow_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_056-midi-studio-v2-canvas-note-editing-flow_validation.md -rename to dev/reports/PR_26146_056-midi-studio-v2-canvas-note-editing-flow_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_057-midi-studio-v2-ssot-control-map.md b/dev/reports/PR_26146_057-midi-studio-v2-ssot-control-map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_057-midi-studio-v2-ssot-control-map.md -rename to dev/reports/PR_26146_057-midi-studio-v2-ssot-control-map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_057-midi-studio-v2-ssot-export-and-future-controls_validation.md b/dev/reports/PR_26146_057-midi-studio-v2-ssot-export-and-future-controls_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_057-midi-studio-v2-ssot-export-and-future-controls_validation.md -rename to dev/reports/PR_26146_057-midi-studio-v2-ssot-export-and-future-controls_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_058-midi-studio-v2-export-ownership-map.md b/dev/reports/PR_26146_058-midi-studio-v2-export-ownership-map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_058-midi-studio-v2-export-ownership-map.md -rename to dev/reports/PR_26146_058-midi-studio-v2-export-ownership-map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_058-midi-studio-v2-export-tab-usability-and-render-plan_validation.md b/dev/reports/PR_26146_058-midi-studio-v2-export-tab-usability-and-render-plan_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_058-midi-studio-v2-export-tab-usability-and-render-plan_validation.md -rename to dev/reports/PR_26146_058-midi-studio-v2-export-tab-usability-and-render-plan_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_059-midi-studio-v2-export-wording-and-history-placeholders_validation.md b/dev/reports/PR_26146_059-midi-studio-v2-export-wording-and-history-placeholders_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_059-midi-studio-v2-export-wording-and-history-placeholders_validation.md -rename to dev/reports/PR_26146_059-midi-studio-v2-export-wording-and-history-placeholders_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_059-midi-studio-v2-wording-and-ssot-notes.md b/dev/reports/PR_26146_059-midi-studio-v2-wording-and-ssot-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_059-midi-studio-v2-wording-and-ssot-notes.md -rename to dev/reports/PR_26146_059-midi-studio-v2-wording-and-ssot-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26146_060-midi-studio-v2-song-fields-and-instrument-sync_validation.md b/dev/reports/PR_26146_060-midi-studio-v2-song-fields-and-instrument-sync_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_060-midi-studio-v2-song-fields-and-instrument-sync_validation.md -rename to dev/reports/PR_26146_060-midi-studio-v2-song-fields-and-instrument-sync_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_060-midi-studio-v2-ssot-selection-notes.md b/dev/reports/PR_26146_060-midi-studio-v2-ssot-selection-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_060-midi-studio-v2-ssot-selection-notes.md -rename to dev/reports/PR_26146_060-midi-studio-v2-ssot-selection-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26146_061-midi-studio-v2-instrument-editor-foundation_validation.md b/dev/reports/PR_26146_061-midi-studio-v2-instrument-editor-foundation_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_061-midi-studio-v2-instrument-editor-foundation_validation.md -rename to dev/reports/PR_26146_061-midi-studio-v2-instrument-editor-foundation_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_061-midi-studio-v2-instrument-ssot-map.md b/dev/reports/PR_26146_061-midi-studio-v2-instrument-ssot-map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_061-midi-studio-v2-instrument-ssot-map.md -rename to dev/reports/PR_26146_061-midi-studio-v2-instrument-ssot-map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_062-midi-studio-v2-song-sheet-ssot-map.md b/dev/reports/PR_26146_062-midi-studio-v2-song-sheet-ssot-map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_062-midi-studio-v2-song-sheet-ssot-map.md -rename to dev/reports/PR_26146_062-midi-studio-v2-song-sheet-ssot-map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_062-midi-studio-v2-song-sheet-structure-only_validation.md b/dev/reports/PR_26146_062-midi-studio-v2-song-sheet-structure-only_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_062-midi-studio-v2-song-sheet-structure-only_validation.md -rename to dev/reports/PR_26146_062-midi-studio-v2-song-sheet-structure-only_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_063-midi-studio-v2-song-notes-and-timeline-instruments-layout_validation.md b/dev/reports/PR_26146_063-midi-studio-v2-song-notes-and-timeline-instruments-layout_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_063-midi-studio-v2-song-notes-and-timeline-instruments-layout_validation.md -rename to dev/reports/PR_26146_063-midi-studio-v2-song-notes-and-timeline-instruments-layout_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_064-midi-studio-v2-field-grid-layouts_validation.md b/dev/reports/PR_26146_064-midi-studio-v2-field-grid-layouts_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_064-midi-studio-v2-field-grid-layouts_validation.md -rename to dev/reports/PR_26146_064-midi-studio-v2-field-grid-layouts_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_065-midi-studio-v2-control-ownership-matrix.md b/dev/reports/PR_26146_065-midi-studio-v2-control-ownership-matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_065-midi-studio-v2-control-ownership-matrix.md -rename to dev/reports/PR_26146_065-midi-studio-v2-control-ownership-matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit.md b/dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit.md -rename to dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit_validation.md b/dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit_validation.md -rename to dev/reports/PR_26146_065-midi-studio-v2-uat-gap-audit_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_066-midi-studio-v2-timeline-instrument-compact-duplicate_validation.md b/dev/reports/PR_26146_066-midi-studio-v2-timeline-instrument-compact-duplicate_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_066-midi-studio-v2-timeline-instrument-compact-duplicate_validation.md -rename to dev/reports/PR_26146_066-midi-studio-v2-timeline-instrument-compact-duplicate_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_067-midi-studio-v2-instrument-management-workflow_validation.md b/dev/reports/PR_26146_067-midi-studio-v2-instrument-management-workflow_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_067-midi-studio-v2-instrument-management-workflow_validation.md -rename to dev/reports/PR_26146_067-midi-studio-v2-instrument-management-workflow_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_068-midi-studio-v2-accordion-and-canvas-key-repair_validation.md b/dev/reports/PR_26146_068-midi-studio-v2-accordion-and-canvas-key-repair_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_068-midi-studio-v2-accordion-and-canvas-key-repair_validation.md -rename to dev/reports/PR_26146_068-midi-studio-v2-accordion-and-canvas-key-repair_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_068-midi-studio-v2-accordion-audit.md b/dev/reports/PR_26146_068-midi-studio-v2-accordion-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_068-midi-studio-v2-accordion-audit.md -rename to dev/reports/PR_26146_068-midi-studio-v2-accordion-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_068-midi-studio-v2-canvas-scroll-header-notes.md b/dev/reports/PR_26146_068-midi-studio-v2-canvas-scroll-header-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_068-midi-studio-v2-canvas-scroll-header-notes.md -rename to dev/reports/PR_26146_068-midi-studio-v2-canvas-scroll-header-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26146_069-midi-studio-v2-section-color-visibility_validation.md b/dev/reports/PR_26146_069-midi-studio-v2-section-color-visibility_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_069-midi-studio-v2-section-color-visibility_validation.md -rename to dev/reports/PR_26146_069-midi-studio-v2-section-color-visibility_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_070-midi-studio-v2-section-semantics-map.md b/dev/reports/PR_26146_070-midi-studio-v2-section-semantics-map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_070-midi-studio-v2-section-semantics-map.md -rename to dev/reports/PR_26146_070-midi-studio-v2-section-semantics-map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_070-midi-studio-v2-song-classification-and-musical-sections_validation.md b/dev/reports/PR_26146_070-midi-studio-v2-song-classification-and-musical-sections_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_070-midi-studio-v2-song-classification-and-musical-sections_validation.md -rename to dev/reports/PR_26146_070-midi-studio-v2-song-classification-and-musical-sections_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-builder_validation.md b/dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-builder_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-builder_validation.md -rename to dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-builder_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-map.md b/dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-map.md -rename to dev/reports/PR_26146_071-midi-studio-v2-song-sheet-sequence-map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_072_075_bundle_validation.md b/dev/reports/PR_26146_072_075_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_072_075_bundle_validation.md -rename to dev/reports/PR_26146_072_075_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_072_075_control_ownership_matrix.md b/dev/reports/PR_26146_072_075_control_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_072_075_control_ownership_matrix.md -rename to dev/reports/PR_26146_072_075_control_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_072_075_section_sequence_map.md b/dev/reports/PR_26146_072_075_section_sequence_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_072_075_section_sequence_map.md -rename to dev/reports/PR_26146_072_075_section_sequence_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_072_080_control_ownership_matrix.md b/dev/reports/PR_26146_072_080_control_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_072_080_control_ownership_matrix.md -rename to dev/reports/PR_26146_072_080_control_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_072_080_sequence_builder_map.md b/dev/reports/PR_26146_072_080_sequence_builder_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_072_080_sequence_builder_map.md -rename to dev/reports/PR_26146_072_080_sequence_builder_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_072_080_song_architecture_bundle_validation.md b/dev/reports/PR_26146_072_080_song_architecture_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_072_080_song_architecture_bundle_validation.md -rename to dev/reports/PR_26146_072_080_song_architecture_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_072_080_song_sheet_model.md b/dev/reports/PR_26146_072_080_song_sheet_model.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_072_080_song_sheet_model.md -rename to dev/reports/PR_26146_072_080_song_sheet_model.md -diff --git a/dev/docs_build/dev/reports/PR_26146_072_080_unwired_audit.md b/dev/reports/PR_26146_072_080_unwired_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_072_080_unwired_audit.md -rename to dev/reports/PR_26146_072_080_unwired_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_076_079_bundle_validation.md b/dev/reports/PR_26146_076_079_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_076_079_bundle_validation.md -rename to dev/reports/PR_26146_076_079_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_076_079_export_ownership_map.md b/dev/reports/PR_26146_076_079_export_ownership_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_076_079_export_ownership_map.md -rename to dev/reports/PR_26146_076_079_export_ownership_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_076_079_section_visibility_map.md b/dev/reports/PR_26146_076_079_section_visibility_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_076_079_section_visibility_map.md -rename to dev/reports/PR_26146_076_079_section_visibility_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_076_079_unwired_control_audit.md b/dev/reports/PR_26146_076_079_unwired_control_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_076_079_unwired_control_audit.md -rename to dev/reports/PR_26146_076_079_unwired_control_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_081_084_bundle_validation.md b/dev/reports/PR_26146_081_084_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_081_084_bundle_validation.md -rename to dev/reports/PR_26146_081_084_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_081_084_generation_flow.md b/dev/reports/PR_26146_081_084_generation_flow.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_081_084_generation_flow.md -rename to dev/reports/PR_26146_081_084_generation_flow.md -diff --git a/dev/docs_build/dev/reports/PR_26146_081_084_section_visibility_map.md b/dev/reports/PR_26146_081_084_section_visibility_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_081_084_section_visibility_map.md -rename to dev/reports/PR_26146_081_084_section_visibility_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_085_088_bundle_validation.md b/dev/reports/PR_26146_085_088_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_085_088_bundle_validation.md -rename to dev/reports/PR_26146_085_088_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_085_088_generation_mapping.md b/dev/reports/PR_26146_085_088_generation_mapping.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_085_088_generation_mapping.md -rename to dev/reports/PR_26146_085_088_generation_mapping.md -diff --git a/dev/docs_build/dev/reports/PR_26146_085_088_sync_audit.md b/dev/reports/PR_26146_085_088_sync_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_085_088_sync_audit.md -rename to dev/reports/PR_26146_085_088_sync_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_089_092_bundle_validation.md b/dev/reports/PR_26146_089_092_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_089_092_bundle_validation.md -rename to dev/reports/PR_26146_089_092_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_089_092_instrument_workflow_audit.md b/dev/reports/PR_26146_089_092_instrument_workflow_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_089_092_instrument_workflow_audit.md -rename to dev/reports/PR_26146_089_092_instrument_workflow_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_089_092_template_and_regeneration_map.md b/dev/reports/PR_26146_089_092_template_and_regeneration_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_089_092_template_and_regeneration_map.md -rename to dev/reports/PR_26146_089_092_template_and_regeneration_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_093_096_arrangement_visibility_map.md b/dev/reports/PR_26146_093_096_arrangement_visibility_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_093_096_arrangement_visibility_map.md -rename to dev/reports/PR_26146_093_096_arrangement_visibility_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_093_096_bundle_validation.md b/dev/reports/PR_26146_093_096_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_093_096_bundle_validation.md -rename to dev/reports/PR_26146_093_096_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_093_096_playback_workflow_audit.md b/dev/reports/PR_26146_093_096_playback_workflow_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_093_096_playback_workflow_audit.md -rename to dev/reports/PR_26146_093_096_playback_workflow_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_097_100_bundle_validation.md b/dev/reports/PR_26146_097_100_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_097_100_bundle_validation.md -rename to dev/reports/PR_26146_097_100_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_097_100_classification_workflow.md b/dev/reports/PR_26146_097_100_classification_workflow.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_097_100_classification_workflow.md -rename to dev/reports/PR_26146_097_100_classification_workflow.md -diff --git a/dev/docs_build/dev/reports/PR_26146_097_100_section_navigation_map.md b/dev/reports/PR_26146_097_100_section_navigation_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_097_100_section_navigation_map.md -rename to dev/reports/PR_26146_097_100_section_navigation_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_101_104_bundle_validation.md b/dev/reports/PR_26146_101_104_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_101_104_bundle_validation.md -rename to dev/reports/PR_26146_101_104_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_101_104_export_readiness_audit.md b/dev/reports/PR_26146_101_104_export_readiness_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_101_104_export_readiness_audit.md -rename to dev/reports/PR_26146_101_104_export_readiness_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_101_104_instrument_preset_map.md b/dev/reports/PR_26146_101_104_instrument_preset_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_101_104_instrument_preset_map.md -rename to dev/reports/PR_26146_101_104_instrument_preset_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_101_104_section_library_map.md b/dev/reports/PR_26146_101_104_section_library_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_101_104_section_library_map.md -rename to dev/reports/PR_26146_101_104_section_library_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_105_108_bundle_validation.md b/dev/reports/PR_26146_105_108_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_105_108_bundle_validation.md -rename to dev/reports/PR_26146_105_108_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_105_108_classification_map.md b/dev/reports/PR_26146_105_108_classification_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_105_108_classification_map.md -rename to dev/reports/PR_26146_105_108_classification_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_105_108_manifest_readiness_audit.md b/dev/reports/PR_26146_105_108_manifest_readiness_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_105_108_manifest_readiness_audit.md -rename to dev/reports/PR_26146_105_108_manifest_readiness_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_105_108_song_library_map.md b/dev/reports/PR_26146_105_108_song_library_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_105_108_song_library_map.md -rename to dev/reports/PR_26146_105_108_song_library_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_109_116_bundle_validation.md b/dev/reports/PR_26146_109_116_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_109_116_bundle_validation.md -rename to dev/reports/PR_26146_109_116_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_109_116_completion_audit.md b/dev/reports/PR_26146_109_116_completion_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_109_116_completion_audit.md -rename to dev/reports/PR_26146_109_116_completion_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_109_116_control_ownership_matrix.md b/dev/reports/PR_26146_109_116_control_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_109_116_control_ownership_matrix.md -rename to dev/reports/PR_26146_109_116_control_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_109_116_manifest_export_readiness_audit.md b/dev/reports/PR_26146_109_116_manifest_export_readiness_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_109_116_manifest_export_readiness_audit.md -rename to dev/reports/PR_26146_109_116_manifest_export_readiness_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_109_116_playback_audit.md b/dev/reports/PR_26146_109_116_playback_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_109_116_playback_audit.md -rename to dev/reports/PR_26146_109_116_playback_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_109_116_song_sheet_uat_report.md b/dev/reports/PR_26146_109_116_song_sheet_uat_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_109_116_song_sheet_uat_report.md -rename to dev/reports/PR_26146_109_116_song_sheet_uat_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_109_116_unwired_audit.md b/dev/reports/PR_26146_109_116_unwired_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_109_116_unwired_audit.md -rename to dev/reports/PR_26146_109_116_unwired_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_117_124_bundle_validation.md b/dev/reports/PR_26146_117_124_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_117_124_bundle_validation.md -rename to dev/reports/PR_26146_117_124_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_117_124_final_uat_audit.md b/dev/reports/PR_26146_117_124_final_uat_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_117_124_final_uat_audit.md -rename to dev/reports/PR_26146_117_124_final_uat_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_117_124_generation_hardening_report.md b/dev/reports/PR_26146_117_124_generation_hardening_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_117_124_generation_hardening_report.md -rename to dev/reports/PR_26146_117_124_generation_hardening_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_117_124_library_hardening_report.md b/dev/reports/PR_26146_117_124_library_hardening_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_117_124_library_hardening_report.md -rename to dev/reports/PR_26146_117_124_library_hardening_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_117_124_manifest_music_map.md b/dev/reports/PR_26146_117_124_manifest_music_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_117_124_manifest_music_map.md -rename to dev/reports/PR_26146_117_124_manifest_music_map.md -diff --git a/dev/docs_build/dev/reports/PR_26146_117_124_midi_import_clarity_report.md b/dev/reports/PR_26146_117_124_midi_import_clarity_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_117_124_midi_import_clarity_report.md -rename to dev/reports/PR_26146_117_124_midi_import_clarity_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_117_124_workspace_handoff_report.md b/dev/reports/PR_26146_117_124_workspace_handoff_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_117_124_workspace_handoff_report.md -rename to dev/reports/PR_26146_117_124_workspace_handoff_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_125_132_bundle_validation.md b/dev/reports/PR_26146_125_132_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_125_132_bundle_validation.md -rename to dev/reports/PR_26146_125_132_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_125_132_duplicate_usage_review.md b/dev/reports/PR_26146_125_132_duplicate_usage_review.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_125_132_duplicate_usage_review.md -rename to dev/reports/PR_26146_125_132_duplicate_usage_review.md -diff --git a/dev/docs_build/dev/reports/PR_26146_125_132_export_manifest_readiness_audit.md b/dev/reports/PR_26146_125_132_export_manifest_readiness_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_125_132_export_manifest_readiness_audit.md -rename to dev/reports/PR_26146_125_132_export_manifest_readiness_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_125_132_final_uat_audit.md b/dev/reports/PR_26146_125_132_final_uat_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_125_132_final_uat_audit.md -rename to dev/reports/PR_26146_125_132_final_uat_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_125_132_playback_audit.md b/dev/reports/PR_26146_125_132_playback_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_125_132_playback_audit.md -rename to dev/reports/PR_26146_125_132_playback_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_125_132_song_model_audit.md b/dev/reports/PR_26146_125_132_song_model_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_125_132_song_model_audit.md -rename to dev/reports/PR_26146_125_132_song_model_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_125_132_ssot_ownership_matrix.md b/dev/reports/PR_26146_125_132_ssot_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_125_132_ssot_ownership_matrix.md -rename to dev/reports/PR_26146_125_132_ssot_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_133_140_bundle_validation.md b/dev/reports/PR_26146_133_140_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_133_140_bundle_validation.md -rename to dev/reports/PR_26146_133_140_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_133_140_export_manifest_audit.md b/dev/reports/PR_26146_133_140_export_manifest_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_133_140_export_manifest_audit.md -rename to dev/reports/PR_26146_133_140_export_manifest_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_133_140_final_readiness_report.md b/dev/reports/PR_26146_133_140_final_readiness_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_133_140_final_readiness_report.md -rename to dev/reports/PR_26146_133_140_final_readiness_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_133_140_instrument_audit.md b/dev/reports/PR_26146_133_140_instrument_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_133_140_instrument_audit.md -rename to dev/reports/PR_26146_133_140_instrument_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_133_140_persistence_audit.md b/dev/reports/PR_26146_133_140_persistence_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_133_140_persistence_audit.md -rename to dev/reports/PR_26146_133_140_persistence_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_133_140_song_builder_audit.md b/dev/reports/PR_26146_133_140_song_builder_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_133_140_song_builder_audit.md -rename to dev/reports/PR_26146_133_140_song_builder_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_133_140_ssot_ownership_matrix.md b/dev/reports/PR_26146_133_140_ssot_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_133_140_ssot_ownership_matrix.md -rename to dev/reports/PR_26146_133_140_ssot_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_133_140_timeline_audit.md b/dev/reports/PR_26146_133_140_timeline_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_133_140_timeline_audit.md -rename to dev/reports/PR_26146_133_140_timeline_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_133_140_ui_completion_audit.md b/dev/reports/PR_26146_133_140_ui_completion_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_133_140_ui_completion_audit.md -rename to dev/reports/PR_26146_133_140_ui_completion_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_bundle_validation.md b/dev/reports/PR_26146_141_160_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_bundle_validation.md -rename to dev/reports/PR_26146_141_160_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_duplicate_cleanup_report.md b/dev/reports/PR_26146_141_160_duplicate_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_duplicate_cleanup_report.md -rename to dev/reports/PR_26146_141_160_duplicate_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_export_manifest_audit.md b/dev/reports/PR_26146_141_160_export_manifest_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_export_manifest_audit.md -rename to dev/reports/PR_26146_141_160_export_manifest_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_final_completion_report.md b/dev/reports/PR_26146_141_160_final_completion_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_final_completion_report.md -rename to dev/reports/PR_26146_141_160_final_completion_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_instrument_audit.md b/dev/reports/PR_26146_141_160_instrument_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_instrument_audit.md -rename to dev/reports/PR_26146_141_160_instrument_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_persistence_audit.md b/dev/reports/PR_26146_141_160_persistence_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_persistence_audit.md -rename to dev/reports/PR_26146_141_160_persistence_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_playback_audit.md b/dev/reports/PR_26146_141_160_playback_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_playback_audit.md -rename to dev/reports/PR_26146_141_160_playback_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_song_setup_audit.md b/dev/reports/PR_26146_141_160_song_setup_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_song_setup_audit.md -rename to dev/reports/PR_26146_141_160_song_setup_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_ssot_ownership_matrix.md b/dev/reports/PR_26146_141_160_ssot_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_ssot_ownership_matrix.md -rename to dev/reports/PR_26146_141_160_ssot_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_timeline_audit.md b/dev/reports/PR_26146_141_160_timeline_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_timeline_audit.md -rename to dev/reports/PR_26146_141_160_timeline_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_uat_guide.md b/dev/reports/PR_26146_141_160_uat_guide.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_uat_guide.md -rename to dev/reports/PR_26146_141_160_uat_guide.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_unwired_audit.md b/dev/reports/PR_26146_141_160_unwired_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_unwired_audit.md -rename to dev/reports/PR_26146_141_160_unwired_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_141_160_visible_control_inventory.md b/dev/reports/PR_26146_141_160_visible_control_inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_141_160_visible_control_inventory.md -rename to dev/reports/PR_26146_141_160_visible_control_inventory.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_duplicate_usage_review.md b/dev/reports/PR_26146_161_200_duplicate_usage_review.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_duplicate_usage_review.md -rename to dev/reports/PR_26146_161_200_duplicate_usage_review.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_export_manifest_report.md b/dev/reports/PR_26146_161_200_export_manifest_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_export_manifest_report.md -rename to dev/reports/PR_26146_161_200_export_manifest_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_final_release_candidate_report.md b/dev/reports/PR_26146_161_200_final_release_candidate_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_final_release_candidate_report.md -rename to dev/reports/PR_26146_161_200_final_release_candidate_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_instrument_report.md b/dev/reports/PR_26146_161_200_instrument_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_instrument_report.md -rename to dev/reports/PR_26146_161_200_instrument_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_library_report.md b/dev/reports/PR_26146_161_200_library_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_library_report.md -rename to dev/reports/PR_26146_161_200_library_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_midi_import_report.md b/dev/reports/PR_26146_161_200_midi_import_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_midi_import_report.md -rename to dev/reports/PR_26146_161_200_midi_import_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_playback_report.md b/dev/reports/PR_26146_161_200_playback_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_playback_report.md -rename to dev/reports/PR_26146_161_200_playback_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_release_candidate_validation.md b/dev/reports/PR_26146_161_200_release_candidate_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_release_candidate_validation.md -rename to dev/reports/PR_26146_161_200_release_candidate_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_song_setup_report.md b/dev/reports/PR_26146_161_200_song_setup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_song_setup_report.md -rename to dev/reports/PR_26146_161_200_song_setup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_ssot_ownership_matrix.md b/dev/reports/PR_26146_161_200_ssot_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_ssot_ownership_matrix.md -rename to dev/reports/PR_26146_161_200_ssot_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_timeline_report.md b/dev/reports/PR_26146_161_200_timeline_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_timeline_report.md -rename to dev/reports/PR_26146_161_200_timeline_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_visible_control_inventory.md b/dev/reports/PR_26146_161_200_visible_control_inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_visible_control_inventory.md -rename to dev/reports/PR_26146_161_200_visible_control_inventory.md -diff --git a/dev/docs_build/dev/reports/PR_26146_161_200_workspace_handoff_report.md b/dev/reports/PR_26146_161_200_workspace_handoff_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_161_200_workspace_handoff_report.md -rename to dev/reports/PR_26146_161_200_workspace_handoff_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_201_220_export_manifest_report.md b/dev/reports/PR_26146_201_220_export_manifest_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_201_220_export_manifest_report.md -rename to dev/reports/PR_26146_201_220_export_manifest_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_201_220_final_stabilization_validation.md b/dev/reports/PR_26146_201_220_final_stabilization_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_201_220_final_stabilization_validation.md -rename to dev/reports/PR_26146_201_220_final_stabilization_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_201_220_json_roundtrip_report.md b/dev/reports/PR_26146_201_220_json_roundtrip_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_201_220_json_roundtrip_report.md -rename to dev/reports/PR_26146_201_220_json_roundtrip_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_201_220_playback_report.md b/dev/reports/PR_26146_201_220_playback_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_201_220_playback_report.md -rename to dev/reports/PR_26146_201_220_playback_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_201_220_prior_report_closure.md b/dev/reports/PR_26146_201_220_prior_report_closure.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_201_220_prior_report_closure.md -rename to dev/reports/PR_26146_201_220_prior_report_closure.md -diff --git a/dev/docs_build/dev/reports/PR_26146_201_220_remaining_warn_fail_report.md b/dev/reports/PR_26146_201_220_remaining_warn_fail_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_201_220_remaining_warn_fail_report.md -rename to dev/reports/PR_26146_201_220_remaining_warn_fail_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_201_220_ssot_ownership_matrix.md b/dev/reports/PR_26146_201_220_ssot_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_201_220_ssot_ownership_matrix.md -rename to dev/reports/PR_26146_201_220_ssot_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_201_220_timeline_instrument_report.md b/dev/reports/PR_26146_201_220_timeline_instrument_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_201_220_timeline_instrument_report.md -rename to dev/reports/PR_26146_201_220_timeline_instrument_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_201_220_uat_ready_report.md b/dev/reports/PR_26146_201_220_uat_ready_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_201_220_uat_ready_report.md -rename to dev/reports/PR_26146_201_220_uat_ready_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_221_240_bundle_validation.md b/dev/reports/PR_26146_221_240_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_221_240_bundle_validation.md -rename to dev/reports/PR_26146_221_240_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_221_240_duplicate_usage_review.md b/dev/reports/PR_26146_221_240_duplicate_usage_review.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_221_240_duplicate_usage_review.md -rename to dev/reports/PR_26146_221_240_duplicate_usage_review.md -diff --git a/dev/docs_build/dev/reports/PR_26146_221_240_import_export_report.md b/dev/reports/PR_26146_221_240_import_export_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_221_240_import_export_report.md -rename to dev/reports/PR_26146_221_240_import_export_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_221_240_instrument_report.md b/dev/reports/PR_26146_221_240_instrument_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_221_240_instrument_report.md -rename to dev/reports/PR_26146_221_240_instrument_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_221_240_playback_report.md b/dev/reports/PR_26146_221_240_playback_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_221_240_playback_report.md -rename to dev/reports/PR_26146_221_240_playback_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_221_240_production_ready_audit.md b/dev/reports/PR_26146_221_240_production_ready_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_221_240_production_ready_audit.md -rename to dev/reports/PR_26146_221_240_production_ready_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_221_240_song_sheet_report.md b/dev/reports/PR_26146_221_240_song_sheet_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_221_240_song_sheet_report.md -rename to dev/reports/PR_26146_221_240_song_sheet_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_221_240_ssot_ownership_matrix.md b/dev/reports/PR_26146_221_240_ssot_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_221_240_ssot_ownership_matrix.md -rename to dev/reports/PR_26146_221_240_ssot_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_221_240_timeline_report.md b/dev/reports/PR_26146_221_240_timeline_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_221_240_timeline_report.md -rename to dev/reports/PR_26146_221_240_timeline_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_281_340_duplicate_data_removed.md b/dev/reports/PR_26146_281_340_duplicate_data_removed.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_281_340_duplicate_data_removed.md -rename to dev/reports/PR_26146_281_340_duplicate_data_removed.md -diff --git a/dev/docs_build/dev/reports/PR_26146_281_340_prod_done_done_validation.md b/dev/reports/PR_26146_281_340_prod_done_done_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_281_340_prod_done_done_validation.md -rename to dev/reports/PR_26146_281_340_prod_done_done_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_281_340_prod_workflow_pass_report.md b/dev/reports/PR_26146_281_340_prod_workflow_pass_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_281_340_prod_workflow_pass_report.md -rename to dev/reports/PR_26146_281_340_prod_workflow_pass_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_281_340_red_controls_resolution.md b/dev/reports/PR_26146_281_340_red_controls_resolution.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_281_340_red_controls_resolution.md -rename to dev/reports/PR_26146_281_340_red_controls_resolution.md -diff --git a/dev/docs_build/dev/reports/PR_26146_281_340_remaining_future_controls.md b/dev/reports/PR_26146_281_340_remaining_future_controls.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_281_340_remaining_future_controls.md -rename to dev/reports/PR_26146_281_340_remaining_future_controls.md -diff --git a/dev/docs_build/dev/reports/PR_26146_281_340_ssot_ownership_matrix.md b/dev/reports/PR_26146_281_340_ssot_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_281_340_ssot_ownership_matrix.md -rename to dev/reports/PR_26146_281_340_ssot_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_341_420_effects_advanced_report.md b/dev/reports/PR_26146_341_420_effects_advanced_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_341_420_effects_advanced_report.md -rename to dev/reports/PR_26146_341_420_effects_advanced_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_341_420_endstate_validation.md b/dev/reports/PR_26146_341_420_endstate_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_341_420_endstate_validation.md -rename to dev/reports/PR_26146_341_420_endstate_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_341_420_export_readiness_report.md b/dev/reports/PR_26146_341_420_export_readiness_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_341_420_export_readiness_report.md -rename to dev/reports/PR_26146_341_420_export_readiness_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_341_420_preview_engine_report.md b/dev/reports/PR_26146_341_420_preview_engine_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_341_420_preview_engine_report.md -rename to dev/reports/PR_26146_341_420_preview_engine_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_341_420_soundfont_preview_report.md b/dev/reports/PR_26146_341_420_soundfont_preview_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_341_420_soundfont_preview_report.md -rename to dev/reports/PR_26146_341_420_soundfont_preview_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_341_420_ssot_ownership_matrix.md b/dev/reports/PR_26146_341_420_ssot_ownership_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_341_420_ssot_ownership_matrix.md -rename to dev/reports/PR_26146_341_420_ssot_ownership_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_341_420_uat_ready_report.md b/dev/reports/PR_26146_341_420_uat_ready_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_341_420_uat_ready_report.md -rename to dev/reports/PR_26146_341_420_uat_ready_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_421_500_release_readiness_report.md b/dev/reports/PR_26146_421_500_release_readiness_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_421_500_release_readiness_report.md -rename to dev/reports/PR_26146_421_500_release_readiness_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_421_500_render_pipeline_report.md b/dev/reports/PR_26146_421_500_render_pipeline_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_421_500_render_pipeline_report.md -rename to dev/reports/PR_26146_421_500_render_pipeline_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_421_500_soundfont_runtime_report.md b/dev/reports/PR_26146_421_500_soundfont_runtime_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_421_500_soundfont_runtime_report.md -rename to dev/reports/PR_26146_421_500_soundfont_runtime_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_421_500_ssot_audit.md b/dev/reports/PR_26146_421_500_ssot_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_421_500_ssot_audit.md -rename to dev/reports/PR_26146_421_500_ssot_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_421_500_unwired_audit.md b/dev/reports/PR_26146_421_500_unwired_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_421_500_unwired_audit.md -rename to dev/reports/PR_26146_421_500_unwired_audit.md -diff --git a/dev/docs_build/dev/reports/PR_26146_501_560_bundle_validation.md b/dev/reports/PR_26146_501_560_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_501_560_bundle_validation.md -rename to dev/reports/PR_26146_501_560_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26146_501_560_duplicate_review.md b/dev/reports/PR_26146_501_560_duplicate_review.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_501_560_duplicate_review.md -rename to dev/reports/PR_26146_501_560_duplicate_review.md -diff --git a/dev/docs_build/dev/reports/PR_26146_501_560_import_export_report.md b/dev/reports/PR_26146_501_560_import_export_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_501_560_import_export_report.md -rename to dev/reports/PR_26146_501_560_import_export_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_501_560_playback_report.md b/dev/reports/PR_26146_501_560_playback_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_501_560_playback_report.md -rename to dev/reports/PR_26146_501_560_playback_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_501_560_signoff_report.md b/dev/reports/PR_26146_501_560_signoff_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_501_560_signoff_report.md -rename to dev/reports/PR_26146_501_560_signoff_report.md -diff --git a/dev/docs_build/dev/reports/PR_26146_501_560_ssot_matrix.md b/dev/reports/PR_26146_501_560_ssot_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_501_560_ssot_matrix.md -rename to dev/reports/PR_26146_501_560_ssot_matrix.md -diff --git a/dev/docs_build/dev/reports/PR_26146_501_560_workspace_report.md b/dev/reports/PR_26146_501_560_workspace_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26146_501_560_workspace_report.md -rename to dev/reports/PR_26146_501_560_workspace_report.md -diff --git a/dev/docs_build/dev/reports/PR_26151_001-gamefoundry-tool-color-groups-validation.md b/dev/reports/PR_26151_001-gamefoundry-tool-color-groups-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26151_001-gamefoundry-tool-color-groups-validation.md -rename to dev/reports/PR_26151_001-gamefoundry-tool-color-groups-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26151_001-validation.md b/dev/reports/PR_26151_001-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26151_001-validation.md -rename to dev/reports/PR_26151_001-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26151_003-validation.md b/dev/reports/PR_26151_003-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26151_003-validation.md -rename to dev/reports/PR_26151_003-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26151_004-gamefoundry-site-structure-ssot-validation.md b/dev/reports/PR_26151_004-gamefoundry-site-structure-ssot-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26151_004-gamefoundry-site-structure-ssot-validation.md -rename to dev/reports/PR_26151_004-gamefoundry-site-structure-ssot-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26151_006-validation.md b/dev/reports/PR_26151_006-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26151_006-validation.md -rename to dev/reports/PR_26151_006-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26151_007-validation.md b/dev/reports/PR_26151_007-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26151_007-validation.md -rename to dev/reports/PR_26151_007-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26151_009-gamefoundry-breadcrumb-control-cleanup-validation.md b/dev/reports/PR_26151_009-gamefoundry-breadcrumb-control-cleanup-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26151_009-gamefoundry-breadcrumb-control-cleanup-validation.md -rename to dev/reports/PR_26151_009-gamefoundry-breadcrumb-control-cleanup-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26152_002-gamefoundry-mascot-integration-validation.md b/dev/reports/PR_26152_002-gamefoundry-mascot-integration-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26152_002-gamefoundry-mascot-integration-validation.md -rename to dev/reports/PR_26152_002-gamefoundry-mascot-integration-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26161_007-objects-model-simplification-report.md b/dev/reports/PR_26161_007-objects-model-simplification-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26161_007-objects-model-simplification-report.md -rename to dev/reports/PR_26161_007-objects-model-simplification-report.md -diff --git a/dev/docs_build/dev/reports/PR_26161_008_object_type_catalog.md b/dev/reports/PR_26161_008_object_type_catalog.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26161_008_object_type_catalog.md -rename to dev/reports/PR_26161_008_object_type_catalog.md -diff --git a/dev/docs_build/dev/reports/PR_26161_025-controls-authoritative-ownership-report.md b/dev/reports/PR_26161_025-controls-authoritative-ownership-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26161_025-controls-authoritative-ownership-report.md -rename to dev/reports/PR_26161_025-controls-authoritative-ownership-report.md -diff --git a/dev/docs_build/dev/reports/PR_26162_035-control-events-and-account-mapping.md b/dev/reports/PR_26162_035-control-events-and-account-mapping.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26162_035-control-events-and-account-mapping.md -rename to dev/reports/PR_26162_035-control-events-and-account-mapping.md -diff --git a/dev/docs_build/dev/reports/PR_26162_036-controls-account-followup.md b/dev/reports/PR_26162_036-controls-account-followup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26162_036-controls-account-followup.md -rename to dev/reports/PR_26162_036-controls-account-followup.md -diff --git a/dev/docs_build/dev/reports/PR_26162_037-game-workspace-journey-deep-rename.md b/dev/reports/PR_26162_037-game-workspace-journey-deep-rename.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26162_037-game-workspace-journey-deep-rename.md -rename to dev/reports/PR_26162_037-game-workspace-journey-deep-rename.md -diff --git a/dev/docs_build/dev/reports/PR_26162_038-game-workspace-controls-cleanup.md b/dev/reports/PR_26162_038-game-workspace-controls-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26162_038-game-workspace-controls-cleanup.md -rename to dev/reports/PR_26162_038-game-workspace-controls-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26163_051-user-controls-profile-and-layout-alignment.md b/dev/reports/PR_26163_051-user-controls-profile-and-layout-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_051-user-controls-profile-and-layout-alignment.md -rename to dev/reports/PR_26163_051-user-controls-profile-and-layout-alignment.md -diff --git a/dev/docs_build/dev/reports/PR_26163_052-user-controls-device-selection-and-capture-fix.md b/dev/reports/PR_26163_052-user-controls-device-selection-and-capture-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_052-user-controls-device-selection-and-capture-fix.md -rename to dev/reports/PR_26163_052-user-controls-device-selection-and-capture-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26163_053-account-controls-user-scope-and-aside-stack.md b/dev/reports/PR_26163_053-account-controls-user-scope-and-aside-stack.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_053-account-controls-user-scope-and-aside-stack.md -rename to dev/reports/PR_26163_053-account-controls-user-scope-and-aside-stack.md -diff --git a/dev/docs_build/dev/reports/PR_26163_055-account-aside-left-column-accordion-fix.md b/dev/reports/PR_26163_055-account-aside-left-column-accordion-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_055-account-aside-left-column-accordion-fix.md -rename to dev/reports/PR_26163_055-account-aside-left-column-accordion-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26163_056-account-aside-template-toggle-alignment.md b/dev/reports/PR_26163_056-account-aside-template-toggle-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_056-account-aside-template-toggle-alignment.md -rename to dev/reports/PR_26163_056-account-aside-template-toggle-alignment.md -diff --git a/dev/docs_build/dev/reports/PR_26163_057-account-aside-color-alignment.md b/dev/reports/PR_26163_057-account-aside-color-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_057-account-aside-color-alignment.md -rename to dev/reports/PR_26163_057-account-aside-color-alignment.md -diff --git a/dev/docs_build/dev/reports/PR_26163_058-user-control-profile-selected-device-only.md b/dev/reports/PR_26163_058-user-control-profile-selected-device-only.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_058-user-control-profile-selected-device-only.md -rename to dev/reports/PR_26163_058-user-control-profile-selected-device-only.md -diff --git a/dev/docs_build/dev/reports/PR_26163_059-user-control-profile-generation-flow.md b/dev/reports/PR_26163_059-user-control-profile-generation-flow.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_059-user-control-profile-generation-flow.md -rename to dev/reports/PR_26163_059-user-control-profile-generation-flow.md -diff --git a/dev/docs_build/dev/reports/PR_26163_060-user-control-gamepad-generation-repair.md b/dev/reports/PR_26163_060-user-control-gamepad-generation-repair.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_060-user-control-gamepad-generation-repair.md -rename to dev/reports/PR_26163_060-user-control-gamepad-generation-repair.md -diff --git a/dev/docs_build/dev/reports/PR_26163_064-user-controls-controller-dropdown-selection.md b/dev/reports/PR_26163_064-user-controls-controller-dropdown-selection.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_064-user-controls-controller-dropdown-selection.md -rename to dev/reports/PR_26163_064-user-controls-controller-dropdown-selection.md -diff --git a/dev/docs_build/dev/reports/PR_26163_065-user-controls-multiple-profiles-per-controller.md b/dev/reports/PR_26163_065-user-controls-multiple-profiles-per-controller.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_065-user-controls-multiple-profiles-per-controller.md -rename to dev/reports/PR_26163_065-user-controls-multiple-profiles-per-controller.md -diff --git a/dev/docs_build/dev/reports/PR_26163_066-user-controls-layout-polish.md b/dev/reports/PR_26163_066-user-controls-layout-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_066-user-controls-layout-polish.md -rename to dev/reports/PR_26163_066-user-controls-layout-polish.md -diff --git a/dev/docs_build/dev/reports/PR_26163_067-user-controls-profile-radio-groups.md b/dev/reports/PR_26163_067-user-controls-profile-radio-groups.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_067-user-controls-profile-radio-groups.md -rename to dev/reports/PR_26163_067-user-controls-profile-radio-groups.md -diff --git a/dev/docs_build/dev/reports/PR_26163_068-assets-tool-rebuild-from-v1-reference.md b/dev/reports/PR_26163_068-assets-tool-rebuild-from-v1-reference.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_068-assets-tool-rebuild-from-v1-reference.md -rename to dev/reports/PR_26163_068-assets-tool-rebuild-from-v1-reference.md -diff --git a/dev/docs_build/dev/reports/PR_26163_070-tags-and-assets-mvp-build.md b/dev/reports/PR_26163_070-tags-and-assets-mvp-build.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_070-tags-and-assets-mvp-build.md -rename to dev/reports/PR_26163_070-tags-and-assets-mvp-build.md -diff --git a/dev/docs_build/dev/reports/PR_26163_071-tags-assets-completion-fixes.md b/dev/reports/PR_26163_071-tags-assets-completion-fixes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_071-tags-assets-completion-fixes.md -rename to dev/reports/PR_26163_071-tags-assets-completion-fixes.md -diff --git a/dev/docs_build/dev/reports/PR_26163_072-assets-source-upload-reference-details.md b/dev/reports/PR_26163_072-assets-source-upload-reference-details.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_072-assets-source-upload-reference-details.md -rename to dev/reports/PR_26163_072-assets-source-upload-reference-details.md -diff --git a/dev/docs_build/dev/reports/PR_26163_073-assets-source-rules-followup.md b/dev/reports/PR_26163_073-assets-source-rules-followup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_073-assets-source-rules-followup.md -rename to dev/reports/PR_26163_073-assets-source-rules-followup.md -diff --git a/dev/docs_build/dev/reports/PR_26163_074-assets-multi-file-upload-project-write.md b/dev/reports/PR_26163_074-assets-multi-file-upload-project-write.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_074-assets-multi-file-upload-project-write.md -rename to dev/reports/PR_26163_074-assets-multi-file-upload-project-write.md -diff --git a/dev/docs_build/dev/reports/PR_26163_075-assets-upload-write-and-view-fix.md b/dev/reports/PR_26163_075-assets-upload-write-and-view-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_075-assets-upload-write-and-view-fix.md -rename to dev/reports/PR_26163_075-assets-upload-write-and-view-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26163_076-assets-upload-prod-alignment.md b/dev/reports/PR_26163_076-assets-upload-prod-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_076-assets-upload-prod-alignment.md -rename to dev/reports/PR_26163_076-assets-upload-prod-alignment.md -diff --git a/dev/docs_build/dev/reports/PR_26163_077-assets-upload-ux-and-duplicate-guard.md b/dev/reports/PR_26163_077-assets-upload-ux-and-duplicate-guard.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_077-assets-upload-ux-and-duplicate-guard.md -rename to dev/reports/PR_26163_077-assets-upload-ux-and-duplicate-guard.md -diff --git a/dev/docs_build/dev/reports/PR_26163_078-assets-inline-upload-progress.md b/dev/reports/PR_26163_078-assets-inline-upload-progress.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_078-assets-inline-upload-progress.md -rename to dev/reports/PR_26163_078-assets-inline-upload-progress.md -diff --git a/dev/docs_build/dev/reports/PR_26163_079-assets-byte-accurate-upload-progress.md b/dev/reports/PR_26163_079-assets-byte-accurate-upload-progress.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_079-assets-byte-accurate-upload-progress.md -rename to dev/reports/PR_26163_079-assets-byte-accurate-upload-progress.md -diff --git a/dev/docs_build/dev/reports/PR_26163_080-assets-delete-file-and-received-progress.md b/dev/reports/PR_26163_080-assets-delete-file-and-received-progress.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_080-assets-delete-file-and-received-progress.md -rename to dev/reports/PR_26163_080-assets-delete-file-and-received-progress.md -diff --git a/dev/docs_build/dev/reports/PR_26163_081-assets-upload-progress-auto-hide.md b/dev/reports/PR_26163_081-assets-upload-progress-auto-hide.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_081-assets-upload-progress-auto-hide.md -rename to dev/reports/PR_26163_081-assets-upload-progress-auto-hide.md -diff --git a/dev/docs_build/dev/reports/PR_26163_082-lazy-project-id-creation.md b/dev/reports/PR_26163_082-lazy-project-id-creation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_082-lazy-project-id-creation.md -rename to dev/reports/PR_26163_082-lazy-project-id-creation.md -diff --git a/dev/docs_build/dev/reports/PR_26163_083-assets-upload-cleanup-fixes.md b/dev/reports/PR_26163_083-assets-upload-cleanup-fixes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_083-assets-upload-cleanup-fixes.md -rename to dev/reports/PR_26163_083-assets-upload-cleanup-fixes.md -diff --git a/dev/docs_build/dev/reports/PR_26163_084-assets-fun-factor-and-foundry-bot.md b/dev/reports/PR_26163_084-assets-fun-factor-and-foundry-bot.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26163_084-assets-fun-factor-and-foundry-bot.md -rename to dev/reports/PR_26163_084-assets-fun-factor-and-foundry-bot.md -diff --git a/dev/docs_build/dev/reports/PR_26164_085-about-page-refresh.md b/dev/reports/PR_26164_085-about-page-refresh.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_085-about-page-refresh.md -rename to dev/reports/PR_26164_085-about-page-refresh.md -diff --git a/dev/docs_build/dev/reports/PR_26164_086-company-pages-creator-story.md b/dev/reports/PR_26164_086-company-pages-creator-story.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_086-company-pages-creator-story.md -rename to dev/reports/PR_26164_086-company-pages-creator-story.md -diff --git a/dev/docs_build/dev/reports/PR_26164_087-home-and-how-mascots.md b/dev/reports/PR_26164_087-home-and-how-mascots.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_087-home-and-how-mascots.md -rename to dev/reports/PR_26164_087-home-and-how-mascots.md -diff --git a/dev/docs_build/dev/reports/PR_26164_088-home-share-entry.md b/dev/reports/PR_26164_088-home-share-entry.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_088-home-share-entry.md -rename to dev/reports/PR_26164_088-home-share-entry.md -diff --git a/dev/docs_build/dev/reports/PR_26164_089-home-entry-card-thirds.md b/dev/reports/PR_26164_089-home-entry-card-thirds.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_089-home-entry-card-thirds.md -rename to dev/reports/PR_26164_089-home-entry-card-thirds.md -diff --git a/dev/docs_build/dev/reports/PR_26164_090-remove-mem-db-dev.md b/dev/reports/PR_26164_090-remove-mem-db-dev.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_090-remove-mem-db-dev.md -rename to dev/reports/PR_26164_090-remove-mem-db-dev.md -diff --git a/dev/docs_build/dev/reports/PR_26164_091-db-ddl-site-setup-governance.md b/dev/reports/PR_26164_091-db-ddl-site-setup-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_091-db-ddl-site-setup-governance.md -rename to dev/reports/PR_26164_091-db-ddl-site-setup-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26164_092-fix-db-identity-governance.md b/dev/reports/PR_26164_092-fix-db-identity-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_092-fix-db-identity-governance.md -rename to dev/reports/PR_26164_092-fix-db-identity-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26164_093-sign-in-route-cleanup.md b/dev/reports/PR_26164_093-sign-in-route-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_093-sign-in-route-cleanup.md -rename to dev/reports/PR_26164_093-sign-in-route-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26164_094-new-db-consumer-migration.md b/dev/reports/PR_26164_094-new-db-consumer-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_094-new-db-consumer-migration.md -rename to dev/reports/PR_26164_094-new-db-consumer-migration.md -diff --git a/dev/docs_build/dev/reports/PR_26164_095-pr092-leftover-cleanup.md b/dev/reports/PR_26164_095-pr092-leftover-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26164_095-pr092-leftover-cleanup.md -rename to dev/reports/PR_26164_095-pr092-leftover-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26166_124-ai-platform-command-center.md b/dev/reports/PR_26166_124-ai-platform-command-center.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_124-ai-platform-command-center.md -rename to dev/reports/PR_26166_124-ai-platform-command-center.md -diff --git a/dev/docs_build/dev/reports/PR_26166_140-create-account-password-reset-pages.md b/dev/reports/PR_26166_140-create-account-password-reset-pages.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_140-create-account-password-reset-pages.md -rename to dev/reports/PR_26166_140-create-account-password-reset-pages.md -diff --git a/dev/docs_build/dev/reports/PR_26166_141-supabase-dev-auth-activation.md b/dev/reports/PR_26166_141-supabase-dev-auth-activation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_141-supabase-dev-auth-activation.md -rename to dev/reports/PR_26166_141-supabase-dev-auth-activation.md -diff --git a/dev/docs_build/dev/reports/PR_26166_142-auth-status-backend-contract.md b/dev/reports/PR_26166_142-auth-status-backend-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_142-auth-status-backend-contract.md -rename to dev/reports/PR_26166_142-auth-status-backend-contract.md -diff --git a/dev/docs_build/dev/reports/PR_26166_144-supabase-auth-preflight-selection-fix.md b/dev/reports/PR_26166_144-supabase-auth-preflight-selection-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_144-supabase-auth-preflight-selection-fix.md -rename to dev/reports/PR_26166_144-supabase-auth-preflight-selection-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26166_145-supabase-users-roles-cutover.md b/dev/reports/PR_26166_145-supabase-users-roles-cutover.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_145-supabase-users-roles-cutover.md -rename to dev/reports/PR_26166_145-supabase-users-roles-cutover.md -diff --git a/dev/docs_build/dev/reports/PR_26166_146-supabase-auth-default-provider.md b/dev/reports/PR_26166_146-supabase-auth-default-provider.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_146-supabase-auth-default-provider.md -rename to dev/reports/PR_26166_146-supabase-auth-default-provider.md -diff --git a/dev/docs_build/dev/reports/PR_26166_147-supabase-auth-live-validation.md b/dev/reports/PR_26166_147-supabase-auth-live-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_147-supabase-auth-live-validation.md -rename to dev/reports/PR_26166_147-supabase-auth-live-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26166_148-supabase-auth-readiness-gate.md b/dev/reports/PR_26166_148-supabase-auth-readiness-gate.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_148-supabase-auth-readiness-gate.md -rename to dev/reports/PR_26166_148-supabase-auth-readiness-gate.md -diff --git a/dev/docs_build/dev/reports/PR_26166_149-sign-in-live-supabase-flow.md b/dev/reports/PR_26166_149-sign-in-live-supabase-flow.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_149-sign-in-live-supabase-flow.md -rename to dev/reports/PR_26166_149-sign-in-live-supabase-flow.md -diff --git a/dev/docs_build/dev/reports/PR_26166_150-create-account-live-supabase-flow.md b/dev/reports/PR_26166_150-create-account-live-supabase-flow.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_150-create-account-live-supabase-flow.md -rename to dev/reports/PR_26166_150-create-account-live-supabase-flow.md -diff --git a/dev/docs_build/dev/reports/PR_26166_151-password-reset-live-supabase-flow.md b/dev/reports/PR_26166_151-password-reset-live-supabase-flow.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_151-password-reset-live-supabase-flow.md -rename to dev/reports/PR_26166_151-password-reset-live-supabase-flow.md -diff --git a/dev/docs_build/dev/reports/PR_26166_152-session-user-role-resolution.md b/dev/reports/PR_26166_152-session-user-role-resolution.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_152-session-user-role-resolution.md -rename to dev/reports/PR_26166_152-session-user-role-resolution.md -diff --git a/dev/docs_build/dev/reports/PR_26166_153-supabase-identity-bootstrap-and-provisioning.md b/dev/reports/PR_26166_153-supabase-identity-bootstrap-and-provisioning.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_153-supabase-identity-bootstrap-and-provisioning.md -rename to dev/reports/PR_26166_153-supabase-identity-bootstrap-and-provisioning.md -diff --git a/dev/docs_build/dev/reports/PR_26166_154-supabase-dev-tls-identity-readiness.md b/dev/reports/PR_26166_154-supabase-dev-tls-identity-readiness.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_154-supabase-dev-tls-identity-readiness.md -rename to dev/reports/PR_26166_154-supabase-dev-tls-identity-readiness.md -diff --git a/dev/docs_build/dev/reports/PR_26166_155-supabase-identity-tables-bootstrap.md b/dev/reports/PR_26166_155-supabase-identity-tables-bootstrap.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_155-supabase-identity-tables-bootstrap.md -rename to dev/reports/PR_26166_155-supabase-identity-tables-bootstrap.md -diff --git a/dev/docs_build/dev/reports/PR_26166_156-live-sign-in-and-provisioning.md b/dev/reports/PR_26166_156-live-sign-in-and-provisioning.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_156-live-sign-in-and-provisioning.md -rename to dev/reports/PR_26166_156-live-sign-in-and-provisioning.md -diff --git a/dev/docs_build/dev/reports/PR_26166_157-first-real-sign-in-validation.md b/dev/reports/PR_26166_157-first-real-sign-in-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_157-first-real-sign-in-validation.md -rename to dev/reports/PR_26166_157-first-real-sign-in-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26166_158-account-flow-error-polish.md b/dev/reports/PR_26166_158-account-flow-error-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_158-account-flow-error-polish.md -rename to dev/reports/PR_26166_158-account-flow-error-polish.md -diff --git a/dev/docs_build/dev/reports/PR_26166_159-account-session-ui-state.md b/dev/reports/PR_26166_159-account-session-ui-state.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_159-account-session-ui-state.md -rename to dev/reports/PR_26166_159-account-session-ui-state.md -diff --git a/dev/docs_build/dev/reports/PR_26166_160-supabase-auth-dev-uat-closeout.md b/dev/reports/PR_26166_160-supabase-auth-dev-uat-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_160-supabase-auth-dev-uat-closeout.md -rename to dev/reports/PR_26166_160-supabase-auth-dev-uat-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26166_161-create-account-defect-fix.md b/dev/reports/PR_26166_161-create-account-defect-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_161-create-account-defect-fix.md -rename to dev/reports/PR_26166_161-create-account-defect-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26166_162-live-create-account-runtime-fix.md b/dev/reports/PR_26166_162-live-create-account-runtime-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_162-live-create-account-runtime-fix.md -rename to dev/reports/PR_26166_162-live-create-account-runtime-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26166_163-create-account-live-diagnostic-fix.md b/dev/reports/PR_26166_163-create-account-live-diagnostic-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_163-create-account-live-diagnostic-fix.md -rename to dev/reports/PR_26166_163-create-account-live-diagnostic-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26166_163-local-api-console-errors.txt b/dev/reports/PR_26166_163-local-api-console-errors.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_163-local-api-console-errors.txt -rename to dev/reports/PR_26166_163-local-api-console-errors.txt -diff --git a/dev/docs_build/dev/reports/PR_26166_163-local-api-console.txt b/dev/reports/PR_26166_163-local-api-console.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_163-local-api-console.txt -rename to dev/reports/PR_26166_163-local-api-console.txt -diff --git a/dev/docs_build/dev/reports/PR_26166_164-live-sign-in-runtime-fix_report.md b/dev/reports/PR_26166_164-live-sign-in-runtime-fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_164-live-sign-in-runtime-fix_report.md -rename to dev/reports/PR_26166_164-live-sign-in-runtime-fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_165-auth-test-user-cleanup_cleanup_report.md b/dev/reports/PR_26166_165-auth-test-user-cleanup_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_165-auth-test-user-cleanup_cleanup_report.md -rename to dev/reports/PR_26166_165-auth-test-user-cleanup_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_165-auth-test-user-cleanup_report.md b/dev/reports/PR_26166_165-auth-test-user-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_165-auth-test-user-cleanup_report.md -rename to dev/reports/PR_26166_165-auth-test-user-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_cleanup_report.md b/dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_cleanup_report.md -rename to dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_report.md b/dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_report.md -rename to dev/reports/PR_26166_166-dev-supabase-auth-closeout-audit_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_167-product-data-provider-contract-hardening_report.md b/dev/reports/PR_26166_167-product-data-provider-contract-hardening_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_167-product-data-provider-contract-hardening_report.md -rename to dev/reports/PR_26166_167-product-data-provider-contract-hardening_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_168-supabase-product-ddl_report.md b/dev/reports/PR_26166_168-supabase-product-ddl_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_168-supabase-product-ddl_report.md -rename to dev/reports/PR_26166_168-supabase-product-ddl_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_cleanup_report.md b/dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_cleanup_report.md -rename to dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_report.md b/dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_report.md -rename to dev/reports/PR_26166_169-supabase-dev-seed-bootstrap_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_170-dev-product-data-cutover_cleanup_report.md b/dev/reports/PR_26166_170-dev-product-data-cutover_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_170-dev-product-data-cutover_cleanup_report.md -rename to dev/reports/PR_26166_170-dev-product-data-cutover_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_170-dev-product-data-cutover_report.md b/dev/reports/PR_26166_170-dev-product-data-cutover_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_170-dev-product-data-cutover_report.md -rename to dev/reports/PR_26166_170-dev-product-data-cutover_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_171-admin-db-viewer-provider-sources_cleanup_report.md b/dev/reports/PR_26166_171-admin-db-viewer-provider-sources_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_171-admin-db-viewer-provider-sources_cleanup_report.md -rename to dev/reports/PR_26166_171-admin-db-viewer-provider-sources_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_171-admin-db-viewer-provider-sources_report.md b/dev/reports/PR_26166_171-admin-db-viewer-provider-sources_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_171-admin-db-viewer-provider-sources_report.md -rename to dev/reports/PR_26166_171-admin-db-viewer-provider-sources_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_172-dev-db-migration-closeout-audit_cleanup_report.md b/dev/reports/PR_26166_172-dev-db-migration-closeout-audit_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_172-dev-db-migration-closeout-audit_cleanup_report.md -rename to dev/reports/PR_26166_172-dev-db-migration-closeout-audit_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_172-dev-db-migration-closeout-audit_report.md b/dev/reports/PR_26166_172-dev-db-migration-closeout-audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_172-dev-db-migration-closeout-audit_report.md -rename to dev/reports/PR_26166_172-dev-db-migration-closeout-audit_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_173-password-reset-rate-limit-message_report.md b/dev/reports/PR_26166_173-password-reset-rate-limit-message_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_173-password-reset-rate-limit-message_report.md -rename to dev/reports/PR_26166_173-password-reset-rate-limit-message_report.md -diff --git a/dev/docs_build/dev/reports/PR_26166_175-dev-admin-bootstrap-password-reset_report.md b/dev/reports/PR_26166_175-dev-admin-bootstrap-password-reset_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26166_175-dev-admin-bootstrap-password-reset_report.md -rename to dev/reports/PR_26166_175-dev-admin-bootstrap-password-reset_report.md -diff --git a/dev/docs_build/dev/reports/PR_26167_174-account-auth-page-unavailable-message.md b/dev/reports/PR_26167_174-account-auth-page-unavailable-message.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_174-account-auth-page-unavailable-message.md -rename to dev/reports/PR_26167_174-account-auth-page-unavailable-message.md -diff --git a/dev/docs_build/dev/reports/PR_26167_175-runtime-environment-branch-audit.md b/dev/reports/PR_26167_175-runtime-environment-branch-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_175-runtime-environment-branch-audit.md -rename to dev/reports/PR_26167_175-runtime-environment-branch-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26167_176-account-pages-single-auth-contract.md b/dev/reports/PR_26167_176-account-pages-single-auth-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_176-account-pages-single-auth-contract.md -rename to dev/reports/PR_26167_176-account-pages-single-auth-contract.md -diff --git a/dev/docs_build/dev/reports/PR_26167_177-api-service-connection-only-config.md b/dev/reports/PR_26167_177-api-service-connection-only-config.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_177-api-service-connection-only-config.md -rename to dev/reports/PR_26167_177-api-service-connection-only-config.md -diff --git a/dev/docs_build/dev/reports/PR_26167_178-auth-error-message-normalization.md b/dev/reports/PR_26167_178-auth-error-message-normalization.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_178-auth-error-message-normalization.md -rename to dev/reports/PR_26167_178-auth-error-message-normalization.md -diff --git a/dev/docs_build/dev/reports/PR_26167_179-environment-agnostic-validation-gates.md b/dev/reports/PR_26167_179-environment-agnostic-validation-gates.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_179-environment-agnostic-validation-gates.md -rename to dev/reports/PR_26167_179-environment-agnostic-validation-gates.md -diff --git a/dev/docs_build/dev/reports/PR_26167_180-account-pages-remove-local-db-browser-contract.md b/dev/reports/PR_26167_180-account-pages-remove-local-db-browser-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_180-account-pages-remove-local-db-browser-contract.md -rename to dev/reports/PR_26167_180-account-pages-remove-local-db-browser-contract.md -diff --git a/dev/docs_build/dev/reports/PR_26167_180-remove-sqlite-runtime-provider.md b/dev/reports/PR_26167_180-remove-sqlite-runtime-provider.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_180-remove-sqlite-runtime-provider.md -rename to dev/reports/PR_26167_180-remove-sqlite-runtime-provider.md -diff --git a/dev/docs_build/dev/reports/PR_26167_181-supabase-postgres-single-product-data-path.md b/dev/reports/PR_26167_181-supabase-postgres-single-product-data-path.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_181-supabase-postgres-single-product-data-path.md -rename to dev/reports/PR_26167_181-supabase-postgres-single-product-data-path.md -diff --git a/dev/docs_build/dev/reports/PR_26167_182-remove-provider-selection-runtime.md b/dev/reports/PR_26167_182-remove-provider-selection-runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_182-remove-provider-selection-runtime.md -rename to dev/reports/PR_26167_182-remove-provider-selection-runtime.md -diff --git a/dev/docs_build/dev/reports/PR_26167_183-single-service-contract-validation.md b/dev/reports/PR_26167_183-single-service-contract-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_183-single-service-contract-validation.md -rename to dev/reports/PR_26167_183-single-service-contract-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26167_184-delete-sqlite-local-db-runtime-debt.md b/dev/reports/PR_26167_184-delete-sqlite-local-db-runtime-debt.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_184-delete-sqlite-local-db-runtime-debt.md -rename to dev/reports/PR_26167_184-delete-sqlite-local-db-runtime-debt.md -diff --git a/dev/docs_build/dev/reports/PR_26167_185-dev-creator-identity-seed-sync.md b/dev/reports/PR_26167_185-dev-creator-identity-seed-sync.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_185-dev-creator-identity-seed-sync.md -rename to dev/reports/PR_26167_185-dev-creator-identity-seed-sync.md -diff --git a/dev/docs_build/dev/reports/PR_26167_186-dev-identity-roles-and-sqlite-removal.md b/dev/reports/PR_26167_186-dev-identity-roles-and-sqlite-removal.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_186-dev-identity-roles-and-sqlite-removal.md -rename to dev/reports/PR_26167_186-dev-identity-roles-and-sqlite-removal.md -diff --git a/dev/docs_build/dev/reports/PR_26167_187-live-db-cleanup-and-platform-banner.md b/dev/reports/PR_26167_187-live-db-cleanup-and-platform-banner.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_187-live-db-cleanup-and-platform-banner.md -rename to dev/reports/PR_26167_187-live-db-cleanup-and-platform-banner.md -diff --git a/dev/docs_build/dev/reports/PR_26167_188-platform-banner-display-fix.md b/dev/reports/PR_26167_188-platform-banner-display-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_188-platform-banner-display-fix.md -rename to dev/reports/PR_26167_188-platform-banner-display-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26167_189-owner-role-branding-and-footer-banner.md b/dev/reports/PR_26167_189-owner-role-branding-and-footer-banner.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_189-owner-role-branding-and-footer-banner.md -rename to dev/reports/PR_26167_189-owner-role-branding-and-footer-banner.md -diff --git a/dev/docs_build/dev/reports/PR_26167_190-platform-banner-ux-cleanup.md b/dev/reports/PR_26167_190-platform-banner-ux-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_190-platform-banner-ux-cleanup.md -rename to dev/reports/PR_26167_190-platform-banner-ux-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26167_191-owner-operations-settings-and-role-cleanup.md b/dev/reports/PR_26167_191-owner-operations-settings-and-role-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_191-owner-operations-settings-and-role-cleanup.md -rename to dev/reports/PR_26167_191-owner-operations-settings-and-role-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26167_192-env-config-and-game-workspace-create-fix.md b/dev/reports/PR_26167_192-env-config-and-game-workspace-create-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_192-env-config-and-game-workspace-create-fix.md -rename to dev/reports/PR_26167_192-env-config-and-game-workspace-create-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url-redo.md b/dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url-redo.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url-redo.md -rename to dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url-redo.md -diff --git a/dev/docs_build/dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url.md b/dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url.md -rename to dev/reports/PR_26167_193-env-runtime-single-file-and-generic-db-url.md -diff --git a/dev/docs_build/dev/reports/PR_26167_194-env-runtime-real-fix.md b/dev/reports/PR_26167_194-env-runtime-real-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_194-env-runtime-real-fix.md -rename to dev/reports/PR_26167_194-env-runtime-real-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26167_195-product-data-uses-database-url.md b/dev/reports/PR_26167_195-product-data-uses-database-url.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_195-product-data-uses-database-url.md -rename to dev/reports/PR_26167_195-product-data-uses-database-url.md -diff --git a/dev/docs_build/dev/reports/PR_26167_196-local-postgres-runtime-unblock.md b/dev/reports/PR_26167_196-local-postgres-runtime-unblock.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_196-local-postgres-runtime-unblock.md -rename to dev/reports/PR_26167_196-local-postgres-runtime-unblock.md -diff --git a/dev/docs_build/dev/reports/PR_26167_197-ddl-apply-supports-local-postgres.md b/dev/reports/PR_26167_197-ddl-apply-supports-local-postgres.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_197-ddl-apply-supports-local-postgres.md -rename to dev/reports/PR_26167_197-ddl-apply-supports-local-postgres.md -diff --git a/dev/docs_build/dev/reports/PR_26167_198-database-ssl-mode-contract.md b/dev/reports/PR_26167_198-database-ssl-mode-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_198-database-ssl-mode-contract.md -rename to dev/reports/PR_26167_198-database-ssl-mode-contract.md -diff --git a/dev/docs_build/dev/reports/PR_26167_199-env-copy-source-governance.md b/dev/reports/PR_26167_199-env-copy-source-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_199-env-copy-source-governance.md -rename to dev/reports/PR_26167_199-env-copy-source-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26167_200-database-migration-apply-lane.md b/dev/reports/PR_26167_200-database-migration-apply-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_200-database-migration-apply-lane.md -rename to dev/reports/PR_26167_200-database-migration-apply-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26167_201-database-promotion-lane.md b/dev/reports/PR_26167_201-database-promotion-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_201-database-promotion-lane.md -rename to dev/reports/PR_26167_201-database-promotion-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26167_202-database-backup-restore-lane.md b/dev/reports/PR_26167_202-database-backup-restore-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_202-database-backup-restore-lane.md -rename to dev/reports/PR_26167_202-database-backup-restore-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26167_203-database-drift-validation.md b/dev/reports/PR_26167_203-database-drift-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_203-database-drift-validation.md -rename to dev/reports/PR_26167_203-database-drift-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26167_204-database-seed-separation.md b/dev/reports/PR_26167_204-database-seed-separation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_204-database-seed-separation.md -rename to dev/reports/PR_26167_204-database-seed-separation.md -diff --git a/dev/docs_build/dev/reports/PR_26167_205-owner-operations-database-tools.md b/dev/reports/PR_26167_205-owner-operations-database-tools.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_205-owner-operations-database-tools.md -rename to dev/reports/PR_26167_205-owner-operations-database-tools.md -diff --git a/dev/docs_build/dev/reports/PR_26167_206-database-runbook.md b/dev/reports/PR_26167_206-database-runbook.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_206-database-runbook.md -rename to dev/reports/PR_26167_206-database-runbook.md -diff --git a/dev/docs_build/dev/reports/PR_26167_207-database-lane-hardening.md b/dev/reports/PR_26167_207-database-lane-hardening.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_207-database-lane-hardening.md -rename to dev/reports/PR_26167_207-database-lane-hardening.md -diff --git a/dev/docs_build/dev/reports/PR_26167_208-database-idempotency-final-check.md b/dev/reports/PR_26167_208-database-idempotency-final-check.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_208-database-idempotency-final-check.md -rename to dev/reports/PR_26167_208-database-idempotency-final-check.md -diff --git a/dev/docs_build/dev/reports/PR_26167_209-owner-database-status-surface.md b/dev/reports/PR_26167_209-owner-database-status-surface.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_209-owner-database-status-surface.md -rename to dev/reports/PR_26167_209-owner-database-status-surface.md -diff --git a/dev/docs_build/dev/reports/PR_26167_210-r2-project-assets-dev-storage.md b/dev/reports/PR_26167_210-r2-project-assets-dev-storage.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26167_210-r2-project-assets-dev-storage.md -rename to dev/reports/PR_26167_210-r2-project-assets-dev-storage.md -diff --git a/dev/docs_build/dev/reports/PR_26168_211-storage-status-surface.md b/dev/reports/PR_26168_211-storage-status-surface.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_211-storage-status-surface.md -rename to dev/reports/PR_26168_211-storage-status-surface.md -diff --git a/dev/docs_build/dev/reports/PR_26168_212-assets-real-storage-mode.md b/dev/reports/PR_26168_212-assets-real-storage-mode.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_212-assets-real-storage-mode.md -rename to dev/reports/PR_26168_212-assets-real-storage-mode.md -diff --git a/dev/docs_build/dev/reports/PR_26168_213-project-asset-reference-linking.md b/dev/reports/PR_26168_213-project-asset-reference-linking.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_213-project-asset-reference-linking.md -rename to dev/reports/PR_26168_213-project-asset-reference-linking.md -diff --git a/dev/docs_build/dev/reports/PR_26168_214-project-promotion-foundation.md b/dev/reports/PR_26168_214-project-promotion-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_214-project-promotion-foundation.md -rename to dev/reports/PR_26168_214-project-promotion-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26168_215-admin-infrastructure-page.md b/dev/reports/PR_26168_215-admin-infrastructure-page.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_215-admin-infrastructure-page.md -rename to dev/reports/PR_26168_215-admin-infrastructure-page.md -diff --git a/dev/docs_build/dev/reports/PR_26168_216-promotion-safety-validation.md b/dev/reports/PR_26168_216-promotion-safety-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_216-promotion-safety-validation.md -rename to dev/reports/PR_26168_216-promotion-safety-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26168_217-project-workspace-db-integration.md b/dev/reports/PR_26168_217-project-workspace-db-integration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_217-project-workspace-db-integration.md -rename to dev/reports/PR_26168_217-project-workspace-db-integration.md -diff --git a/dev/docs_build/dev/reports/PR_26168_218-project-workspace-validation-cleanup.md b/dev/reports/PR_26168_218-project-workspace-validation-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_218-project-workspace-validation-cleanup.md -rename to dev/reports/PR_26168_218-project-workspace-validation-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26168_219-admin-infrastructure-image-storage-path.md b/dev/reports/PR_26168_219-admin-infrastructure-image-storage-path.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_219-admin-infrastructure-image-storage-path.md -rename to dev/reports/PR_26168_219-admin-infrastructure-image-storage-path.md -diff --git a/dev/docs_build/dev/reports/PR_26168_220-promotion-lanes-storage-path-status.md b/dev/reports/PR_26168_220-promotion-lanes-storage-path-status.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_220-promotion-lanes-storage-path-status.md -rename to dev/reports/PR_26168_220-promotion-lanes-storage-path-status.md -diff --git a/dev/docs_build/dev/reports/PR_26168_221-storage-path-error-rule-and-r2-env-ready.md b/dev/reports/PR_26168_221-storage-path-error-rule-and-r2-env-ready.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_221-storage-path-error-rule-and-r2-env-ready.md -rename to dev/reports/PR_26168_221-storage-path-error-rule-and-r2-env-ready.md -diff --git a/dev/docs_build/dev/reports/PR_26168_222-storage-env-prefix-consolidation.md b/dev/reports/PR_26168_222-storage-env-prefix-consolidation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_222-storage-env-prefix-consolidation.md -rename to dev/reports/PR_26168_222-storage-env-prefix-consolidation.md -diff --git a/dev/docs_build/dev/reports/PR_26168_223-codex-decisions-notes.md b/dev/reports/PR_26168_223-codex-decisions-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_223-codex-decisions-notes.md -rename to dev/reports/PR_26168_223-codex-decisions-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26168_224-r2-storage-connectivity-test.md b/dev/reports/PR_26168_224-r2-storage-connectivity-test.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_224-r2-storage-connectivity-test.md -rename to dev/reports/PR_26168_224-r2-storage-connectivity-test.md -diff --git a/dev/docs_build/dev/reports/PR_26168_225-assets-r2-storage-integration.md b/dev/reports/PR_26168_225-assets-r2-storage-integration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_225-assets-r2-storage-integration.md -rename to dev/reports/PR_26168_225-assets-r2-storage-integration.md -diff --git a/dev/docs_build/dev/reports/PR_26168_226-r2-stack-report-cleanup.md b/dev/reports/PR_26168_226-r2-stack-report-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_226-r2-stack-report-cleanup.md -rename to dev/reports/PR_26168_226-r2-stack-report-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26168_227-admin-system-health-page.md b/dev/reports/PR_26168_227-admin-system-health-page.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_227-admin-system-health-page.md -rename to dev/reports/PR_26168_227-admin-system-health-page.md -diff --git a/dev/docs_build/dev/reports/PR_26168_228-system-health-env-limits.md b/dev/reports/PR_26168_228-system-health-env-limits.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_228-system-health-env-limits.md -rename to dev/reports/PR_26168_228-system-health-env-limits.md -diff --git a/dev/docs_build/dev/reports/PR_26168_229-system-health-severity-cleanup.md b/dev/reports/PR_26168_229-system-health-severity-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_229-system-health-severity-cleanup.md -rename to dev/reports/PR_26168_229-system-health-severity-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26168_230-system-health-live-usage-foundation.md b/dev/reports/PR_26168_230-system-health-live-usage-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_230-system-health-live-usage-foundation.md -rename to dev/reports/PR_26168_230-system-health-live-usage-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26168_231-admin-system-health-consolidation.md b/dev/reports/PR_26168_231-admin-system-health-consolidation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_231-admin-system-health-consolidation.md -rename to dev/reports/PR_26168_231-admin-system-health-consolidation.md -diff --git a/dev/docs_build/dev/reports/PR_26168_232-r2-operational-readiness.md b/dev/reports/PR_26168_232-r2-operational-readiness.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_232-r2-operational-readiness.md -rename to dev/reports/PR_26168_232-r2-operational-readiness.md -diff --git a/dev/docs_build/dev/reports/PR_26168_233-admin-system-health-operations-merge.md b/dev/reports/PR_26168_233-admin-system-health-operations-merge.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_233-admin-system-health-operations-merge.md -rename to dev/reports/PR_26168_233-admin-system-health-operations-merge.md -diff --git a/dev/docs_build/dev/reports/PR_26168_234-system-health-storage-connectivity-startup.md b/dev/reports/PR_26168_234-system-health-storage-connectivity-startup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_234-system-health-storage-connectivity-startup.md -rename to dev/reports/PR_26168_234-system-health-storage-connectivity-startup.md -diff --git a/dev/docs_build/dev/reports/PR_26168_235-owner-operations-scope-cleanup.md b/dev/reports/PR_26168_235-owner-operations-scope-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_235-owner-operations-scope-cleanup.md -rename to dev/reports/PR_26168_235-owner-operations-scope-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26168_236-admin-operations-order-and-safety.md b/dev/reports/PR_26168_236-admin-operations-order-and-safety.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_236-admin-operations-order-and-safety.md -rename to dev/reports/PR_26168_236-admin-operations-order-and-safety.md -diff --git a/dev/docs_build/dev/reports/PR_26168_237-admin-ia-cleanup.md b/dev/reports/PR_26168_237-admin-ia-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_237-admin-ia-cleanup.md -rename to dev/reports/PR_26168_237-admin-ia-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26168_238-r2-assets-end-to-end-validation.md b/dev/reports/PR_26168_238-r2-assets-end-to-end-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_238-r2-assets-end-to-end-validation.md -rename to dev/reports/PR_26168_238-r2-assets-end-to-end-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26168_239-gfsp-package-foundation.md b/dev/reports/PR_26168_239-gfsp-package-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_239-gfsp-package-foundation.md -rename to dev/reports/PR_26168_239-gfsp-package-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26168_240-project-package-export.md b/dev/reports/PR_26168_240-project-package-export.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_240-project-package-export.md -rename to dev/reports/PR_26168_240-project-package-export.md -diff --git a/dev/docs_build/dev/reports/PR_26168_241-project-package-validation.md b/dev/reports/PR_26168_241-project-package-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_241-project-package-validation.md -rename to dev/reports/PR_26168_241-project-package-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26168_242-project-package-import.md b/dev/reports/PR_26168_242-project-package-import.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_242-project-package-import.md -rename to dev/reports/PR_26168_242-project-package-import.md -diff --git a/dev/docs_build/dev/reports/PR_26168_243-backup-recovery-foundation.md b/dev/reports/PR_26168_243-backup-recovery-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_243-backup-recovery-foundation.md -rename to dev/reports/PR_26168_243-backup-recovery-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26168_244-project-workspace-real-project-flow.md b/dev/reports/PR_26168_244-project-workspace-real-project-flow.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_244-project-workspace-real-project-flow.md -rename to dev/reports/PR_26168_244-project-workspace-real-project-flow.md -diff --git a/dev/docs_build/dev/reports/PR_26168_245-postgres-backup-foundation.md b/dev/reports/PR_26168_245-postgres-backup-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_245-postgres-backup-foundation.md -rename to dev/reports/PR_26168_245-postgres-backup-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26168_246-r2-backed-postgres-backups.md b/dev/reports/PR_26168_246-r2-backed-postgres-backups.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_246-r2-backed-postgres-backups.md -rename to dev/reports/PR_26168_246-r2-backed-postgres-backups.md -diff --git a/dev/docs_build/dev/reports/PR_26168_247-memberships-page.md b/dev/reports/PR_26168_247-memberships-page.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26168_247-memberships-page.md -rename to dev/reports/PR_26168_247-memberships-page.md -diff --git a/dev/docs_build/dev/reports/PR_26169_002-auth-preview-signin-regression.md b/dev/reports/PR_26169_002-auth-preview-signin-regression.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_002-auth-preview-signin-regression.md -rename to dev/reports/PR_26169_002-auth-preview-signin-regression.md -diff --git a/dev/docs_build/dev/reports/PR_26169_003-beta-invitations-admin.md b/dev/reports/PR_26169_003-beta-invitations-admin.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_003-beta-invitations-admin.md -rename to dev/reports/PR_26169_003-beta-invitations-admin.md -diff --git a/dev/docs_build/dev/reports/PR_26169_004-membership-data-model.md b/dev/reports/PR_26169_004-membership-data-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_004-membership-data-model.md -rename to dev/reports/PR_26169_004-membership-data-model.md -diff --git a/dev/docs_build/dev/reports/PR_26169_005-membership-assignment.md b/dev/reports/PR_26169_005-membership-assignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_005-membership-assignment.md -rename to dev/reports/PR_26169_005-membership-assignment.md -diff --git a/dev/docs_build/dev/reports/PR_26169_006-memberships-page-v2.md b/dev/reports/PR_26169_006-memberships-page-v2.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_006-memberships-page-v2.md -rename to dev/reports/PR_26169_006-memberships-page-v2.md -diff --git a/dev/docs_build/dev/reports/PR_26169_007-ai-credit-foundation.md b/dev/reports/PR_26169_007-ai-credit-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_007-ai-credit-foundation.md -rename to dev/reports/PR_26169_007-ai-credit-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26169_008-ai-credit-display.md b/dev/reports/PR_26169_008-ai-credit-display.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_008-ai-credit-display.md -rename to dev/reports/PR_26169_008-ai-credit-display.md -diff --git a/dev/docs_build/dev/reports/PR_26169_009-marketplace-membership-rules.md b/dev/reports/PR_26169_009-marketplace-membership-rules.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_009-marketplace-membership-rules.md -rename to dev/reports/PR_26169_009-marketplace-membership-rules.md -diff --git a/dev/docs_build/dev/reports/PR_26169_010-marketplace-revenue-model.md b/dev/reports/PR_26169_010-marketplace-revenue-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_010-marketplace-revenue-model.md -rename to dev/reports/PR_26169_010-marketplace-revenue-model.md -diff --git a/dev/docs_build/dev/reports/PR_26169_011-marketplace-categories.md b/dev/reports/PR_26169_011-marketplace-categories.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_011-marketplace-categories.md -rename to dev/reports/PR_26169_011-marketplace-categories.md -diff --git a/dev/docs_build/dev/reports/PR_26169_012-teams-foundation.md b/dev/reports/PR_26169_012-teams-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_012-teams-foundation.md -rename to dev/reports/PR_26169_012-teams-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26169_013-team-enforcement.md b/dev/reports/PR_26169_013-team-enforcement.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_013-team-enforcement.md -rename to dev/reports/PR_26169_013-team-enforcement.md -diff --git a/dev/docs_build/dev/reports/PR_26169_014-legal-foundation.md b/dev/reports/PR_26169_014-legal-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_014-legal-foundation.md -rename to dev/reports/PR_26169_014-legal-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26169_015-terms-of-service.md b/dev/reports/PR_26169_015-terms-of-service.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_015-terms-of-service.md -rename to dev/reports/PR_26169_015-terms-of-service.md -diff --git a/dev/docs_build/dev/reports/PR_26169_016-privacy-cookies-community-copyright-dmca.md b/dev/reports/PR_26169_016-privacy-cookies-community-copyright-dmca.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_016-privacy-cookies-community-copyright-dmca.md -rename to dev/reports/PR_26169_016-privacy-cookies-community-copyright-dmca.md -diff --git a/dev/docs_build/dev/reports/PR_26169_017-owner-memberships.md b/dev/reports/PR_26169_017-owner-memberships.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_017-owner-memberships.md -rename to dev/reports/PR_26169_017-owner-memberships.md -diff --git a/dev/docs_build/dev/reports/PR_26169_018-owner-ai-credits.md b/dev/reports/PR_26169_018-owner-ai-credits.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_018-owner-ai-credits.md -rename to dev/reports/PR_26169_018-owner-ai-credits.md -diff --git a/dev/docs_build/dev/reports/PR_26169_019-admin-health-operations.md b/dev/reports/PR_26169_019-admin-health-operations.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_019-admin-health-operations.md -rename to dev/reports/PR_26169_019-admin-health-operations.md -diff --git a/dev/docs_build/dev/reports/PR_26169_020-architecture-cleanup-api-nav-invitations.md b/dev/reports/PR_26169_020-architecture-cleanup-api-nav-invitations.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_020-architecture-cleanup-api-nav-invitations.md -rename to dev/reports/PR_26169_020-architecture-cleanup-api-nav-invitations.md -diff --git a/dev/docs_build/dev/reports/PR_26169_023-api-menu-path-cleanup.md b/dev/reports/PR_26169_023-api-menu-path-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_023-api-menu-path-cleanup.md -rename to dev/reports/PR_26169_023-api-menu-path-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26169_024-environment-banner-all-pages.md b/dev/reports/PR_26169_024-environment-banner-all-pages.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_024-environment-banner-all-pages.md -rename to dev/reports/PR_26169_024-environment-banner-all-pages.md -diff --git a/dev/docs_build/dev/reports/PR_26169_025-browser-api-url-config.md b/dev/reports/PR_26169_025-browser-api-url-config.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_025-browser-api-url-config.md -rename to dev/reports/PR_26169_025-browser-api-url-config.md -diff --git a/dev/docs_build/dev/reports/PR_26169_026-local-api-startup-url-logging.md b/dev/reports/PR_26169_026-local-api-startup-url-logging.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_026-local-api-startup-url-logging.md -rename to dev/reports/PR_26169_026-local-api-startup-url-logging.md -diff --git a/dev/docs_build/dev/reports/PR_26169_027-owner-notes-restoration.md b/dev/reports/PR_26169_027-owner-notes-restoration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_027-owner-notes-restoration.md -rename to dev/reports/PR_26169_027-owner-notes-restoration.md -diff --git a/dev/docs_build/dev/reports/PR_26169_028-admin-owner-notes-source.md b/dev/reports/PR_26169_028-admin-owner-notes-source.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_028-admin-owner-notes-source.md -rename to dev/reports/PR_26169_028-admin-owner-notes-source.md -diff --git a/dev/docs_build/dev/reports/PR_26169_029-db-viewer-table-groups-regression.md b/dev/reports/PR_26169_029-db-viewer-table-groups-regression.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_029-db-viewer-table-groups-regression.md -rename to dev/reports/PR_26169_029-db-viewer-table-groups-regression.md -diff --git a/dev/docs_build/dev/reports/PR_26169_auth-preview-signin-regression.md b/dev/reports/PR_26169_auth-preview-signin-regression.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26169_auth-preview-signin-regression.md -rename to dev/reports/PR_26169_auth-preview-signin-regression.md -diff --git a/dev/docs_build/dev/reports/PR_26170_001-toolbox-game-journey-navigation.md b/dev/reports/PR_26170_001-toolbox-game-journey-navigation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_001-toolbox-game-journey-navigation.md -rename to dev/reports/PR_26170_001-toolbox-game-journey-navigation.md -diff --git a/dev/docs_build/dev/reports/PR_26170_002-idea-board-tool.md b/dev/reports/PR_26170_002-idea-board-tool.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_002-idea-board-tool.md -rename to dev/reports/PR_26170_002-idea-board-tool.md -diff --git a/dev/docs_build/dev/reports/PR_26170_003-toolbox-create-group.md b/dev/reports/PR_26170_003-toolbox-create-group.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_003-toolbox-create-group.md -rename to dev/reports/PR_26170_003-toolbox-create-group.md -diff --git a/dev/docs_build/dev/reports/PR_26170_005-toolbox-create-idea-color-model.md b/dev/reports/PR_26170_005-toolbox-create-idea-color-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_005-toolbox-create-idea-color-model.md -rename to dev/reports/PR_26170_005-toolbox-create-idea-color-model.md -diff --git a/dev/docs_build/dev/reports/PR_26170_006-toolbox-workflow-order-and-project-team.md b/dev/reports/PR_26170_006-toolbox-workflow-order-and-project-team.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_006-toolbox-workflow-order-and-project-team.md -rename to dev/reports/PR_26170_006-toolbox-workflow-order-and-project-team.md -diff --git a/dev/docs_build/dev/reports/PR_26170_007-toolbox-workflow-render-order-project-team.md b/dev/reports/PR_26170_007-toolbox-workflow-render-order-project-team.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_007-toolbox-workflow-render-order-project-team.md -rename to dev/reports/PR_26170_007-toolbox-workflow-render-order-project-team.md -diff --git a/dev/docs_build/dev/reports/PR_26170_008-workflow-order-governance.md b/dev/reports/PR_26170_008-workflow-order-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_008-workflow-order-governance.md -rename to dev/reports/PR_26170_008-workflow-order-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26170_009-friendly-naming-audit.md b/dev/reports/PR_26170_009-friendly-naming-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_009-friendly-naming-audit.md -rename to dev/reports/PR_26170_009-friendly-naming-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26170_010-friendly-visible-copy.md b/dev/reports/PR_26170_010-friendly-visible-copy.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_010-friendly-visible-copy.md -rename to dev/reports/PR_26170_010-friendly-visible-copy.md -diff --git a/dev/docs_build/dev/reports/PR_26170_011-friendly-metadata-vars.md b/dev/reports/PR_26170_011-friendly-metadata-vars.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_011-friendly-metadata-vars.md -rename to dev/reports/PR_26170_011-friendly-metadata-vars.md -diff --git a/dev/docs_build/dev/reports/PR_26170_012-friendly-routes-folders.md b/dev/reports/PR_26170_012-friendly-routes-folders.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_012-friendly-routes-folders.md -rename to dev/reports/PR_26170_012-friendly-routes-folders.md -diff --git a/dev/docs_build/dev/reports/PR_26170_013-game-journey-friendly-descriptions.md b/dev/reports/PR_26170_013-game-journey-friendly-descriptions.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_013-game-journey-friendly-descriptions.md -rename to dev/reports/PR_26170_013-game-journey-friendly-descriptions.md -diff --git a/dev/docs_build/dev/reports/PR_26170_014-game-journey-master-plan.md b/dev/reports/PR_26170_014-game-journey-master-plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26170_014-game-journey-master-plan.md -rename to dev/reports/PR_26170_014-game-journey-master-plan.md -diff --git a/dev/docs_build/dev/reports/PR_26171_001-game-journey-completion-model-manual-validation.md b/dev/reports/PR_26171_001-game-journey-completion-model-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_001-game-journey-completion-model-manual-validation.md -rename to dev/reports/PR_26171_001-game-journey-completion-model-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_001-game-journey-completion-model-validation.md b/dev/reports/PR_26171_001-game-journey-completion-model-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_001-game-journey-completion-model-validation.md -rename to dev/reports/PR_26171_001-game-journey-completion-model-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_001-game-journey-completion-model.md b/dev/reports/PR_26171_001-game-journey-completion-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_001-game-journey-completion-model.md -rename to dev/reports/PR_26171_001-game-journey-completion-model.md -diff --git a/dev/docs_build/dev/reports/PR_26171_002-messages-manual-validation.md b/dev/reports/PR_26171_002-messages-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_002-messages-manual-validation.md -rename to dev/reports/PR_26171_002-messages-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_002-messages-tool-foundation.md b/dev/reports/PR_26171_002-messages-tool-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_002-messages-tool-foundation.md -rename to dev/reports/PR_26171_002-messages-tool-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_002-messages-validation.txt b/dev/reports/PR_26171_002-messages-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_002-messages-validation.txt -rename to dev/reports/PR_26171_002-messages-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-branch-validation.md b/dev/reports/PR_26171_003-game-journey-friendly-descriptions-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-branch-validation.md -rename to dev/reports/PR_26171_003-game-journey-friendly-descriptions-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-manual-validation.md b/dev/reports/PR_26171_003-game-journey-friendly-descriptions-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-manual-validation.md -rename to dev/reports/PR_26171_003-game-journey-friendly-descriptions-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-requirements-checklist.md b/dev/reports/PR_26171_003-game-journey-friendly-descriptions-requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-requirements-checklist.md -rename to dev/reports/PR_26171_003-game-journey-friendly-descriptions-requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-validation-lane-report.md b/dev/reports/PR_26171_003-game-journey-friendly-descriptions-validation-lane-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions-validation-lane-report.md -rename to dev/reports/PR_26171_003-game-journey-friendly-descriptions-validation-lane-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions.md b/dev/reports/PR_26171_003-game-journey-friendly-descriptions.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_003-game-journey-friendly-descriptions.md -rename to dev/reports/PR_26171_003-game-journey-friendly-descriptions.md -diff --git a/dev/docs_build/dev/reports/PR_26171_004-messages-emotion-segments-manual-validation.md b/dev/reports/PR_26171_004-messages-emotion-segments-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_004-messages-emotion-segments-manual-validation.md -rename to dev/reports/PR_26171_004-messages-emotion-segments-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_004-messages-emotion-segments-validation.txt b/dev/reports/PR_26171_004-messages-emotion-segments-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_004-messages-emotion-segments-validation.txt -rename to dev/reports/PR_26171_004-messages-emotion-segments-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_004-messages-emotion-segments.md b/dev/reports/PR_26171_004-messages-emotion-segments.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_004-messages-emotion-segments.md -rename to dev/reports/PR_26171_004-messages-emotion-segments.md -diff --git a/dev/docs_build/dev/reports/PR_26171_006-message-emotion-profile-management-manual-validation.md b/dev/reports/PR_26171_006-message-emotion-profile-management-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_006-message-emotion-profile-management-manual-validation.md -rename to dev/reports/PR_26171_006-message-emotion-profile-management-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_006-message-emotion-profile-management-validation.txt b/dev/reports/PR_26171_006-message-emotion-profile-management-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_006-message-emotion-profile-management-validation.txt -rename to dev/reports/PR_26171_006-message-emotion-profile-management-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_006-message-emotion-profile-management.md b/dev/reports/PR_26171_006-message-emotion-profile-management.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_006-message-emotion-profile-management.md -rename to dev/reports/PR_26171_006-message-emotion-profile-management.md -diff --git a/dev/docs_build/dev/reports/PR_26171_008-message-tts-profile-foundation-manual-validation.md b/dev/reports/PR_26171_008-message-tts-profile-foundation-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_008-message-tts-profile-foundation-manual-validation.md -rename to dev/reports/PR_26171_008-message-tts-profile-foundation-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_008-message-tts-profile-foundation-validation.txt b/dev/reports/PR_26171_008-message-tts-profile-foundation-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_008-message-tts-profile-foundation-validation.txt -rename to dev/reports/PR_26171_008-message-tts-profile-foundation-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_008-message-tts-profile-foundation.md b/dev/reports/PR_26171_008-message-tts-profile-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_008-message-tts-profile-foundation.md -rename to dev/reports/PR_26171_008-message-tts-profile-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_010-message-speech-preview-manual-validation.md b/dev/reports/PR_26171_010-message-speech-preview-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_010-message-speech-preview-manual-validation.md -rename to dev/reports/PR_26171_010-message-speech-preview-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_010-message-speech-preview-validation.txt b/dev/reports/PR_26171_010-message-speech-preview-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_010-message-speech-preview-validation.txt -rename to dev/reports/PR_26171_010-message-speech-preview-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_010-message-speech-preview.md b/dev/reports/PR_26171_010-message-speech-preview.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_010-message-speech-preview.md -rename to dev/reports/PR_26171_010-message-speech-preview.md -diff --git a/dev/docs_build/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-manual-validation.md b/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-manual-validation.md -rename to dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-validation.txt b/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-validation.txt -rename to dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup.md b/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup.md -rename to dev/reports/PR_26171_012-message-tool-postgres-table-layout-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26171_014-message-studio-table-governance-manual-validation.txt b/dev/reports/PR_26171_014-message-studio-table-governance-manual-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_014-message-studio-table-governance-manual-validation.txt -rename to dev/reports/PR_26171_014-message-studio-table-governance-manual-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_014-message-studio-table-governance-validation.txt b/dev/reports/PR_26171_014-message-studio-table-governance-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_014-message-studio-table-governance-validation.txt -rename to dev/reports/PR_26171_014-message-studio-table-governance-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_014-message-studio-table-governance.md b/dev/reports/PR_26171_014-message-studio-table-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_014-message-studio-table-governance.md -rename to dev/reports/PR_26171_014-message-studio-table-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-manual-validation.txt b/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-manual-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-manual-validation.txt -rename to dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-manual-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-validation.txt b/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-validation.txt -rename to dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker.md b/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker.md -rename to dev/reports/PR_26171_016-message-studio-speech-test-and-tts-service-picker.md -diff --git a/dev/docs_build/dev/reports/PR_26171_018-local-api-startup-diagnostics-manual-validation-notes.md b/dev/reports/PR_26171_018-local-api-startup-diagnostics-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_018-local-api-startup-diagnostics-manual-validation-notes.md -rename to dev/reports/PR_26171_018-local-api-startup-diagnostics-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_018-local-api-startup-diagnostics-validation-report.md b/dev/reports/PR_26171_018-local-api-startup-diagnostics-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_018-local-api-startup-diagnostics-validation-report.md -rename to dev/reports/PR_26171_018-local-api-startup-diagnostics-validation-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_018-local-api-startup-diagnostics.md b/dev/reports/PR_26171_018-local-api-startup-diagnostics.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_018-local-api-startup-diagnostics.md -rename to dev/reports/PR_26171_018-local-api-startup-diagnostics.md -diff --git a/dev/docs_build/dev/reports/PR_26171_021-summary-notes-table-governance-manual-validation.md b/dev/reports/PR_26171_021-summary-notes-table-governance-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_021-summary-notes-table-governance-manual-validation.md -rename to dev/reports/PR_26171_021-summary-notes-table-governance-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_021-summary-notes-table-governance-validation.md b/dev/reports/PR_26171_021-summary-notes-table-governance-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_021-summary-notes-table-governance-validation.md -rename to dev/reports/PR_26171_021-summary-notes-table-governance-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_021-summary-notes-table-governance.md b/dev/reports/PR_26171_021-summary-notes-table-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_021-summary-notes-table-governance.md -rename to dev/reports/PR_26171_021-summary-notes-table-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction-manual-validation.md b/dev/reports/PR_26171_023-game-journey-summary-table-correction-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction-manual-validation.md -rename to dev/reports/PR_26171_023-game-journey-summary-table-correction-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction-requirements.md b/dev/reports/PR_26171_023-game-journey-summary-table-correction-requirements.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction-requirements.md -rename to dev/reports/PR_26171_023-game-journey-summary-table-correction-requirements.md -diff --git a/dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction-validation.md b/dev/reports/PR_26171_023-game-journey-summary-table-correction-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction-validation.md -rename to dev/reports/PR_26171_023-game-journey-summary-table-correction-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction.md b/dev/reports/PR_26171_023-game-journey-summary-table-correction.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_023-game-journey-summary-table-correction.md -rename to dev/reports/PR_26171_023-game-journey-summary-table-correction.md -diff --git a/dev/docs_build/dev/reports/PR_26171_025-codex-git-workflow-ownership-manual-validation.md b/dev/reports/PR_26171_025-codex-git-workflow-ownership-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_025-codex-git-workflow-ownership-manual-validation.md -rename to dev/reports/PR_26171_025-codex-git-workflow-ownership-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_025-codex-git-workflow-ownership-validation.md b/dev/reports/PR_26171_025-codex-git-workflow-ownership-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_025-codex-git-workflow-ownership-validation.md -rename to dev/reports/PR_26171_025-codex-git-workflow-ownership-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_025-codex-git-workflow-ownership.md b/dev/reports/PR_26171_025-codex-git-workflow-ownership.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_025-codex-git-workflow-ownership.md -rename to dev/reports/PR_26171_025-codex-git-workflow-ownership.md -diff --git a/dev/docs_build/dev/reports/PR_26171_027-text2speech-rebuild-foundation.md b/dev/reports/PR_26171_027-text2speech-rebuild-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_027-text2speech-rebuild-foundation.md -rename to dev/reports/PR_26171_027-text2speech-rebuild-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_029-text2speech-tool-shell.md b/dev/reports/PR_26171_029-text2speech-tool-shell.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_029-text2speech-tool-shell.md -rename to dev/reports/PR_26171_029-text2speech-tool-shell.md -diff --git a/dev/docs_build/dev/reports/PR_26171_031-text2speech-message-model.md b/dev/reports/PR_26171_031-text2speech-message-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_031-text2speech-message-model.md -rename to dev/reports/PR_26171_031-text2speech-message-model.md -diff --git a/dev/docs_build/dev/reports/PR_26171_033-text2speech-generation-workflow.md b/dev/reports/PR_26171_033-text2speech-generation-workflow.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_033-text2speech-generation-workflow.md -rename to dev/reports/PR_26171_033-text2speech-generation-workflow.md -diff --git a/dev/docs_build/dev/reports/PR_26171_035-text2speech-provider-adapter-plan.md b/dev/reports/PR_26171_035-text2speech-provider-adapter-plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_035-text2speech-provider-adapter-plan.md -rename to dev/reports/PR_26171_035-text2speech-provider-adapter-plan.md -diff --git a/dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-manual-validation.md b/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-manual-validation.md -rename to dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-requirements.md b/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-requirements.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-requirements.md -rename to dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-requirements.md -diff --git a/dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-validation.md b/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-validation.md -rename to dev/reports/PR_26171_037-text2speech-functional-tool-rebuild-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild.md b/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_037-text2speech-functional-tool-rebuild.md -rename to dev/reports/PR_26171_037-text2speech-functional-tool-rebuild.md -diff --git a/dev/docs_build/dev/reports/PR_26171_059-manual-validation-notes.md b/dev/reports/PR_26171_059-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_059-manual-validation-notes.md -rename to dev/reports/PR_26171_059-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_059-rollback-restore-plan.md b/dev/reports/PR_26171_059-rollback-restore-plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_059-rollback-restore-plan.md -rename to dev/reports/PR_26171_059-rollback-restore-plan.md -diff --git a/dev/docs_build/dev/reports/PR_26171_059-validation.md b/dev/reports/PR_26171_059-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_059-validation.md -rename to dev/reports/PR_26171_059-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_061-engine-audio-ownership-checklist.md b/dev/reports/PR_26171_061-engine-audio-ownership-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_061-engine-audio-ownership-checklist.md -rename to dev/reports/PR_26171_061-engine-audio-ownership-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_061-instruction-compliance-checklist.md b/dev/reports/PR_26171_061-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_061-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_061-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_061-manual-validation-notes.md b/dev/reports/PR_26171_061-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_061-manual-validation-notes.md -rename to dev/reports/PR_26171_061-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_061-old-tts-feature-parity-checklist.md b/dev/reports/PR_26171_061-old-tts-feature-parity-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_061-old-tts-feature-parity-checklist.md -rename to dev/reports/PR_26171_061-old-tts-feature-parity-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_061-text2speech-engine-audio-feature-parity.md b/dev/reports/PR_26171_061-text2speech-engine-audio-feature-parity.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_061-text2speech-engine-audio-feature-parity.md -rename to dev/reports/PR_26171_061-text2speech-engine-audio-feature-parity.md -diff --git a/dev/docs_build/dev/reports/PR_26171_061-validation.md b/dev/reports/PR_26171_061-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_061-validation.md -rename to dev/reports/PR_26171_061-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_063-codex-instruction-enforcement-hardening.md b/dev/reports/PR_26171_063-codex-instruction-enforcement-hardening.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_063-codex-instruction-enforcement-hardening.md -rename to dev/reports/PR_26171_063-codex-instruction-enforcement-hardening.md -diff --git a/dev/docs_build/dev/reports/PR_26171_063-instruction-compliance-checklist.md b/dev/reports/PR_26171_063-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_063-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_063-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_063-manual-validation-notes.md b/dev/reports/PR_26171_063-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_063-manual-validation-notes.md -rename to dev/reports/PR_26171_063-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_063-validation.md b/dev/reports/PR_26171_063-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_063-validation.md -rename to dev/reports/PR_26171_063-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_065-instruction-compliance-checklist.md b/dev/reports/PR_26171_065-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_065-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_065-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_065-manual-validation-notes.md b/dev/reports/PR_26171_065-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_065-manual-validation-notes.md -rename to dev/reports/PR_26171_065-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_065-message-studio-parent-child-table-foundation.md b/dev/reports/PR_26171_065-message-studio-parent-child-table-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_065-message-studio-parent-child-table-foundation.md -rename to dev/reports/PR_26171_065-message-studio-parent-child-table-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_065-parent-child-table-checklist.md b/dev/reports/PR_26171_065-parent-child-table-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_065-parent-child-table-checklist.md -rename to dev/reports/PR_26171_065-parent-child-table-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_065-validation.md b/dev/reports/PR_26171_065-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_065-validation.md -rename to dev/reports/PR_26171_065-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_067-instruction-compliance-checklist.md b/dev/reports/PR_26171_067-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_067-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_067-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_067-manual-validation-notes.md b/dev/reports/PR_26171_067-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_067-manual-validation-notes.md -rename to dev/reports/PR_26171_067-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_067-message-tts-contract-checklist.md b/dev/reports/PR_26171_067-message-tts-contract-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_067-message-tts-contract-checklist.md -rename to dev/reports/PR_26171_067-message-tts-contract-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_067-parent-child-table-checklist.md b/dev/reports/PR_26171_067-parent-child-table-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_067-parent-child-table-checklist.md -rename to dev/reports/PR_26171_067-parent-child-table-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_067-tts-profile-emotion-table-foundation.md b/dev/reports/PR_26171_067-tts-profile-emotion-table-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_067-tts-profile-emotion-table-foundation.md -rename to dev/reports/PR_26171_067-tts-profile-emotion-table-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_067-validation.md b/dev/reports/PR_26171_067-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_067-validation.md -rename to dev/reports/PR_26171_067-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_069-manual-validation-notes.md b/dev/reports/PR_26171_069-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_069-manual-validation-notes.md -rename to dev/reports/PR_26171_069-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_069-message-tts-ownership-checklist.md b/dev/reports/PR_26171_069-message-tts-ownership-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_069-message-tts-ownership-checklist.md -rename to dev/reports/PR_26171_069-message-tts-ownership-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_069-message-tts-profile-contract-alignment.md b/dev/reports/PR_26171_069-message-tts-profile-contract-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_069-message-tts-profile-contract-alignment.md -rename to dev/reports/PR_26171_069-message-tts-profile-contract-alignment.md -diff --git a/dev/docs_build/dev/reports/PR_26171_069-parent-child-table-checklist.md b/dev/reports/PR_26171_069-parent-child-table-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_069-parent-child-table-checklist.md -rename to dev/reports/PR_26171_069-parent-child-table-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_069-validation.md b/dev/reports/PR_26171_069-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_069-validation.md -rename to dev/reports/PR_26171_069-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_071-conflicted-files-before-cleanup.txt b/dev/reports/PR_26171_071-conflicted-files-before-cleanup.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_071-conflicted-files-before-cleanup.txt -rename to dev/reports/PR_26171_071-conflicted-files-before-cleanup.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_071-discarded-unrelated-work-report.md b/dev/reports/PR_26171_071-discarded-unrelated-work-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_071-discarded-unrelated-work-report.md -rename to dev/reports/PR_26171_071-discarded-unrelated-work-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_071-manual-validation-notes.md b/dev/reports/PR_26171_071-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_071-manual-validation-notes.md -rename to dev/reports/PR_26171_071-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_071-merge-conflict-recovery-report.md b/dev/reports/PR_26171_071-merge-conflict-recovery-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_071-merge-conflict-recovery-report.md -rename to dev/reports/PR_26171_071-merge-conflict-recovery-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_071-preserved-local-commit-report.md b/dev/reports/PR_26171_071-preserved-local-commit-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_071-preserved-local-commit-report.md -rename to dev/reports/PR_26171_071-preserved-local-commit-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_071-recovery-precleanup.patch.md b/dev/reports/PR_26171_071-recovery-precleanup.patch.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_071-recovery-precleanup.patch.md -rename to dev/reports/PR_26171_071-recovery-precleanup.patch.md -diff --git a/dev/docs_build/dev/reports/PR_26171_071-status-before-cleanup.txt b/dev/reports/PR_26171_071-status-before-cleanup.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_071-status-before-cleanup.txt -rename to dev/reports/PR_26171_071-status-before-cleanup.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_071-untracked-files-before-cleanup.txt b/dev/reports/PR_26171_071-untracked-files-before-cleanup.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_071-untracked-files-before-cleanup.txt -rename to dev/reports/PR_26171_071-untracked-files-before-cleanup.txt -diff --git a/dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-data-preservation-notes.md b/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-data-preservation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-data-preservation-notes.md -rename to dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-data-preservation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-instruction-compliance-checklist.md b/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-manual-validation-notes.md b/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-manual-validation-notes.md -rename to dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration.md b/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration.md -rename to dev/reports/PR_26171_ALPHA_023-game-journey-postgres-metrics-migration.md -diff --git a/dev/docs_build/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-manual-validation-notes.md b/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-manual-validation-notes.md -rename to dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-validation.md b/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-validation.md -rename to dev/reports/PR_26171_ALPHA_075-team-based-pr-naming-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming.md b/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_ALPHA_075-team-based-pr-naming.md -rename to dev/reports/PR_26171_ALPHA_075-team-based-pr-naming.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-instruction-compliance-checklist.md b/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-manual-validation-notes.md b/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-manual-validation-notes.md -rename to dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover.md b/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover.md -rename to dev/reports/PR_26171_BETA_022-messages-postgres-service-cutover.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-manual-validation-notes.md b/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-manual-validation-notes.md -rename to dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-message-tts-ownership-checklist.md b/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-message-tts-ownership-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-message-tts-ownership-checklist.md -rename to dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-message-tts-ownership-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-parent-child-table-checklist.md b/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-parent-child-table-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-parent-child-table-checklist.md -rename to dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-parent-child-table-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-validation.md b/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-validation.md -rename to dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment.md b/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment.md -rename to dev/reports/PR_26171_BETA_069-message-tts-profile-contract-alignment.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-manual-validation-notes.md b/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-manual-validation-notes.md -rename to dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-validation.md b/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-validation.md -rename to dev/reports/PR_26171_BETA_071-tts-profile-emotion-table-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table.md b/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_071-tts-profile-emotion-table.md -rename to dev/reports/PR_26171_BETA_071-tts-profile-emotion-table.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-instruction-compliance-checklist.md b/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-manual-validation-notes.md b/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-manual-validation-notes.md -rename to dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-message-parent-child-table-checklist.md b/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-message-parent-child-table-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-message-parent-child-table-checklist.md -rename to dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-message-parent-child-table-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-summary-layout-checklist.md b/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-summary-layout-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-summary-layout-checklist.md -rename to dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-summary-layout-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-tools-registration-checklist.md b/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-tools-registration-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-tools-registration-checklist.md -rename to dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-tts-tools-registration-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-validation-report.md b/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-validation-report.md -rename to dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction-validation-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction.md b/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction.md -rename to dev/reports/PR_26171_BETA_073-message-tts-table-ui-correction.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-instruction-compliance-checklist.md b/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-manual-validation-notes.md b/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-manual-validation-notes.md -rename to dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-validation-report.md b/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-validation-report.md -rename to dev/reports/PR_26171_BETA_075-tts-message-table-cleanup-validation-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup.md b/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_075-tts-message-table-cleanup.md -rename to dev/reports/PR_26171_BETA_075-tts-message-table-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-manual-validation-notes.md b/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-manual-validation-notes.md -rename to dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-validation-report.md b/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-validation-report.md -rename to dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table-validation-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table.md b/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table.md -rename to dev/reports/PR_26171_BETA_077-tts-profile-parent-child-table.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-manual-validation-notes.md b/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-manual-validation-notes.md -rename to dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-validation-report.md b/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-validation-report.md -rename to dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion-validation-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion.md b/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion.md -rename to dev/reports/PR_26171_BETA_079-message-studio-parent-child-table-completion.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-manual-validation-notes.md b/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-manual-validation-notes.md -rename to dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-validation-report.md b/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-validation-report.md -rename to dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine-validation-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine.md b/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine.md -rename to dev/reports/PR_26171_BETA_081-message-playback-through-tts-engine.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-dead-code-cleanup-checklist.md b/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-dead-code-cleanup-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-dead-code-cleanup-checklist.md -rename to dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-dead-code-cleanup-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-manual-validation-notes.md b/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-manual-validation-notes.md -rename to dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-message-tts-ux-checklist.md b/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-message-tts-ux-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-message-tts-ux-checklist.md -rename to dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-message-tts-ux-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-validation-report.md b/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-validation-report.md -rename to dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code-validation-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code.md b/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code.md -rename to dev/reports/PR_26171_BETA_083-message-tts-polish-and-dead-code.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation.md b/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation.md -rename to dev/reports/PR_26171_GAMMA_011-admin-system-health-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup.md b/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup.md -rename to dev/reports/PR_26171_GAMMA_012-admin-system-health-status-reason-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan.md b/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan.md -rename to dev/reports/PR_26171_GAMMA_013-admin-system-health-diagnostics-plan.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime.md b/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime.md -rename to dev/reports/PR_26171_GAMMA_014-admin-postgres-diagnostics-runtime.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime.md b/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime.md -rename to dev/reports/PR_26171_GAMMA_015-admin-r2-diagnostics-runtime.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime.md b/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime.md -rename to dev/reports/PR_26171_GAMMA_016-admin-runtime-environment-runtime.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_019-admin-workstream-mergeability-recovery.md b/dev/reports/PR_26171_GAMMA_019-admin-workstream-mergeability-recovery.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_019-admin-workstream-mergeability-recovery.md -rename to dev/reports/PR_26171_GAMMA_019-admin-workstream-mergeability-recovery.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup.md b/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup.md -rename to dev/reports/PR_26171_GAMMA_024-local-api-sqlite-reference-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory.md b/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory.md -rename to dev/reports/PR_26171_GAMMA_025-final-sqlite-runtime-inventory.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup.md b/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup.md -rename to dev/reports/PR_26171_GAMMA_026-sqlite-test-reference-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup.md b/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup.md -rename to dev/reports/PR_26171_GAMMA_027-sqlite-doc-reference-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-instruction-compliance-checklist.md b/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-instruction-compliance-checklist.md -rename to dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-manual-validation-notes.md b/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-manual-validation-notes.md -rename to dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report.md b/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report.md -rename to dev/reports/PR_26171_GAMMA_028-final-sqlite-clean-status-report.md -diff --git a/dev/docs_build/dev/reports/PR_26171_text2speech-manual-validation.md b/dev/reports/PR_26171_text2speech-manual-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_text2speech-manual-validation.md -rename to dev/reports/PR_26171_text2speech-manual-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_text2speech-toolbox-path-correction.md b/dev/reports/PR_26171_text2speech-toolbox-path-correction.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_text2speech-toolbox-path-correction.md -rename to dev/reports/PR_26171_text2speech-toolbox-path-correction.md -diff --git a/dev/docs_build/dev/reports/PR_26171_text2speech-validation.md b/dev/reports/PR_26171_text2speech-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_text2speech-validation.md -rename to dev/reports/PR_26171_text2speech-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26171_text2speech-zip-verification.md b/dev/reports/PR_26171_text2speech-zip-verification.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26171_text2speech-zip-verification.md -rename to dev/reports/PR_26171_text2speech-zip-verification.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_001-repository-compliance-audit.md b/dev/reports/PR_26172_CHARLIE_001-repository-compliance-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_001-repository-compliance-audit.md -rename to dev/reports/PR_26172_CHARLIE_001-repository-compliance-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_002-test-results-artifact-cleanup.md b/dev/reports/PR_26172_CHARLIE_002-test-results-artifact-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_002-test-results-artifact-cleanup.md -rename to dev/reports/PR_26172_CHARLIE_002-test-results-artifact-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_003-src-dev-runtime-test-migration-audit.md b/dev/reports/PR_26172_CHARLIE_003-src-dev-runtime-test-migration-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_003-src-dev-runtime-test-migration-audit.md -rename to dev/reports/PR_26172_CHARLIE_003-src-dev-runtime-test-migration-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_004-src-dev-runtime-low-risk-test-move.md b/dev/reports/PR_26172_CHARLIE_004-src-dev-runtime-low-risk-test-move.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_004-src-dev-runtime-low-risk-test-move.md -rename to dev/reports/PR_26172_CHARLIE_004-src-dev-runtime-low-risk-test-move.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_005-scattered-tool-js-css-audit.md b/dev/reports/PR_26172_CHARLIE_005-scattered-tool-js-css-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_005-scattered-tool-js-css-audit.md -rename to dev/reports/PR_26172_CHARLIE_005-scattered-tool-js-css-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_006-low-risk-tool-asset-migration.md b/dev/reports/PR_26172_CHARLIE_006-low-risk-tool-asset-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_006-low-risk-tool-asset-migration.md -rename to dev/reports/PR_26172_CHARLIE_006-low-risk-tool-asset-migration.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_006A-game-journey-validation-failure-investigation.md b/dev/reports/PR_26172_CHARLIE_006A-game-journey-validation-failure-investigation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_006A-game-journey-validation-failure-investigation.md -rename to dev/reports/PR_26172_CHARLIE_006A-game-journey-validation-failure-investigation.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_007-shared-js-candidate-audit.md b/dev/reports/PR_26172_CHARLIE_007-shared-js-candidate-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_007-shared-js-candidate-audit.md -rename to dev/reports/PR_26172_CHARLIE_007-shared-js-candidate-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_008-canonical-structure-guardrail-script.md b/dev/reports/PR_26172_CHARLIE_008-canonical-structure-guardrail-script.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_008-canonical-structure-guardrail-script.md -rename to dev/reports/PR_26172_CHARLIE_008-canonical-structure-guardrail-script.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_009-guardrail-preflight-wireup.md b/dev/reports/PR_26172_CHARLIE_009-guardrail-preflight-wireup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_009-guardrail-preflight-wireup.md -rename to dev/reports/PR_26172_CHARLIE_009-guardrail-preflight-wireup.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_010-shared-js-low-risk-consolidation.md b/dev/reports/PR_26172_CHARLIE_010-shared-js-low-risk-consolidation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_010-shared-js-low-risk-consolidation.md -rename to dev/reports/PR_26172_CHARLIE_010-shared-js-low-risk-consolidation.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_011-test-location-remediation.md b/dev/reports/PR_26172_CHARLIE_011-test-location-remediation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_011-test-location-remediation.md -rename to dev/reports/PR_26172_CHARLIE_011-test-location-remediation.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_012-canonical-structure-enforcement-audit.md b/dev/reports/PR_26172_CHARLIE_012-canonical-structure-enforcement-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_012-canonical-structure-enforcement-audit.md -rename to dev/reports/PR_26172_CHARLIE_012-canonical-structure-enforcement-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_013-tool-js-css-canonical-migration-audit.md b/dev/reports/PR_26172_CHARLIE_013-tool-js-css-canonical-migration-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_013-tool-js-css-canonical-migration-audit.md -rename to dev/reports/PR_26172_CHARLIE_013-tool-js-css-canonical-migration-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_014-low-risk-tool-migration-1.md b/dev/reports/PR_26172_CHARLIE_014-low-risk-tool-migration-1.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_014-low-risk-tool-migration-1.md -rename to dev/reports/PR_26172_CHARLIE_014-low-risk-tool-migration-1.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_015-low-risk-tool-migration-2.md b/dev/reports/PR_26172_CHARLIE_015-low-risk-tool-migration-2.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_015-low-risk-tool-migration-2.md -rename to dev/reports/PR_26172_CHARLIE_015-low-risk-tool-migration-2.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_016-repository-compliance-reaudit.md b/dev/reports/PR_26172_CHARLIE_016-repository-compliance-reaudit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_016-repository-compliance-reaudit.md -rename to dev/reports/PR_26172_CHARLIE_016-repository-compliance-reaudit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_017-tool-js-css-canonical-migration-audit-2.md b/dev/reports/PR_26172_CHARLIE_017-tool-js-css-canonical-migration-audit-2.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_017-tool-js-css-canonical-migration-audit-2.md -rename to dev/reports/PR_26172_CHARLIE_017-tool-js-css-canonical-migration-audit-2.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_018-low-risk-tool-migration-3.md b/dev/reports/PR_26172_CHARLIE_018-low-risk-tool-migration-3.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_018-low-risk-tool-migration-3.md -rename to dev/reports/PR_26172_CHARLIE_018-low-risk-tool-migration-3.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_019-low-risk-tool-migration-4.md b/dev/reports/PR_26172_CHARLIE_019-low-risk-tool-migration-4.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_019-low-risk-tool-migration-4.md -rename to dev/reports/PR_26172_CHARLIE_019-low-risk-tool-migration-4.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_020-low-risk-tool-migration-5.md b/dev/reports/PR_26172_CHARLIE_020-low-risk-tool-migration-5.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_020-low-risk-tool-migration-5.md -rename to dev/reports/PR_26172_CHARLIE_020-low-risk-tool-migration-5.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_021-repository-compliance-reaudit-2.md b/dev/reports/PR_26172_CHARLIE_021-repository-compliance-reaudit-2.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_021-repository-compliance-reaudit-2.md -rename to dev/reports/PR_26172_CHARLIE_021-repository-compliance-reaudit-2.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_022-target-tool-migration-audit.md b/dev/reports/PR_26172_CHARLIE_022-target-tool-migration-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_022-target-tool-migration-audit.md -rename to dev/reports/PR_26172_CHARLIE_022-target-tool-migration-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_023-target-tool-migration-batch-1.md b/dev/reports/PR_26172_CHARLIE_023-target-tool-migration-batch-1.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_023-target-tool-migration-batch-1.md -rename to dev/reports/PR_26172_CHARLIE_023-target-tool-migration-batch-1.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_024-target-tool-migration-batch-2.md b/dev/reports/PR_26172_CHARLIE_024-target-tool-migration-batch-2.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_024-target-tool-migration-batch-2.md -rename to dev/reports/PR_26172_CHARLIE_024-target-tool-migration-batch-2.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_025-target-tool-migration-batch-3.md b/dev/reports/PR_26172_CHARLIE_025-target-tool-migration-batch-3.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_025-target-tool-migration-batch-3.md -rename to dev/reports/PR_26172_CHARLIE_025-target-tool-migration-batch-3.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_026-target-tool-migration-batch-4.md b/dev/reports/PR_26172_CHARLIE_026-target-tool-migration-batch-4.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_026-target-tool-migration-batch-4.md -rename to dev/reports/PR_26172_CHARLIE_026-target-tool-migration-batch-4.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_027-target-tool-compliance-reaudit.md b/dev/reports/PR_26172_CHARLIE_027-target-tool-compliance-reaudit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_027-target-tool-compliance-reaudit.md -rename to dev/reports/PR_26172_CHARLIE_027-target-tool-compliance-reaudit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_028-remaining-target-tool-migration-audit.md b/dev/reports/PR_26172_CHARLIE_028-remaining-target-tool-migration-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_028-remaining-target-tool-migration-audit.md -rename to dev/reports/PR_26172_CHARLIE_028-remaining-target-tool-migration-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_029-controls-canonical-js-migration.md b/dev/reports/PR_26172_CHARLIE_029-controls-canonical-js-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_029-controls-canonical-js-migration.md -rename to dev/reports/PR_26172_CHARLIE_029-controls-canonical-js-migration.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_030-assets-tool-canonical-js-migration-audit.md b/dev/reports/PR_26172_CHARLIE_030-assets-tool-canonical-js-migration-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_030-assets-tool-canonical-js-migration-audit.md -rename to dev/reports/PR_26172_CHARLIE_030-assets-tool-canonical-js-migration-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_031-assets-tool-safe-entrypoint-migration.md b/dev/reports/PR_26172_CHARLIE_031-assets-tool-safe-entrypoint-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_031-assets-tool-safe-entrypoint-migration.md -rename to dev/reports/PR_26172_CHARLIE_031-assets-tool-safe-entrypoint-migration.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_032-assets-worker-api-client-migration-or-exception.md b/dev/reports/PR_26172_CHARLIE_032-assets-worker-api-client-migration-or-exception.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_032-assets-worker-api-client-migration-or-exception.md -rename to dev/reports/PR_26172_CHARLIE_032-assets-worker-api-client-migration-or-exception.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_033-game-journey-canonical-js-migration-audit.md b/dev/reports/PR_26172_CHARLIE_033-game-journey-canonical-js-migration-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_033-game-journey-canonical-js-migration-audit.md -rename to dev/reports/PR_26172_CHARLIE_033-game-journey-canonical-js-migration-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_034-game-journey-safe-entrypoint-migration.md b/dev/reports/PR_26172_CHARLIE_034-game-journey-safe-entrypoint-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_034-game-journey-safe-entrypoint-migration.md -rename to dev/reports/PR_26172_CHARLIE_034-game-journey-safe-entrypoint-migration.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_035-game-journey-api-client-migration-or-exception.md b/dev/reports/PR_26172_CHARLIE_035-game-journey-api-client-migration-or-exception.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_035-game-journey-api-client-migration-or-exception.md -rename to dev/reports/PR_26172_CHARLIE_035-game-journey-api-client-migration-or-exception.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_036-final-target-tool-compliance-reaudit.md b/dev/reports/PR_26172_CHARLIE_036-final-target-tool-compliance-reaudit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_036-final-target-tool-compliance-reaudit.md -rename to dev/reports/PR_26172_CHARLIE_036-final-target-tool-compliance-reaudit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_037-retained-exceptions-audit.md b/dev/reports/PR_26172_CHARLIE_037-retained-exceptions-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_037-retained-exceptions-audit.md -rename to dev/reports/PR_26172_CHARLIE_037-retained-exceptions-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_038-assets-upload-http-500-investigation.md b/dev/reports/PR_26172_CHARLIE_038-assets-upload-http-500-investigation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_038-assets-upload-http-500-investigation.md -rename to dev/reports/PR_26172_CHARLIE_038-assets-upload-http-500-investigation.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_039-assets-api-worker-exception-resolution.md b/dev/reports/PR_26172_CHARLIE_039-assets-api-worker-exception-resolution.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_039-assets-api-worker-exception-resolution.md -rename to dev/reports/PR_26172_CHARLIE_039-assets-api-worker-exception-resolution.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_040-controls-game-journey-api-client-resolution.md b/dev/reports/PR_26172_CHARLIE_040-controls-game-journey-api-client-resolution.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_040-controls-game-journey-api-client-resolution.md -rename to dev/reports/PR_26172_CHARLIE_040-controls-game-journey-api-client-resolution.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_041-final-retained-exceptions-reaudit.md b/dev/reports/PR_26172_CHARLIE_041-final-retained-exceptions-reaudit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_041-final-retained-exceptions-reaudit.md -rename to dev/reports/PR_26172_CHARLIE_041-final-retained-exceptions-reaudit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_042-canonical-tool-worker-placement.md b/dev/reports/PR_26172_CHARLIE_042-canonical-tool-worker-placement.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_042-canonical-tool-worker-placement.md -rename to dev/reports/PR_26172_CHARLIE_042-canonical-tool-worker-placement.md -diff --git a/dev/docs_build/dev/reports/PR_26172_CHARLIE_043-final-charlie-compliance-reaudit.md b/dev/reports/PR_26172_CHARLIE_043-final-charlie-compliance-reaudit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_CHARLIE_043-final-charlie-compliance-reaudit.md -rename to dev/reports/PR_26172_CHARLIE_043-final-charlie-compliance-reaudit.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_010-owner-governance-rename-instruction-compliance-checklist.md b/dev/reports/PR_26172_OWNER_010-owner-governance-rename-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_010-owner-governance-rename-instruction-compliance-checklist.md -rename to dev/reports/PR_26172_OWNER_010-owner-governance-rename-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_010-owner-governance-rename-manual-validation-notes.md b/dev/reports/PR_26172_OWNER_010-owner-governance-rename-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_010-owner-governance-rename-manual-validation-notes.md -rename to dev/reports/PR_26172_OWNER_010-owner-governance-rename-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_010-owner-governance-rename.md b/dev/reports/PR_26172_OWNER_010-owner-governance-rename.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_010-owner-governance-rename.md -rename to dev/reports/PR_26172_OWNER_010-owner-governance-rename.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-instruction-compliance-checklist.md b/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-instruction-compliance-checklist.md -rename to dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-manual-validation-notes.md b/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-manual-validation-notes.md -rename to dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-tree.txt b/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-tree.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-tree.txt -rename to dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install-tree.txt -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install.md b/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install.md -rename to dev/reports/PR_26172_OWNER_017-project-instructions-bootstrap-install.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-instruction-compliance-checklist.md b/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-instruction-compliance-checklist.md -rename to dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-manual-validation-notes.md b/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-manual-validation-notes.md -rename to dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance.md b/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance.md -rename to dev/reports/PR_26172_OWNER_028-eod-mainline-closeout-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-instruction-compliance-checklist.md b/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-instruction-compliance-checklist.md -rename to dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-manual-validation-notes.md b/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-manual-validation-notes.md -rename to dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance.md b/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance.md -rename to dev/reports/PR_26172_OWNER_030-workstream-hygiene-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_031-pi-closeout-governance-instruction-compliance-checklist.md b/dev/reports/PR_26172_OWNER_031-pi-closeout-governance-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_031-pi-closeout-governance-instruction-compliance-checklist.md -rename to dev/reports/PR_26172_OWNER_031-pi-closeout-governance-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_031-pi-closeout-governance-manual-validation-notes.md b/dev/reports/PR_26172_OWNER_031-pi-closeout-governance-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_031-pi-closeout-governance-manual-validation-notes.md -rename to dev/reports/PR_26172_OWNER_031-pi-closeout-governance-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_031-pi-closeout-governance.md b/dev/reports/PR_26172_OWNER_031-pi-closeout-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_031-pi-closeout-governance.md -rename to dev/reports/PR_26172_OWNER_031-pi-closeout-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-instruction-compliance-checklist.md b/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-instruction-compliance-checklist.md -rename to dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-manual-validation-notes.md b/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-manual-validation-notes.md -rename to dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template.md b/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template.md -rename to dev/reports/PR_26172_OWNER_032-github-hygiene-audit-template.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-governance-closeout-report.md b/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-governance-closeout-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-governance-closeout-report.md -rename to dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-governance-closeout-report.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-instruction-compliance-checklist.md b/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-instruction-compliance-checklist.md -rename to dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-manual-validation-notes.md b/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-manual-validation-notes.md -rename to dev/reports/PR_26172_OWNER_033-governance-hygiene-closeout-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_040-four-team-backlog-alignment.md b/dev/reports/PR_26172_OWNER_040-four-team-backlog-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_040-four-team-backlog-alignment.md -rename to dev/reports/PR_26172_OWNER_040-four-team-backlog-alignment.md -diff --git a/dev/docs_build/dev/reports/PR_26172_OWNER_041-four-team-cleanup.md b/dev/reports/PR_26172_OWNER_041-four-team-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26172_OWNER_041-four-team-cleanup.md -rename to dev/reports/PR_26172_OWNER_041-four-team-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-branch-validation.txt b/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-validation-lane.txt b/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore.md b/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore.md -rename to dev/reports/PR_26174_ALFA_000-projectinstructions-archive-ignore.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-branch-validation.txt b/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-validation-lane.txt b/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract.md b/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract.md -rename to dev/reports/PR_26174_ALFA_001-idea-board-create-project-api-contract.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-branch-validation.txt b/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-validation-lane.txt b/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display.md b/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display.md -rename to dev/reports/PR_26174_ALFA_002-game-hub-project-intake-display.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-branch-validation.txt b/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-validation-lane.txt b/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap.md b/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap.md -rename to dev/reports/PR_26174_ALFA_003-game-hub-journey-bootstrap.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-branch-validation.txt b/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-validation-lane.txt b/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model.md b/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model.md -rename to dev/reports/PR_26174_ALFA_004-game-hub-progress-count-model.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-branch-validation.txt b/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-validation-lane.txt b/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_005-idea-project-validation-polish-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish.md b/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_005-idea-project-validation-polish.md -rename to dev/reports/PR_26174_ALFA_005-idea-project-validation-polish.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-branch-validation.txt b/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-validation-lane.txt b/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states.md b/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states.md -rename to dev/reports/PR_26174_ALFA_006-game-hub-empty-and-error-states.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-branch-validation.txt b/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-validation-lane.txt b/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish.md b/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish.md -rename to dev/reports/PR_26174_ALFA_007-game-journey-count-ui-polish.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-branch-validation.txt b/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-final-stack-report.md b/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-final-stack-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-final-stack-report.md -rename to dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-final-stack-report.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-validation-lane.txt b/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation.md b/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation.md -rename to dev/reports/PR_26174_ALFA_008-alpha-stack-final-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-branch-validation.txt b/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-validation-lane.txt b/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout.md b/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout.md -rename to dev/reports/PR_26174_ALFA_009-game-hub-parent-child-table-layout.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-branch-validation.txt b/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-validation-lane.txt b/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish.md b/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish.md -rename to dev/reports/PR_26174_ALFA_010-game-hub-source-idea-child-table-polish.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-branch-validation.txt b/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-validation-lane.txt b/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table.md b/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table.md -rename to dev/reports/PR_26174_ALFA_011-game-hub-readiness-output-child-table.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-branch-validation.txt b/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-validation-lane.txt b/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation.md b/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation.md -rename to dev/reports/PR_26174_ALFA_012-game-hub-parent-child-final-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-branch-validation.txt b/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-validation-lane.txt b/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows.md b/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows.md -rename to dev/reports/PR_26174_ALFA_013-game-hub-game-row-child-rows.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-branch-validation.txt b/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-validation-lane.txt b/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center.md b/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center.md -rename to dev/reports/PR_26174_ALFA_014-game-hub-parent-columns-center.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-branch-validation.txt b/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-validation-lane.txt b/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup.md b/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup.md -rename to dev/reports/PR_26174_ALFA_015-game-hub-actions-and-setup-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-branch-validation.txt b/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-branch-validation.txt -rename to dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-requirement-checklist.txt b/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-validation-lane.txt b/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-validation-lane.txt -rename to dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state-validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state.md b/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state.md -rename to dev/reports/PR_26174_ALFA_016-game-hub-row-edit-add-selected-state.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup.md b/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup.md -rename to dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_branch-validation.txt b/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_branch-validation.txt -rename to dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_requirement-checklist.txt b/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_validation-lane.txt b/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_validation-lane.txt -rename to dev/reports/PR_26174_ALFA_017-game-hub-guest-save-and-crew-cleanup_validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state.md b/dev/reports/PR_26174_ALFA_018-game-selection-button-state.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state.md -rename to dev/reports/PR_26174_ALFA_018-game-selection-button-state.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_branch-validation.txt b/dev/reports/PR_26174_ALFA_018-game-selection-button-state_branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_branch-validation.txt -rename to dev/reports/PR_26174_ALFA_018-game-selection-button-state_branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_018-game-selection-button-state_manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_018-game-selection-button-state_manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_requirement-checklist.txt b/dev/reports/PR_26174_ALFA_018-game-selection-button-state_requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_018-game-selection-button-state_requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_validation-lane.txt b/dev/reports/PR_26174_ALFA_018-game-selection-button-state_validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_018-game-selection-button-state_validation-lane.txt -rename to dev/reports/PR_26174_ALFA_018-game-selection-button-state_validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label.md b/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label.md -rename to dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_branch-validation.txt b/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_branch-validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_branch-validation.txt -rename to dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_branch-validation.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_manual-validation-notes.txt b/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_manual-validation-notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_manual-validation-notes.txt -rename to dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_manual-validation-notes.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_requirement-checklist.txt b/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_requirement-checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_requirement-checklist.txt -rename to dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_requirement-checklist.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_validation-lane.txt b/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_validation-lane.txt -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_validation-lane.txt -rename to dev/reports/PR_26174_ALFA_019-game-hub-selected-button-and-crew-label_validation-lane.txt -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_branch-validation.md b/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_branch-validation.md -rename to dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_manual-validation-notes.md b/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_manual-validation-notes.md -rename to dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_report.md b/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_report.md -rename to dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_requirements-checklist.md b/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_requirements-checklist.md -rename to dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_validation-lane.md b/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_validation-lane.md -rename to dev/reports/PR_26174_ALFA_020-game-hub-idea-board-cleanup_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_branch-validation.md b/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_branch-validation.md -rename to dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_manual-validation-notes.md b/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_manual-validation-notes.md -rename to dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_report.md b/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_report.md -rename to dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_report.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_requirements-checklist.md b/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_requirements-checklist.md -rename to dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_validation-lane.md b/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_validation-lane.md -rename to dev/reports/PR_26174_ALFA_021-idea-board-status-filter-table-polish_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_branch-validation.md b/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_branch-validation.md -rename to dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_manual-validation-notes.md b/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_manual-validation-notes.md -rename to dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_report.md b/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_report.md -rename to dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_requirements-checklist.md b/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_requirements-checklist.md -rename to dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_validation-lane.md b/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_validation-lane.md -rename to dev/reports/PR_26174_ALFA_022-idea-board-status-dropdown-fix_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_branch-validation.md b/dev/reports/PR_26174_ALFA_EOD-final-closeout_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_branch-validation.md -rename to dev/reports/PR_26174_ALFA_EOD-final-closeout_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_manual-validation-notes.md b/dev/reports/PR_26174_ALFA_EOD-final-closeout_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_manual-validation-notes.md -rename to dev/reports/PR_26174_ALFA_EOD-final-closeout_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_report.md b/dev/reports/PR_26174_ALFA_EOD-final-closeout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_report.md -rename to dev/reports/PR_26174_ALFA_EOD-final-closeout_report.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_requirements-checklist.md b/dev/reports/PR_26174_ALFA_EOD-final-closeout_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_requirements-checklist.md -rename to dev/reports/PR_26174_ALFA_EOD-final-closeout_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_validation-lane.md b/dev/reports/PR_26174_ALFA_EOD-final-closeout_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_EOD-final-closeout_validation-lane.md -rename to dev/reports/PR_26174_ALFA_EOD-final-closeout_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_branch-validation.md b/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_branch-validation.md -rename to dev/reports/PR_26174_ALFA_EOD-workstream-closeout_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_manual-validation-notes.md b/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_manual-validation-notes.md -rename to dev/reports/PR_26174_ALFA_EOD-workstream-closeout_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_report.md b/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_report.md -rename to dev/reports/PR_26174_ALFA_EOD-workstream-closeout_report.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_requirements-checklist.md b/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_requirements-checklist.md -rename to dev/reports/PR_26174_ALFA_EOD-workstream-closeout_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_validation-lane.md b/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_EOD-workstream-closeout_validation-lane.md -rename to dev/reports/PR_26174_ALFA_EOD-workstream-closeout_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26174_ALFA_MERGE_PUSH_CLOSEOUT.md b/dev/reports/PR_26174_ALFA_MERGE_PUSH_CLOSEOUT.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_ALFA_MERGE_PUSH_CLOSEOUT.md -rename to dev/reports/PR_26174_ALFA_MERGE_PUSH_CLOSEOUT.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_001-messages-table-structure.md b/dev/reports/PR_26174_BRAVO_001-messages-table-structure.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_001-messages-table-structure.md -rename to dev/reports/PR_26174_BRAVO_001-messages-table-structure.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_002-message-parts-child-table.md b/dev/reports/PR_26174_BRAVO_002-message-parts-child-table.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_002-message-parts-child-table.md -rename to dev/reports/PR_26174_BRAVO_002-message-parts-child-table.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_003-emotion-profiles-table.md b/dev/reports/PR_26174_BRAVO_003-emotion-profiles-table.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_003-emotion-profiles-table.md -rename to dev/reports/PR_26174_BRAVO_003-emotion-profiles-table.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_004-voice-profiles-table.md b/dev/reports/PR_26174_BRAVO_004-voice-profiles-table.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_004-voice-profiles-table.md -rename to dev/reports/PR_26174_BRAVO_004-voice-profiles-table.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_005-message-reference-usage.md b/dev/reports/PR_26174_BRAVO_005-message-reference-usage.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_005-message-reference-usage.md -rename to dev/reports/PR_26174_BRAVO_005-message-reference-usage.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_006-browser-tts-runtime.md b/dev/reports/PR_26174_BRAVO_006-browser-tts-runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_006-browser-tts-runtime.md -rename to dev/reports/PR_26174_BRAVO_006-browser-tts-runtime.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_007-tts-provider-framework.md b/dev/reports/PR_26174_BRAVO_007-tts-provider-framework.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_007-tts-provider-framework.md -rename to dev/reports/PR_26174_BRAVO_007-tts-provider-framework.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_008-message-event-actions.md b/dev/reports/PR_26174_BRAVO_008-message-event-actions.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_008-message-event-actions.md -rename to dev/reports/PR_26174_BRAVO_008-message-event-actions.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_009-message-publish-validation.md b/dev/reports/PR_26174_BRAVO_009-message-publish-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_009-message-publish-validation.md -rename to dev/reports/PR_26174_BRAVO_009-message-publish-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_010-separate-messages-and-tts-ownership.md b/dev/reports/PR_26174_BRAVO_010-separate-messages-and-tts-ownership.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_010-separate-messages-and-tts-ownership.md -rename to dev/reports/PR_26174_BRAVO_010-separate-messages-and-tts-ownership.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_011-message-sentence-action-buttons.md b/dev/reports/PR_26174_BRAVO_011-message-sentence-action-buttons.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_011-message-sentence-action-buttons.md -rename to dev/reports/PR_26174_BRAVO_011-message-sentence-action-buttons.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_012-tts-preview-action-cleanup.md b/dev/reports/PR_26174_BRAVO_012-tts-preview-action-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_012-tts-preview-action-cleanup.md -rename to dev/reports/PR_26174_BRAVO_012-tts-preview-action-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_013-message-and-sentence-play-buttons.md b/dev/reports/PR_26174_BRAVO_013-message-and-sentence-play-buttons.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_013-message-and-sentence-play-buttons.md -rename to dev/reports/PR_26174_BRAVO_013-message-and-sentence-play-buttons.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_014-message-play-button-regression-fix.md b/dev/reports/PR_26174_BRAVO_014-message-play-button-regression-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_014-message-play-button-regression-fix.md -rename to dev/reports/PR_26174_BRAVO_014-message-play-button-regression-fix.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_015-child-play-uses-parent-tts-profile.md b/dev/reports/PR_26174_BRAVO_015-child-play-uses-parent-tts-profile.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_015-child-play-uses-parent-tts-profile.md -rename to dev/reports/PR_26174_BRAVO_015-child-play-uses-parent-tts-profile.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_017-message-play-profile-resolution.md b/dev/reports/PR_26174_BRAVO_017-message-play-profile-resolution.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_017-message-play-profile-resolution.md -rename to dev/reports/PR_26174_BRAVO_017-message-play-profile-resolution.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_018-fix-messages-playback-source.md b/dev/reports/PR_26174_BRAVO_018-fix-messages-playback-source.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_018-fix-messages-playback-source.md -rename to dev/reports/PR_26174_BRAVO_018-fix-messages-playback-source.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_019-remove-preview-dependency-from-messages-play.md b/dev/reports/PR_26174_BRAVO_019-remove-preview-dependency-from-messages-play.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_019-remove-preview-dependency-from-messages-play.md -rename to dev/reports/PR_26174_BRAVO_019-remove-preview-dependency-from-messages-play.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_020-messages-load-tts-profile-emotions.md b/dev/reports/PR_26174_BRAVO_020-messages-load-tts-profile-emotions.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_020-messages-load-tts-profile-emotions.md -rename to dev/reports/PR_26174_BRAVO_020-messages-load-tts-profile-emotions.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_021-wire-messages-to-tts-profile-contract.md b/dev/reports/PR_26174_BRAVO_021-wire-messages-to-tts-profile-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_021-wire-messages-to-tts-profile-contract.md -rename to dev/reports/PR_26174_BRAVO_021-wire-messages-to-tts-profile-contract.md -diff --git a/dev/docs_build/dev/reports/PR_26174_BRAVO_022-use-active-tts-profiles-in-messages.md b/dev/reports/PR_26174_BRAVO_022-use-active-tts-profiles-in-messages.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26174_BRAVO_022-use-active-tts-profiles-in-messages.md -rename to dev/reports/PR_26174_BRAVO_022-use-active-tts-profiles-in-messages.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_report.md b/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_report.md -rename to dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_requirements-checklist.md b/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_validation-lane.md b/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_validation-lane.md -rename to dev/reports/PR_26175_ALFA_001-toolbox-selected-game-status-bar_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_report.md b/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_report.md -rename to dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_requirements-checklist.md b/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_validation-lane.md b/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_validation-lane.md -rename to dev/reports/PR_26175_ALFA_002-toolbox-status-bar-context-polish_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_report.md b/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_report.md -rename to dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_requirements-checklist.md b/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_validation-lane.md b/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_validation-lane.md -rename to dev/reports/PR_26175_ALFA_004-game-hub-completion-status-audit_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_report.md b/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_report.md -rename to dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_requirements-checklist.md b/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_validation-lane.md b/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_validation-lane.md -rename to dev/reports/PR_26175_ALFA_005-game-hub-audit-findings-cleanup_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_report.md b/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_report.md -rename to dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_requirements-checklist.md b/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_validation-lane.md b/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_validation-lane.md -rename to dev/reports/PR_26175_ALFA_006-game-hub-create-project-validation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_report.md b/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_report.md -rename to dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_requirements-checklist.md b/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_validation-lane.md b/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_validation-lane.md -rename to dev/reports/PR_26175_ALFA_008-game-hub-feature-matrix_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_report.md b/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_report.md -rename to dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_requirements-checklist.md b/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_validation-lane.md b/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_validation-lane.md -rename to dev/reports/PR_26175_ALFA_009-status-bar-single-row-rebuild_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_report.md b/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_report.md -rename to dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_requirements-checklist.md b/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_validation-lane.md b/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_validation-lane.md -rename to dev/reports/PR_26175_ALFA_011-status-bar-journey-progress-context_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_015-alfa-foundation-consolidation.md b/dev/reports/PR_26175_ALFA_015-alfa-foundation-consolidation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_015-alfa-foundation-consolidation.md -rename to dev/reports/PR_26175_ALFA_015-alfa-foundation-consolidation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_016-alfa-parent-child-table-consolidation.md b/dev/reports/PR_26175_ALFA_016-alfa-parent-child-table-consolidation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_016-alfa-parent-child-table-consolidation.md -rename to dev/reports/PR_26175_ALFA_016-alfa-parent-child-table-consolidation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_017-alfa-game-hub-interactions-consolidation.md b/dev/reports/PR_26175_ALFA_017-alfa-game-hub-interactions-consolidation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_017-alfa-game-hub-interactions-consolidation.md -rename to dev/reports/PR_26175_ALFA_017-alfa-game-hub-interactions-consolidation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_018-alfa-idea-board-polish-consolidation.md b/dev/reports/PR_26175_ALFA_018-alfa-idea-board-polish-consolidation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_018-alfa-idea-board-polish-consolidation.md -rename to dev/reports/PR_26175_ALFA_018-alfa-idea-board-polish-consolidation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_manual-validation-notes.md b/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_manual-validation-notes.md -rename to dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_report.md b/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_report.md -rename to dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_requirements-checklist.md b/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_validation-lane.md b/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_validation-lane.md -rename to dev/reports/PR_26175_ALFA_047-theme-v2-svg-icon-registry_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_manual-validation-notes.md b/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_manual-validation-notes.md -rename to dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_report.md b/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_report.md -rename to dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_requirements-checklist.md b/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_validation-lane.md b/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_validation-lane.md -rename to dev/reports/PR_26175_ALFA_048-theme-v2-chevron-conversion_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_manual-validation-notes.md b/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_manual-validation-notes.md -rename to dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_report.md b/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_report.md -rename to dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_requirements-checklist.md b/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_validation-lane.md b/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_validation-lane.md -rename to dev/reports/PR_26175_ALFA_049-theme-v2-status-action-icons_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_manual-validation-notes.md b/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_manual-validation-notes.md -rename to dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_report.md b/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_report.md -rename to dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_requirements-checklist.md b/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_validation-lane.md b/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_validation-lane.md -rename to dev/reports/PR_26175_ALFA_050-theme-v2-layout-utility-icons_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_branch-validation.md b/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_branch-validation.md -rename to dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_manual-validation-notes.md b/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_manual-validation-notes.md -rename to dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_report.md b/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_report.md -rename to dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_requirements-checklist.md b/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_validation-lane.md b/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_validation-lane.md -rename to dev/reports/PR_26175_ALFA_051-alfa-end-of-day-closeout_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_manual-validation-notes.md b/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_manual-validation-notes.md -rename to dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_report.md b/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_report.md -rename to dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_requirements-checklist.md b/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_requirements-checklist.md -rename to dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_validation-lane.md b/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_validation-lane.md -rename to dev/reports/PR_26175_ALFA_051-idea-board-game-hub-row-expectation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_branch-validation.md b/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_branch-validation.md -rename to dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_instruction-compliance.md b/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_instruction-compliance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_instruction-compliance.md -rename to dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_instruction-compliance.md -diff --git a/dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_manual-validation-notes.md b/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_manual-validation-notes.md -rename to dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_report.md b/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_report.md -rename to dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_requirements-checklist.md b/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_requirements-checklist.md -rename to dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_validation-lane.md b/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_validation-lane.md -rename to dev/reports/PR_26175_BRAVO_011-idea-board-guest-save-auth-redirect_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-instruction-compliance-checklist.md b/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-instruction-compliance-checklist.md -rename to dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_002-system-health-dashboard-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard.md b/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard.md -rename to dev/reports/PR_26175_CHARLIE_002-system-health-dashboard.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard_PLAN.md b/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard_PLAN.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_002-system-health-dashboard_PLAN.md -rename to dev/reports/PR_26175_CHARLIE_002-system-health-dashboard_PLAN.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-instruction-compliance-checklist.md b/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-instruction-compliance-checklist.md -rename to dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization.md b/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization.md -rename to dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization_PLAN.md b/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization_PLAN.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization_PLAN.md -rename to dev/reports/PR_26175_CHARLIE_003-r2-storage-standardization_PLAN.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_007-system-health-environment-identity.md b/dev/reports/PR_26175_CHARLIE_007-system-health-environment-identity.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_007-system-health-environment-identity.md -rename to dev/reports/PR_26175_CHARLIE_007-system-health-environment-identity.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_008-system-health-current-database-health.md b/dev/reports/PR_26175_CHARLIE_008-system-health-current-database-health.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_008-system-health-current-database-health.md -rename to dev/reports/PR_26175_CHARLIE_008-system-health-current-database-health.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_009-system-health-current-r2-health.md b/dev/reports/PR_26175_CHARLIE_009-system-health-current-r2-health.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_009-system-health-current-r2-health.md -rename to dev/reports/PR_26175_CHARLIE_009-system-health-current-r2-health.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_010-system-health-history-and-closeout.md b/dev/reports/PR_26175_CHARLIE_010-system-health-history-and-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_010-system-health-history-and-closeout.md -rename to dev/reports/PR_26175_CHARLIE_010-system-health-history-and-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-branch-validation.md b/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-validation.md b/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-validation.md -rename to dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order.md b/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order.md -rename to dev/reports/PR_26175_CHARLIE_011-admin-submenu-alphabetical-order.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_012-017-system-health-phase-2-closeout.md b/dev/reports/PR_26175_CHARLIE_012-017-system-health-phase-2-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_012-017-system-health-phase-2-closeout.md -rename to dev/reports/PR_26175_CHARLIE_012-017-system-health-phase-2-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-branch-validation.md b/dev/reports/PR_26175_CHARLIE_012-runtime-health-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_012-runtime-health-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_012-runtime-health-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_012-runtime-health-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_012-runtime-health-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_012-runtime-health-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-validation.md b/dev/reports/PR_26175_CHARLIE_012-runtime-health-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health-validation.md -rename to dev/reports/PR_26175_CHARLIE_012-runtime-health-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health.md b/dev/reports/PR_26175_CHARLIE_012-runtime-health.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_012-runtime-health.md -rename to dev/reports/PR_26175_CHARLIE_012-runtime-health.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-branch-validation.md b/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-validation.md b/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-validation.md -rename to dev/reports/PR_26175_CHARLIE_013-service-health-dashboard-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard.md b/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_013-service-health-dashboard.md -rename to dev/reports/PR_26175_CHARLIE_013-service-health-dashboard.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-branch-validation.md b/dev/reports/PR_26175_CHARLIE_014-configuration-summary-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_014-configuration-summary-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_014-configuration-summary-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_014-configuration-summary-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_014-configuration-summary-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_014-configuration-summary-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-validation.md b/dev/reports/PR_26175_CHARLIE_014-configuration-summary-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary-validation.md -rename to dev/reports/PR_26175_CHARLIE_014-configuration-summary-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary.md b/dev/reports/PR_26175_CHARLIE_014-configuration-summary.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_014-configuration-summary.md -rename to dev/reports/PR_26175_CHARLIE_014-configuration-summary.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-branch-validation.md b/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_015-manual-health-actions-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_015-manual-health-actions-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_015-manual-health-actions-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-validation.md b/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions-validation.md -rename to dev/reports/PR_26175_CHARLIE_015-manual-health-actions-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions.md b/dev/reports/PR_26175_CHARLIE_015-manual-health-actions.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_015-manual-health-actions.md -rename to dev/reports/PR_26175_CHARLIE_015-manual-health-actions.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-branch-validation.md b/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-validation.md b/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-validation.md -rename to dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring.md b/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring.md -rename to dev/reports/PR_26175_CHARLIE_016-scheduled-health-monitoring.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-branch-validation.md b/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-validation.md b/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-validation.md -rename to dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation.md b/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation.md -rename to dev/reports/PR_26175_CHARLIE_017-health-notifications-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-branch-validation.md b/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-validation.md b/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-validation.md -rename to dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup.md b/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup.md -rename to dev/reports/PR_26175_CHARLIE_018-health-api-contract-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-branch-validation.md b/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_019-environment-capabilities-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_019-environment-capabilities-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_019-environment-capabilities-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-validation.md b/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities-validation.md -rename to dev/reports/PR_26175_CHARLIE_019-environment-capabilities-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities.md b/dev/reports/PR_26175_CHARLIE_019-environment-capabilities.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_019-environment-capabilities.md -rename to dev/reports/PR_26175_CHARLIE_019-environment-capabilities.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-branch-validation.md b/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_020-admin-api-registry-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_020-admin-api-registry-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_020-admin-api-registry-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-validation.md b/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry-validation.md -rename to dev/reports/PR_26175_CHARLIE_020-admin-api-registry-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry.md b/dev/reports/PR_26175_CHARLIE_020-admin-api-registry.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_020-admin-api-registry.md -rename to dev/reports/PR_26175_CHARLIE_020-admin-api-registry.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-branch-validation.md b/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-validation.md b/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-validation.md -rename to dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags.md b/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags.md -rename to dev/reports/PR_26175_CHARLIE_021-runtime-feature-flags.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-branch-validation.md b/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-validation.md b/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-validation.md -rename to dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite.md b/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite.md -rename to dev/reports/PR_26175_CHARLIE_022-admin-health-test-suite.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-branch-validation.md b/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-validation.md b/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-validation.md -rename to dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout.md b/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout.md -rename to dev/reports/PR_26175_CHARLIE_023-system-health-documentation-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-branch-validation.md b/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-validation.md b/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-validation.md -rename to dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs.md b/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs.md -rename to dev/reports/PR_26175_CHARLIE_024-system-health-operational-docs.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-branch-validation.md b/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-validation.md b/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-validation.md -rename to dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout.md b/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout.md -rename to dev/reports/PR_26175_CHARLIE_025-system-health-backlog-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-branch-validation.md b/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-validation.md b/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-validation.md -rename to dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout.md b/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout.md -rename to dev/reports/PR_26175_CHARLIE_026-charlie-governance-gap-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-branch-validation.md b/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-validation.md b/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-validation.md -rename to dev/reports/PR_26175_CHARLIE_027-final-charlie-audit-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit.md b/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_027-final-charlie-audit.md -rename to dev/reports/PR_26175_CHARLIE_027-final-charlie-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-branch-validation.md b/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-manual-validation-notes.md b/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-manual-validation-notes.md -rename to dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-requirement-checklist.md b/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-requirement-checklist.md -rename to dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-validation.md b/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-validation.md -rename to dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout.md b/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout.md -rename to dev/reports/PR_26175_CHARLIE_028-team-charlie-final-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_EOD-branch-validation.md b/dev/reports/PR_26175_CHARLIE_EOD-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_EOD-branch-validation.md -rename to dev/reports/PR_26175_CHARLIE_EOD-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_EOD-closeout.md b/dev/reports/PR_26175_CHARLIE_EOD-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_EOD-closeout.md -rename to dev/reports/PR_26175_CHARLIE_EOD-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_EOD-merge-summary.md b/dev/reports/PR_26175_CHARLIE_EOD-merge-summary.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_EOD-merge-summary.md -rename to dev/reports/PR_26175_CHARLIE_EOD-merge-summary.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_cycle-complete.md b/dev/reports/PR_26175_CHARLIE_cycle-complete.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_cycle-complete.md -rename to dev/reports/PR_26175_CHARLIE_cycle-complete.md -diff --git a/dev/docs_build/dev/reports/PR_26175_CHARLIE_repository-audit.md b/dev/reports/PR_26175_CHARLIE_repository-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_CHARLIE_repository-audit.md -rename to dev/reports/PR_26175_CHARLIE_repository-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-branch-validation.md b/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-branch-validation.md -rename to dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-manual-validation-notes.md b/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-manual-validation-notes.md -rename to dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-requirement-checklist.md b/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-requirement-checklist.md -rename to dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-validation.md b/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-validation.md -rename to dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization.md b/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization.md -rename to dev/reports/PR_26175_DELTA_001_Runtime_Performance_Optimization.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-branch-validation.md b/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-branch-validation.md -rename to dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-manual-validation-notes.md b/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-manual-validation-notes.md -rename to dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-requirement-checklist.md b/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-requirement-checklist.md -rename to dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-validation.md b/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-validation.md -rename to dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation.md b/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation.md -rename to dev/reports/PR_26175_DELTA_002_Shared_Runtime_Consolidation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-branch-validation.md b/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-branch-validation.md -rename to dev/reports/PR_26175_DELTA_003_API_Client_Standardization-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-manual-validation-notes.md b/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-manual-validation-notes.md -rename to dev/reports/PR_26175_DELTA_003_API_Client_Standardization-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-requirement-checklist.md b/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-requirement-checklist.md -rename to dev/reports/PR_26175_DELTA_003_API_Client_Standardization-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-validation.md b/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization-validation.md -rename to dev/reports/PR_26175_DELTA_003_API_Client_Standardization-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization.md b/dev/reports/PR_26175_DELTA_003_API_Client_Standardization.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_003_API_Client_Standardization.md -rename to dev/reports/PR_26175_DELTA_003_API_Client_Standardization.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-branch-validation.md b/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-branch-validation.md -rename to dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-manual-validation-notes.md b/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-manual-validation-notes.md -rename to dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-requirement-checklist.md b/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-requirement-checklist.md -rename to dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-validation.md b/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-validation.md -rename to dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion.md b/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion.md -rename to dev/reports/PR_26175_DELTA_004_Runtime_Test_Expansion.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-branch-validation.md b/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-branch-validation.md -rename to dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-manual-validation-notes.md b/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-manual-validation-notes.md -rename to dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-requirement-checklist.md b/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-requirement-checklist.md -rename to dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-validation.md b/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-validation.md -rename to dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup.md b/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup.md -rename to dev/reports/PR_26175_DELTA_005_Runtime_Technical_Debt_Cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-branch-validation.md b/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-branch-validation.md -rename to dev/reports/PR_26175_DELTA_006-page-service-test-lanes-branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-manual-validation-notes.md b/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-manual-validation-notes.md -rename to dev/reports/PR_26175_DELTA_006-page-service-test-lanes-manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-requirement-checklist.md b/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-requirement-checklist.md -rename to dev/reports/PR_26175_DELTA_006-page-service-test-lanes-requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-validation.md b/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes-validation.md -rename to dev/reports/PR_26175_DELTA_006-page-service-test-lanes-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes.md b/dev/reports/PR_26175_DELTA_006-page-service-test-lanes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_006-page-service-test-lanes.md -rename to dev/reports/PR_26175_DELTA_006-page-service-test-lanes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage.md b/dev/reports/PR_26175_DELTA_007-runtime-service-coverage.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage.md -rename to dev/reports/PR_26175_DELTA_007-runtime-service-coverage.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_branch-validation.md b/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_branch-validation.md -rename to dev/reports/PR_26175_DELTA_007-runtime-service-coverage_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_manual-validation-notes.md b/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_manual-validation-notes.md -rename to dev/reports/PR_26175_DELTA_007-runtime-service-coverage_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_requirements-checklist.md b/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_requirements-checklist.md -rename to dev/reports/PR_26175_DELTA_007-runtime-service-coverage_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_validation-lane.md b/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_007-runtime-service-coverage_validation-lane.md -rename to dev/reports/PR_26175_DELTA_007-runtime-service-coverage_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage.md b/dev/reports/PR_26175_DELTA_008-api-client-service-coverage.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage.md -rename to dev/reports/PR_26175_DELTA_008-api-client-service-coverage.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_branch-validation.md b/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_branch-validation.md -rename to dev/reports/PR_26175_DELTA_008-api-client-service-coverage_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_manual-validation-notes.md b/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_manual-validation-notes.md -rename to dev/reports/PR_26175_DELTA_008-api-client-service-coverage_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_requirements-checklist.md b/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_requirements-checklist.md -rename to dev/reports/PR_26175_DELTA_008-api-client-service-coverage_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_validation-lane.md b/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_008-api-client-service-coverage_validation-lane.md -rename to dev/reports/PR_26175_DELTA_008-api-client-service-coverage_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage.md b/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage.md -rename to dev/reports/PR_26175_DELTA_009-replay-event-service-coverage.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_branch-validation.md b/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_branch-validation.md -rename to dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_manual-validation-notes.md b/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_manual-validation-notes.md -rename to dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_requirements-checklist.md b/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_requirements-checklist.md -rename to dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_validation-lane.md b/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_validation-lane.md -rename to dev/reports/PR_26175_DELTA_009-replay-event-service-coverage_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_010-final-team-delta-completion-report.md b/dev/reports/PR_26175_DELTA_010-final-team-delta-completion-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_010-final-team-delta-completion-report.md -rename to dev/reports/PR_26175_DELTA_010-final-team-delta-completion-report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout.md b/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout.md -rename to dev/reports/PR_26175_DELTA_010-runtime-testability-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_branch-validation.md b/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_branch-validation.md -rename to dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_manual-validation-notes.md b/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_manual-validation-notes.md -rename to dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_requirements-checklist.md b/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_requirements-checklist.md -rename to dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_validation-lane.md b/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_validation-lane.md -rename to dev/reports/PR_26175_DELTA_010-runtime-testability-closeout_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_DELTA_EOD_final_report.md b/dev/reports/PR_26175_DELTA_EOD_final_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_DELTA_EOD_final_report.md -rename to dev/reports/PR_26175_DELTA_EOD_final_report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_046-pr-targeted-review-packets.md b/dev/reports/PR_26175_OWNER_046-pr-targeted-review-packets.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_046-pr-targeted-review-packets.md -rename to dev/reports/PR_26175_OWNER_046-pr-targeted-review-packets.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_047-codex-zip-required-for-all-runs.md b/dev/reports/PR_26175_OWNER_047-codex-zip-required-for-all-runs.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_047-codex-zip-required-for-all-runs.md -rename to dev/reports/PR_26175_OWNER_047-codex-zip-required-for-all-runs.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_048-pr-open-to-closed-main-return-governance.md b/dev/reports/PR_26175_OWNER_048-pr-open-to-closed-main-return-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_048-pr-open-to-closed-main-return-governance.md -rename to dev/reports/PR_26175_OWNER_048-pr-open-to-closed-main-return-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_049-governance-report-merge-batch.md b/dev/reports/PR_26175_OWNER_049-governance-report-merge-batch.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_049-governance-report-merge-batch.md -rename to dev/reports/PR_26175_OWNER_049-governance-report-merge-batch.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_049-pr-lifecycle-plan-after-open-branch-retention.md b/dev/reports/PR_26175_OWNER_049-pr-lifecycle-plan-after-open-branch-retention.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_049-pr-lifecycle-plan-after-open-branch-retention.md -rename to dev/reports/PR_26175_OWNER_049-pr-lifecycle-plan-after-open-branch-retention.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_050-eod-merge-push-cleanup-gate.md b/dev/reports/PR_26175_OWNER_050-eod-merge-push-cleanup-gate.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_050-eod-merge-push-cleanup-gate.md -rename to dev/reports/PR_26175_OWNER_050-eod-merge-push-cleanup-gate.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files.md b/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files.md -rename to dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_branch-validation.md b/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_branch-validation.md -rename to dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_manual-validation-notes.md b/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_manual-validation-notes.md -rename to dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_requirement-checklist.md b/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_requirement-checklist.md -rename to dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_validation-lane.md b/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_validation-lane.md -rename to dev/reports/PR_26175_OWNER_050-project-instructions-add-valid-reference-files_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report.md b/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report.md -rename to dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_branch-validation.md b/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_branch-validation.md -rename to dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_manual-validation-notes.md b/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_manual-validation-notes.md -rename to dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_requirement-checklist.md b/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_requirement-checklist.md -rename to dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_validation-lane.md b/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_validation-lane.md -rename to dev/reports/PR_26175_OWNER_051-outstanding-pr-audit-report_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory.md b/dev/reports/PR_26175_OWNER_052-project-work-inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory.md -rename to dev/reports/PR_26175_OWNER_052-project-work-inventory.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_branch-validation.md b/dev/reports/PR_26175_OWNER_052-project-work-inventory_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_branch-validation.md -rename to dev/reports/PR_26175_OWNER_052-project-work-inventory_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_manual-validation-notes.md b/dev/reports/PR_26175_OWNER_052-project-work-inventory_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_manual-validation-notes.md -rename to dev/reports/PR_26175_OWNER_052-project-work-inventory_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_requirement-checklist.md b/dev/reports/PR_26175_OWNER_052-project-work-inventory_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_requirement-checklist.md -rename to dev/reports/PR_26175_OWNER_052-project-work-inventory_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_validation-lane.md b/dev/reports/PR_26175_OWNER_052-project-work-inventory_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_052-project-work-inventory_validation-lane.md -rename to dev/reports/PR_26175_OWNER_052-project-work-inventory_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report.md b/dev/reports/PR_26175_OWNER_053-project-work-resolution-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report.md -rename to dev/reports/PR_26175_OWNER_053-project-work-resolution-report.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_branch-validation.md b/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_branch-validation.md -rename to dev/reports/PR_26175_OWNER_053-project-work-resolution-report_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_manual-validation-notes.md b/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_manual-validation-notes.md -rename to dev/reports/PR_26175_OWNER_053-project-work-resolution-report_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_requirement-checklist.md b/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_requirement-checklist.md -rename to dev/reports/PR_26175_OWNER_053-project-work-resolution-report_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_validation-lane.md b/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_053-project-work-resolution-report_validation-lane.md -rename to dev/reports/PR_26175_OWNER_053-project-work-resolution-report_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_054-legal-corrected-package.md b/dev/reports/PR_26175_OWNER_054-legal-corrected-package.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_054-legal-corrected-package.md -rename to dev/reports/PR_26175_OWNER_054-legal-corrected-package.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_055-remaining-open-pr-action-plan.md b/dev/reports/PR_26175_OWNER_055-remaining-open-pr-action-plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_055-remaining-open-pr-action-plan.md -rename to dev/reports/PR_26175_OWNER_055-remaining-open-pr-action-plan.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_056-final-open-pr-resolution-plan.md b/dev/reports/PR_26175_OWNER_056-final-open-pr-resolution-plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_056-final-open-pr-resolution-plan.md -rename to dev/reports/PR_26175_OWNER_056-final-open-pr-resolution-plan.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_057-final-five-pr-decision-plan.md b/dev/reports/PR_26175_OWNER_057-final-five-pr-decision-plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_057-final-five-pr-decision-plan.md -rename to dev/reports/PR_26175_OWNER_057-final-five-pr-decision-plan.md -diff --git a/dev/docs_build/dev/reports/PR_26175_OWNER_all-pr-outstanding-audit.md b/dev/reports/PR_26175_OWNER_all-pr-outstanding-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26175_OWNER_all-pr-outstanding-audit.md -rename to dev/reports/PR_26175_OWNER_all-pr-outstanding-audit.md -diff --git a/dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation.md b/dev/reports/PR_26177_001-shared-hash-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation.md -rename to dev/reports/PR_26177_001-shared-hash-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_branch-validation.md b/dev/reports/PR_26177_001-shared-hash-foundation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_branch-validation.md -rename to dev/reports/PR_26177_001-shared-hash-foundation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_manual-validation-notes.md b/dev/reports/PR_26177_001-shared-hash-foundation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_manual-validation-notes.md -rename to dev/reports/PR_26177_001-shared-hash-foundation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_requirement-checklist.md b/dev/reports/PR_26177_001-shared-hash-foundation_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_requirement-checklist.md -rename to dev/reports/PR_26177_001-shared-hash-foundation_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_validation-lane.md b/dev/reports/PR_26177_001-shared-hash-foundation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_001-shared-hash-foundation_validation-lane.md -rename to dev/reports/PR_26177_001-shared-hash-foundation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation.md b/dev/reports/PR_26177_002-shared-noise-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation.md -rename to dev/reports/PR_26177_002-shared-noise-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_branch-validation.md b/dev/reports/PR_26177_002-shared-noise-foundation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_branch-validation.md -rename to dev/reports/PR_26177_002-shared-noise-foundation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_manual-validation-notes.md b/dev/reports/PR_26177_002-shared-noise-foundation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_manual-validation-notes.md -rename to dev/reports/PR_26177_002-shared-noise-foundation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_requirement-checklist.md b/dev/reports/PR_26177_002-shared-noise-foundation_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_requirement-checklist.md -rename to dev/reports/PR_26177_002-shared-noise-foundation_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_validation-lane.md b/dev/reports/PR_26177_002-shared-noise-foundation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_002-shared-noise-foundation_validation-lane.md -rename to dev/reports/PR_26177_002-shared-noise-foundation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation.md b/dev/reports/PR_26177_003-shared-geometry-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation.md -rename to dev/reports/PR_26177_003-shared-geometry-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_branch-validation.md b/dev/reports/PR_26177_003-shared-geometry-foundation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_branch-validation.md -rename to dev/reports/PR_26177_003-shared-geometry-foundation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_manual-validation-notes.md b/dev/reports/PR_26177_003-shared-geometry-foundation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_manual-validation-notes.md -rename to dev/reports/PR_26177_003-shared-geometry-foundation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_requirement-checklist.md b/dev/reports/PR_26177_003-shared-geometry-foundation_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_requirement-checklist.md -rename to dev/reports/PR_26177_003-shared-geometry-foundation_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_validation-lane.md b/dev/reports/PR_26177_003-shared-geometry-foundation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_003-shared-geometry-foundation_validation-lane.md -rename to dev/reports/PR_26177_003-shared-geometry-foundation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation.md b/dev/reports/PR_26177_004-shared-color-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation.md -rename to dev/reports/PR_26177_004-shared-color-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_branch-validation.md b/dev/reports/PR_26177_004-shared-color-foundation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_branch-validation.md -rename to dev/reports/PR_26177_004-shared-color-foundation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_manual-validation-notes.md b/dev/reports/PR_26177_004-shared-color-foundation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_manual-validation-notes.md -rename to dev/reports/PR_26177_004-shared-color-foundation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_requirement-checklist.md b/dev/reports/PR_26177_004-shared-color-foundation_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_requirement-checklist.md -rename to dev/reports/PR_26177_004-shared-color-foundation_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_validation-lane.md b/dev/reports/PR_26177_004-shared-color-foundation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_004-shared-color-foundation_validation-lane.md -rename to dev/reports/PR_26177_004-shared-color-foundation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation.md b/dev/reports/PR_26177_005-shared-text-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation.md -rename to dev/reports/PR_26177_005-shared-text-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_branch-validation.md b/dev/reports/PR_26177_005-shared-text-foundation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_branch-validation.md -rename to dev/reports/PR_26177_005-shared-text-foundation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_manual-validation-notes.md b/dev/reports/PR_26177_005-shared-text-foundation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_manual-validation-notes.md -rename to dev/reports/PR_26177_005-shared-text-foundation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_requirement-checklist.md b/dev/reports/PR_26177_005-shared-text-foundation_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_requirement-checklist.md -rename to dev/reports/PR_26177_005-shared-text-foundation_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_validation-lane.md b/dev/reports/PR_26177_005-shared-text-foundation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_005-shared-text-foundation_validation-lane.md -rename to dev/reports/PR_26177_005-shared-text-foundation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation.md b/dev/reports/PR_26177_006-shared-time-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation.md -rename to dev/reports/PR_26177_006-shared-time-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_branch-validation.md b/dev/reports/PR_26177_006-shared-time-foundation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_branch-validation.md -rename to dev/reports/PR_26177_006-shared-time-foundation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_closeout.md b/dev/reports/PR_26177_006-shared-time-foundation_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_closeout.md -rename to dev/reports/PR_26177_006-shared-time-foundation_closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_manual-validation-notes.md b/dev/reports/PR_26177_006-shared-time-foundation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_manual-validation-notes.md -rename to dev/reports/PR_26177_006-shared-time-foundation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_requirement-checklist.md b/dev/reports/PR_26177_006-shared-time-foundation_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_requirement-checklist.md -rename to dev/reports/PR_26177_006-shared-time-foundation_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_validation-lane.md b/dev/reports/PR_26177_006-shared-time-foundation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_006-shared-time-foundation_validation-lane.md -rename to dev/reports/PR_26177_006-shared-time-foundation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_branch-validation.md b/dev/reports/PR_26177_ALFA_058-flat-project-tags_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_branch-validation.md -rename to dev/reports/PR_26177_ALFA_058-flat-project-tags_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_manual-validation-notes.md b/dev/reports/PR_26177_ALFA_058-flat-project-tags_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_manual-validation-notes.md -rename to dev/reports/PR_26177_ALFA_058-flat-project-tags_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_report.md b/dev/reports/PR_26177_ALFA_058-flat-project-tags_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_report.md -rename to dev/reports/PR_26177_ALFA_058-flat-project-tags_report.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_requirement-checklist.md b/dev/reports/PR_26177_ALFA_058-flat-project-tags_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_requirement-checklist.md -rename to dev/reports/PR_26177_ALFA_058-flat-project-tags_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_validation-lane.md b/dev/reports/PR_26177_ALFA_058-flat-project-tags_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_058-flat-project-tags_validation-lane.md -rename to dev/reports/PR_26177_ALFA_058-flat-project-tags_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_branch-validation.md b/dev/reports/PR_26177_ALFA_059-game-crew-foundation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_branch-validation.md -rename to dev/reports/PR_26177_ALFA_059-game-crew-foundation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_manual-validation-notes.md b/dev/reports/PR_26177_ALFA_059-game-crew-foundation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_manual-validation-notes.md -rename to dev/reports/PR_26177_ALFA_059-game-crew-foundation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_report.md b/dev/reports/PR_26177_ALFA_059-game-crew-foundation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_report.md -rename to dev/reports/PR_26177_ALFA_059-game-crew-foundation_report.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_requirement-checklist.md b/dev/reports/PR_26177_ALFA_059-game-crew-foundation_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_requirement-checklist.md -rename to dev/reports/PR_26177_ALFA_059-game-crew-foundation_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_validation-lane.md b/dev/reports/PR_26177_ALFA_059-game-crew-foundation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_059-game-crew-foundation_validation-lane.md -rename to dev/reports/PR_26177_ALFA_059-game-crew-foundation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_branch-validation.md b/dev/reports/PR_26177_ALFA_060-game-design-foundation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_branch-validation.md -rename to dev/reports/PR_26177_ALFA_060-game-design-foundation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_manual-validation-notes.md b/dev/reports/PR_26177_ALFA_060-game-design-foundation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_manual-validation-notes.md -rename to dev/reports/PR_26177_ALFA_060-game-design-foundation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_report.md b/dev/reports/PR_26177_ALFA_060-game-design-foundation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_report.md -rename to dev/reports/PR_26177_ALFA_060-game-design-foundation_report.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_requirement-checklist.md b/dev/reports/PR_26177_ALFA_060-game-design-foundation_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_requirement-checklist.md -rename to dev/reports/PR_26177_ALFA_060-game-design-foundation_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_validation-lane.md b/dev/reports/PR_26177_ALFA_060-game-design-foundation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_060-game-design-foundation_validation-lane.md -rename to dev/reports/PR_26177_ALFA_060-game-design-foundation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_branch-validation.md b/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_branch-validation.md -rename to dev/reports/PR_26177_ALFA_061-game-configuration-foundation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_manual-validation-notes.md b/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_manual-validation-notes.md -rename to dev/reports/PR_26177_ALFA_061-game-configuration-foundation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_report.md b/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_report.md -rename to dev/reports/PR_26177_ALFA_061-game-configuration-foundation_report.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_requirement-checklist.md b/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_requirement-checklist.md -rename to dev/reports/PR_26177_ALFA_061-game-configuration-foundation_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_validation-lane.md b/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_ALFA_061-game-configuration-foundation_validation-lane.md -rename to dev/reports/PR_26177_ALFA_061-game-configuration-foundation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_001-audit-text-to-speech-profiles-emotions.md b/dev/reports/PR_26177_BRAVO_001-audit-text-to-speech-profiles-emotions.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_001-audit-text-to-speech-profiles-emotions.md -rename to dev/reports/PR_26177_BRAVO_001-audit-text-to-speech-profiles-emotions.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_002-complete-text-to-speech-gap-fixes.md b/dev/reports/PR_26177_BRAVO_002-complete-text-to-speech-gap-fixes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_002-complete-text-to-speech-gap-fixes.md -rename to dev/reports/PR_26177_BRAVO_002-complete-text-to-speech-gap-fixes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_002-correct-team-branch-governance.md b/dev/reports/PR_26177_BRAVO_002-correct-team-branch-governance.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_002-correct-team-branch-governance.md -rename to dev/reports/PR_26177_BRAVO_002-correct-team-branch-governance.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_004-fix-emotion-preview-parent-voice.md b/dev/reports/PR_26177_BRAVO_004-fix-emotion-preview-parent-voice.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_004-fix-emotion-preview-parent-voice.md -rename to dev/reports/PR_26177_BRAVO_004-fix-emotion-preview-parent-voice.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_005-fix-tts-seed-profiles-and-guest-save-routing.md b/dev/reports/PR_26177_BRAVO_005-fix-tts-seed-profiles-and-guest-save-routing.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_005-fix-tts-seed-profiles-and-guest-save-routing.md -rename to dev/reports/PR_26177_BRAVO_005-fix-tts-seed-profiles-and-guest-save-routing.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_006-delete-broken-tts-seed-profiles.md b/dev/reports/PR_26177_BRAVO_006-delete-broken-tts-seed-profiles.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_006-delete-broken-tts-seed-profiles.md -rename to dev/reports/PR_26177_BRAVO_006-delete-broken-tts-seed-profiles.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_007-delete-broken-tts-profile-parents.md b/dev/reports/PR_26177_BRAVO_007-delete-broken-tts-profile-parents.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_007-delete-broken-tts-profile-parents.md -rename to dev/reports/PR_26177_BRAVO_007-delete-broken-tts-profile-parents.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_008-delete-empty-tts-profile-parents.md b/dev/reports/PR_26177_BRAVO_008-delete-empty-tts-profile-parents.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_008-delete-empty-tts-profile-parents.md -rename to dev/reports/PR_26177_BRAVO_008-delete-empty-tts-profile-parents.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_009-force-delete-broken-tts-profiles.md b/dev/reports/PR_26177_BRAVO_009-force-delete-broken-tts-profiles.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_009-force-delete-broken-tts-profiles.md -rename to dev/reports/PR_26177_BRAVO_009-force-delete-broken-tts-profiles.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_012-add-emotion-editor-preview.md b/dev/reports/PR_26177_BRAVO_012-add-emotion-editor-preview.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_012-add-emotion-editor-preview.md -rename to dev/reports/PR_26177_BRAVO_012-add-emotion-editor-preview.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_013-fix-local-db-snapshot-eod-gate.md b/dev/reports/PR_26177_BRAVO_013-fix-local-db-snapshot-eod-gate.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_013-fix-local-db-snapshot-eod-gate.md -rename to dev/reports/PR_26177_BRAVO_013-fix-local-db-snapshot-eod-gate.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_014-playwright-chromium-validation.md b/dev/reports/PR_26177_BRAVO_014-playwright-chromium-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_014-playwright-chromium-validation.md -rename to dev/reports/PR_26177_BRAVO_014-playwright-chromium-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_015-final-eod-closeout.md b/dev/reports/PR_26177_BRAVO_015-final-eod-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_015-final-eod-closeout.md -rename to dev/reports/PR_26177_BRAVO_015-final-eod-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26177_BRAVO_EOD-closeout.md b/dev/reports/PR_26177_BRAVO_EOD-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_BRAVO_EOD-closeout.md -rename to dev/reports/PR_26177_BRAVO_EOD-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete.md b/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete.md -rename to dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_branch-validation.md b/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_branch-validation.md -rename to dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_manual-validation-notes.md b/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_manual-validation-notes.md -rename to dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_requirements-checklist.md b/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_requirements-checklist.md -rename to dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_validation-lane.md b/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_validation-lane.md -rename to dev/reports/PR_26177_CHARLIE_006-system-health-dashboard-complete_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete.md b/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete.md -rename to dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_branch-validation.md b/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_branch-validation.md -rename to dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_manual-validation-notes.md b/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_manual-validation-notes.md -rename to dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_requirements-checklist.md b/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_requirements-checklist.md -rename to dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_validation-lane.md b/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_validation-lane.md -rename to dev/reports/PR_26177_CHARLIE_007-runtime-configuration-complete_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete.md b/dev/reports/PR_26177_CHARLIE_008-environment-management-complete.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete.md -rename to dev/reports/PR_26177_CHARLIE_008-environment-management-complete.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_branch-validation.md b/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_branch-validation.md -rename to dev/reports/PR_26177_CHARLIE_008-environment-management-complete_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_manual-validation-notes.md b/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_manual-validation-notes.md -rename to dev/reports/PR_26177_CHARLIE_008-environment-management-complete_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_requirements-checklist.md b/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_requirements-checklist.md -rename to dev/reports/PR_26177_CHARLIE_008-environment-management-complete_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_validation-lane.md b/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_008-environment-management-complete_validation-lane.md -rename to dev/reports/PR_26177_CHARLIE_008-environment-management-complete_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel.md b/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel.md -rename to dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_branch-validation.md b/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_branch-validation.md -rename to dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_manual-validation-notes.md b/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_manual-validation-notes.md -rename to dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_requirements-checklist.md b/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_requirements-checklist.md -rename to dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_validation-lane.md b/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_validation-lane.md -rename to dev/reports/PR_26177_CHARLIE_029-system-health-postgres-metrics-panel_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation.md b/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation.md -rename to dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_branch-validation.md b/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_branch-validation.md -rename to dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_manual-validation-notes.md b/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_manual-validation-notes.md -rename to dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_requirements-checklist.md b/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_requirements-checklist.md -rename to dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_validation-lane.md b/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_validation-lane.md -rename to dev/reports/PR_26177_CHARLIE_030-r2-storage-health-expanded-validation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison.md b/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison.md -rename to dev/reports/PR_26177_CHARLIE_031-environment-health-comparison.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_branch-validation.md b/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_branch-validation.md -rename to dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_manual-validation-notes.md b/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_manual-validation-notes.md -rename to dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_requirements-checklist.md b/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_requirements-checklist.md -rename to dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_validation-lane.md b/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_validation-lane.md -rename to dev/reports/PR_26177_CHARLIE_031-environment-health-comparison_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints.md b/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints.md -rename to dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_branch-validation.md b/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_branch-validation.md -rename to dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_manual-validation-notes.md b/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_manual-validation-notes.md -rename to dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_requirements-checklist.md b/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_requirements-checklist.md -rename to dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_validation-lane.md b/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_validation-lane.md -rename to dev/reports/PR_26177_CHARLIE_032-runtime-health-json-endpoints_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup.md b/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup.md -rename to dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_branch-validation.md b/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_branch-validation.md -rename to dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_manual-validation-notes.md b/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_manual-validation-notes.md -rename to dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_requirements-checklist.md b/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_requirements-checklist.md -rename to dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_validation-lane.md b/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_validation-lane.md -rename to dev/reports/PR_26177_CHARLIE_034-startup-runtime-report-cleanup_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish.md b/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish.md -rename to dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_branch-validation.md b/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_branch-validation.md -rename to dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_manual-validation-notes.md b/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_manual-validation-notes.md -rename to dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_requirements-checklist.md b/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_requirements-checklist.md -rename to dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_validation-lane.md b/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_validation-lane.md -rename to dev/reports/PR_26177_CHARLIE_035-system-health-ui-polish_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout.md b/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout.md -rename to dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_branch-validation.md b/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_branch-validation.md -rename to dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_manual-validation-notes.md b/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_manual-validation-notes.md -rename to dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_requirements-checklist.md b/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_requirements-checklist.md -rename to dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_validation-lane.md b/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_validation-lane.md -rename to dev/reports/PR_26177_CHARLIE_036-team-charlie-final-closeout_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership.md b/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership.md -rename to dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_branch-validation.md b/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_branch-validation.md -rename to dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_manual-validation-notes.md b/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_manual-validation-notes.md -rename to dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_requirement-checklist.md b/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_requirement-checklist.md -rename to dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-checklist.md b/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-checklist.md -rename to dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-lane.md b/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-lane.md -rename to dev/reports/PR_26177_DELTA_001-hitboxes-team-ownership_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation.md b/dev/reports/PR_26177_DELTA_002-hitboxes-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation.md -rename to dev/reports/PR_26177_DELTA_002-hitboxes-foundation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_branch-validation.md b/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_branch-validation.md -rename to dev/reports/PR_26177_DELTA_002-hitboxes-foundation_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_manual-validation-notes.md b/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_manual-validation-notes.md -rename to dev/reports/PR_26177_DELTA_002-hitboxes-foundation_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_requirement-checklist.md b/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_requirement-checklist.md -rename to dev/reports/PR_26177_DELTA_002-hitboxes-foundation_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_validation-lane.md b/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_002-hitboxes-foundation_validation-lane.md -rename to dev/reports/PR_26177_DELTA_002-hitboxes-foundation_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract.md b/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract.md -rename to dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_branch-validation.md b/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_branch-validation.md -rename to dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_manual-validation-notes.md b/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_manual-validation-notes.md -rename to dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_requirement-checklist.md b/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_requirement-checklist.md -rename to dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_validation-lane.md b/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_validation-lane.md -rename to dev/reports/PR_26177_DELTA_003-hitboxes-engine-collision-contract_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source.md b/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source.md -rename to dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_branch-validation.md b/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_branch-validation.md -rename to dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_manual-validation-notes.md b/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_manual-validation-notes.md -rename to dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_requirement-checklist.md b/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_requirement-checklist.md -rename to dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_validation-lane.md b/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_validation-lane.md -rename to dev/reports/PR_26177_DELTA_004-hitboxes-real-object-source_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp.md b/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp.md -rename to dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_branch_validation.md b/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_branch_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_branch_validation.md -rename to dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_branch_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_manual_validation.md b/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_manual_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_manual_validation.md -rename to dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_manual_validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_requirements_checklist.md b/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_requirements_checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_requirements_checklist.md -rename to dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_requirements_checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_validation_lane.md b/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_validation_lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_validation_lane.md -rename to dev/reports/PR_26177_DELTA_005-hitboxes-testable-mvp_validation_lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility.md b/dev/reports/PR_26177_DELTA_052-random-seed-utility.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility.md -rename to dev/reports/PR_26177_DELTA_052-random-seed-utility.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_branch-validation.md b/dev/reports/PR_26177_DELTA_052-random-seed-utility_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_branch-validation.md -rename to dev/reports/PR_26177_DELTA_052-random-seed-utility_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_instruction-compliance-checklist.md b/dev/reports/PR_26177_DELTA_052-random-seed-utility_instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_instruction-compliance-checklist.md -rename to dev/reports/PR_26177_DELTA_052-random-seed-utility_instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_manual-validation-notes.md b/dev/reports/PR_26177_DELTA_052-random-seed-utility_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_manual-validation-notes.md -rename to dev/reports/PR_26177_DELTA_052-random-seed-utility_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_requirement-checklist.md b/dev/reports/PR_26177_DELTA_052-random-seed-utility_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_requirement-checklist.md -rename to dev/reports/PR_26177_DELTA_052-random-seed-utility_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_validation-lane.md b/dev/reports/PR_26177_DELTA_052-random-seed-utility_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_052-random-seed-utility_validation-lane.md -rename to dev/reports/PR_26177_DELTA_052-random-seed-utility_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers.md b/dev/reports/PR_26177_DELTA_053-random-shared-helpers.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers.md -rename to dev/reports/PR_26177_DELTA_053-random-shared-helpers.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_branch-validation.md b/dev/reports/PR_26177_DELTA_053-random-shared-helpers_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_branch-validation.md -rename to dev/reports/PR_26177_DELTA_053-random-shared-helpers_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_instruction-compliance-checklist.md b/dev/reports/PR_26177_DELTA_053-random-shared-helpers_instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_instruction-compliance-checklist.md -rename to dev/reports/PR_26177_DELTA_053-random-shared-helpers_instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_manual-validation-notes.md b/dev/reports/PR_26177_DELTA_053-random-shared-helpers_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_manual-validation-notes.md -rename to dev/reports/PR_26177_DELTA_053-random-shared-helpers_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_requirement-checklist.md b/dev/reports/PR_26177_DELTA_053-random-shared-helpers_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_requirement-checklist.md -rename to dev/reports/PR_26177_DELTA_053-random-shared-helpers_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_validation-lane.md b/dev/reports/PR_26177_DELTA_053-random-shared-helpers_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_053-random-shared-helpers_validation-lane.md -rename to dev/reports/PR_26177_DELTA_053-random-shared-helpers_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility.md b/dev/reports/PR_26177_DELTA_054-random-utility.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility.md -rename to dev/reports/PR_26177_DELTA_054-random-utility.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_branch-validation.md b/dev/reports/PR_26177_DELTA_054-random-utility_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_branch-validation.md -rename to dev/reports/PR_26177_DELTA_054-random-utility_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_instruction-compliance-checklist.md b/dev/reports/PR_26177_DELTA_054-random-utility_instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_instruction-compliance-checklist.md -rename to dev/reports/PR_26177_DELTA_054-random-utility_instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_manual-validation-notes.md b/dev/reports/PR_26177_DELTA_054-random-utility_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_manual-validation-notes.md -rename to dev/reports/PR_26177_DELTA_054-random-utility_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_requirement-checklist.md b/dev/reports/PR_26177_DELTA_054-random-utility_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_requirement-checklist.md -rename to dev/reports/PR_26177_DELTA_054-random-utility_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_validation-lane.md b/dev/reports/PR_26177_DELTA_054-random-utility_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_054-random-utility_validation-lane.md -rename to dev/reports/PR_26177_DELTA_054-random-utility_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements.md b/dev/reports/PR_26177_DELTA_055-random-seed-enhancements.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements.md -rename to dev/reports/PR_26177_DELTA_055-random-seed-enhancements.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_branch-validation.md b/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_branch-validation.md -rename to dev/reports/PR_26177_DELTA_055-random-seed-enhancements_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_instruction-compliance-checklist.md b/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_instruction-compliance-checklist.md -rename to dev/reports/PR_26177_DELTA_055-random-seed-enhancements_instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_manual-validation-notes.md b/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_manual-validation-notes.md -rename to dev/reports/PR_26177_DELTA_055-random-seed-enhancements_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_requirement-checklist.md b/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_requirement-checklist.md -rename to dev/reports/PR_26177_DELTA_055-random-seed-enhancements_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_validation-lane.md b/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_055-random-seed-enhancements_validation-lane.md -rename to dev/reports/PR_26177_DELTA_055-random-seed-enhancements_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions.md b/dev/reports/PR_26177_DELTA_056-shared-validation-assertions.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions.md -rename to dev/reports/PR_26177_DELTA_056-shared-validation-assertions.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_branch-validation.md b/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_branch-validation.md -rename to dev/reports/PR_26177_DELTA_056-shared-validation-assertions_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_instruction-compliance-checklist.md b/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_instruction-compliance-checklist.md -rename to dev/reports/PR_26177_DELTA_056-shared-validation-assertions_instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_manual-validation-notes.md b/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_manual-validation-notes.md -rename to dev/reports/PR_26177_DELTA_056-shared-validation-assertions_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_requirement-checklist.md b/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_requirement-checklist.md -rename to dev/reports/PR_26177_DELTA_056-shared-validation-assertions_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_validation-lane.md b/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_056-shared-validation-assertions_validation-lane.md -rename to dev/reports/PR_26177_DELTA_056-shared-validation-assertions_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_DELTA_hitboxes_chain_eod_2026-06-26.md b/dev/reports/PR_26177_DELTA_hitboxes_chain_eod_2026-06-26.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_DELTA_hitboxes_chain_eod_2026-06-26.md -rename to dev/reports/PR_26177_DELTA_hitboxes_chain_eod_2026-06-26.md -diff --git a/dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration.md b/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration.md -rename to dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration.md -diff --git a/dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_branch-validation.md b/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_branch-validation.md -rename to dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_manual-validation-notes.md b/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_manual-validation-notes.md -rename to dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_requirements-checklist.md b/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_requirements-checklist.md -rename to dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_validation-lane.md b/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_validation-lane.md -rename to dev/reports/PR_26177_GOLF_036-game-journey-metrics-sqlite-to-postgres-migration_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock.md b/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock.md -rename to dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_branch-validation.md b/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_branch-validation.md -rename to dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_manual-validation-notes.md b/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_manual-validation-notes.md -rename to dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_requirement-checklist.md b/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_requirement-checklist.md -rename to dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_validation-lane.md b/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_validation-lane.md -rename to dev/reports/PR_26177_OWNER_007-project-instructions-single-source-eod-lock_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup.md b/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup.md -rename to dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_branch-validation.md b/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_branch-validation.md -rename to dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_manual-validation-notes.md b/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_manual-validation-notes.md -rename to dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_requirement-checklist.md b/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_requirement-checklist.md -rename to dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_validation-lane.md b/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_validation-lane.md -rename to dev/reports/PR_26177_OWNER_008-dev-documentation-ownership-cleanup_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment.md b/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment.md -rename to dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_branch-validation.md b/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_branch-validation.md -rename to dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_manual-validation-notes.md b/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_manual-validation-notes.md -rename to dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_requirements-checklist.md b/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_requirements-checklist.md -rename to dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_validation-lane.md b/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_validation-lane.md -rename to dev/reports/PR_26177_OWNER_009-project-instructions-workflow-testable-tests-alignment_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard.md b/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard.md -rename to dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_branch-validation.md b/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_branch-validation.md -rename to dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_manual-validation-notes.md b/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_manual-validation-notes.md -rename to dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_requirements-checklist.md b/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_requirements-checklist.md -rename to dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_validation-lane.md b/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_validation-lane.md -rename to dev/reports/PR_26177_OWNER_010-team-backlog-sod-eod-standard_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard.md b/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard.md -rename to dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_branch-validation.md b/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_branch-validation.md -rename to dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_manual-validation-notes.md b/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_manual-validation-notes.md -rename to dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_requirements-checklist.md b/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_requirements-checklist.md -rename to dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_validation-lane.md b/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_validation-lane.md -rename to dev/reports/PR_26177_OWNER_011-codex-zip-and-next-pr-standard_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization.md b/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization.md -rename to dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_branch-validation.md b/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_branch-validation.md -rename to dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_manual-validation-notes.md b/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_manual-validation-notes.md -rename to dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_requirements-checklist.md b/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_requirements-checklist.md -rename to dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_validation-lane.md b/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_validation-lane.md -rename to dev/reports/PR_26177_OWNER_012-project-instructions-cleanup-backlog-canonicalization_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model.md b/dev/reports/PR_26177_OWNER_050-environment-governance-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model.md -rename to dev/reports/PR_26177_OWNER_050-environment-governance-model.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_branch-validation.md b/dev/reports/PR_26177_OWNER_050-environment-governance-model_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_branch-validation.md -rename to dev/reports/PR_26177_OWNER_050-environment-governance-model_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_instruction-compliance-checklist.md b/dev/reports/PR_26177_OWNER_050-environment-governance-model_instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_instruction-compliance-checklist.md -rename to dev/reports/PR_26177_OWNER_050-environment-governance-model_instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_manual-validation-notes.md b/dev/reports/PR_26177_OWNER_050-environment-governance-model_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_manual-validation-notes.md -rename to dev/reports/PR_26177_OWNER_050-environment-governance-model_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_requirement-checklist.md b/dev/reports/PR_26177_OWNER_050-environment-governance-model_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_requirement-checklist.md -rename to dev/reports/PR_26177_OWNER_050-environment-governance-model_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_validation-lane.md b/dev/reports/PR_26177_OWNER_050-environment-governance-model_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_050-environment-governance-model_validation-lane.md -rename to dev/reports/PR_26177_OWNER_050-environment-governance-model_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards.md b/dev/reports/PR_26177_OWNER_051-environment-configuration-standards.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards.md -rename to dev/reports/PR_26177_OWNER_051-environment-configuration-standards.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_branch-validation.md b/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_branch-validation.md -rename to dev/reports/PR_26177_OWNER_051-environment-configuration-standards_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_instruction-compliance-checklist.md b/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_instruction-compliance-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_instruction-compliance-checklist.md -rename to dev/reports/PR_26177_OWNER_051-environment-configuration-standards_instruction-compliance-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_manual-validation-notes.md b/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_manual-validation-notes.md -rename to dev/reports/PR_26177_OWNER_051-environment-configuration-standards_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_requirement-checklist.md b/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_requirement-checklist.md -rename to dev/reports/PR_26177_OWNER_051-environment-configuration-standards_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_validation-lane.md b/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_051-environment-configuration-standards_validation-lane.md -rename to dev/reports/PR_26177_OWNER_051-environment-configuration-standards_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update.md b/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update.md -rename to dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_branch-validation.md b/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_branch-validation.md -rename to dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_manual-validation-notes.md b/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_manual-validation-notes.md -rename to dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_requirements-checklist.md b/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_requirements-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_requirements-checklist.md -rename to dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_requirements-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_validation-lane.md b/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_validation-lane.md -rename to dev/reports/PR_26177_OWNER_052-eod-main-verification-and-backlog-update_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_branch-validation.md b/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_branch-validation.md -rename to dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_manual-validation-notes.md b/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_manual-validation-notes.md -rename to dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_report.md b/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_report.md -rename to dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_report.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_requirement-checklist.md b/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_requirement-checklist.md -rename to dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_validation-lane.md b/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_validation-lane.md -rename to dev/reports/PR_26177_OWNER_057-game-journey-metrics-regression-recovery_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_branch-validation.md b/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_branch-validation.md -rename to dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_manual-validation-notes.md b/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_manual-validation-notes.md -rename to dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_report.md b/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_report.md -rename to dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_report.md -diff --git a/dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_requirement-checklist.md b/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_requirement-checklist.md -rename to dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-lane.md b/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-lane.md -rename to dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-report.md b/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-report.md -rename to dev/reports/PR_26178_ALFA_001-fix-tags-local-api-crash_validation-report.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell.md b/dev/reports/PR_26179_OWNER_003-dev-root-shell.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell.md -rename to dev/reports/PR_26179_OWNER_003-dev-root-shell.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_branch-validation.md b/dev/reports/PR_26179_OWNER_003-dev-root-shell_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_branch-validation.md -rename to dev/reports/PR_26179_OWNER_003-dev-root-shell_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_manual-validation-notes.md b/dev/reports/PR_26179_OWNER_003-dev-root-shell_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_manual-validation-notes.md -rename to dev/reports/PR_26179_OWNER_003-dev-root-shell_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_requirement-checklist.md b/dev/reports/PR_26179_OWNER_003-dev-root-shell_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_requirement-checklist.md -rename to dev/reports/PR_26179_OWNER_003-dev-root-shell_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_validation-lane.md b/dev/reports/PR_26179_OWNER_003-dev-root-shell_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_003-dev-root-shell_validation-lane.md -rename to dev/reports/PR_26179_OWNER_003-dev-root-shell_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace.md b/dev/reports/PR_26179_OWNER_004-move-governance-workspace.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace.md -rename to dev/reports/PR_26179_OWNER_004-move-governance-workspace.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_branch-validation.md b/dev/reports/PR_26179_OWNER_004-move-governance-workspace_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_branch-validation.md -rename to dev/reports/PR_26179_OWNER_004-move-governance-workspace_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_manual-validation-notes.md b/dev/reports/PR_26179_OWNER_004-move-governance-workspace_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_manual-validation-notes.md -rename to dev/reports/PR_26179_OWNER_004-move-governance-workspace_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_requirement-checklist.md b/dev/reports/PR_26179_OWNER_004-move-governance-workspace_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_requirement-checklist.md -rename to dev/reports/PR_26179_OWNER_004-move-governance-workspace_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_validation-lane.md b/dev/reports/PR_26179_OWNER_004-move-governance-workspace_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_004-move-governance-workspace_validation-lane.md -rename to dev/reports/PR_26179_OWNER_004-move-governance-workspace_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev.md b/dev/reports/PR_26179_OWNER_005-move-tests-to-dev.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev.md -rename to dev/reports/PR_26179_OWNER_005-move-tests-to-dev.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_branch-validation.md b/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_branch-validation.md -rename to dev/reports/PR_26179_OWNER_005-move-tests-to-dev_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_manual-validation-notes.md b/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_manual-validation-notes.md -rename to dev/reports/PR_26179_OWNER_005-move-tests-to-dev_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_requirement-checklist.md b/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_requirement-checklist.md -rename to dev/reports/PR_26179_OWNER_005-move-tests-to-dev_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_validation-lane.md b/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_005-move-tests-to-dev_validation-lane.md -rename to dev/reports/PR_26179_OWNER_005-move-tests-to-dev_validation-lane.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts.md b/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts.md -rename to dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_branch-validation.md b/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_branch-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_branch-validation.md -rename to dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_branch-validation.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_manual-validation-notes.md b/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_manual-validation-notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_manual-validation-notes.md -rename to dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_manual-validation-notes.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_requirement-checklist.md b/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_requirement-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_requirement-checklist.md -rename to dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_requirement-checklist.md -diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_validation-lane.md b/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_validation-lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_validation-lane.md -rename to dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_validation-lane.md -diff --git a/dev/reports/PR_26179_OWNER_007-move-reports-artifacts.md b/dev/reports/PR_26179_OWNER_007-move-reports-artifacts.md + The development workspace restructure must proceed through sequential scoped PRs. A PR may only move or update the paths named in its purpose. ++ ++Final path-governance PRs may document target paths and legacy exceptions, but they must not move deployable application code unless explicitly scoped. +diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md new file mode 100644 -index 000000000..70c135510 +index 000000000..747697f52 --- /dev/null -+++ b/dev/reports/PR_26179_OWNER_007-move-reports-artifacts.md -@@ -0,0 +1,39 @@ -+# PR_26179_OWNER_007-move-reports-artifacts ++++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md +@@ -0,0 +1,33 @@ ++# PR_26179_OWNER_008-update-path-governance-final + -+Generated: 2026-06-27T19:33:15.325Z -+Branch: PR_26179_OWNER_007-move-reports-artifacts -+Base stack head before PR_007: 119fa8816 -+ZIP: dev/workspace/artifacts/tmp/PR_26179_OWNER_007-move-reports-artifacts_delta.zip ++Generated: 2026-06-27T19:38:31.874Z ++Branch: PR_26179_OWNER_008-update-path-governance-final ++Base stack head before PR_008: f3c2e7a02 ++ZIP: dev/workspace/artifacts/tmp/PR_26179_OWNER_008-update-path-governance-final_delta.zip + +## Purpose + -+Move generated report and artifact ownership to the new dev workspace locations while keeping runtime/product code untouched. ++Finalize path governance after the dev workspace restructure chain and document the final root, src, and dev workspace standards. + +## Changes + -+- Moved tracked generated reports from `dev/docs_build/dev/reports/` to flat `dev/reports/`. -+- Added `dev/workspace/artifacts/` ownership documentation for non-report generated artifacts. -+- Updated Codex/PR/reporting governance to require flat `dev/reports/` and ZIPs under `dev/workspace/artifacts/tmp/`. -+- Updated dev script defaults, Playwright output, report writers, and report-related tests to the new paths. -+ -+## Report Inventory -+ -+- Old tracked report path count: 0 -+- New tracked flat report count: 3578 -+- Nested tracked paths under `dev/reports/`: 0 ++- Updated repository directory governance with final root ownership and legacy path exceptions. ++- Added the final `src/web/`, `src/api-runtime/`, and `src/runtime/` layer standard. ++- Updated canonical repository structure governance to point new work at final paths. ++- Updated README architecture wording to describe target src layers without moving current source directories. + +## Validation Summary + +| Status | Item | Notes | +| --- | --- | --- | -+| PASS | Current branch is PR_26179_OWNER_007-move-reports-artifacts | confirmed | -+| PASS | No product/runtime/API/database files changed | git diff against production/runtime scopes returned no files | -+| PASS | Tracked reports moved out of dev/docs_build/dev/reports | 0 tracked files remain in old report tree | -+| PASS | Tracked reports are flat under dev/reports | 3578 tracked report files, 0 nested report paths | -+| PASS | Generated ZIP/report/artifact expectations updated | active instructions and helper defaults use dev/reports and dev/workspace/artifacts | -+| PASS | git diff --check | passed | -+| PASS | node --check on changed JS/MJS files | passed | -+| PASS | npm run test:audit:locations | passed | ++| PASS | Current branch is PR_26179_OWNER_008-update-path-governance-final | confirmed | ++| PASS | Documentation/governance-only scope | no protected runtime/product/API/database/test/script/config diffs | ++| PASS | Final root directory standard documented | repository_directory_standard.md names product root, src, dev, docs, games, toolbox, and public product roots | ++| PASS | Final src layer standard documented | src/web, src/api-runtime, and src/runtime documented with legacy transition buckets | ++| PASS | Final dev workspace standard documented | dev/docs_build, dev/reports, dev/tests, dev/scripts, dev/config, dev/archive, and dev/workspace/artifacts documented | ++| PASS | Old report root references absent from active target search | (no matches) | ++| PASS | Old /tmp ZIP reference absent from active target search | (no matches) | ++| PASS | Final src path grep | 15 matching lines | +| PASS | npm run validate:canonical-structure | passed | -+| PASS | Playwright config list | npx playwright test --config=dev/config/playwright.config.cjs --list passed | -+| WARN | Legacy workspace migration validation | ProjectWorkspaceMigrationGovernanceCloseoutValidation.test.mjs cannot load a pre-existing missing toolbox/workspace-manager-v2 module; not expanded in this reports/artifacts PR | -diff --git a/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_branch-validation.md b/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_branch-validation.md ++| PASS | git diff --check | passed | ++| PASS | Playwright impacted | not impacted; no runtime/test/browser behavior changed | +diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md new file mode 100644 -index 000000000..e824bd76e +index 000000000..572d86235 --- /dev/null -+++ b/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_branch-validation.md -@@ -0,0 +1,11 @@ -+# PR_26179_OWNER_007-move-reports-artifacts Branch Validation ++++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md +@@ -0,0 +1,8 @@ ++# PR_26179_OWNER_008-update-path-governance-final Branch Validation + +| Status | Item | Notes | +| --- | --- | --- | -+| PASS | Current branch is PR_26179_OWNER_007-move-reports-artifacts | confirmed | -+| PASS | No product/runtime/API/database files changed | git diff against production/runtime scopes returned no files | -+| PASS | Tracked reports moved out of dev/docs_build/dev/reports | 0 tracked files remain in old report tree | -+| PASS | Tracked reports are flat under dev/reports | 3578 tracked report files, 0 nested report paths | -+| PASS | Generated ZIP/report/artifact expectations updated | active instructions and helper defaults use dev/reports and dev/workspace/artifacts | ++| PASS | Current branch is PR_26179_OWNER_008-update-path-governance-final | confirmed | ++| PASS | Documentation/governance-only scope | no protected runtime/product/API/database/test/script/config diffs | + +Result: PASS -diff --git a/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_manual-validation-notes.md b/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_manual-validation-notes.md +diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md new file mode 100644 -index 000000000..aa52df140 +index 000000000..5e2ef2c4f --- /dev/null -+++ b/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_manual-validation-notes.md ++++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md @@ -0,0 +1,8 @@ -+# PR_26179_OWNER_007-move-reports-artifacts Manual Validation Notes ++# PR_26179_OWNER_008-update-path-governance-final Manual Validation Notes + -+- Confirmed branch: PR_26179_OWNER_007-move-reports-artifacts -+- Confirmed no product/runtime/API/database files changed. -+- Confirmed old tracked report tree is empty. -+- Confirmed tracked `dev/reports/` tree is flat. -+- Confirmed Playwright full execution was not run; only config discovery/listing was run because this PR changes dev/report/artifact paths. -+- Repo-structured ZIP path: `dev/workspace/artifacts/tmp/PR_26179_OWNER_007-move-reports-artifacts_delta.zip` -diff --git a/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_requirement-checklist.md b/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_requirement-checklist.md ++- Confirmed branch: PR_26179_OWNER_008-update-path-governance-final ++- Confirmed no product/runtime/API/database/test/script/config files changed in this PR. ++- Confirmed final target src layers are documented only; no source folders were moved. ++- Confirmed old report root search returned no active matches. ++- Playwright was not run beyond impact assessment because this PR is documentation/governance-only. ++- Repo-structured ZIP path: `dev/workspace/artifacts/tmp/PR_26179_OWNER_008-update-path-governance-final_delta.zip` +diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md new file mode 100644 -index 000000000..3a16ca6f9 +index 000000000..d817114c3 --- /dev/null -+++ b/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_requirement-checklist.md ++++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md @@ -0,0 +1,12 @@ -+# PR_26179_OWNER_007-move-reports-artifacts Requirement Checklist ++# PR_26179_OWNER_008-update-path-governance-final Requirement Checklist + +| Status | Item | Notes | +| --- | --- | --- | -+| PASS | Move tmp/ to dev/workspace/artifacts/tmp/ | Codex ZIP and generated temporary artifact expectations now point to dev/workspace/artifacts/tmp/. Root tmp/ remains ignored as legacy local scratch only. | -+| PASS | Move generated ZIP/report/artifact expectations to dev/workspace/artifacts/ | Non-report artifacts are governed under dev/workspace/artifacts/; ZIPs under dev/workspace/artifacts/tmp/. | -+| PASS | Use flat dev/reports/ with team/runner in report filenames rather than nested team folders | Tracked report tree is flat: 0 nested tracked paths. | -+| PASS | Update Codex deliverable paths and report expectations | Project Instructions, PR template, README, dev scripts, and report contract tests now use dev/reports/ and dev/workspace/artifacts/tmp/. | -+| PASS | No runtime/business logic moved into dev/ | No production/runtime scope changes detected. | -+| PASS | Do not modify start_of_day folders | No start_of_day changes detected. | ++| PASS | Finalize all Project Instructions and governance references to the new paths | Active governance references final dev/report/artifact paths and documents legacy exceptions. | ++| PASS | Document final root directory standard | repository_directory_standard.md and README updated. | ++| PASS | Document final src/ layer standard | src/web, src/api-runtime, src/runtime documented. Existing top-level src buckets are legacy transition only. | ++| PASS | Document final dev/ workspace standard | dev ownership for docs_build, reports, tests, scripts, config, archive, workspace/artifacts documented. | ++| PASS | Confirm no old docs_build/, tests/, archive/, or tmp/ path references remain unless documented as legacy exceptions | Old root paths are documented as legacy exceptions; active output/report refs use new paths. | ++| PASS | No runtime/product/API/database changes | Protected diff check returned no files. | + +Result: PASS -diff --git a/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_validation-lane.md b/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_validation-lane.md +diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md new file mode 100644 -index 000000000..b37ed0f46 +index 000000000..a0d7ee8e6 --- /dev/null -+++ b/dev/reports/PR_26179_OWNER_007-move-reports-artifacts_validation-lane.md -@@ -0,0 +1,14 @@ -+# PR_26179_OWNER_007-move-reports-artifacts Validation Lane ++++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md +@@ -0,0 +1,9 @@ ++# PR_26179_OWNER_008-update-path-governance-final Validation Lane + +| Status | Item | Notes | +| --- | --- | --- | -+| PASS | git diff --check | passed | -+| PASS | node --check on changed JS/MJS files | passed | -+| PASS | npm run test:audit:locations | passed | +| PASS | npm run validate:canonical-structure | passed | -+| PASS | Playwright config list | npx playwright test --config=dev/config/playwright.config.cjs --list passed | -+| WARN | Legacy workspace migration validation | ProjectWorkspaceMigrationGovernanceCloseoutValidation.test.mjs cannot load a pre-existing missing toolbox/workspace-manager-v2 module; not expanded in this reports/artifacts PR | ++| PASS | git diff --check | passed | ++| PASS | Playwright impacted | not impacted; no runtime/test/browser behavior changed | + +Scoped validation result: PASS -+ -+Note: The legacy workspace migration validation import failure is documented as an existing unrelated loader issue and was not repaired in this reports/artifacts PR. -diff --git a/dev/docs_build/dev/reports/PR_REVIEW_003.md b/dev/reports/PR_REVIEW_003.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_REVIEW_003.md -rename to dev/reports/PR_REVIEW_003.md -diff --git a/dev/docs_build/dev/reports/PR_REVIEW_050.md b/dev/reports/PR_REVIEW_050.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_REVIEW_050.md -rename to dev/reports/PR_REVIEW_050.md -diff --git a/dev/docs_build/dev/reports/PR_REVIEW_051.md b/dev/reports/PR_REVIEW_051.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_REVIEW_051.md -rename to dev/reports/PR_REVIEW_051.md -diff --git a/dev/docs_build/dev/reports/PR_REVIEW_118.md b/dev/reports/PR_REVIEW_118.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_REVIEW_118.md -rename to dev/reports/PR_REVIEW_118.md -diff --git a/dev/docs_build/dev/reports/PR_koti_layout_contract_report.md b/dev/reports/PR_koti_layout_contract_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_koti_layout_contract_report.md -rename to dev/reports/PR_koti_layout_contract_report.md -diff --git a/dev/docs_build/dev/reports/PR_tool_fix_fullscreen_exit_state_report.md b/dev/reports/PR_tool_fix_fullscreen_exit_state_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_tool_fix_fullscreen_exit_state_report.md -rename to dev/reports/PR_tool_fix_fullscreen_exit_state_report.md -diff --git a/dev/docs_build/dev/reports/PR_tool_fix_parallax_header_metadata_report.md b/dev/reports/PR_tool_fix_parallax_header_metadata_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_tool_fix_parallax_header_metadata_report.md -rename to dev/reports/PR_tool_fix_parallax_header_metadata_report.md -diff --git a/dev/docs_build/dev/reports/PR_tool_layout_workflow_baseline_report.md b/dev/reports/PR_tool_layout_workflow_baseline_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_tool_layout_workflow_baseline_report.md -rename to dev/reports/PR_tool_layout_workflow_baseline_report.md -diff --git a/dev/docs_build/dev/reports/PR_tool_remove_future_import_hints_report.md b/dev/reports/PR_tool_remove_future_import_hints_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_tool_remove_future_import_hints_report.md -rename to dev/reports/PR_tool_remove_future_import_hints_report.md -diff --git a/dev/docs_build/dev/reports/PR_tool_remove_static_header_intro_report.md b/dev/reports/PR_tool_remove_static_header_intro_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_tool_remove_static_header_intro_report.md -rename to dev/reports/PR_tool_remove_static_header_intro_report.md -diff --git a/dev/docs_build/dev/reports/PR_tool_uat_closeout_report.md b/dev/reports/PR_tool_uat_closeout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_tool_uat_closeout_report.md -rename to dev/reports/PR_tool_uat_closeout_report.md -diff --git a/dev/docs_build/dev/reports/PR_tool_uat_failure_fix_report.md b/dev/reports/PR_tool_uat_failure_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_tool_uat_failure_fix_report.md -rename to dev/reports/PR_tool_uat_failure_fix_report.md -diff --git a/dev/docs_build/dev/reports/PR_tool_uat_fix_fullscreen_header_wiring_report.md b/dev/reports/PR_tool_uat_fix_fullscreen_header_wiring_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_tool_uat_fix_fullscreen_header_wiring_report.md -rename to dev/reports/PR_tool_uat_fix_fullscreen_header_wiring_report.md -diff --git a/dev/docs_build/dev/reports/PR_tool_uat_fix_header_asset_browser_report.md b/dev/reports/PR_tool_uat_fix_header_asset_browser_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/PR_tool_uat_fix_header_asset_browser_report.md -rename to dev/reports/PR_tool_uat_fix_header_asset_browser_report.md -diff --git a/dev/docs_build/dev/reports/README_BUILD_PR_LEVEL_20_4.md b/dev/reports/README_BUILD_PR_LEVEL_20_4.md -similarity index 100% -rename from dev/docs_build/dev/reports/README_BUILD_PR_LEVEL_20_4.md -rename to dev/reports/README_BUILD_PR_LEVEL_20_4.md -diff --git a/dev/docs_build/dev/reports/README_PR_11_196.md b/dev/reports/README_PR_11_196.md -similarity index 100% -rename from dev/docs_build/dev/reports/README_PR_11_196.md -rename to dev/reports/README_PR_11_196.md -diff --git a/dev/docs_build/dev/reports/README_PR_11_98.md b/dev/reports/README_PR_11_98.md -similarity index 100% -rename from dev/docs_build/dev/reports/README_PR_11_98.md -rename to dev/reports/README_PR_11_98.md -diff --git a/dev/docs_build/dev/reports/README_PR_11_99.md b/dev/reports/README_PR_11_99.md -similarity index 100% -rename from dev/docs_build/dev/reports/README_PR_11_99.md -rename to dev/reports/README_PR_11_99.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_10.md b/dev/reports/REPORT_PR_10_10.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_10.md -rename to dev/reports/REPORT_PR_10_10.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_11.md b/dev/reports/REPORT_PR_10_11.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_11.md -rename to dev/reports/REPORT_PR_10_11.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_12.md b/dev/reports/REPORT_PR_10_12.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_12.md -rename to dev/reports/REPORT_PR_10_12.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_13.md b/dev/reports/REPORT_PR_10_13.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_13.md -rename to dev/reports/REPORT_PR_10_13.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_14.md b/dev/reports/REPORT_PR_10_14.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_14.md -rename to dev/reports/REPORT_PR_10_14.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_15.md b/dev/reports/REPORT_PR_10_15.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_15.md -rename to dev/reports/REPORT_PR_10_15.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_16.md b/dev/reports/REPORT_PR_10_16.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_16.md -rename to dev/reports/REPORT_PR_10_16.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_17.md b/dev/reports/REPORT_PR_10_17.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_17.md -rename to dev/reports/REPORT_PR_10_17.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_19.md b/dev/reports/REPORT_PR_10_19.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_19.md -rename to dev/reports/REPORT_PR_10_19.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_20.md b/dev/reports/REPORT_PR_10_20.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_20.md -rename to dev/reports/REPORT_PR_10_20.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_21.md b/dev/reports/REPORT_PR_10_21.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_21.md -rename to dev/reports/REPORT_PR_10_21.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_22.md b/dev/reports/REPORT_PR_10_22.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_22.md -rename to dev/reports/REPORT_PR_10_22.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_23.md b/dev/reports/REPORT_PR_10_23.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_23.md -rename to dev/reports/REPORT_PR_10_23.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_24.md b/dev/reports/REPORT_PR_10_24.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_24.md -rename to dev/reports/REPORT_PR_10_24.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_25.md b/dev/reports/REPORT_PR_10_25.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_25.md -rename to dev/reports/REPORT_PR_10_25.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_26.md b/dev/reports/REPORT_PR_10_26.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_26.md -rename to dev/reports/REPORT_PR_10_26.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_27.md b/dev/reports/REPORT_PR_10_27.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_27.md -rename to dev/reports/REPORT_PR_10_27.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_7.md b/dev/reports/REPORT_PR_10_7.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_7.md -rename to dev/reports/REPORT_PR_10_7.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_8.md b/dev/reports/REPORT_PR_10_8.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_8.md -rename to dev/reports/REPORT_PR_10_8.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_10_9.md b/dev/reports/REPORT_PR_10_9.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_10_9.md -rename to dev/reports/REPORT_PR_10_9.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_1.md b/dev/reports/REPORT_PR_11_1.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_1.md -rename to dev/reports/REPORT_PR_11_1.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_10.md b/dev/reports/REPORT_PR_11_10.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_10.md -rename to dev/reports/REPORT_PR_11_10.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_11.md b/dev/reports/REPORT_PR_11_11.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_11.md -rename to dev/reports/REPORT_PR_11_11.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_12.md b/dev/reports/REPORT_PR_11_12.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_12.md -rename to dev/reports/REPORT_PR_11_12.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_13.md b/dev/reports/REPORT_PR_11_13.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_13.md -rename to dev/reports/REPORT_PR_11_13.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_14.md b/dev/reports/REPORT_PR_11_14.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_14.md -rename to dev/reports/REPORT_PR_11_14.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_18.md b/dev/reports/REPORT_PR_11_18.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_18.md -rename to dev/reports/REPORT_PR_11_18.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_19.md b/dev/reports/REPORT_PR_11_19.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_19.md -rename to dev/reports/REPORT_PR_11_19.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_2.md b/dev/reports/REPORT_PR_11_2.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_2.md -rename to dev/reports/REPORT_PR_11_2.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_20.md b/dev/reports/REPORT_PR_11_20.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_20.md -rename to dev/reports/REPORT_PR_11_20.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_21.md b/dev/reports/REPORT_PR_11_21.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_21.md -rename to dev/reports/REPORT_PR_11_21.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_22.md b/dev/reports/REPORT_PR_11_22.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_22.md -rename to dev/reports/REPORT_PR_11_22.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_3.md b/dev/reports/REPORT_PR_11_3.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_3.md -rename to dev/reports/REPORT_PR_11_3.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_4.md b/dev/reports/REPORT_PR_11_4.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_4.md -rename to dev/reports/REPORT_PR_11_4.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_5.md b/dev/reports/REPORT_PR_11_5.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_5.md -rename to dev/reports/REPORT_PR_11_5.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_6.md b/dev/reports/REPORT_PR_11_6.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_6.md -rename to dev/reports/REPORT_PR_11_6.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_7.md b/dev/reports/REPORT_PR_11_7.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_7.md -rename to dev/reports/REPORT_PR_11_7.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_8.md b/dev/reports/REPORT_PR_11_8.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_8.md -rename to dev/reports/REPORT_PR_11_8.md -diff --git a/dev/docs_build/dev/reports/REPORT_PR_11_9.md b/dev/reports/REPORT_PR_11_9.md -similarity index 100% -rename from dev/docs_build/dev/reports/REPORT_PR_11_9.md -rename to dev/reports/REPORT_PR_11_9.md -diff --git a/dev/docs_build/dev/reports/ROADMAP_RENAME_REFERENCE_UPDATE.md b/dev/reports/ROADMAP_RENAME_REFERENCE_UPDATE.md -similarity index 100% -rename from dev/docs_build/dev/reports/ROADMAP_RENAME_REFERENCE_UPDATE.md -rename to dev/reports/ROADMAP_RENAME_REFERENCE_UPDATE.md -diff --git a/dev/docs_build/dev/reports/account_achievements_tab_sidebar_fix_report.md b/dev/reports/account_achievements_tab_sidebar_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/account_achievements_tab_sidebar_fix_report.md -rename to dev/reports/account_achievements_tab_sidebar_fix_report.md -diff --git a/dev/docs_build/dev/reports/account_achievements_wireframe_report.md b/dev/reports/account_achievements_wireframe_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/account_achievements_wireframe_report.md -rename to dev/reports/account_achievements_wireframe_report.md -diff --git a/dev/docs_build/dev/reports/achievements-project-data-alignment-report.md b/dev/reports/achievements-project-data-alignment-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/achievements-project-data-alignment-report.md -rename to dev/reports/achievements-project-data-alignment-report.md -diff --git a/dev/docs_build/dev/reports/active_asset_tile_renderer_11_159.txt b/dev/reports/active_asset_tile_renderer_11_159.txt -similarity index 100% -rename from dev/docs_build/dev/reports/active_asset_tile_renderer_11_159.txt -rename to dev/reports/active_asset_tile_renderer_11_159.txt -diff --git a/dev/docs_build/dev/reports/active_game_manifest_discovery.md b/dev/reports/active_game_manifest_discovery.md -similarity index 100% -rename from dev/docs_build/dev/reports/active_game_manifest_discovery.md -rename to dev/reports/active_game_manifest_discovery.md -diff --git a/dev/docs_build/dev/reports/active_surface_closeout_report.md b/dev/reports/active_surface_closeout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/active_surface_closeout_report.md -rename to dev/reports/active_surface_closeout_report.md -diff --git a/dev/docs_build/dev/reports/active_test_suite_reconciliation_report.md b/dev/reports/active_test_suite_reconciliation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/active_test_suite_reconciliation_report.md -rename to dev/reports/active_test_suite_reconciliation_report.md -diff --git a/dev/docs_build/dev/reports/active_toolbox_reduction_report.md b/dev/reports/active_toolbox_reduction_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/active_toolbox_reduction_report.md -rename to dev/reports/active_toolbox_reduction_report.md -diff --git a/dev/docs_build/dev/reports/admin-creator-view-banner.md b/dev/reports/admin-creator-view-banner.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-creator-view-banner.md -rename to dev/reports/admin-creator-view-banner.md -diff --git a/dev/docs_build/dev/reports/admin-left-menu-alphabetical-report.md b/dev/reports/admin-left-menu-alphabetical-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-left-menu-alphabetical-report.md -rename to dev/reports/admin-left-menu-alphabetical-report.md -diff --git a/dev/docs_build/dev/reports/admin-my-stuff-classification-report.md b/dev/reports/admin-my-stuff-classification-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-my-stuff-classification-report.md -rename to dev/reports/admin-my-stuff-classification-report.md -diff --git a/dev/docs_build/dev/reports/admin-my-stuff-submenu-report.md b/dev/reports/admin-my-stuff-submenu-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-my-stuff-submenu-report.md -rename to dev/reports/admin-my-stuff-submenu-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-cleanup-report.md b/dev/reports/admin-notes-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-cleanup-report.md -rename to dev/reports/admin-notes-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-directory-links-and-legend-report.md b/dev/reports/admin-notes-directory-links-and-legend-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-directory-links-and-legend-report.md -rename to dev/reports/admin-notes-directory-links-and-legend-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-index-and-custom-links-report.md b/dev/reports/admin-notes-index-and-custom-links-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-index-and-custom-links-report.md -rename to dev/reports/admin-notes-index-and-custom-links-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-legend-and-return-polish-report.md b/dev/reports/admin-notes-legend-and-return-polish-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-legend-and-return-polish-report.md -rename to dev/reports/admin-notes-legend-and-return-polish-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-live-folder-listing-report.md b/dev/reports/admin-notes-live-folder-listing-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-live-folder-listing-report.md -rename to dev/reports/admin-notes-live-folder-listing-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-local-menu-entry-report.md b/dev/reports/admin-notes-local-menu-entry-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-local-menu-entry-report.md -rename to dev/reports/admin-notes-local-menu-entry-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-local-viewer-restore-report.md b/dev/reports/admin-notes-local-viewer-restore-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-local-viewer-restore-report.md -rename to dev/reports/admin-notes-local-viewer-restore-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-menu-link-report.md b/dev/reports/admin-notes-menu-link-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-menu-link-report.md -rename to dev/reports/admin-notes-menu-link-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-menu-route-fix-report.md b/dev/reports/admin-notes-menu-route-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-menu-route-fix-report.md -rename to dev/reports/admin-notes-menu-route-fix-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-menu-visible-local-report.md b/dev/reports/admin-notes-menu-visible-local-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-menu-visible-local-report.md -rename to dev/reports/admin-notes-menu-visible-local-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-navigation-polish-report.md b/dev/reports/admin-notes-navigation-polish-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-navigation-polish-report.md -rename to dev/reports/admin-notes-navigation-polish-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-template-route-report.md b/dev/reports/admin-notes-template-route-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-template-route-report.md -rename to dev/reports/admin-notes-template-route-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-viewer-page-fix-report.md b/dev/reports/admin-notes-viewer-page-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-viewer-page-fix-report.md -rename to dev/reports/admin-notes-viewer-page-fix-report.md -diff --git a/dev/docs_build/dev/reports/admin-notes-viewer-report.md b/dev/reports/admin-notes-viewer-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-notes-viewer-report.md -rename to dev/reports/admin-notes-viewer-report.md -diff --git a/dev/docs_build/dev/reports/admin-platform-tools-wireframes-report.md b/dev/reports/admin-platform-tools-wireframes-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-platform-tools-wireframes-report.md -rename to dev/reports/admin-platform-tools-wireframes-report.md -diff --git a/dev/docs_build/dev/reports/admin-project-data-alignment.md b/dev/reports/admin-project-data-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-project-data-alignment.md -rename to dev/reports/admin-project-data-alignment.md -diff --git a/dev/docs_build/dev/reports/admin-project-data-banner.md b/dev/reports/admin-project-data-banner.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-project-data-banner.md -rename to dev/reports/admin-project-data-banner.md -diff --git a/dev/docs_build/dev/reports/admin-tool-vote-template-conversion-report.md b/dev/reports/admin-tool-vote-template-conversion-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-tool-vote-template-conversion-report.md -rename to dev/reports/admin-tool-vote-template-conversion-report.md -diff --git a/dev/docs_build/dev/reports/admin-tools-progress-hydration.md b/dev/reports/admin-tools-progress-hydration.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-tools-progress-hydration.md -rename to dev/reports/admin-tools-progress-hydration.md -diff --git a/dev/docs_build/dev/reports/admin-tools-progress-rename.md b/dev/reports/admin-tools-progress-rename.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin-tools-progress-rename.md -rename to dev/reports/admin-tools-progress-rename.md -diff --git a/dev/docs_build/dev/reports/admin_menu_configuration_link_validation.md b/dev/reports/admin_menu_configuration_link_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/admin_menu_configuration_link_validation.md -rename to dev/reports/admin_menu_configuration_link_validation.md -diff --git a/dev/docs_build/dev/reports/advanced_index_barrel_removal_report.md b/dev/reports/advanced_index_barrel_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/advanced_index_barrel_removal_report.md -rename to dev/reports/advanced_index_barrel_removal_report.md -diff --git a/dev/docs_build/dev/reports/all_game_manifest_workspace_v2_normalization_report.md b/dev/reports/all_game_manifest_workspace_v2_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/all_game_manifest_workspace_v2_normalization_report.md -rename to dev/reports/all_game_manifest_workspace_v2_normalization_report.md -diff --git a/dev/docs_build/dev/reports/api-static-route-recovery-report.md b/dev/reports/api-static-route-recovery-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/api-static-route-recovery-report.md -rename to dev/reports/api-static-route-recovery-report.md -diff --git a/dev/docs_build/dev/reports/api_contract_validation_report.md b/dev/reports/api_contract_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/api_contract_validation_report.md -rename to dev/reports/api_contract_validation_report.md -diff --git a/dev/docs_build/dev/reports/api_lock_closeout_report.txt b/dev/reports/api_lock_closeout_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/api_lock_closeout_report.txt -rename to dev/reports/api_lock_closeout_report.txt -diff --git a/dev/docs_build/dev/reports/archive_policy_final_alignment_report.md b/dev/reports/archive_policy_final_alignment_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/archive_policy_final_alignment_report.md -rename to dev/reports/archive_policy_final_alignment_report.md -diff --git a/dev/docs_build/dev/reports/archive_v1_v2_finalization_report.md b/dev/reports/archive_v1_v2_finalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/archive_v1_v2_finalization_report.md -rename to dev/reports/archive_v1_v2_finalization_report.md -diff --git a/dev/docs_build/dev/reports/archive_v1_v2_reference_material_report.md b/dev/reports/archive_v1_v2_reference_material_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/archive_v1_v2_reference_material_report.md -rename to dev/reports/archive_v1_v2_reference_material_report.md -diff --git a/dev/docs_build/dev/reports/array_formatting_rule_11_104.txt b/dev/reports/array_formatting_rule_11_104.txt -similarity index 100% -rename from dev/docs_build/dev/reports/array_formatting_rule_11_104.txt -rename to dev/reports/array_formatting_rule_11_104.txt -diff --git a/dev/docs_build/dev/reports/asset-dynamic-picker-model-report.md b/dev/reports/asset-dynamic-picker-model-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asset-dynamic-picker-model-report.md -rename to dev/reports/asset-dynamic-picker-model-report.md -diff --git a/dev/docs_build/dev/reports/asset-import-correction-stacked-report.md b/dev/reports/asset-import-correction-stacked-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asset-import-correction-stacked-report.md -rename to dev/reports/asset-import-correction-stacked-report.md -diff --git a/dev/docs_build/dev/reports/asset-import-dropdown-layout-fix-report.md b/dev/reports/asset-import-dropdown-layout-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asset-import-dropdown-layout-fix-report.md -rename to dev/reports/asset-import-dropdown-layout-fix-report.md -diff --git a/dev/docs_build/dev/reports/asset-library-selection-layout-metadata-report.md b/dev/reports/asset-library-selection-layout-metadata-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asset-library-selection-layout-metadata-report.md -rename to dev/reports/asset-library-selection-layout-metadata-report.md -diff --git a/dev/docs_build/dev/reports/asset-local-upload-reset-cleanup-report.md b/dev/reports/asset-local-upload-reset-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asset-local-upload-reset-cleanup-report.md -rename to dev/reports/asset-local-upload-reset-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/asset-roles-storage-stacked-report.md b/dev/reports/asset-roles-storage-stacked-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asset-roles-storage-stacked-report.md -rename to dev/reports/asset-roles-storage-stacked-report.md -diff --git a/dev/docs_build/dev/reports/asset-tool-rebuild-stacked-report.md b/dev/reports/asset-tool-rebuild-stacked-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asset-tool-rebuild-stacked-report.md -rename to dev/reports/asset-tool-rebuild-stacked-report.md -diff --git a/dev/docs_build/dev/reports/asset_contract_tests_validation.md b/dev/reports/asset_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/asset_contract_tests_validation.md -rename to dev/reports/asset_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/asset_kind_canonicalization_11_106.txt b/dev/reports/asset_kind_canonicalization_11_106.txt -similarity index 100% -rename from dev/docs_build/dev/reports/asset_kind_canonicalization_11_106.txt -rename to dev/reports/asset_kind_canonicalization_11_106.txt -diff --git a/dev/docs_build/dev/reports/asset_manifest_only_validation.md b/dev/reports/asset_manifest_only_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/asset_manifest_only_validation.md -rename to dev/reports/asset_manifest_only_validation.md -diff --git a/dev/docs_build/dev/reports/asset_ownership_strategy_validation.txt b/dev/reports/asset_ownership_strategy_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/asset_ownership_strategy_validation.txt -rename to dev/reports/asset_ownership_strategy_validation.txt -diff --git a/dev/docs_build/dev/reports/assets-ready-gate.md b/dev/reports/assets-ready-gate.md -similarity index 100% -rename from dev/docs_build/dev/reports/assets-ready-gate.md -rename to dev/reports/assets-ready-gate.md -diff --git a/dev/docs_build/dev/reports/asteroids_collision_and_object_vector_defaults_report.md b/dev/reports/asteroids_collision_and_object_vector_defaults_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asteroids_collision_and_object_vector_defaults_report.md -rename to dev/reports/asteroids_collision_and_object_vector_defaults_report.md -diff --git a/dev/docs_build/dev/reports/asteroids_manifest_runtime_validation_report.md b/dev/reports/asteroids_manifest_runtime_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asteroids_manifest_runtime_validation_report.md -rename to dev/reports/asteroids_manifest_runtime_validation_report.md -diff --git a/dev/docs_build/dev/reports/asteroids_runtime_object_resolution_report.md b/dev/reports/asteroids_runtime_object_resolution_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asteroids_runtime_object_resolution_report.md -rename to dev/reports/asteroids_runtime_object_resolution_report.md -diff --git a/dev/docs_build/dev/reports/asteroids_shared_tool_fallback_removal_report.md b/dev/reports/asteroids_shared_tool_fallback_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/asteroids_shared_tool_fallback_removal_report.md -rename to dev/reports/asteroids_shared_tool_fallback_removal_report.md -diff --git a/dev/docs_build/dev/reports/asteroids_ship_state_visual_trace.md b/dev/reports/asteroids_ship_state_visual_trace.md -similarity index 100% -rename from dev/docs_build/dev/reports/asteroids_ship_state_visual_trace.md -rename to dev/reports/asteroids_ship_state_visual_trace.md -diff --git a/dev/docs_build/dev/reports/asteroids_zip_inspection.md b/dev/reports/asteroids_zip_inspection.md -similarity index 100% -rename from dev/docs_build/dev/reports/asteroids_zip_inspection.md -rename to dev/reports/asteroids_zip_inspection.md -diff --git a/dev/docs_build/dev/reports/audio_sfx_v8_coverage.md b/dev/reports/audio_sfx_v8_coverage.md -similarity index 100% -rename from dev/docs_build/dev/reports/audio_sfx_v8_coverage.md -rename to dev/reports/audio_sfx_v8_coverage.md -diff --git a/dev/docs_build/dev/reports/audit_event_contract_tests_validation.md b/dev/reports/audit_event_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/audit_event_contract_tests_validation.md -rename to dev/reports/audit_event_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/audits/component-audit.md b/dev/reports/audits__component-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/audits/component-audit.md -rename to dev/reports/audits__component-audit.md -diff --git a/dev/docs_build/dev/reports/audits/css-audit.md b/dev/reports/audits__css-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/audits/css-audit.md -rename to dev/reports/audits__css-audit.md -diff --git a/dev/docs_build/dev/reports/audits/security-audit.md b/dev/reports/audits__security-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/audits/security-audit.md -rename to dev/reports/audits__security-audit.md -diff --git a/dev/docs_build/dev/reports/auth-lockdown-and-audit-cleanup-report.md b/dev/reports/auth-lockdown-and-audit-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/auth-lockdown-and-audit-cleanup-report.md -rename to dev/reports/auth-lockdown-and-audit-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/backup_snapshot_contract_tests_validation.md b/dev/reports/backup_snapshot_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/backup_snapshot_contract_tests_validation.md -rename to dev/reports/backup_snapshot_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/batch_guardrail_contract.txt b/dev/reports/batch_guardrail_contract.txt -similarity index 100% -rename from dev/docs_build/dev/reports/batch_guardrail_contract.txt -rename to dev/reports/batch_guardrail_contract.txt -diff --git a/dev/docs_build/dev/reports/blockers_11_113.txt b/dev/reports/blockers_11_113.txt -similarity index 100% -rename from dev/docs_build/dev/reports/blockers_11_113.txt -rename to dev/reports/blockers_11_113.txt -diff --git a/dev/docs_build/dev/reports/boundary_cleanup_closeout_report.txt b/dev/reports/boundary_cleanup_closeout_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/boundary_cleanup_closeout_report.txt -rename to dev/reports/boundary_cleanup_closeout_report.txt -diff --git a/dev/docs_build/dev/reports/branch-audit-colors-grid-selection-report.md b/dev/reports/branch-audit-colors-grid-selection-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/branch-audit-colors-grid-selection-report.md -rename to dev/reports/branch-audit-colors-grid-selection-report.md -diff --git a/dev/docs_build/dev/reports/branch_audit.md b/dev/reports/branch_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/branch_audit.md -rename to dev/reports/branch_audit.md -diff --git a/dev/docs_build/dev/reports/branch_delete_report.md b/dev/reports/branch_delete_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/branch_delete_report.md -rename to dev/reports/branch_delete_report.md -diff --git a/dev/docs_build/dev/reports/branch_details_audit.md b/dev/reports/branch_details_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/branch_details_audit.md -rename to dev/reports/branch_details_audit.md -diff --git a/dev/docs_build/dev/reports/broken_sample_tool_bindings_11_105.txt b/dev/reports/broken_sample_tool_bindings_11_105.txt -similarity index 100% -rename from dev/docs_build/dev/reports/broken_sample_tool_bindings_11_105.txt -rename to dev/reports/broken_sample_tool_bindings_11_105.txt -diff --git a/dev/docs_build/dev/reports/browser-storage-product-data-audit-report.md b/dev/reports/browser-storage-product-data-audit-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/browser-storage-product-data-audit-report.md -rename to dev/reports/browser-storage-product-data-audit-report.md -diff --git a/dev/docs_build/dev/reports/browser_mock_debt_cleanup_report.md b/dev/reports/browser_mock_debt_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/browser_mock_debt_cleanup_report.md -rename to dev/reports/browser_mock_debt_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/browser_mock_remaining_audit.md b/dev/reports/browser_mock_remaining_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/browser_mock_remaining_audit.md -rename to dev/reports/browser_mock_remaining_audit.md -diff --git a/dev/docs_build/dev/reports/build-path-progress-simplification.md b/dev/reports/build-path-progress-simplification.md -similarity index 100% -rename from dev/docs_build/dev/reports/build-path-progress-simplification.md -rename to dev/reports/build-path-progress-simplification.md -diff --git a/dev/docs_build/dev/reports/build-path-status-table.md b/dev/reports/build-path-status-table.md -similarity index 100% -rename from dev/docs_build/dev/reports/build-path-status-table.md -rename to dev/reports/build-path-status-table.md -diff --git a/dev/docs_build/dev/reports/build-path-targeted-msj-tests.md b/dev/reports/build-path-targeted-msj-tests.md -similarity index 100% -rename from dev/docs_build/dev/reports/build-path-targeted-msj-tests.md -rename to dev/reports/build-path-targeted-msj-tests.md -diff --git a/dev/docs_build/dev/reports/build-path-tool-links-badges-report.md b/dev/reports/build-path-tool-links-badges-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/build-path-tool-links-badges-report.md -rename to dev/reports/build-path-tool-links-badges-report.md -diff --git a/dev/docs_build/dev/reports/builder_consolidation_report.md b/dev/reports/builder_consolidation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/builder_consolidation_report.md -rename to dev/reports/builder_consolidation_report.md -diff --git a/dev/docs_build/dev/reports/canonical_tool_names_11_105.txt b/dev/reports/canonical_tool_names_11_105.txt -similarity index 100% -rename from dev/docs_build/dev/reports/canonical_tool_names_11_105.txt -rename to dev/reports/canonical_tool_names_11_105.txt -diff --git a/dev/docs_build/dev/reports/capability-demo-project-seeds.md b/dev/reports/capability-demo-project-seeds.md -similarity index 100% -rename from dev/docs_build/dev/reports/capability-demo-project-seeds.md -rename to dev/reports/capability-demo-project-seeds.md -diff --git a/dev/docs_build/dev/reports/change_summary.md b/dev/reports/change_summary.md -similarity index 100% -rename from dev/docs_build/dev/reports/change_summary.md -rename to dev/reports/change_summary.md -diff --git a/dev/docs_build/dev/reports/change_summary.txt b/dev/reports/change_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/change_summary.txt -rename to dev/reports/change_summary.txt -diff --git a/dev/docs_build/dev/reports/cloud_template_styles_cleanup_report.md b/dev/reports/cloud_template_styles_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/cloud_template_styles_cleanup_report.md -rename to dev/reports/cloud_template_styles_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/codex_changed_files.txt b/dev/reports/codex_changed_files.txt -similarity index 100% -rename from dev/docs_build/dev/reports/codex_changed_files.txt -rename to dev/reports/codex_changed_files.txt -diff --git a/dev/docs_build/dev/reports/codex_review.diff b/dev/reports/codex_review.diff -similarity index 100% -rename from dev/docs_build/dev/reports/codex_review.diff -rename to dev/reports/codex_review.diff -diff --git a/dev/docs_build/dev/reports/collaboration_role_contract_tests_validation.md b/dev/reports/collaboration_role_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/collaboration_role_contract_tests_validation.md -rename to dev/reports/collaboration_role_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/colors-admin-menu-db-fonts-cleanup-report.md b/dev/reports/colors-admin-menu-db-fonts-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-admin-menu-db-fonts-cleanup-report.md -rename to dev/reports/colors-admin-menu-db-fonts-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/colors-db-table-ownership-report.md b/dev/reports/colors-db-table-ownership-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-db-table-ownership-report.md -rename to dev/reports/colors-db-table-ownership-report.md -diff --git a/dev/docs_build/dev/reports/colors-human-step-range-completion-report.md b/dev/reports/colors-human-step-range-completion-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-human-step-range-completion-report.md -rename to dev/reports/colors-human-step-range-completion-report.md -diff --git a/dev/docs_build/dev/reports/colors-human-step-range-followup-report.md b/dev/reports/colors-human-step-range-followup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-human-step-range-followup-report.md -rename to dev/reports/colors-human-step-range-followup-report.md -diff --git a/dev/docs_build/dev/reports/colors-human-theme-step-range-report.md b/dev/reports/colors-human-theme-step-range-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-human-theme-step-range-report.md -rename to dev/reports/colors-human-theme-step-range-report.md -diff --git a/dev/docs_build/dev/reports/colors-picker-duplicate-cleanup-report.md b/dev/reports/colors-picker-duplicate-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-picker-duplicate-cleanup-report.md -rename to dev/reports/colors-picker-duplicate-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/colors-picker-layout-tags-report.md b/dev/reports/colors-picker-layout-tags-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-picker-layout-tags-report.md -rename to dev/reports/colors-picker-layout-tags-report.md -diff --git a/dev/docs_build/dev/reports/colors-picker-metadata-layout-report.md b/dev/reports/colors-picker-metadata-layout-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-picker-metadata-layout-report.md -rename to dev/reports/colors-picker-metadata-layout-report.md -diff --git a/dev/docs_build/dev/reports/colors-picker-preview-behavior-report.md b/dev/reports/colors-picker-preview-behavior-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-picker-preview-behavior-report.md -rename to dev/reports/colors-picker-preview-behavior-report.md -diff --git a/dev/docs_build/dev/reports/colors-picker-preview-layout-report.md b/dev/reports/colors-picker-preview-layout-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-picker-preview-layout-report.md -rename to dev/reports/colors-picker-preview-layout-report.md -diff --git a/dev/docs_build/dev/reports/colors-picker-viewer-restore-report.md b/dev/reports/colors-picker-viewer-restore-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-picker-viewer-restore-report.md -rename to dev/reports/colors-picker-viewer-restore-report.md -diff --git a/dev/docs_build/dev/reports/colors-sorting-duplicate-grid-polish-report.md b/dev/reports/colors-sorting-duplicate-grid-polish-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-sorting-duplicate-grid-polish-report.md -rename to dev/reports/colors-sorting-duplicate-grid-polish-report.md -diff --git a/dev/docs_build/dev/reports/colors-swatch-selection-restore-report.md b/dev/reports/colors-swatch-selection-restore-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-swatch-selection-restore-report.md -rename to dev/reports/colors-swatch-selection-restore-report.md -diff --git a/dev/docs_build/dev/reports/colors-symbol-cleanup-preview-accordion-report.md b/dev/reports/colors-symbol-cleanup-preview-accordion-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-symbol-cleanup-preview-accordion-report.md -rename to dev/reports/colors-symbol-cleanup-preview-accordion-report.md -diff --git a/dev/docs_build/dev/reports/colors-symbol-grid-fix-report.md b/dev/reports/colors-symbol-grid-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-symbol-grid-fix-report.md -rename to dev/reports/colors-symbol-grid-fix-report.md -diff --git a/dev/docs_build/dev/reports/colors-tags-accordions-report.md b/dev/reports/colors-tags-accordions-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-tags-accordions-report.md -rename to dev/reports/colors-tags-accordions-report.md -diff --git a/dev/docs_build/dev/reports/colors-terminology-fullscreen-spacing-report.md b/dev/reports/colors-terminology-fullscreen-spacing-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-terminology-fullscreen-spacing-report.md -rename to dev/reports/colors-terminology-fullscreen-spacing-report.md -diff --git a/dev/docs_build/dev/reports/colors-toolbox-admin-visibility-report.md b/dev/reports/colors-toolbox-admin-visibility-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors-toolbox-admin-visibility-report.md -rename to dev/reports/colors-toolbox-admin-visibility-report.md -diff --git a/dev/docs_build/dev/reports/colors_pr025_vs_current.diff b/dev/reports/colors_pr025_vs_current.diff -similarity index 100% -rename from dev/docs_build/dev/reports/colors_pr025_vs_current.diff -rename to dev/reports/colors_pr025_vs_current.diff -diff --git a/dev/docs_build/dev/reports/colors_pr025_vs_current.md b/dev/reports/colors_pr025_vs_current.md -similarity index 100% -rename from dev/docs_build/dev/reports/colors_pr025_vs_current.md -rename to dev/reports/colors_pr025_vs_current.md -diff --git a/dev/docs_build/dev/reports/config_driven_game_bootstrap.md b/dev/reports/config_driven_game_bootstrap.md -similarity index 100% -rename from dev/docs_build/dev/reports/config_driven_game_bootstrap.md -rename to dev/reports/config_driven_game_bootstrap.md -diff --git a/dev/docs_build/dev/reports/config_driven_roadmap_baseline.md b/dev/reports/config_driven_roadmap_baseline.md -similarity index 100% -rename from dev/docs_build/dev/reports/config_driven_roadmap_baseline.md -rename to dev/reports/config_driven_roadmap_baseline.md -diff --git a/dev/docs_build/dev/reports/console-root-cause-fix-report.md b/dev/reports/console-root-cause-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/console-root-cause-fix-report.md -rename to dev/reports/console-root-cause-fix-report.md -diff --git a/dev/docs_build/dev/reports/continued_rollback_review.md b/dev/reports/continued_rollback_review.md -similarity index 100% -rename from dev/docs_build/dev/reports/continued_rollback_review.md -rename to dev/reports/continued_rollback_review.md -diff --git a/dev/docs_build/dev/reports/contract_chain_validation.md b/dev/reports/contract_chain_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/contract_chain_validation.md -rename to dev/reports/contract_chain_validation.md -diff --git a/dev/docs_build/dev/reports/contract_documentation_closeout_report.txt b/dev/reports/contract_documentation_closeout_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/contract_documentation_closeout_report.txt -rename to dev/reports/contract_documentation_closeout_report.txt -diff --git a/dev/docs_build/dev/reports/contract_fixture_isolation_validation.md b/dev/reports/contract_fixture_isolation_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/contract_fixture_isolation_validation.md -rename to dev/reports/contract_fixture_isolation_validation.md -diff --git a/dev/docs_build/dev/reports/contract_index_validation.md b/dev/reports/contract_index_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/contract_index_validation.md -rename to dev/reports/contract_index_validation.md -diff --git a/dev/docs_build/dev/reports/contract_lane_closeout_validation.md b/dev/reports/contract_lane_closeout_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/contract_lane_closeout_validation.md -rename to dev/reports/contract_lane_closeout_validation.md -diff --git a/dev/docs_build/dev/reports/contract_negative_case_coverage.md b/dev/reports/contract_negative_case_coverage.md -similarity index 100% -rename from dev/docs_build/dev/reports/contract_negative_case_coverage.md -rename to dev/reports/contract_negative_case_coverage.md -diff --git a/dev/docs_build/dev/reports/contract_report_standardization.md b/dev/reports/contract_report_standardization.md -similarity index 100% -rename from dev/docs_build/dev/reports/contract_report_standardization.md -rename to dev/reports/contract_report_standardization.md -diff --git a/dev/docs_build/dev/reports/controls-action-descriptions-report.md b/dev/reports/controls-action-descriptions-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-action-descriptions-report.md -rename to dev/reports/controls-action-descriptions-report.md -diff --git a/dev/docs_build/dev/reports/controls-axis-direction-and-input-events-report.md b/dev/reports/controls-axis-direction-and-input-events-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-axis-direction-and-input-events-report.md -rename to dev/reports/controls-axis-direction-and-input-events-report.md -diff --git a/dev/docs_build/dev/reports/controls-checkbox-state-styling-report.md b/dev/reports/controls-checkbox-state-styling-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-checkbox-state-styling-report.md -rename to dev/reports/controls-checkbox-state-styling-report.md -diff --git a/dev/docs_build/dev/reports/controls-combo-framework-and-user-control-editing-report.md b/dev/reports/controls-combo-framework-and-user-control-editing-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-combo-framework-and-user-control-editing-report.md -rename to dev/reports/controls-combo-framework-and-user-control-editing-report.md -diff --git a/dev/docs_build/dev/reports/controls-compact-controller-profile-report.md b/dev/reports/controls-compact-controller-profile-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-compact-controller-profile-report.md -rename to dev/reports/controls-compact-controller-profile-report.md -diff --git a/dev/docs_build/dev/reports/controls-controller-profile-edit-mode-report.md b/dev/reports/controls-controller-profile-edit-mode-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-controller-profile-edit-mode-report.md -rename to dev/reports/controls-controller-profile-edit-mode-report.md -diff --git a/dev/docs_build/dev/reports/controls-controller-profile-generation-report.md b/dev/reports/controls-controller-profile-generation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-controller-profile-generation-report.md -rename to dev/reports/controls-controller-profile-generation-report.md -diff --git a/dev/docs_build/dev/reports/controls-db-controller-profiles-report.md b/dev/reports/controls-db-controller-profiles-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-db-controller-profiles-report.md -rename to dev/reports/controls-db-controller-profiles-report.md -diff --git a/dev/docs_build/dev/reports/controls-device-refresh-profile-polish-report.md b/dev/reports/controls-device-refresh-profile-polish-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-device-refresh-profile-polish-report.md -rename to dev/reports/controls-device-refresh-profile-polish-report.md -diff --git a/dev/docs_build/dev/reports/controls-device-specific-input-report.md b/dev/reports/controls-device-specific-input-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-device-specific-input-report.md -rename to dev/reports/controls-device-specific-input-report.md -diff --git a/dev/docs_build/dev/reports/controls-edit-gated-capture-devices-report.md b/dev/reports/controls-edit-gated-capture-devices-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-edit-gated-capture-devices-report.md -rename to dev/reports/controls-edit-gated-capture-devices-report.md -diff --git a/dev/docs_build/dev/reports/controls-edit-row-in-place-fix-report.md b/dev/reports/controls-edit-row-in-place-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-edit-row-in-place-fix-report.md -rename to dev/reports/controls-edit-row-in-place-fix-report.md -diff --git a/dev/docs_build/dev/reports/controls-engine-input-and-profile-scope-report.md b/dev/reports/controls-engine-input-and-profile-scope-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-engine-input-and-profile-scope-report.md -rename to dev/reports/controls-engine-input-and-profile-scope-report.md -diff --git a/dev/docs_build/dev/reports/controls-footer-action-object-selection-report.md b/dev/reports/controls-footer-action-object-selection-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-footer-action-object-selection-report.md -rename to dev/reports/controls-footer-action-object-selection-report.md -diff --git a/dev/docs_build/dev/reports/controls-game-account-user-split-report.md b/dev/reports/controls-game-account-user-split-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-game-account-user-split-report.md -rename to dev/reports/controls-game-account-user-split-report.md -diff --git a/dev/docs_build/dev/reports/controls-game-and-user-input-foundation-report.md b/dev/reports/controls-game-and-user-input-foundation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-game-and-user-input-foundation-report.md -rename to dev/reports/controls-game-and-user-input-foundation-report.md -diff --git a/dev/docs_build/dev/reports/controls-input-mapping-rebuild-report.md b/dev/reports/controls-input-mapping-rebuild-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-input-mapping-rebuild-report.md -rename to dev/reports/controls-input-mapping-rebuild-report.md -diff --git a/dev/docs_build/dev/reports/controls-normalized-default-input-architecture-report.md b/dev/reports/controls-normalized-default-input-architecture-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-normalized-default-input-architecture-report.md -rename to dev/reports/controls-normalized-default-input-architecture-report.md -diff --git a/dev/docs_build/dev/reports/controls-object-action-mapping-validation-report.md b/dev/reports/controls-object-action-mapping-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-object-action-mapping-validation-report.md -rename to dev/reports/controls-object-action-mapping-validation-report.md -diff --git a/dev/docs_build/dev/reports/controls-player-controller-split-report.md b/dev/reports/controls-player-controller-split-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-player-controller-split-report.md -rename to dev/reports/controls-player-controller-split-report.md -diff --git a/dev/docs_build/dev/reports/controls-readable-input-columns-report.md b/dev/reports/controls-readable-input-columns-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-readable-input-columns-report.md -rename to dev/reports/controls-readable-input-columns-report.md -diff --git a/dev/docs_build/dev/reports/controls-remove-physical-controller-actions-report.md b/dev/reports/controls-remove-physical-controller-actions-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-remove-physical-controller-actions-report.md -rename to dev/reports/controls-remove-physical-controller-actions-report.md -diff --git a/dev/docs_build/dev/reports/controls-row-capture-cleanup-report.md b/dev/reports/controls-row-capture-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-row-capture-cleanup-report.md -rename to dev/reports/controls-row-capture-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/controls-table-first-input-report.md b/dev/reports/controls-table-first-input-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-table-first-input-report.md -rename to dev/reports/controls-table-first-input-report.md -diff --git a/dev/docs_build/dev/reports/controls-tooltips-defaults-pause-lock-report.md b/dev/reports/controls-tooltips-defaults-pause-lock-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-tooltips-defaults-pause-lock-report.md -rename to dev/reports/controls-tooltips-defaults-pause-lock-report.md -diff --git a/dev/docs_build/dev/reports/controls-user-controls-copy-cleanup-report.md b/dev/reports/controls-user-controls-copy-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-user-controls-copy-cleanup-report.md -rename to dev/reports/controls-user-controls-copy-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/controls-wireframe-controller-profiles-report.md b/dev/reports/controls-wireframe-controller-profiles-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/controls-wireframe-controller-profiles-report.md -rename to dev/reports/controls-wireframe-controller-profiles-report.md -diff --git a/dev/docs_build/dev/reports/coverage_changed_js_guardrail.txt b/dev/reports/coverage_changed_js_guardrail.txt -similarity index 100% -rename from dev/docs_build/dev/reports/coverage_changed_js_guardrail.txt -rename to dev/reports/coverage_changed_js_guardrail.txt -diff --git a/dev/docs_build/dev/reports/creator_profile_contract_tests_validation.md b/dev/reports/creator_profile_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/creator_profile_contract_tests_validation.md -rename to dev/reports/creator_profile_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/css_template_consistency_audit.txt b/dev/reports/css_template_consistency_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/css_template_consistency_audit.txt -rename to dev/reports/css_template_consistency_audit.txt -diff --git a/dev/docs_build/dev/reports/css_template_launch_mode_validation.txt b/dev/reports/css_template_launch_mode_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/css_template_launch_mode_validation.txt -rename to dev/reports/css_template_launch_mode_validation.txt -diff --git a/dev/docs_build/dev/reports/current_route_closeout_11_141.txt b/dev/reports/current_route_closeout_11_141.txt -similarity index 100% -rename from dev/docs_build/dev/reports/current_route_closeout_11_141.txt -rename to dev/reports/current_route_closeout_11_141.txt -diff --git a/dev/docs_build/dev/reports/db-consumer-audit-final-2.csv b/dev/reports/db-consumer-audit-final-2.csv -similarity index 100% -rename from dev/docs_build/dev/reports/db-consumer-audit-final-2.csv -rename to dev/reports/db-consumer-audit-final-2.csv -diff --git a/dev/docs_build/dev/reports/db-consumer-audit-final-2.md b/dev/reports/db-consumer-audit-final-2.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-consumer-audit-final-2.md -rename to dev/reports/db-consumer-audit-final-2.md -diff --git a/dev/docs_build/dev/reports/db-consumer-audit-final.csv b/dev/reports/db-consumer-audit-final.csv -similarity index 100% -rename from dev/docs_build/dev/reports/db-consumer-audit-final.csv -rename to dev/reports/db-consumer-audit-final.csv -diff --git a/dev/docs_build/dev/reports/db-consumer-audit-final.md b/dev/reports/db-consumer-audit-final.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-consumer-audit-final.md -rename to dev/reports/db-consumer-audit-final.md -diff --git a/dev/docs_build/dev/reports/db-consumer-audit.csv b/dev/reports/db-consumer-audit.csv -similarity index 100% -rename from dev/docs_build/dev/reports/db-consumer-audit.csv -rename to dev/reports/db-consumer-audit.csv -diff --git a/dev/docs_build/dev/reports/db-consumer-audit.md b/dev/reports/db-consumer-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-consumer-audit.md -rename to dev/reports/db-consumer-audit.md -diff --git a/dev/docs_build/dev/reports/db-leftovers-actual-cleanup-report.md b/dev/reports/db-leftovers-actual-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-leftovers-actual-cleanup-report.md -rename to dev/reports/db-leftovers-actual-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/db-leftovers-cleanup-report.md b/dev/reports/db-leftovers-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-leftovers-cleanup-report.md -rename to dev/reports/db-leftovers-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/db-migration-and-viewer-grouping-report.md b/dev/reports/db-migration-and-viewer-grouping-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-migration-and-viewer-grouping-report.md -rename to dev/reports/db-migration-and-viewer-grouping-report.md -diff --git a/dev/docs_build/dev/reports/db-object-model-contract-report.md b/dev/reports/db-object-model-contract-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-object-model-contract-report.md -rename to dev/reports/db-object-model-contract-report.md -diff --git a/dev/docs_build/dev/reports/db-seed-integrity-report.md b/dev/reports/db-seed-integrity-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-seed-integrity-report.md -rename to dev/reports/db-seed-integrity-report.md -diff --git a/dev/docs_build/dev/reports/db-ssot-governance-and-tool-audit-report.md b/dev/reports/db-ssot-governance-and-tool-audit-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-ssot-governance-and-tool-audit-report.md -rename to dev/reports/db-ssot-governance-and-tool-audit-report.md -diff --git a/dev/docs_build/dev/reports/db-viewer-table-classification-report.md b/dev/reports/db-viewer-table-classification-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-viewer-table-classification-report.md -rename to dev/reports/db-viewer-table-classification-report.md -diff --git a/dev/docs_build/dev/reports/db-viewer-table-inventory-report.md b/dev/reports/db-viewer-table-inventory-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/db-viewer-table-inventory-report.md -rename to dev/reports/db-viewer-table-inventory-report.md -diff --git a/dev/docs_build/dev/reports/dead_branch_delete_report.md b/dev/reports/dead_branch_delete_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/dead_branch_delete_report.md -rename to dev/reports/dead_branch_delete_report.md -diff --git a/dev/docs_build/dev/reports/dead_utils_audit.csv b/dev/reports/dead_utils_audit.csv -similarity index 100% -rename from dev/docs_build/dev/reports/dead_utils_audit.csv -rename to dev/reports/dead_utils_audit.csv -diff --git a/dev/docs_build/dev/reports/dead_utils_audit_validation.md b/dev/reports/dead_utils_audit_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/dead_utils_audit_validation.md -rename to dev/reports/dead_utils_audit_validation.md -diff --git a/dev/docs_build/dev/reports/deep-tool-name-cleanup.md b/dev/reports/deep-tool-name-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/deep-tool-name-cleanup.md -rename to dev/reports/deep-tool-name-cleanup.md -diff --git a/dev/docs_build/dev/reports/dependency_gating_report.md b/dev/reports/dependency_gating_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/dependency_gating_report.md -rename to dev/reports/dependency_gating_report.md -diff --git a/dev/docs_build/dev/reports/dependency_hydration_reuse_report.md b/dev/reports/dependency_hydration_reuse_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/dependency_hydration_reuse_report.md -rename to dev/reports/dependency_hydration_reuse_report.md -diff --git a/dev/docs_build/dev/reports/design_system_v2_catalog_validation.md b/dev/reports/design_system_v2_catalog_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/design_system_v2_catalog_validation.md -rename to dev/reports/design_system_v2_catalog_validation.md -diff --git a/dev/docs_build/dev/reports/design_system_validation.md b/dev/reports/design_system_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/design_system_validation.md -rename to dev/reports/design_system_validation.md -diff --git a/dev/docs_build/dev/reports/dev-runtime-and-pr017-cleanup-report.md b/dev/reports/dev-runtime-and-pr017-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/dev-runtime-and-pr017-cleanup-report.md -rename to dev/reports/dev-runtime-and-pr017-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/dev-runtime-audit.md b/dev/reports/dev-runtime-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/dev-runtime-audit.md -rename to dev/reports/dev-runtime-audit.md -diff --git a/dev/docs_build/dev/reports/dev-runtime-boundary-enforcement-report.md b/dev/reports/dev-runtime-boundary-enforcement-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/dev-runtime-boundary-enforcement-report.md -rename to dev/reports/dev-runtime-boundary-enforcement-report.md -diff --git a/dev/docs_build/dev/reports/dev-runtime-final-isolation-fix-report.md b/dev/reports/dev-runtime-final-isolation-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/dev-runtime-final-isolation-fix-report.md -rename to dev/reports/dev-runtime-final-isolation-fix-report.md -diff --git a/dev/docs_build/dev/reports/direct_json_validation_11_112.txt b/dev/reports/direct_json_validation_11_112.txt -similarity index 100% -rename from dev/docs_build/dev/reports/direct_json_validation_11_112.txt -rename to dev/reports/direct_json_validation_11_112.txt -diff --git a/dev/docs_build/dev/reports/docs_archive_test_output_cleanup_report.md b/dev/reports/docs_archive_test_output_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/docs_archive_test_output_cleanup_report.md -rename to dev/reports/docs_archive_test_output_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/docs_build_archive_consolidation_report.md b/dev/reports/docs_build_archive_consolidation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/docs_build_archive_consolidation_report.md -rename to dev/reports/docs_build_archive_consolidation_report.md -diff --git a/dev/docs_build/dev/reports/docs_build_separation_report.md b/dev/reports/docs_build_separation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/docs_build_separation_report.md -rename to dev/reports/docs_build_separation_report.md -diff --git a/dev/docs_build/dev/reports/docs_cleanup_deletion_ledger.txt b/dev/reports/docs_cleanup_deletion_ledger.txt -similarity index 100% -rename from dev/docs_build/dev/reports/docs_cleanup_deletion_ledger.txt -rename to dev/reports/docs_cleanup_deletion_ledger.txt -diff --git a/dev/docs_build/dev/reports/documentation-ownership-report.md b/dev/reports/documentation-ownership-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/documentation-ownership-report.md -rename to dev/reports/documentation-ownership-report.md -diff --git a/dev/docs_build/dev/reports/download_grant_contract_tests_validation.md b/dev/reports/download_grant_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/download_grant_contract_tests_validation.md -rename to dev/reports/download_grant_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/e2e_sample_tool_validation_11_145.txt b/dev/reports/e2e_sample_tool_validation_11_145.txt -similarity index 100% -rename from dev/docs_build/dev/reports/e2e_sample_tool_validation_11_145.txt -rename to dev/reports/e2e_sample_tool_validation_11_145.txt -diff --git a/dev/docs_build/dev/reports/enforced_write_11_125.txt b/dev/reports/enforced_write_11_125.txt -similarity index 100% -rename from dev/docs_build/dev/reports/enforced_write_11_125.txt -rename to dev/reports/enforced_write_11_125.txt -diff --git a/dev/docs_build/dev/reports/engine_core_index_barrel_removal_report.md b/dev/reports/engine_core_index_barrel_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_core_index_barrel_removal_report.md -rename to dev/reports/engine_core_index_barrel_removal_report.md -diff --git a/dev/docs_build/dev/reports/engine_debug_index_barrel_removal_report.md b/dev/reports/engine_debug_index_barrel_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_debug_index_barrel_removal_report.md -rename to dev/reports/engine_debug_index_barrel_removal_report.md -diff --git a/dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase1_report.md b/dev/reports/engine_domain_index_barrel_removal_phase1_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase1_report.md -rename to dev/reports/engine_domain_index_barrel_removal_phase1_report.md -diff --git a/dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase2_report.md b/dev/reports/engine_domain_index_barrel_removal_phase2_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase2_report.md -rename to dev/reports/engine_domain_index_barrel_removal_phase2_report.md -diff --git a/dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase3_report.md b/dev/reports/engine_domain_index_barrel_removal_phase3_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase3_report.md -rename to dev/reports/engine_domain_index_barrel_removal_phase3_report.md -diff --git a/dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase4_report.md b/dev/reports/engine_domain_index_barrel_removal_phase4_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase4_report.md -rename to dev/reports/engine_domain_index_barrel_removal_phase4_report.md -diff --git a/dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase5_report.md b/dev/reports/engine_domain_index_barrel_removal_phase5_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_domain_index_barrel_removal_phase5_report.md -rename to dev/reports/engine_domain_index_barrel_removal_phase5_report.md -diff --git a/dev/docs_build/dev/reports/engine_implementation_priority_plan.md b/dev/reports/engine_implementation_priority_plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_implementation_priority_plan.md -rename to dev/reports/engine_implementation_priority_plan.md -diff --git a/dev/docs_build/dev/reports/engine_input_ownership_for_input_mapping_v2_report.md b/dev/reports/engine_input_ownership_for_input_mapping_v2_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_input_ownership_for_input_mapping_v2_report.md -rename to dev/reports/engine_input_ownership_for_input_mapping_v2_report.md -diff --git a/dev/docs_build/dev/reports/engine_input_runtime_ownership_completion_report.md b/dev/reports/engine_input_runtime_ownership_completion_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_input_runtime_ownership_completion_report.md -rename to dev/reports/engine_input_runtime_ownership_completion_report.md -diff --git a/dev/docs_build/dev/reports/engine_network_index_barrel_removal_report.md b/dev/reports/engine_network_index_barrel_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_network_index_barrel_removal_report.md -rename to dev/reports/engine_network_index_barrel_removal_report.md -diff --git a/dev/docs_build/dev/reports/engine_object_model_baseline.md b/dev/reports/engine_object_model_baseline.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_object_model_baseline.md -rename to dev/reports/engine_object_model_baseline.md -diff --git a/dev/docs_build/dev/reports/engine_rule_registry_baseline.md b/dev/reports/engine_rule_registry_baseline.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_rule_registry_baseline.md -rename to dev/reports/engine_rule_registry_baseline.md -diff --git a/dev/docs_build/dev/reports/engine_systems_index_barrel_removal_phase1_report.md b/dev/reports/engine_systems_index_barrel_removal_phase1_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_systems_index_barrel_removal_phase1_report.md -rename to dev/reports/engine_systems_index_barrel_removal_phase1_report.md -diff --git a/dev/docs_build/dev/reports/engine_systems_index_barrel_removal_phase2_report.md b/dev/reports/engine_systems_index_barrel_removal_phase2_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_systems_index_barrel_removal_phase2_report.md -rename to dev/reports/engine_systems_index_barrel_removal_phase2_report.md -diff --git a/dev/docs_build/dev/reports/engine_v2_ability_system.md b/dev/reports/engine_v2_ability_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_ability_system.md -rename to dev/reports/engine_v2_ability_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_ai_behavior_closeout.md b/dev/reports/engine_v2_ai_behavior_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_ai_behavior_closeout.md -rename to dev/reports/engine_v2_ai_behavior_closeout.md -diff --git a/dev/docs_build/dev/reports/engine_v2_ai_capability_audit.md b/dev/reports/engine_v2_ai_capability_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_ai_capability_audit.md -rename to dev/reports/engine_v2_ai_capability_audit.md -diff --git a/dev/docs_build/dev/reports/engine_v2_animation_runtime.md b/dev/reports/engine_v2_animation_runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_animation_runtime.md -rename to dev/reports/engine_v2_animation_runtime.md -diff --git a/dev/docs_build/dev/reports/engine_v2_audio_runtime.md b/dev/reports/engine_v2_audio_runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_audio_runtime.md -rename to dev/reports/engine_v2_audio_runtime.md -diff --git a/dev/docs_build/dev/reports/engine_v2_camera_runtime.md b/dev/reports/engine_v2_camera_runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_camera_runtime.md -rename to dev/reports/engine_v2_camera_runtime.md -diff --git a/dev/docs_build/dev/reports/engine_v2_chase_flee_behavior.md b/dev/reports/engine_v2_chase_flee_behavior.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_chase_flee_behavior.md -rename to dev/reports/engine_v2_chase_flee_behavior.md -diff --git a/dev/docs_build/dev/reports/engine_v2_checkpoint_system.md b/dev/reports/engine_v2_checkpoint_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_checkpoint_system.md -rename to dev/reports/engine_v2_checkpoint_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_combat_runtime_closeout.md b/dev/reports/engine_v2_combat_runtime_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_combat_runtime_closeout.md -rename to dev/reports/engine_v2_combat_runtime_closeout.md -diff --git a/dev/docs_build/dev/reports/engine_v2_config_driven_proof_scene.md b/dev/reports/engine_v2_config_driven_proof_scene.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_config_driven_proof_scene.md -rename to dev/reports/engine_v2_config_driven_proof_scene.md -diff --git a/dev/docs_build/dev/reports/engine_v2_container_system.md b/dev/reports/engine_v2_container_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_container_system.md -rename to dev/reports/engine_v2_container_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_crafting_foundation.md b/dev/reports/engine_v2_crafting_foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_crafting_foundation.md -rename to dev/reports/engine_v2_crafting_foundation.md -diff --git a/dev/docs_build/dev/reports/engine_v2_custom_extension_approval_lifecycle.md b/dev/reports/engine_v2_custom_extension_approval_lifecycle.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_custom_extension_approval_lifecycle.md -rename to dev/reports/engine_v2_custom_extension_approval_lifecycle.md -diff --git a/dev/docs_build/dev/reports/engine_v2_custom_extensions_hook_runtime.md b/dev/reports/engine_v2_custom_extensions_hook_runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_custom_extensions_hook_runtime.md -rename to dev/reports/engine_v2_custom_extensions_hook_runtime.md -diff --git a/dev/docs_build/dev/reports/engine_v2_dialogue_system.md b/dev/reports/engine_v2_dialogue_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_dialogue_system.md -rename to dev/reports/engine_v2_dialogue_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_economy_and_currency.md b/dev/reports/engine_v2_economy_and_currency.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_economy_and_currency.md -rename to dev/reports/engine_v2_economy_and_currency.md -diff --git a/dev/docs_build/dev/reports/engine_v2_effect_runtime.md b/dev/reports/engine_v2_effect_runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_effect_runtime.md -rename to dev/reports/engine_v2_effect_runtime.md -diff --git a/dev/docs_build/dev/reports/engine_v2_equipment_system.md b/dev/reports/engine_v2_equipment_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_equipment_system.md -rename to dev/reports/engine_v2_equipment_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_existing_capability_audit.md b/dev/reports/engine_v2_existing_capability_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_existing_capability_audit.md -rename to dev/reports/engine_v2_existing_capability_audit.md -diff --git a/dev/docs_build/dev/reports/engine_v2_feature_complete_closeout.md b/dev/reports/engine_v2_feature_complete_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_feature_complete_closeout.md -rename to dev/reports/engine_v2_feature_complete_closeout.md -diff --git a/dev/docs_build/dev/reports/engine_v2_interaction_runtime_closeout.md b/dev/reports/engine_v2_interaction_runtime_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_interaction_runtime_closeout.md -rename to dev/reports/engine_v2_interaction_runtime_closeout.md -diff --git a/dev/docs_build/dev/reports/engine_v2_interaction_system.md b/dev/reports/engine_v2_interaction_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_interaction_system.md -rename to dev/reports/engine_v2_interaction_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_inventory_system.md b/dev/reports/engine_v2_inventory_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_inventory_system.md -rename to dev/reports/engine_v2_inventory_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_item_and_loot_system.md b/dev/reports/engine_v2_item_and_loot_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_item_and_loot_system.md -rename to dev/reports/engine_v2_item_and_loot_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_location_report.md b/dev/reports/engine_v2_location_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_location_report.md -rename to dev/reports/engine_v2_location_report.md -diff --git a/dev/docs_build/dev/reports/engine_v2_modifier_stack.md b/dev/reports/engine_v2_modifier_stack.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_modifier_stack.md -rename to dev/reports/engine_v2_modifier_stack.md -diff --git a/dev/docs_build/dev/reports/engine_v2_multiplayer_boundary.md b/dev/reports/engine_v2_multiplayer_boundary.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_multiplayer_boundary.md -rename to dev/reports/engine_v2_multiplayer_boundary.md -diff --git a/dev/docs_build/dev/reports/engine_v2_objective_system.md b/dev/reports/engine_v2_objective_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_objective_system.md -rename to dev/reports/engine_v2_objective_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_pathfinding_baseline.md b/dev/reports/engine_v2_pathfinding_baseline.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_pathfinding_baseline.md -rename to dev/reports/engine_v2_pathfinding_baseline.md -diff --git a/dev/docs_build/dev/reports/engine_v2_patrol_behavior.md b/dev/reports/engine_v2_patrol_behavior.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_patrol_behavior.md -rename to dev/reports/engine_v2_patrol_behavior.md -diff --git a/dev/docs_build/dev/reports/engine_v2_persistence_closeout.md b/dev/reports/engine_v2_persistence_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_persistence_closeout.md -rename to dev/reports/engine_v2_persistence_closeout.md -diff --git a/dev/docs_build/dev/reports/engine_v2_persistence_runtime.md b/dev/reports/engine_v2_persistence_runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_persistence_runtime.md -rename to dev/reports/engine_v2_persistence_runtime.md -diff --git a/dev/docs_build/dev/reports/engine_v2_player_runtime_closeout.md b/dev/reports/engine_v2_player_runtime_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_player_runtime_closeout.md -rename to dev/reports/engine_v2_player_runtime_closeout.md -diff --git a/dev/docs_build/dev/reports/engine_v2_possession_runtime_closeout.md b/dev/reports/engine_v2_possession_runtime_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_possession_runtime_closeout.md -rename to dev/reports/engine_v2_possession_runtime_closeout.md -diff --git a/dev/docs_build/dev/reports/engine_v2_profile_state_system.md b/dev/reports/engine_v2_profile_state_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_profile_state_system.md -rename to dev/reports/engine_v2_profile_state_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_projectile_system.md b/dev/reports/engine_v2_projectile_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_projectile_system.md -rename to dev/reports/engine_v2_projectile_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_quest_system.md b/dev/reports/engine_v2_quest_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_quest_system.md -rename to dev/reports/engine_v2_quest_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_runtime_media_closeout.md b/dev/reports/engine_v2_runtime_media_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_runtime_media_closeout.md -rename to dev/reports/engine_v2_runtime_media_closeout.md -diff --git a/dev/docs_build/dev/reports/engine_v2_save_load_validation.md b/dev/reports/engine_v2_save_load_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_save_load_validation.md -rename to dev/reports/engine_v2_save_load_validation.md -diff --git a/dev/docs_build/dev/reports/engine_v2_save_state_model.md b/dev/reports/engine_v2_save_state_model.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_save_state_model.md -rename to dev/reports/engine_v2_save_state_model.md -diff --git a/dev/docs_build/dev/reports/engine_v2_state_machine_runtime.md b/dev/reports/engine_v2_state_machine_runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_state_machine_runtime.md -rename to dev/reports/engine_v2_state_machine_runtime.md -diff --git a/dev/docs_build/dev/reports/engine_v2_status_effect_system.md b/dev/reports/engine_v2_status_effect_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_status_effect_system.md -rename to dev/reports/engine_v2_status_effect_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_ui_runtime.md b/dev/reports/engine_v2_ui_runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_ui_runtime.md -rename to dev/reports/engine_v2_ui_runtime.md -diff --git a/dev/docs_build/dev/reports/engine_v2_v1_capability_inventory.md b/dev/reports/engine_v2_v1_capability_inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_v1_capability_inventory.md -rename to dev/reports/engine_v2_v1_capability_inventory.md -diff --git a/dev/docs_build/dev/reports/engine_v2_v1_gap_analysis.md b/dev/reports/engine_v2_v1_gap_analysis.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_v1_gap_analysis.md -rename to dev/reports/engine_v2_v1_gap_analysis.md -diff --git a/dev/docs_build/dev/reports/engine_v2_vendor_system.md b/dev/reports/engine_v2_vendor_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_vendor_system.md -rename to dev/reports/engine_v2_vendor_system.md -diff --git a/dev/docs_build/dev/reports/engine_v2_weapon_system.md b/dev/reports/engine_v2_weapon_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/engine_v2_weapon_system.md -rename to dev/reports/engine_v2_weapon_system.md -diff --git a/dev/docs_build/dev/reports/entitlement_contract_tests_validation.md b/dev/reports/entitlement_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/entitlement_contract_tests_validation.md -rename to dev/reports/entitlement_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/environment_agnostic_browser_gate_report.md b/dev/reports/environment_agnostic_browser_gate_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/environment_agnostic_browser_gate_report.md -rename to dev/reports/environment_agnostic_browser_gate_report.md -diff --git a/dev/docs_build/dev/reports/execution_graph_reuse_report.md b/dev/reports/execution_graph_reuse_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/execution_graph_reuse_report.md -rename to dev/reports/execution_graph_reuse_report.md -diff --git a/dev/docs_build/dev/reports/expected_delta_template.md b/dev/reports/expected_delta_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/expected_delta_template.md -rename to dev/reports/expected_delta_template.md -diff --git a/dev/docs_build/dev/reports/failure_fingerprint_report.md b/dev/reports/failure_fingerprint_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/failure_fingerprint_report.md -rename to dev/reports/failure_fingerprint_report.md -diff --git a/dev/docs_build/dev/reports/file_diff_11_124.txt b/dev/reports/file_diff_11_124.txt -similarity index 100% -rename from dev/docs_build/dev/reports/file_diff_11_124.txt -rename to dev/reports/file_diff_11_124.txt -diff --git a/dev/docs_build/dev/reports/file_tree.txt b/dev/reports/file_tree.txt -similarity index 100% -rename from dev/docs_build/dev/reports/file_tree.txt -rename to dev/reports/file_tree.txt -diff --git a/dev/docs_build/dev/reports/filesystem_scan_reduction_report.md b/dev/reports/filesystem_scan_reduction_report.md -similarity index 95% -rename from dev/docs_build/dev/reports/filesystem_scan_reduction_report.md -rename to dev/reports/filesystem_scan_reduction_report.md -index 0513d57d5..6ecd90ec9 100644 ---- a/dev/docs_build/dev/reports/filesystem_scan_reduction_report.md -+++ b/dev/reports/filesystem_scan_reduction_report.md -@@ -1,6 +1,6 @@ - # Filesystem Scan Reduction Report - --Generated: 2026-06-27T19:09:29.488Z -+Generated: 2026-06-27T19:31:16.153Z - Status: PASS - - ## Scan Enforcement -diff --git a/dev/docs_build/dev/reports/final_active_toolbox_template_gate_report.md b/dev/reports/final_active_toolbox_template_gate_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/final_active_toolbox_template_gate_report.md -rename to dev/reports/final_active_toolbox_template_gate_report.md -diff --git a/dev/docs_build/dev/reports/final_cleanup_lane_audit_report.md b/dev/reports/final_cleanup_lane_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/final_cleanup_lane_audit_report.md -rename to dev/reports/final_cleanup_lane_audit_report.md -diff --git a/dev/docs_build/dev/reports/final_done_check_report.md b/dev/reports/final_done_check_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/final_done_check_report.md -rename to dev/reports/final_done_check_report.md -diff --git a/dev/docs_build/dev/reports/final_monolith_cleanup_report.md b/dev/reports/final_monolith_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/final_monolith_cleanup_report.md -rename to dev/reports/final_monolith_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/final_rollback_verification.md b/dev/reports/final_rollback_verification.md -similarity index 100% -rename from dev/docs_build/dev/reports/final_rollback_verification.md -rename to dev/reports/final_rollback_verification.md -diff --git a/dev/docs_build/dev/reports/final_testing_architecture_report.md b/dev/reports/final_testing_architecture_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/final_testing_architecture_report.md -rename to dev/reports/final_testing_architecture_report.md -diff --git a/dev/docs_build/dev/reports/final_theme_engine_removal_report.md b/dev/reports/final_theme_engine_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/final_theme_engine_removal_report.md -rename to dev/reports/final_theme_engine_removal_report.md -diff --git a/dev/docs_build/dev/reports/final_tool_input_contract_11_132.txt b/dev/reports/final_tool_input_contract_11_132.txt -similarity index 100% -rename from dev/docs_build/dev/reports/final_tool_input_contract_11_132.txt -rename to dev/reports/final_tool_input_contract_11_132.txt -diff --git a/dev/docs_build/dev/reports/final_verification_11_136.txt b/dev/reports/final_verification_11_136.txt -similarity index 100% -rename from dev/docs_build/dev/reports/final_verification_11_136.txt -rename to dev/reports/final_verification_11_136.txt -diff --git a/dev/docs_build/dev/reports/final_workspace_deprecated_tool_residue_report.md b/dev/reports/final_workspace_deprecated_tool_residue_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/final_workspace_deprecated_tool_residue_report.md -rename to dev/reports/final_workspace_deprecated_tool_residue_report.md -diff --git a/dev/docs_build/dev/reports/first_manifest_driven_playable_scene.md b/dev/reports/first_manifest_driven_playable_scene.md -similarity index 100% -rename from dev/docs_build/dev/reports/first_manifest_driven_playable_scene.md -rename to dev/reports/first_manifest_driven_playable_scene.md -diff --git a/dev/docs_build/dev/reports/fix_blockers_11_114.txt b/dev/reports/fix_blockers_11_114.txt -similarity index 100% -rename from dev/docs_build/dev/reports/fix_blockers_11_114.txt -rename to dev/reports/fix_blockers_11_114.txt -diff --git a/dev/docs_build/dev/reports/fixes_applied_11_114.txt b/dev/reports/fixes_applied_11_114.txt -similarity index 100% -rename from dev/docs_build/dev/reports/fixes_applied_11_114.txt -rename to dev/reports/fixes_applied_11_114.txt -diff --git a/dev/docs_build/dev/reports/forced_changes_11_124.txt b/dev/reports/forced_changes_11_124.txt -similarity index 100% -rename from dev/docs_build/dev/reports/forced_changes_11_124.txt -rename to dev/reports/forced_changes_11_124.txt -diff --git a/dev/docs_build/dev/reports/fullscreen-scroll-audit-tags-help-report.md b/dev/reports/fullscreen-scroll-audit-tags-help-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/fullscreen-scroll-audit-tags-help-report.md -rename to dev/reports/fullscreen-scroll-audit-tags-help-report.md -diff --git a/dev/docs_build/dev/reports/fullscreen_audit_report.txt b/dev/reports/fullscreen_audit_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/fullscreen_audit_report.txt -rename to dev/reports/fullscreen_audit_report.txt -diff --git a/dev/docs_build/dev/reports/fullscreen_rule_closeout_report.txt b/dev/reports/fullscreen_rule_closeout_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/fullscreen_rule_closeout_report.txt -rename to dev/reports/fullscreen_rule_closeout_report.txt -diff --git a/dev/docs_build/dev/reports/fullscreen_validation_rules.txt b/dev/reports/fullscreen_validation_rules.txt -similarity index 100% -rename from dev/docs_build/dev/reports/fullscreen_validation_rules.txt -rename to dev/reports/fullscreen_validation_rules.txt -diff --git a/dev/docs_build/dev/reports/game-configuration-output-no-json.md b/dev/reports/game-configuration-output-no-json.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-configuration-output-no-json.md -rename to dev/reports/game-configuration-output-no-json.md -diff --git a/dev/docs_build/dev/reports/game-configuration-ready-gate.md b/dev/reports/game-configuration-ready-gate.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-configuration-ready-gate.md -rename to dev/reports/game-configuration-ready-gate.md -diff --git a/dev/docs_build/dev/reports/game-configuration-repository-contract.md b/dev/reports/game-configuration-repository-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-configuration-repository-contract.md -rename to dev/reports/game-configuration-repository-contract.md -diff --git a/dev/docs_build/dev/reports/game-configuration-targeted-msj-tests.md b/dev/reports/game-configuration-targeted-msj-tests.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-configuration-targeted-msj-tests.md -rename to dev/reports/game-configuration-targeted-msj-tests.md -diff --git a/dev/docs_build/dev/reports/game-configuration-validation.md b/dev/reports/game-configuration-validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-configuration-validation.md -rename to dev/reports/game-configuration-validation.md -diff --git a/dev/docs_build/dev/reports/game-configuration-wireframe-to-runtime.md b/dev/reports/game-configuration-wireframe-to-runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-configuration-wireframe-to-runtime.md -rename to dev/reports/game-configuration-wireframe-to-runtime.md -diff --git a/dev/docs_build/dev/reports/game-deploy-path-plan-report.md b/dev/reports/game-deploy-path-plan-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-deploy-path-plan-report.md -rename to dev/reports/game-deploy-path-plan-report.md -diff --git a/dev/docs_build/dev/reports/game-design-capability-demo-authoring.md b/dev/reports/game-design-capability-demo-authoring.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-capability-demo-authoring.md -rename to dev/reports/game-design-capability-demo-authoring.md -diff --git a/dev/docs_build/dev/reports/game-design-center-fields-layout.md b/dev/reports/game-design-center-fields-layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-center-fields-layout.md -rename to dev/reports/game-design-center-fields-layout.md -diff --git a/dev/docs_build/dev/reports/game-design-output-no-json.md b/dev/reports/game-design-output-no-json.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-output-no-json.md -rename to dev/reports/game-design-output-no-json.md -diff --git a/dev/docs_build/dev/reports/game-design-project-context-cleanup.md b/dev/reports/game-design-project-context-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-project-context-cleanup.md -rename to dev/reports/game-design-project-context-cleanup.md -diff --git a/dev/docs_build/dev/reports/game-design-project-design-table-report.md b/dev/reports/game-design-project-design-table-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-project-design-table-report.md -rename to dev/reports/game-design-project-design-table-report.md -diff --git a/dev/docs_build/dev/reports/game-design-project-purpose-flow.md b/dev/reports/game-design-project-purpose-flow.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-project-purpose-flow.md -rename to dev/reports/game-design-project-purpose-flow.md -diff --git a/dev/docs_build/dev/reports/game-design-ready-gate.md b/dev/reports/game-design-ready-gate.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-ready-gate.md -rename to dev/reports/game-design-ready-gate.md -diff --git a/dev/docs_build/dev/reports/game-design-repository-contract.md b/dev/reports/game-design-repository-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-repository-contract.md -rename to dev/reports/game-design-repository-contract.md -diff --git a/dev/docs_build/dev/reports/game-design-targeted-msj-tests.md b/dev/reports/game-design-targeted-msj-tests.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-targeted-msj-tests.md -rename to dev/reports/game-design-targeted-msj-tests.md -diff --git a/dev/docs_build/dev/reports/game-design-to-configuration-handoff.md b/dev/reports/game-design-to-configuration-handoff.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-to-configuration-handoff.md -rename to dev/reports/game-design-to-configuration-handoff.md -diff --git a/dev/docs_build/dev/reports/game-design-toolbox-progress-integration.md b/dev/reports/game-design-toolbox-progress-integration.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-toolbox-progress-integration.md -rename to dev/reports/game-design-toolbox-progress-integration.md -diff --git a/dev/docs_build/dev/reports/game-design-type-genre-model.md b/dev/reports/game-design-type-genre-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-type-genre-model.md -rename to dev/reports/game-design-type-genre-model.md -diff --git a/dev/docs_build/dev/reports/game-design-validation-and-overlay.md b/dev/reports/game-design-validation-and-overlay.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-validation-and-overlay.md -rename to dev/reports/game-design-validation-and-overlay.md -diff --git a/dev/docs_build/dev/reports/game-design-wireframe-to-runtime.md b/dev/reports/game-design-wireframe-to-runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/game-design-wireframe-to-runtime.md -rename to dev/reports/game-design-wireframe-to-runtime.md -diff --git a/dev/docs_build/dev/reports/game_input_mapping_source_controls_report.md b/dev/reports/game_input_mapping_source_controls_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/game_input_mapping_source_controls_report.md -rename to dev/reports/game_input_mapping_source_controls_report.md -diff --git a/dev/docs_build/dev/reports/game_manifest_schema_validation.csv b/dev/reports/game_manifest_schema_validation.csv -similarity index 100% -rename from dev/docs_build/dev/reports/game_manifest_schema_validation.csv -rename to dev/reports/game_manifest_schema_validation.csv -diff --git a/dev/docs_build/dev/reports/game_manifest_ssot.md b/dev/reports/game_manifest_ssot.md -similarity index 100% -rename from dev/docs_build/dev/reports/game_manifest_ssot.md -rename to dev/reports/game_manifest_ssot.md -diff --git a/dev/docs_build/dev/reports/game_workspace_boundary_contract.md b/dev/reports/game_workspace_boundary_contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/game_workspace_boundary_contract.md -rename to dev/reports/game_workspace_boundary_contract.md -diff --git a/dev/docs_build/dev/reports/gamefoundrystudio_about_footer_controls_validation.md b/dev/reports/gamefoundrystudio_about_footer_controls_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/gamefoundrystudio_about_footer_controls_validation.md -rename to dev/reports/gamefoundrystudio_about_footer_controls_validation.md -diff --git a/dev/docs_build/dev/reports/gamefoundrystudio_admin_account_footer_validation.md b/dev/reports/gamefoundrystudio_admin_account_footer_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/gamefoundrystudio_admin_account_footer_validation.md -rename to dev/reports/gamefoundrystudio_admin_account_footer_validation.md -diff --git a/dev/docs_build/dev/reports/gamefoundrystudio_footer_spacing_validation.md b/dev/reports/gamefoundrystudio_footer_spacing_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/gamefoundrystudio_footer_spacing_validation.md -rename to dev/reports/gamefoundrystudio_footer_spacing_validation.md -diff --git a/dev/docs_build/dev/reports/gamefoundrystudio_localization_studio_validation.md b/dev/reports/gamefoundrystudio_localization_studio_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/gamefoundrystudio_localization_studio_validation.md -rename to dev/reports/gamefoundrystudio_localization_studio_validation.md -diff --git a/dev/docs_build/dev/reports/gamefoundrystudio_release_notes_validation.md b/dev/reports/gamefoundrystudio_release_notes_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/gamefoundrystudio_release_notes_validation.md -rename to dev/reports/gamefoundrystudio_release_notes_validation.md -diff --git a/dev/docs_build/dev/reports/gamefoundrystudio_vision_copy_validation.md b/dev/reports/gamefoundrystudio_vision_copy_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/gamefoundrystudio_vision_copy_validation.md -rename to dev/reports/gamefoundrystudio_vision_copy_validation.md -diff --git a/dev/docs_build/dev/reports/games2tools_manual_qa_checklist.txt b/dev/reports/games2tools_manual_qa_checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/games2tools_manual_qa_checklist.txt -rename to dev/reports/games2tools_manual_qa_checklist.txt -diff --git a/dev/docs_build/dev/reports/games2tools_roundtrip_matrix.txt b/dev/reports/games2tools_roundtrip_matrix.txt -similarity index 100% -rename from dev/docs_build/dev/reports/games2tools_roundtrip_matrix.txt -rename to dev/reports/games2tools_roundtrip_matrix.txt -diff --git a/dev/docs_build/dev/reports/games2tools_roundtrip_validation.txt b/dev/reports/games2tools_roundtrip_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/games2tools_roundtrip_validation.txt -rename to dev/reports/games2tools_roundtrip_validation.txt -diff --git a/dev/docs_build/dev/reports/games_template_contract_validation.txt b/dev/reports/games_template_contract_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/games_template_contract_validation.txt -rename to dev/reports/games_template_contract_validation.txt -diff --git a/dev/docs_build/dev/reports/global_input_removal_11_134.txt b/dev/reports/global_input_removal_11_134.txt -similarity index 100% -rename from dev/docs_build/dev/reports/global_input_removal_11_134.txt -rename to dev/reports/global_input_removal_11_134.txt -diff --git a/dev/docs_build/dev/reports/group-color-propagation.md b/dev/reports/group-color-propagation.md -similarity index 100% -rename from dev/docs_build/dev/reports/group-color-propagation.md -rename to dev/reports/group-color-propagation.md -diff --git a/dev/docs_build/dev/reports/guest-role-view.md b/dev/reports/guest-role-view.md -similarity index 100% -rename from dev/docs_build/dev/reports/guest-role-view.md -rename to dev/reports/guest-role-view.md -diff --git a/dev/docs_build/dev/reports/header-navigation-validation-report.md b/dev/reports/header-navigation-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/header-navigation-validation-report.md -rename to dev/reports/header-navigation-validation-report.md -diff --git a/dev/docs_build/dev/reports/header-role-banner-polish.md b/dev/reports/header-role-banner-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/header-role-banner-polish.md -rename to dev/reports/header-role-banner-polish.md -diff --git a/dev/docs_build/dev/reports/header_lock_carry_forward_notes.txt b/dev/reports/header_lock_carry_forward_notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/header_lock_carry_forward_notes.txt -rename to dev/reports/header_lock_carry_forward_notes.txt -diff --git a/dev/docs_build/dev/reports/identity_permissions_contract_tests_validation.md b/dev/reports/identity_permissions_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/identity_permissions_contract_tests_validation.md -rename to dev/reports/identity_permissions_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/identity_permissions_model_validation.md b/dev/reports/identity_permissions_model_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/identity_permissions_model_validation.md -rename to dev/reports/identity_permissions_model_validation.md -diff --git a/dev/docs_build/dev/reports/in_memory_project_data_store.md b/dev/reports/in_memory_project_data_store.md -similarity index 100% -rename from dev/docs_build/dev/reports/in_memory_project_data_store.md -rename to dev/reports/in_memory_project_data_store.md -diff --git a/dev/docs_build/dev/reports/incremental_validation_report.md b/dev/reports/incremental_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/incremental_validation_report.md -rename to dev/reports/incremental_validation_report.md -diff --git a/dev/docs_build/dev/reports/index_consistency_fix_strategy.txt b/dev/reports/index_consistency_fix_strategy.txt -similarity index 100% -rename from dev/docs_build/dev/reports/index_consistency_fix_strategy.txt -rename to dev/reports/index_consistency_fix_strategy.txt -diff --git a/dev/docs_build/dev/reports/inference_path_removal_11_111.txt b/dev/reports/inference_path_removal_11_111.txt -similarity index 100% -rename from dev/docs_build/dev/reports/inference_path_removal_11_111.txt -rename to dev/reports/inference_path_removal_11_111.txt -diff --git a/dev/docs_build/dev/reports/inline_attr_cleanup_strategy.txt b/dev/reports/inline_attr_cleanup_strategy.txt -similarity index 100% -rename from dev/docs_build/dev/reports/inline_attr_cleanup_strategy.txt -rename to dev/reports/inline_attr_cleanup_strategy.txt -diff --git a/dev/docs_build/dev/reports/inline_style_cleanup_strategy.txt b/dev/reports/inline_style_cleanup_strategy.txt -similarity index 100% -rename from dev/docs_build/dev/reports/inline_style_cleanup_strategy.txt -rename to dev/reports/inline_style_cleanup_strategy.txt -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_actions_combos_export_report.md b/dev/reports/input_mapping_v2_actions_combos_export_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_actions_combos_export_report.md -rename to dev/reports/input_mapping_v2_actions_combos_export_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_auto_gamepad_selection_flow_report.md b/dev/reports/input_mapping_v2_auto_gamepad_selection_flow_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_auto_gamepad_selection_flow_report.md -rename to dev/reports/input_mapping_v2_auto_gamepad_selection_flow_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_capture_device_gesture_flow_report.md b/dev/reports/input_mapping_v2_capture_device_gesture_flow_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_capture_device_gesture_flow_report.md -rename to dev/reports/input_mapping_v2_capture_device_gesture_flow_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_capture_device_labels_report.md b/dev/reports/input_mapping_v2_capture_device_labels_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_capture_device_labels_report.md -rename to dev/reports/input_mapping_v2_capture_device_labels_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_capture_flow_card_sizing_report.md b/dev/reports/input_mapping_v2_capture_flow_card_sizing_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_capture_flow_card_sizing_report.md -rename to dev/reports/input_mapping_v2_capture_flow_card_sizing_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_combo_device_capture_report.md b/dev/reports/input_mapping_v2_combo_device_capture_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_combo_device_capture_report.md -rename to dev/reports/input_mapping_v2_combo_device_capture_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_combo_token_actions_report.md b/dev/reports/input_mapping_v2_combo_token_actions_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_combo_token_actions_report.md -rename to dev/reports/input_mapping_v2_combo_token_actions_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_device_gesture_wiring_report.md b/dev/reports/input_mapping_v2_device_gesture_wiring_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_device_gesture_wiring_report.md -rename to dev/reports/input_mapping_v2_device_gesture_wiring_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_device_usage_tile_actions_report.md b/dev/reports/input_mapping_v2_device_usage_tile_actions_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_device_usage_tile_actions_report.md -rename to dev/reports/input_mapping_v2_device_usage_tile_actions_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_drag_capture_visual_state_report.md b/dev/reports/input_mapping_v2_drag_capture_visual_state_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_drag_capture_visual_state_report.md -rename to dev/reports/input_mapping_v2_drag_capture_visual_state_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_engine_ssot_combo_report.md b/dev/reports/input_mapping_v2_engine_ssot_combo_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_engine_ssot_combo_report.md -rename to dev/reports/input_mapping_v2_engine_ssot_combo_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_export_manifest_nav_report.md b/dev/reports/input_mapping_v2_export_manifest_nav_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_export_manifest_nav_report.md -rename to dev/reports/input_mapping_v2_export_manifest_nav_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_final_ownership_audit_report.md b/dev/reports/input_mapping_v2_final_ownership_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_final_ownership_audit_report.md -rename to dev/reports/input_mapping_v2_final_ownership_audit_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_gamepad_capture_flow_report.md b/dev/reports/input_mapping_v2_gamepad_capture_flow_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_gamepad_capture_flow_report.md -rename to dev/reports/input_mapping_v2_gamepad_capture_flow_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_gamepad_detection_source_report.md b/dev/reports/input_mapping_v2_gamepad_detection_source_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_gamepad_detection_source_report.md -rename to dev/reports/input_mapping_v2_gamepad_detection_source_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_gamepad_diagnostics_report.md b/dev/reports/input_mapping_v2_gamepad_diagnostics_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_gamepad_diagnostics_report.md -rename to dev/reports/input_mapping_v2_gamepad_diagnostics_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_gesture_capture_flow_report.md b/dev/reports/input_mapping_v2_gesture_capture_flow_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_gesture_capture_flow_report.md -rename to dev/reports/input_mapping_v2_gesture_capture_flow_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_gesture_help_combo_actions_report.md b/dev/reports/input_mapping_v2_gesture_help_combo_actions_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_gesture_help_combo_actions_report.md -rename to dev/reports/input_mapping_v2_gesture_help_combo_actions_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_gesture_selection_highlights_report.md b/dev/reports/input_mapping_v2_gesture_selection_highlights_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_gesture_selection_highlights_report.md -rename to dev/reports/input_mapping_v2_gesture_selection_highlights_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_gesture_specific_capture_report.md b/dev/reports/input_mapping_v2_gesture_specific_capture_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_gesture_specific_capture_report.md -rename to dev/reports/input_mapping_v2_gesture_specific_capture_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_haptics_shortcut_suppression_report.md b/dev/reports/input_mapping_v2_haptics_shortcut_suppression_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_haptics_shortcut_suppression_report.md -rename to dev/reports/input_mapping_v2_haptics_shortcut_suppression_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_layout_engine_model_report.md b/dev/reports/input_mapping_v2_layout_engine_model_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_layout_engine_model_report.md -rename to dev/reports/input_mapping_v2_layout_engine_model_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_layout_manifest_report.md b/dev/reports/input_mapping_v2_layout_manifest_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_layout_manifest_report.md -rename to dev/reports/input_mapping_v2_layout_manifest_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_layout_sizing_mapping_display_report.md b/dev/reports/input_mapping_v2_layout_sizing_mapping_display_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_layout_sizing_mapping_display_report.md -rename to dev/reports/input_mapping_v2_layout_sizing_mapping_display_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_mouse_gesture_simplification_report.md b/dev/reports/input_mapping_v2_mouse_gesture_simplification_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_mouse_gesture_simplification_report.md -rename to dev/reports/input_mapping_v2_mouse_gesture_simplification_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_nav_layout_labels_report.md b/dev/reports/input_mapping_v2_nav_layout_labels_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_nav_layout_labels_report.md -rename to dev/reports/input_mapping_v2_nav_layout_labels_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_selection_context_report.md b/dev/reports/input_mapping_v2_selection_context_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_selection_context_report.md -rename to dev/reports/input_mapping_v2_selection_context_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_spacing_used_key_highlight_report.md b/dev/reports/input_mapping_v2_spacing_used_key_highlight_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_spacing_used_key_highlight_report.md -rename to dev/reports/input_mapping_v2_spacing_used_key_highlight_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_state_inspector_audit_report.md b/dev/reports/input_mapping_v2_state_inspector_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_state_inspector_audit_report.md -rename to dev/reports/input_mapping_v2_state_inspector_audit_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_template_rebuild_report.md b/dev/reports/input_mapping_v2_template_rebuild_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_template_rebuild_report.md -rename to dev/reports/input_mapping_v2_template_rebuild_report.md -diff --git a/dev/docs_build/dev/reports/input_mapping_v2_token_display_capture_gating_report.md b/dev/reports/input_mapping_v2_token_display_capture_gating_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/input_mapping_v2_token_display_capture_gating_report.md -rename to dev/reports/input_mapping_v2_token_display_capture_gating_report.md -diff --git a/dev/docs_build/dev/reports/install_receipt_contract_tests_validation.md b/dev/reports/install_receipt_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/install_receipt_contract_tests_validation.md -rename to dev/reports/install_receipt_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/internal_barrel_baseline_debt_removal_report.md b/dev/reports/internal_barrel_baseline_debt_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/internal_barrel_baseline_debt_removal_report.md -rename to dev/reports/internal_barrel_baseline_debt_removal_report.md -diff --git a/dev/docs_build/dev/reports/internal_barrel_guardrails_report.md b/dev/reports/internal_barrel_guardrails_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/internal_barrel_guardrails_report.md -rename to dev/reports/internal_barrel_guardrails_report.md -diff --git a/dev/docs_build/dev/reports/json_schema_alignment_11_104.txt b/dev/reports/json_schema_alignment_11_104.txt -similarity index 100% -rename from dev/docs_build/dev/reports/json_schema_alignment_11_104.txt -rename to dev/reports/json_schema_alignment_11_104.txt -diff --git a/dev/docs_build/dev/reports/json_schema_repair_loop_11_113.txt b/dev/reports/json_schema_repair_loop_11_113.txt -similarity index 100% -rename from dev/docs_build/dev/reports/json_schema_repair_loop_11_113.txt -rename to dev/reports/json_schema_repair_loop_11_113.txt -diff --git a/dev/docs_build/dev/reports/known_bad_links_validation_11_119.txt b/dev/reports/known_bad_links_validation_11_119.txt -similarity index 100% -rename from dev/docs_build/dev/reports/known_bad_links_validation_11_119.txt -rename to dev/reports/known_bad_links_validation_11_119.txt -diff --git a/dev/docs_build/dev/reports/lane_compilation_report.md b/dev/reports/lane_compilation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/lane_compilation_report.md -rename to dev/reports/lane_compilation_report.md -diff --git a/dev/docs_build/dev/reports/lane_deduplication_report.md b/dev/reports/lane_deduplication_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/lane_deduplication_report.md -rename to dev/reports/lane_deduplication_report.md -diff --git a/dev/docs_build/dev/reports/lane_input_validation_report.md b/dev/reports/lane_input_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/lane_input_validation_report.md -rename to dev/reports/lane_input_validation_report.md -diff --git a/dev/docs_build/dev/reports/lane_manifests/asset-tool.json b/dev/reports/lane_manifests__asset-tool.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/asset-tool.json -rename to dev/reports/lane_manifests__asset-tool.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/build-path.json b/dev/reports/lane_manifests__build-path.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/build-path.json -rename to dev/reports/lane_manifests__build-path.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/engine-src.json b/dev/reports/lane_manifests__engine-src.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/engine-src.json -rename to dev/reports/lane_manifests__engine-src.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/game-configuration.json b/dev/reports/lane_manifests__game-configuration.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/game-configuration.json -rename to dev/reports/lane_manifests__game-configuration.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/game-design.json b/dev/reports/lane_manifests__game-design.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/game-design.json -rename to dev/reports/lane_manifests__game-design.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/game-runtime.json b/dev/reports/lane_manifests__game-runtime.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/game-runtime.json -rename to dev/reports/lane_manifests__game-runtime.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/integration.json b/dev/reports/lane_manifests__integration.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/integration.json -rename to dev/reports/lane_manifests__integration.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/project-workspace.json b/dev/reports/lane_manifests__project-workspace.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/project-workspace.json -rename to dev/reports/lane_manifests__project-workspace.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/samples.json b/dev/reports/lane_manifests__samples.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/samples.json -rename to dev/reports/lane_manifests__samples.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/tool-display-mode.json b/dev/reports/lane_manifests__tool-display-mode.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/tool-display-mode.json -rename to dev/reports/lane_manifests__tool-display-mode.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/tool-images.json b/dev/reports/lane_manifests__tool-images.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/tool-images.json -rename to dev/reports/lane_manifests__tool-images.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/tool-navigation.json b/dev/reports/lane_manifests__tool-navigation.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/tool-navigation.json -rename to dev/reports/lane_manifests__tool-navigation.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/tool-runtime.json b/dev/reports/lane_manifests__tool-runtime.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/tool-runtime.json -rename to dev/reports/lane_manifests__tool-runtime.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/tools-progress.json b/dev/reports/lane_manifests__tools-progress.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/tools-progress.json -rename to dev/reports/lane_manifests__tools-progress.json -diff --git a/dev/docs_build/dev/reports/lane_manifests/workspace-contract.json b/dev/reports/lane_manifests__workspace-contract.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_manifests/workspace-contract.json -rename to dev/reports/lane_manifests__workspace-contract.json -diff --git a/dev/docs_build/dev/reports/lane_runtime_optimization_report.md b/dev/reports/lane_runtime_optimization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/lane_runtime_optimization_report.md -rename to dev/reports/lane_runtime_optimization_report.md -diff --git a/dev/docs_build/dev/reports/lane_snapshot_report.md b/dev/reports/lane_snapshot_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshot_report.md -rename to dev/reports/lane_snapshot_report.md -diff --git a/dev/docs_build/dev/reports/lane_snapshots/asset-tool.json b/dev/reports/lane_snapshots__asset-tool.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/asset-tool.json -rename to dev/reports/lane_snapshots__asset-tool.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/build-path.json b/dev/reports/lane_snapshots__build-path.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/build-path.json -rename to dev/reports/lane_snapshots__build-path.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/engine-src.json b/dev/reports/lane_snapshots__engine-src.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/engine-src.json -rename to dev/reports/lane_snapshots__engine-src.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/game-configuration.json b/dev/reports/lane_snapshots__game-configuration.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/game-configuration.json -rename to dev/reports/lane_snapshots__game-configuration.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/game-design.json b/dev/reports/lane_snapshots__game-design.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/game-design.json -rename to dev/reports/lane_snapshots__game-design.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/game-runtime.json b/dev/reports/lane_snapshots__game-runtime.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/game-runtime.json -rename to dev/reports/lane_snapshots__game-runtime.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/integration.json b/dev/reports/lane_snapshots__integration.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/integration.json -rename to dev/reports/lane_snapshots__integration.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/project-workspace.json b/dev/reports/lane_snapshots__project-workspace.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/project-workspace.json -rename to dev/reports/lane_snapshots__project-workspace.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/tool-display-mode.json b/dev/reports/lane_snapshots__tool-display-mode.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/tool-display-mode.json -rename to dev/reports/lane_snapshots__tool-display-mode.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/tool-images.json b/dev/reports/lane_snapshots__tool-images.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/tool-images.json -rename to dev/reports/lane_snapshots__tool-images.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/tool-navigation.json b/dev/reports/lane_snapshots__tool-navigation.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/tool-navigation.json -rename to dev/reports/lane_snapshots__tool-navigation.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/tool-runtime.json b/dev/reports/lane_snapshots__tool-runtime.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/tool-runtime.json -rename to dev/reports/lane_snapshots__tool-runtime.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/tools-progress.json b/dev/reports/lane_snapshots__tools-progress.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/tools-progress.json -rename to dev/reports/lane_snapshots__tools-progress.json -diff --git a/dev/docs_build/dev/reports/lane_snapshots/workspace-contract.json b/dev/reports/lane_snapshots__workspace-contract.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_snapshots/workspace-contract.json -rename to dev/reports/lane_snapshots__workspace-contract.json -diff --git a/dev/docs_build/dev/reports/lane_warm_start_report.md b/dev/reports/lane_warm_start_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_start_report.md -rename to dev/reports/lane_warm_start_report.md -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/asset-tool.json b/dev/reports/lane_warm_starts__asset-tool.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/asset-tool.json -rename to dev/reports/lane_warm_starts__asset-tool.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/build-path.json b/dev/reports/lane_warm_starts__build-path.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/build-path.json -rename to dev/reports/lane_warm_starts__build-path.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/engine-src.json b/dev/reports/lane_warm_starts__engine-src.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/engine-src.json -rename to dev/reports/lane_warm_starts__engine-src.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/game-configuration.json b/dev/reports/lane_warm_starts__game-configuration.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/game-configuration.json -rename to dev/reports/lane_warm_starts__game-configuration.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/game-design.json b/dev/reports/lane_warm_starts__game-design.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/game-design.json -rename to dev/reports/lane_warm_starts__game-design.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/game-runtime.json b/dev/reports/lane_warm_starts__game-runtime.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/game-runtime.json -rename to dev/reports/lane_warm_starts__game-runtime.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/integration.json b/dev/reports/lane_warm_starts__integration.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/integration.json -rename to dev/reports/lane_warm_starts__integration.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/project-workspace.json b/dev/reports/lane_warm_starts__project-workspace.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/project-workspace.json -rename to dev/reports/lane_warm_starts__project-workspace.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/tool-display-mode.json b/dev/reports/lane_warm_starts__tool-display-mode.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/tool-display-mode.json -rename to dev/reports/lane_warm_starts__tool-display-mode.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/tool-images.json b/dev/reports/lane_warm_starts__tool-images.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/tool-images.json -rename to dev/reports/lane_warm_starts__tool-images.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/tool-navigation.json b/dev/reports/lane_warm_starts__tool-navigation.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/tool-navigation.json -rename to dev/reports/lane_warm_starts__tool-navigation.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/tool-runtime.json b/dev/reports/lane_warm_starts__tool-runtime.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/tool-runtime.json -rename to dev/reports/lane_warm_starts__tool-runtime.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/tools-progress.json b/dev/reports/lane_warm_starts__tools-progress.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/tools-progress.json -rename to dev/reports/lane_warm_starts__tools-progress.json -diff --git a/dev/docs_build/dev/reports/lane_warm_starts/workspace-contract.json b/dev/reports/lane_warm_starts__workspace-contract.json -similarity index 100% -rename from dev/docs_build/dev/reports/lane_warm_starts/workspace-contract.json -rename to dev/reports/lane_warm_starts__workspace-contract.json -diff --git a/dev/docs_build/dev/reports/launch_smoke_report.md b/dev/reports/launch_smoke_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/launch_smoke_report.md -rename to dev/reports/launch_smoke_report.md -diff --git a/dev/docs_build/dev/reports/learn-getting-started-screen-guidance.md b/dev/reports/learn-getting-started-screen-guidance.md -similarity index 100% -rename from dev/docs_build/dev/reports/learn-getting-started-screen-guidance.md -rename to dev/reports/learn-getting-started-screen-guidance.md -diff --git a/dev/docs_build/dev/reports/learn-wireframe-pages.md b/dev/reports/learn-wireframe-pages.md -similarity index 100% -rename from dev/docs_build/dev/reports/learn-wireframe-pages.md -rename to dev/reports/learn-wireframe-pages.md -diff --git a/dev/docs_build/dev/reports/legacy-docs-archive-report.md b/dev/reports/legacy-docs-archive-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/legacy-docs-archive-report.md -rename to dev/reports/legacy-docs-archive-report.md -diff --git a/dev/docs_build/dev/reports/legacy_alias_removal_closeout_report.md b/dev/reports/legacy_alias_removal_closeout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/legacy_alias_removal_closeout_report.md -rename to dev/reports/legacy_alias_removal_closeout_report.md -diff --git a/dev/docs_build/dev/reports/legacy_launch_fallback_residue_validation.md b/dev/reports/legacy_launch_fallback_residue_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/legacy_launch_fallback_residue_validation.md -rename to dev/reports/legacy_launch_fallback_residue_validation.md -diff --git a/dev/docs_build/dev/reports/legacy_ownership_final_audit_report.md b/dev/reports/legacy_ownership_final_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/legacy_ownership_final_audit_report.md -rename to dev/reports/legacy_ownership_final_audit_report.md -diff --git a/dev/docs_build/dev/reports/legacy_surface_elimination_report.md b/dev/reports/legacy_surface_elimination_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/legacy_surface_elimination_report.md -rename to dev/reports/legacy_surface_elimination_report.md -diff --git a/dev/docs_build/dev/reports/level_10_1_game_palette_completeness_report.md b/dev/reports/level_10_1_game_palette_completeness_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_1_game_palette_completeness_report.md -rename to dev/reports/level_10_1_game_palette_completeness_report.md -diff --git a/dev/docs_build/dev/reports/level_10_1a_palette_singleton_correction_report.md b/dev/reports/level_10_1a_palette_singleton_correction_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_1a_palette_singleton_correction_report.md -rename to dev/reports/level_10_1a_palette_singleton_correction_report.md -diff --git a/dev/docs_build/dev/reports/level_10_1b_tool_section_metadata_and_palette_tool_singleton_report.md b/dev/reports/level_10_1b_tool_section_metadata_and_palette_tool_singleton_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_1b_tool_section_metadata_and_palette_tool_singleton_report.md -rename to dev/reports/level_10_1b_tool_section_metadata_and_palette_tool_singleton_report.md -diff --git a/dev/docs_build/dev/reports/level_10_2_asteroids_platform_demo_boundary_audit.md b/dev/reports/level_10_2_asteroids_platform_demo_boundary_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_2_asteroids_platform_demo_boundary_audit.md -rename to dev/reports/level_10_2_asteroids_platform_demo_boundary_audit.md -diff --git a/dev/docs_build/dev/reports/level_10_2_workspace_manager_open_test_report.md b/dev/reports/level_10_2_workspace_manager_open_test_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_2_workspace_manager_open_test_report.md -rename to dev/reports/level_10_2_workspace_manager_open_test_report.md -diff --git a/dev/docs_build/dev/reports/level_10_2a_workspace_manager_asset_presence_validation_report.md b/dev/reports/level_10_2a_workspace_manager_asset_presence_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_2a_workspace_manager_asset_presence_validation_report.md -rename to dev/reports/level_10_2a_workspace_manager_asset_presence_validation_report.md -diff --git a/dev/docs_build/dev/reports/level_10_2b_workspace_manager_palette_binding_report.md b/dev/reports/level_10_2b_workspace_manager_palette_binding_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_2b_workspace_manager_palette_binding_report.md -rename to dev/reports/level_10_2b_workspace_manager_palette_binding_report.md -diff --git a/dev/docs_build/dev/reports/level_10_2c_manifest_cleanup_report.md b/dev/reports/level_10_2c_manifest_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_2c_manifest_cleanup_report.md -rename to dev/reports/level_10_2c_manifest_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/level_10_2c_manifest_payload_expectation_report.md b/dev/reports/level_10_2c_manifest_payload_expectation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_2c_manifest_payload_expectation_report.md -rename to dev/reports/level_10_2c_manifest_payload_expectation_report.md -diff --git a/dev/docs_build/dev/reports/level_10_2d_gravity_well_ship_vector_map_fix_report.md b/dev/reports/level_10_2d_gravity_well_ship_vector_map_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_2d_gravity_well_ship_vector_map_fix_report.md -rename to dev/reports/level_10_2d_gravity_well_ship_vector_map_fix_report.md -diff --git a/dev/docs_build/dev/reports/level_10_2f_vector_asset_palette_paint_binding_report.md b/dev/reports/level_10_2f_vector_asset_palette_paint_binding_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_2f_vector_asset_palette_paint_binding_report.md -rename to dev/reports/level_10_2f_vector_asset_palette_paint_binding_report.md -diff --git a/dev/docs_build/dev/reports/level_10_3_tool_local_sample_migration_report.md b/dev/reports/level_10_3_tool_local_sample_migration_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_3_tool_local_sample_migration_report.md -rename to dev/reports/level_10_3_tool_local_sample_migration_report.md -diff --git a/dev/docs_build/dev/reports/level_10_5_hardcoded_asset_path_audit.md b/dev/reports/level_10_5_hardcoded_asset_path_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_5_hardcoded_asset_path_audit.md -rename to dev/reports/level_10_5_hardcoded_asset_path_audit.md -diff --git a/dev/docs_build/dev/reports/level_10_5_no_hidden_tool_coupling_report.md b/dev/reports/level_10_5_no_hidden_tool_coupling_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_5_no_hidden_tool_coupling_report.md -rename to dev/reports/level_10_5_no_hidden_tool_coupling_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6B_palette_contract_alignment.md b/dev/reports/level_10_6B_palette_contract_alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6B_palette_contract_alignment.md -rename to dev/reports/level_10_6B_palette_contract_alignment.md -diff --git a/dev/docs_build/dev/reports/level_10_6G_tool_input_fetch_load_diagnostics_report.md b/dev/reports/level_10_6G_tool_input_fetch_load_diagnostics_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6G_tool_input_fetch_load_diagnostics_report.md -rename to dev/reports/level_10_6G_tool_input_fetch_load_diagnostics_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6H_tool_load_expected_diagnostics_report.md b/dev/reports/level_10_6H_tool_load_expected_diagnostics_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6H_tool_load_expected_diagnostics_report.md -rename to dev/reports/level_10_6H_tool_load_expected_diagnostics_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6J_expected_results.md b/dev/reports/level_10_6J_expected_results.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6J_expected_results.md -rename to dev/reports/level_10_6J_expected_results.md -diff --git a/dev/docs_build/dev/reports/level_10_6Q_tool_ui_readiness_dod_completion_report.md b/dev/reports/level_10_6Q_tool_ui_readiness_dod_completion_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6Q_tool_ui_readiness_dod_completion_report.md -rename to dev/reports/level_10_6Q_tool_ui_readiness_dod_completion_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6_sample_schema_validation_report.md b/dev/reports/level_10_6_sample_schema_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6_sample_schema_validation_report.md -rename to dev/reports/level_10_6_sample_schema_validation_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6_standalone_tool_data_flow_report.md b/dev/reports/level_10_6_standalone_tool_data_flow_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6_standalone_tool_data_flow_report.md -rename to dev/reports/level_10_6_standalone_tool_data_flow_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6b_standalone_generic_failure_closeout_report.md b/dev/reports/level_10_6b_standalone_generic_failure_closeout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6b_standalone_generic_failure_closeout_report.md -rename to dev/reports/level_10_6b_standalone_generic_failure_closeout_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6b_tool_contract_matrix.md b/dev/reports/level_10_6b_tool_contract_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6b_tool_contract_matrix.md -rename to dev/reports/level_10_6b_tool_contract_matrix.md -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/palette_contract_evidence_report.md b/dev/reports/level_10_6d_palette_contract_evidence__palette_contract_evidence_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/palette_contract_evidence_report.md -rename to dev/reports/level_10_6d_palette_contract_evidence__palette_contract_evidence_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/palette_shape_diff.json b/dev/reports/level_10_6d_palette_contract_evidence__palette_shape_diff.json -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/palette_shape_diff.json -rename to dev/reports/level_10_6d_palette_contract_evidence__palette_shape_diff.json -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/docs/dev/reports/level_10_6d_palette_contract_evidence/palette_shape_diff.json b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative__docs__dev__reports__level_10_6d_palette_contract_evidence__palette_shape_diff.json -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/docs/dev/reports/level_10_6d_palette_contract_evidence/palette_shape_diff.json -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative__docs__dev__reports__level_10_6d_palette_contract_evidence__palette_shape_diff.json -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/docs/dev/reports/level_10_6d_palette_contract_evidence/test_sample_standalone_data_flow_output.txt b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative__docs__dev__reports__level_10_6d_palette_contract_evidence__test_sample_standalone_data_flow_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/docs/dev/reports/level_10_6d_palette_contract_evidence/test_sample_standalone_data_flow_output.txt -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative__docs__dev__reports__level_10_6d_palette_contract_evidence__test_sample_standalone_data_flow_output.txt -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/samples/phase-02/0213/sample.0213.palette-browser.json b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative__samples__phase-02__0213__sample.0213.palette-browser.json -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/samples/phase-02/0213/sample.0213.palette-browser.json -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative__samples__phase-02__0213__sample.0213.palette-browser.json -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/samples/phase-03/0308/sample.0308.palette-browser.json b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative__samples__phase-03__0308__sample.0308.palette-browser.json -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/samples/phase-03/0308/sample.0308.palette-browser.json -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative__samples__phase-03__0308__sample.0308.palette-browser.json -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/samples/phase-03/0313/sample.0313.palette-browser.json b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative__samples__phase-03__0313__sample.0313.palette-browser.json -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/samples/phase-03/0313/sample.0313.palette-browser.json -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative__samples__phase-03__0313__sample.0313.palette-browser.json -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tests/runtime/SampleStandaloneToolDataFlow.test.mjs b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tests__runtime__SampleStandaloneToolDataFlow.test.mjs -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tests/runtime/SampleStandaloneToolDataFlow.test.mjs -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tests__runtime__SampleStandaloneToolDataFlow.test.mjs -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tools/Palette Browser/index.html b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tools__Palette Browser__index.html -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tools/Palette Browser/index.html -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tools__Palette Browser__index.html -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tools/Palette Browser/main.js b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tools__Palette Browser__main.js -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tools/Palette Browser/main.js -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tools__Palette Browser__main.js -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tools/toolRegistry.js b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tools__toolRegistry.js -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative/tools/toolRegistry.js -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative__tools__toolRegistry.js -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/README.md b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__README.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/README.md -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__README.md -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/samples/phase-02/0213/sample.0213.palette.json b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__samples__phase-02__0213__sample.0213.palette.json -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/samples/phase-02/0213/sample.0213.palette.json -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__samples__phase-02__0213__sample.0213.palette.json -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/samples/phase-03/0308/sample.0308.palette.json b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__samples__phase-03__0308__sample.0308.palette.json -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/samples/phase-03/0308/sample.0308.palette.json -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__samples__phase-03__0308__sample.0308.palette.json -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/samples/phase-03/0313/sample.0313.palette.json b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__samples__phase-03__0313__sample.0313.palette.json -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/samples/phase-03/0313/sample.0313.palette.json -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__samples__phase-03__0313__sample.0313.palette.json -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/src/engine/paletteList.js b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__src__engine__paletteList.js -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/src/engine/paletteList.js -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__src__engine__paletteList.js -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/tools/schemas/palette.schema.json b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__tools__schemas__palette.schema.json -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/tools/schemas/palette.schema.json -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__tools__schemas__palette.schema.json -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/tools/schemas/tools/palette-browser.schema.json b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__tools__schemas__tools__palette-browser.schema.json -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/tools/schemas/tools/palette-browser.schema.json -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__tools__schemas__tools__palette-browser.schema.json -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/tools/shared/paletteDocumentContract.js b/dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__tools__shared__paletteDocumentContract.js -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/repo_relative_demoted_runtime_lookalikes/tools/shared/paletteDocumentContract.js -rename to dev/reports/level_10_6d_palette_contract_evidence__repo_relative_demoted_runtime_lookalikes__tools__shared__paletteDocumentContract.js -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/test_sample_standalone_data_flow_output.txt b/dev/reports/level_10_6d_palette_contract_evidence__test_sample_standalone_data_flow_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence/test_sample_standalone_data_flow_output.txt -rename to dev/reports/level_10_6d_palette_contract_evidence__test_sample_standalone_data_flow_output.txt -diff --git a/dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence_capture_build.md b/dev/reports/level_10_6d_palette_contract_evidence_capture_build.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6d_palette_contract_evidence_capture_build.md -rename to dev/reports/level_10_6d_palette_contract_evidence_capture_build.md -diff --git a/dev/docs_build/dev/reports/level_10_6e_launch_smoke_games_output.txt b/dev/reports/level_10_6e_launch_smoke_games_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6e_launch_smoke_games_output.txt -rename to dev/reports/level_10_6e_launch_smoke_games_output.txt -diff --git a/dev/docs_build/dev/reports/level_10_6e_palette_ssot_normalization_report.md b/dev/reports/level_10_6e_palette_ssot_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6e_palette_ssot_normalization_report.md -rename to dev/reports/level_10_6e_palette_ssot_normalization_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6e_palette_ssot_removed_files.txt b/dev/reports/level_10_6e_palette_ssot_removed_files.txt -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6e_palette_ssot_removed_files.txt -rename to dev/reports/level_10_6e_palette_ssot_removed_files.txt -diff --git a/dev/docs_build/dev/reports/level_10_6e_sample_standalone_data_flow_output.txt b/dev/reports/level_10_6e_sample_standalone_data_flow_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6e_sample_standalone_data_flow_output.txt -rename to dev/reports/level_10_6e_sample_standalone_data_flow_output.txt -diff --git a/dev/docs_build/dev/reports/level_10_6f_all_sample_palette_ssot_normalization_report.md b/dev/reports/level_10_6f_all_sample_palette_ssot_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6f_all_sample_palette_ssot_normalization_report.md -rename to dev/reports/level_10_6f_all_sample_palette_ssot_normalization_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6f_launch_smoke_games_output.txt b/dev/reports/level_10_6f_launch_smoke_games_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6f_launch_smoke_games_output.txt -rename to dev/reports/level_10_6f_launch_smoke_games_output.txt -diff --git a/dev/docs_build/dev/reports/level_10_6f_removed_palette_browser_files.txt b/dev/reports/level_10_6f_removed_palette_browser_files.txt -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6f_removed_palette_browser_files.txt -rename to dev/reports/level_10_6f_removed_palette_browser_files.txt -diff --git a/dev/docs_build/dev/reports/level_10_6f_sample_standalone_data_flow_output.txt b/dev/reports/level_10_6f_sample_standalone_data_flow_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6f_sample_standalone_data_flow_output.txt -rename to dev/reports/level_10_6f_sample_standalone_data_flow_output.txt -diff --git a/dev/docs_build/dev/reports/level_10_6i_tool_load_expected_vs_actual_classification_report.md b/dev/reports/level_10_6i_tool_load_expected_vs_actual_classification_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6i_tool_load_expected_vs_actual_classification_report.md -rename to dev/reports/level_10_6i_tool_load_expected_vs_actual_classification_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6m_tool_ui_readiness_dod_gap_review.md b/dev/reports/level_10_6m_tool_ui_readiness_dod_gap_review.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6m_tool_ui_readiness_dod_gap_review.md -rename to dev/reports/level_10_6m_tool_ui_readiness_dod_gap_review.md -diff --git a/dev/docs_build/dev/reports/level_10_6n_tool_ui_dod_audit_report.md b/dev/reports/level_10_6n_tool_ui_dod_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6n_tool_ui_dod_audit_report.md -rename to dev/reports/level_10_6n_tool_ui_dod_audit_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6n_tool_ui_dod_audit_report_template.md b/dev/reports/level_10_6n_tool_ui_dod_audit_report_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6n_tool_ui_dod_audit_report_template.md -rename to dev/reports/level_10_6n_tool_ui_dod_audit_report_template.md -diff --git a/dev/docs_build/dev/reports/level_10_6o_requested_uat_failures.md b/dev/reports/level_10_6o_requested_uat_failures.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6o_requested_uat_failures.md -rename to dev/reports/level_10_6o_requested_uat_failures.md -diff --git a/dev/docs_build/dev/reports/level_10_6o_tool_uat_failure_stabilization_report.md b/dev/reports/level_10_6o_tool_uat_failure_stabilization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6o_tool_uat_failure_stabilization_report.md -rename to dev/reports/level_10_6o_tool_uat_failure_stabilization_report.md -diff --git a/dev/docs_build/dev/reports/level_10_6p_tool_ui_readiness_dod_gap_report.md b/dev/reports/level_10_6p_tool_ui_readiness_dod_gap_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_10_6p_tool_ui_readiness_dod_gap_report.md -rename to dev/reports/level_10_6p_tool_ui_readiness_dod_gap_report.md -diff --git a/dev/docs_build/dev/reports/level_8_17_roadmap_and_skin_editor_schema_report.md b/dev/reports/level_8_17_roadmap_and_skin_editor_schema_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_17_roadmap_and_skin_editor_schema_report.md -rename to dev/reports/level_8_17_roadmap_and_skin_editor_schema_report.md -diff --git a/dev/docs_build/dev/reports/level_8_19_sample_payload_audit_report.md b/dev/reports/level_8_19_sample_payload_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_19_sample_payload_audit_report.md -rename to dev/reports/level_8_19_sample_payload_audit_report.md -diff --git a/dev/docs_build/dev/reports/level_8_20_workspace_schema_audit_report.md b/dev/reports/level_8_20_workspace_schema_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_20_workspace_schema_audit_report.md -rename to dev/reports/level_8_20_workspace_schema_audit_report.md -diff --git a/dev/docs_build/dev/reports/level_8_23_workspace_manifest_games_field_alignment_report.md b/dev/reports/level_8_23_workspace_manifest_games_field_alignment_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_23_workspace_manifest_games_field_alignment_report.md -rename to dev/reports/level_8_23_workspace_manifest_games_field_alignment_report.md -diff --git a/dev/docs_build/dev/reports/level_8_26_manifest_ssot_audit_report.md b/dev/reports/level_8_26_manifest_ssot_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_26_manifest_ssot_audit_report.md -rename to dev/reports/level_8_26_manifest_ssot_audit_report.md -diff --git a/dev/docs_build/dev/reports/level_8_26_unused_json_audit_report.md b/dev/reports/level_8_26_unused_json_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_26_unused_json_audit_report.md -rename to dev/reports/level_8_26_unused_json_audit_report.md -diff --git a/dev/docs_build/dev/reports/level_8_26_user_blockers.md b/dev/reports/level_8_26_user_blockers.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_26_user_blockers.md -rename to dev/reports/level_8_26_user_blockers.md -diff --git a/dev/docs_build/dev/reports/level_8_27_code_asset_extraction_audit.md b/dev/reports/level_8_27_code_asset_extraction_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_27_code_asset_extraction_audit.md -rename to dev/reports/level_8_27_code_asset_extraction_audit.md -diff --git a/dev/docs_build/dev/reports/level_8_27_extraction_candidate_matrix.md b/dev/reports/level_8_27_extraction_candidate_matrix.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_27_extraction_candidate_matrix.md -rename to dev/reports/level_8_27_extraction_candidate_matrix.md -diff --git a/dev/docs_build/dev/reports/level_8_28_asteroids_manifest_ssot_report.md b/dev/reports/level_8_28_asteroids_manifest_ssot_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_28_asteroids_manifest_ssot_report.md -rename to dev/reports/level_8_28_asteroids_manifest_ssot_report.md -diff --git a/dev/docs_build/dev/reports/level_8_30_all_games_manifest_ssot_rollout_report.md b/dev/reports/level_8_30_all_games_manifest_ssot_rollout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_30_all_games_manifest_ssot_rollout_report.md -rename to dev/reports/level_8_30_all_games_manifest_ssot_rollout_report.md -diff --git a/dev/docs_build/dev/reports/level_8_31_asteroids_json_cleanup_report.md b/dev/reports/level_8_31_asteroids_json_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_31_asteroids_json_cleanup_report.md -rename to dev/reports/level_8_31_asteroids_json_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/level_8_32_direct_launch_hook_and_asteroids_parity_report.md b/dev/reports/level_8_32_direct_launch_hook_and_asteroids_parity_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_32_direct_launch_hook_and_asteroids_parity_report.md -rename to dev/reports/level_8_32_direct_launch_hook_and_asteroids_parity_report.md -diff --git a/dev/docs_build/dev/reports/level_8_33_legacy_catalog_parity_report.md b/dev/reports/level_8_33_legacy_catalog_parity_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_33_legacy_catalog_parity_report.md -rename to dev/reports/level_8_33_legacy_catalog_parity_report.md -diff --git a/dev/docs_build/dev/reports/level_8_34_final_clean_repo_baseline_report.md b/dev/reports/level_8_34_final_clean_repo_baseline_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_8_34_final_clean_repo_baseline_report.md -rename to dev/reports/level_8_34_final_clean_repo_baseline_report.md -diff --git a/dev/docs_build/dev/reports/level_9_10_single_manifest_runtime_stabilization_report.md b/dev/reports/level_9_10_single_manifest_runtime_stabilization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_9_10_single_manifest_runtime_stabilization_report.md -rename to dev/reports/level_9_10_single_manifest_runtime_stabilization_report.md -diff --git a/dev/docs_build/dev/reports/level_9_1a_asteroids_manifest_model_review.md b/dev/reports/level_9_1a_asteroids_manifest_model_review.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_9_1a_asteroids_manifest_model_review.md -rename to dev/reports/level_9_1a_asteroids_manifest_model_review.md -diff --git a/dev/docs_build/dev/reports/level_9_3_multi_game_launch_validation_and_fix_report.md b/dev/reports/level_9_3_multi_game_launch_validation_and_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_9_3_multi_game_launch_validation_and_fix_report.md -rename to dev/reports/level_9_3_multi_game_launch_validation_and_fix_report.md -diff --git a/dev/docs_build/dev/reports/level_9_5_final_review_and_next_phase_prep.md b/dev/reports/level_9_5_final_review_and_next_phase_prep.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_9_5_final_review_and_next_phase_prep.md -rename to dev/reports/level_9_5_final_review_and_next_phase_prep.md -diff --git a/dev/docs_build/dev/reports/level_9_6_asteroids_hard_cutover_report.md b/dev/reports/level_9_6_asteroids_hard_cutover_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_9_6_asteroids_hard_cutover_report.md -rename to dev/reports/level_9_6_asteroids_hard_cutover_report.md -diff --git a/dev/docs_build/dev/reports/level_9_7_remove_internal_references_report.md b/dev/reports/level_9_7_remove_internal_references_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_9_7_remove_internal_references_report.md -rename to dev/reports/level_9_7_remove_internal_references_report.md -diff --git a/dev/docs_build/dev/reports/level_9_8_direct_data_manifest_rollout_all_games_report.md b/dev/reports/level_9_8_direct_data_manifest_rollout_all_games_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_9_8_direct_data_manifest_rollout_all_games_report.md -rename to dev/reports/level_9_8_direct_data_manifest_rollout_all_games_report.md -diff --git a/dev/docs_build/dev/reports/level_9_9_launch_smoke_games_only_fast_path_report.md b/dev/reports/level_9_9_launch_smoke_games_only_fast_path_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/level_9_9_launch_smoke_games_only_fast_path_report.md -rename to dev/reports/level_9_9_launch_smoke_games_only_fast_path_report.md -diff --git a/dev/docs_build/dev/reports/library_item_contract_tests_validation.md b/dev/reports/library_item_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/library_item_contract_tests_validation.md -rename to dev/reports/library_item_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/literal_asset_none_renderer_11_158.txt b/dev/reports/literal_asset_none_renderer_11_158.txt -similarity index 100% -rename from dev/docs_build/dev/reports/literal_asset_none_renderer_11_158.txt -rename to dev/reports/literal_asset_none_renderer_11_158.txt -diff --git a/dev/docs_build/dev/reports/local-api-url-guidance-report.md b/dev/reports/local-api-url-guidance-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/local-api-url-guidance-report.md -rename to dev/reports/local-api-url-guidance-report.md -diff --git a/dev/docs_build/dev/reports/local-db-server-adapter-report.md b/dev/reports/local-db-server-adapter-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/local-db-server-adapter-report.md -rename to dev/reports/local-db-server-adapter-report.md -diff --git a/dev/docs_build/dev/reports/local-db-viewer-readonly-report.md b/dev/reports/local-db-viewer-readonly-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/local-db-viewer-readonly-report.md -rename to dev/reports/local-db-viewer-readonly-report.md -diff --git a/dev/docs_build/dev/reports/local-server-entrypoint-cleanup-report.md b/dev/reports/local-server-entrypoint-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/local-server-entrypoint-cleanup-report.md -rename to dev/reports/local-server-entrypoint-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/localization_template_rebuild_report.md b/dev/reports/localization_template_rebuild_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/localization_template_rebuild_report.md -rename to dev/reports/localization_template_rebuild_report.md -diff --git a/dev/docs_build/dev/reports/login-db-reseed-control-report.md b/dev/reports/login-db-reseed-control-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/login-db-reseed-control-report.md -rename to dev/reports/login-db-reseed-control-report.md -diff --git a/dev/docs_build/dev/reports/login-local-server-status-report.md b/dev/reports/login-local-server-status-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/login-local-server-status-report.md -rename to dev/reports/login-local-server-status-report.md -diff --git a/dev/docs_build/dev/reports/login-page-session-mode-lockdown-report.md b/dev/reports/login-page-session-mode-lockdown-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/login-page-session-mode-lockdown-report.md -rename to dev/reports/login-page-session-mode-lockdown-report.md -diff --git a/dev/docs_build/dev/reports/login-tools-index-recovery-report.md b/dev/reports/login-tools-index-recovery-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/login-tools-index-recovery-report.md -rename to dev/reports/login-tools-index-recovery-report.md -diff --git a/dev/docs_build/dev/reports/manifest_contract_tests_validation.md b/dev/reports/manifest_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/manifest_contract_tests_validation.md -rename to dev/reports/manifest_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/manifest_documentkind_removal_report.md b/dev/reports/manifest_documentkind_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/manifest_documentkind_removal_report.md -rename to dev/reports/manifest_documentkind_removal_report.md -diff --git a/dev/docs_build/dev/reports/manifest_driven_engine_audit.md b/dev/reports/manifest_driven_engine_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/manifest_driven_engine_audit.md -rename to dev/reports/manifest_driven_engine_audit.md -diff --git a/dev/docs_build/dev/reports/manifest_runtime_boundary.md b/dev/reports/manifest_runtime_boundary.md -similarity index 100% -rename from dev/docs_build/dev/reports/manifest_runtime_boundary.md -rename to dev/reports/manifest_runtime_boundary.md -diff --git a/dev/docs_build/dev/reports/manifest_runtime_loader_plan.md b/dev/reports/manifest_runtime_loader_plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/manifest_runtime_loader_plan.md -rename to dev/reports/manifest_runtime_loader_plan.md -diff --git a/dev/docs_build/dev/reports/marketplace_listing_contract_tests_validation.md b/dev/reports/marketplace_listing_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/marketplace_listing_contract_tests_validation.md -rename to dev/reports/marketplace_listing_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/marketplace_transaction_boundary_contract_tests_validation.md b/dev/reports/marketplace_transaction_boundary_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/marketplace_transaction_boundary_contract_tests_validation.md -rename to dev/reports/marketplace_transaction_boundary_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/master_roadmap_style_append_block.md b/dev/reports/master_roadmap_style_append_block.md -similarity index 100% -rename from dev/docs_build/dev/reports/master_roadmap_style_append_block.md -rename to dev/reports/master_roadmap_style_append_block.md -diff --git a/dev/docs_build/dev/reports/middle_rounding_and_snap_angle_ui_verification.md b/dev/reports/middle_rounding_and_snap_angle_ui_verification.md -similarity index 100% -rename from dev/docs_build/dev/reports/middle_rounding_and_snap_angle_ui_verification.md -rename to dev/reports/middle_rounding_and_snap_angle_ui_verification.md -diff --git a/dev/docs_build/dev/reports/migration_cleanup_share_tools_scripts_report.md b/dev/reports/migration_cleanup_share_tools_scripts_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/migration_cleanup_share_tools_scripts_report.md -rename to dev/reports/migration_cleanup_share_tools_scripts_report.md -diff --git a/dev/docs_build/dev/reports/migration_done_status_report.md b/dev/reports/migration_done_status_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/migration_done_status_report.md -rename to dev/reports/migration_done_status_report.md -diff --git a/dev/docs_build/dev/reports/migration_final_status_report.md b/dev/reports/migration_final_status_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/migration_final_status_report.md -rename to dev/reports/migration_final_status_report.md -diff --git a/dev/docs_build/dev/reports/migration_plan_contract_tests_validation.md b/dev/reports/migration_plan_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/migration_plan_contract_tests_validation.md -rename to dev/reports/migration_plan_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/minimal_validate_input_11_140.txt b/dev/reports/minimal_validate_input_11_140.txt -similarity index 100% -rename from dev/docs_build/dev/reports/minimal_validate_input_11_140.txt -rename to dev/reports/minimal_validate_input_11_140.txt -diff --git a/dev/docs_build/dev/reports/missing_samples_0125_0126_0127.txt b/dev/reports/missing_samples_0125_0126_0127.txt -similarity index 100% -rename from dev/docs_build/dev/reports/missing_samples_0125_0126_0127.txt -rename to dev/reports/missing_samples_0125_0126_0127.txt -diff --git a/dev/docs_build/dev/reports/mock-db-persistence-and-tool-hr-colors-report.md b/dev/reports/mock-db-persistence-and-tool-hr-colors-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/mock-db-persistence-and-tool-hr-colors-report.md -rename to dev/reports/mock-db-persistence-and-tool-hr-colors-report.md -diff --git a/dev/docs_build/dev/reports/mock-db-user-project-contract.md b/dev/reports/mock-db-user-project-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/mock-db-user-project-contract.md -rename to dev/reports/mock-db-user-project-contract.md -diff --git a/dev/docs_build/dev/reports/mock-db-users-roles-and-data-contract-report.md b/dev/reports/mock-db-users-roles-and-data-contract-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/mock-db-users-roles-and-data-contract-report.md -rename to dev/reports/mock-db-users-roles-and-data-contract-report.md -diff --git a/dev/docs_build/dev/reports/model_b_contract_final_cleanup_validation.md b/dev/reports/model_b_contract_final_cleanup_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/model_b_contract_final_cleanup_validation.md -rename to dev/reports/model_b_contract_final_cleanup_validation.md -diff --git a/dev/docs_build/dev/reports/moderation_queue_contract_tests_validation.md b/dev/reports/moderation_queue_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/moderation_queue_contract_tests_validation.md -rename to dev/reports/moderation_queue_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/monolith_split_execution_report.md b/dev/reports/monolith_split_execution_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/monolith_split_execution_report.md -rename to dev/reports/monolith_split_execution_report.md -diff --git a/dev/docs_build/dev/reports/monolith_trigger_removal_report.md b/dev/reports/monolith_trigger_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/monolith_trigger_removal_report.md -rename to dev/reports/monolith_trigger_removal_report.md -diff --git a/dev/docs_build/dev/reports/monolithic_test_code_audit.md b/dev/reports/monolithic_test_code_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/monolithic_test_code_audit.md -rename to dev/reports/monolithic_test_code_audit.md -diff --git a/dev/docs_build/dev/reports/monolithic_test_split_candidates.md b/dev/reports/monolithic_test_split_candidates.md -similarity index 100% -rename from dev/docs_build/dev/reports/monolithic_test_split_candidates.md -rename to dev/reports/monolithic_test_split_candidates.md -diff --git a/dev/docs_build/dev/reports/mvp-path-validation-and-status-alignment-report.md b/dev/reports/mvp-path-validation-and-status-alignment-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/mvp-path-validation-and-status-alignment-report.md -rename to dev/reports/mvp-path-validation-and-status-alignment-report.md -diff --git a/dev/docs_build/dev/reports/mvp-tool-build-order-report.md b/dev/reports/mvp-tool-build-order-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/mvp-tool-build-order-report.md -rename to dev/reports/mvp-tool-build-order-report.md -diff --git a/dev/docs_build/dev/reports/navigation-and-list-sorting-rule.md b/dev/reports/navigation-and-list-sorting-rule.md -similarity index 100% -rename from dev/docs_build/dev/reports/navigation-and-list-sorting-rule.md -rename to dev/reports/navigation-and-list-sorting-rule.md -diff --git a/dev/docs_build/dev/reports/navigation-db-contract-audit-report.md b/dev/reports/navigation-db-contract-audit-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/navigation-db-contract-audit-report.md -rename to dev/reports/navigation-db-contract-audit-report.md -diff --git a/dev/docs_build/dev/reports/no_transform_routing_11_128.txt b/dev/reports/no_transform_routing_11_128.txt -similarity index 100% -rename from dev/docs_build/dev/reports/no_transform_routing_11_128.txt -rename to dev/reports/no_transform_routing_11_128.txt -diff --git a/dev/docs_build/dev/reports/non_schema_validation_paths_11_110.txt b/dev/reports/non_schema_validation_paths_11_110.txt -similarity index 100% -rename from dev/docs_build/dev/reports/non_schema_validation_paths_11_110.txt -rename to dev/reports/non_schema_validation_paths_11_110.txt -diff --git a/dev/docs_build/dev/reports/normalize_path_removal_11_112.txt b/dev/reports/normalize_path_removal_11_112.txt -similarity index 100% -rename from dev/docs_build/dev/reports/normalize_path_removal_11_112.txt -rename to dev/reports/normalize_path_removal_11_112.txt -diff --git a/dev/docs_build/dev/reports/notification_contract_tests_validation.md b/dev/reports/notification_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/notification_contract_tests_validation.md -rename to dev/reports/notification_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/object-catalog-compact-display-report.md b/dev/reports/object-catalog-compact-display-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/object-catalog-compact-display-report.md -rename to dev/reports/object-catalog-compact-display-report.md -diff --git a/dev/docs_build/dev/reports/object-render-asset-handoff-report.md b/dev/reports/object-render-asset-handoff-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/object-render-asset-handoff-report.md -rename to dev/reports/object-render-asset-handoff-report.md -diff --git a/dev/docs_build/dev/reports/object_id_slug_normalization_report.md b/dev/reports/object_id_slug_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/object_id_slug_normalization_report.md -rename to dev/reports/object_id_slug_normalization_report.md -diff --git a/dev/docs_build/dev/reports/object_id_ssot_cleanup_report.md b/dev/reports/object_id_ssot_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/object_id_ssot_cleanup_report.md -rename to dev/reports/object_id_ssot_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/object_id_ssot_migration_report.md b/dev/reports/object_id_ssot_migration_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/object_id_ssot_migration_report.md -rename to dev/reports/object_id_ssot_migration_report.md -diff --git a/dev/docs_build/dev/reports/object_preview_transform_bounds_report.md b/dev/reports/object_preview_transform_bounds_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/object_preview_transform_bounds_report.md -rename to dev/reports/object_preview_transform_bounds_report.md -diff --git a/dev/docs_build/dev/reports/object_state_shape_behavior_report.md b/dev/reports/object_state_shape_behavior_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/object_state_shape_behavior_report.md -rename to dev/reports/object_state_shape_behavior_report.md -diff --git a/dev/docs_build/dev/reports/object_transform_scale_resize_geometry_report.md b/dev/reports/object_transform_scale_resize_geometry_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/object_transform_scale_resize_geometry_report.md -rename to dev/reports/object_transform_scale_resize_geometry_report.md -diff --git a/dev/docs_build/dev/reports/object_type_foundation.md b/dev/reports/object_type_foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/object_type_foundation.md -rename to dev/reports/object_type_foundation.md -diff --git a/dev/docs_build/dev/reports/object_vector_schema_geometry_style_ssot_report.md b/dev/reports/object_vector_schema_geometry_style_ssot_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/object_vector_schema_geometry_style_ssot_report.md -rename to dev/reports/object_vector_schema_geometry_style_ssot_report.md -diff --git a/dev/docs_build/dev/reports/object_vector_studio_starter_template_report.md b/dev/reports/object_vector_studio_starter_template_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/object_vector_studio_starter_template_report.md -rename to dev/reports/object_vector_studio_starter_template_report.md -diff --git a/dev/docs_build/dev/reports/object_vs_shape_transform_verification.md b/dev/reports/object_vs_shape_transform_verification.md -similarity index 100% -rename from dev/docs_build/dev/reports/object_vs_shape_transform_verification.md -rename to dev/reports/object_vs_shape_transform_verification.md -diff --git a/dev/docs_build/dev/reports/objects-action-spacing-cleanup-report.md b/dev/reports/objects-action-spacing-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-action-spacing-cleanup-report.md -rename to dev/reports/objects-action-spacing-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/objects-asset-return-display-report.md b/dev/reports/objects-asset-return-display-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-asset-return-display-report.md -rename to dev/reports/objects-asset-return-display-report.md -diff --git a/dev/docs_build/dev/reports/objects-beta-promotion-and-catalog-relocation-report.md b/dev/reports/objects-beta-promotion-and-catalog-relocation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-beta-promotion-and-catalog-relocation-report.md -rename to dev/reports/objects-beta-promotion-and-catalog-relocation-report.md -diff --git a/dev/docs_build/dev/reports/objects-beta-rebuild-report.md b/dev/reports/objects-beta-rebuild-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-beta-rebuild-report.md -rename to dev/reports/objects-beta-rebuild-report.md -diff --git a/dev/docs_build/dev/reports/objects-db-persistence-fix-report.md b/dev/reports/objects-db-persistence-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-db-persistence-fix-report.md -rename to dev/reports/objects-db-persistence-fix-report.md -diff --git a/dev/docs_build/dev/reports/objects-production-copy-and-status-report.md b/dev/reports/objects-production-copy-and-status-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-production-copy-and-status-report.md -rename to dev/reports/objects-production-copy-and-status-report.md -diff --git a/dev/docs_build/dev/reports/objects-remove-type-choices-report.md b/dev/reports/objects-remove-type-choices-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-remove-type-choices-report.md -rename to dev/reports/objects-remove-type-choices-report.md -diff --git a/dev/docs_build/dev/reports/objects-role-type-save-fix-report.md b/dev/reports/objects-role-type-save-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-role-type-save-fix-report.md -rename to dev/reports/objects-role-type-save-fix-report.md -diff --git a/dev/docs_build/dev/reports/objects-status-action-links-report.md b/dev/reports/objects-status-action-links-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-status-action-links-report.md -rename to dev/reports/objects-status-action-links-report.md -diff --git a/dev/docs_build/dev/reports/objects-table-input-wireframe-report.md b/dev/reports/objects-table-input-wireframe-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-table-input-wireframe-report.md -rename to dev/reports/objects-table-input-wireframe-report.md -diff --git a/dev/docs_build/dev/reports/objects-table-status-actions-report.md b/dev/reports/objects-table-status-actions-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/objects-table-status-actions-report.md -rename to dev/reports/objects-table-status-actions-report.md -diff --git a/dev/docs_build/dev/reports/old_tool_test_retirement_report.txt b/dev/reports/old_tool_test_retirement_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/old_tool_test_retirement_report.txt -rename to dev/reports/old_tool_test_retirement_report.txt -diff --git a/dev/docs_build/dev/reports/organization_contract_tests_validation.md b/dev/reports/organization_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/organization_contract_tests_validation.md -rename to dev/reports/organization_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/owner_eod_report.md b/dev/reports/owner_eod_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/owner_eod_report.md -rename to dev/reports/owner_eod_report.md -diff --git a/dev/docs_build/dev/reports/page-local-product-data-audit-report.md b/dev/reports/page-local-product-data-audit-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/page-local-product-data-audit-report.md -rename to dev/reports/page-local-product-data-audit-report.md -diff --git a/dev/docs_build/dev/reports/palette-added-selection-and-tooltip-source-report.md b/dev/reports/palette-added-selection-and-tooltip-source-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-added-selection-and-tooltip-source-report.md -rename to dev/reports/palette-added-selection-and-tooltip-source-report.md -diff --git a/dev/docs_build/dev/reports/palette-checkbox-tag-batch-recovery-report.md b/dev/reports/palette-checkbox-tag-batch-recovery-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-checkbox-tag-batch-recovery-report.md -rename to dev/reports/palette-checkbox-tag-batch-recovery-report.md -diff --git a/dev/docs_build/dev/reports/palette-db-legacy-table-audit-report.md b/dev/reports/palette-db-legacy-table-audit-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-db-legacy-table-audit-report.md -rename to dev/reports/palette-db-legacy-table-audit-report.md -diff --git a/dev/docs_build/dev/reports/palette-empty-editor-state-report.md b/dev/reports/palette-empty-editor-state-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-empty-editor-state-report.md -rename to dev/reports/palette-empty-editor-state-report.md -diff --git a/dev/docs_build/dev/reports/palette-followup-stacked-report.md b/dev/reports/palette-followup-stacked-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-followup-stacked-report.md -rename to dev/reports/palette-followup-stacked-report.md -diff --git a/dev/docs_build/dev/reports/palette-fullscreen-accordion-flex-fix-report.md b/dev/reports/palette-fullscreen-accordion-flex-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-fullscreen-accordion-flex-fix-report.md -rename to dev/reports/palette-fullscreen-accordion-flex-fix-report.md -diff --git a/dev/docs_build/dev/reports/palette-harmony-unique-generated-names-report.md b/dev/reports/palette-harmony-unique-generated-names-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-harmony-unique-generated-names-report.md -rename to dev/reports/palette-harmony-unique-generated-names-report.md -diff --git a/dev/docs_build/dev/reports/palette-runtime-usage-verification-report.md b/dev/reports/palette-runtime-usage-verification-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-runtime-usage-verification-report.md -rename to dev/reports/palette-runtime-usage-verification-report.md -diff --git a/dev/docs_build/dev/reports/palette-selected-swatch-and-harmony-display-report.md b/dev/reports/palette-selected-swatch-and-harmony-display-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-selected-swatch-and-harmony-display-report.md -rename to dev/reports/palette-selected-swatch-and-harmony-display-report.md -diff --git a/dev/docs_build/dev/reports/palette-source-and-control-cleanup-report.md b/dev/reports/palette-source-and-control-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-source-and-control-cleanup-report.md -rename to dev/reports/palette-source-and-control-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/palette-source-list-and-unpin-delete-report.md b/dev/reports/palette-source-list-and-unpin-delete-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-source-list-and-unpin-delete-report.md -rename to dev/reports/palette-source-list-and-unpin-delete-report.md -diff --git a/dev/docs_build/dev/reports/palette-source-pinall-compact-buttons-report.md b/dev/reports/palette-source-pinall-compact-buttons-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-source-pinall-compact-buttons-report.md -rename to dev/reports/palette-source-pinall-compact-buttons-report.md -diff --git a/dev/docs_build/dev/reports/palette-source-swatches-deprecation-report.md b/dev/reports/palette-source-swatches-deprecation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-source-swatches-deprecation-report.md -rename to dev/reports/palette-source-swatches-deprecation-report.md -diff --git a/dev/docs_build/dev/reports/palette-swatch-editor-disable-correction-report.md b/dev/reports/palette-swatch-editor-disable-correction-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-swatch-editor-disable-correction-report.md -rename to dev/reports/palette-swatch-editor-disable-correction-report.md -diff --git a/dev/docs_build/dev/reports/palette-swatch-harmony-and-tool-center-flex-report.md b/dev/reports/palette-swatch-harmony-and-tool-center-flex-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-swatch-harmony-and-tool-center-flex-report.md -rename to dev/reports/palette-swatch-harmony-and-tool-center-flex-report.md -diff --git a/dev/docs_build/dev/reports/palette-tag-and-editor-split-report.md b/dev/reports/palette-tag-and-editor-split-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-tag-and-editor-split-report.md -rename to dev/reports/palette-tag-and-editor-split-report.md -diff --git a/dev/docs_build/dev/reports/palette-tool-and-asset-handoff-report.md b/dev/reports/palette-tool-and-asset-handoff-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-tool-and-asset-handoff-report.md -rename to dev/reports/palette-tool-and-asset-handoff-report.md -diff --git a/dev/docs_build/dev/reports/palette-user-defined-add-state-report.md b/dev/reports/palette-user-defined-add-state-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette-user-defined-add-state-report.md -rename to dev/reports/palette-user-defined-add-state-report.md -diff --git a/dev/docs_build/dev/reports/palette_color_harmony_schemes_report.md b/dev/reports/palette_color_harmony_schemes_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette_color_harmony_schemes_report.md -rename to dev/reports/palette_color_harmony_schemes_report.md -diff --git a/dev/docs_build/dev/reports/palette_contract_tests_validation.md b/dev/reports/palette_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette_contract_tests_validation.md -rename to dev/reports/palette_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/palette_harmony_labeling_report.md b/dev/reports/palette_harmony_labeling_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette_harmony_labeling_report.md -rename to dev/reports/palette_harmony_labeling_report.md -diff --git a/dev/docs_build/dev/reports/palette_harmony_swatch_display_report.md b/dev/reports/palette_harmony_swatch_display_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette_harmony_swatch_display_report.md -rename to dev/reports/palette_harmony_swatch_display_report.md -diff --git a/dev/docs_build/dev/reports/palette_manager_v2_session_persistence.md b/dev/reports/palette_manager_v2_session_persistence.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette_manager_v2_session_persistence.md -rename to dev/reports/palette_manager_v2_session_persistence.md -diff --git a/dev/docs_build/dev/reports/palette_pass_through_11_131.txt b/dev/reports/palette_pass_through_11_131.txt -similarity index 100% -rename from dev/docs_build/dev/reports/palette_pass_through_11_131.txt -rename to dev/reports/palette_pass_through_11_131.txt -diff --git a/dev/docs_build/dev/reports/palette_schema_payload_only_11_122.txt b/dev/reports/palette_schema_payload_only_11_122.txt -similarity index 100% -rename from dev/docs_build/dev/reports/palette_schema_payload_only_11_122.txt -rename to dev/reports/palette_schema_payload_only_11_122.txt -diff --git a/dev/docs_build/dev/reports/palette_v2_directory_cleanup.md b/dev/reports/palette_v2_directory_cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/palette_v2_directory_cleanup.md -rename to dev/reports/palette_v2_directory_cleanup.md -diff --git a/dev/docs_build/dev/reports/persistent_lane_manifest_report.md b/dev/reports/persistent_lane_manifest_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/persistent_lane_manifest_report.md -rename to dev/reports/persistent_lane_manifest_report.md -diff --git a/dev/docs_build/dev/reports/phase17_browser_root_test_resolution_report.md b/dev/reports/phase17_browser_root_test_resolution_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/phase17_browser_root_test_resolution_report.md -rename to dev/reports/phase17_browser_root_test_resolution_report.md -diff --git a/dev/docs_build/dev/reports/phase20_codex_rules_recheck.md b/dev/reports/phase20_codex_rules_recheck.md -similarity index 100% -rename from dev/docs_build/dev/reports/phase20_codex_rules_recheck.md -rename to dev/reports/phase20_codex_rules_recheck.md -diff --git a/dev/docs_build/dev/reports/phase20_recovery_gate_decision.md b/dev/reports/phase20_recovery_gate_decision.md -similarity index 100% -rename from dev/docs_build/dev/reports/phase20_recovery_gate_decision.md -rename to dev/reports/phase20_recovery_gate_decision.md -diff --git a/dev/docs_build/dev/reports/phase20_recovery_uat_validation.md b/dev/reports/phase20_recovery_uat_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/phase20_recovery_uat_validation.md -rename to dev/reports/phase20_recovery_uat_validation.md -diff --git a/dev/docs_build/dev/reports/phase20_tool_preset_integration_validation.txt b/dev/reports/phase20_tool_preset_integration_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/phase20_tool_preset_integration_validation.txt -rename to dev/reports/phase20_tool_preset_integration_validation.txt -diff --git a/dev/docs_build/dev/reports/phase20_tool_preset_mapping.txt b/dev/reports/phase20_tool_preset_mapping.txt -similarity index 100% -rename from dev/docs_build/dev/reports/phase20_tool_preset_mapping.txt -rename to dev/reports/phase20_tool_preset_mapping.txt -diff --git a/dev/docs_build/dev/reports/phase20_tool_sample_map.json b/dev/reports/phase20_tool_sample_map.json -similarity index 100% -rename from dev/docs_build/dev/reports/phase20_tool_sample_map.json -rename to dev/reports/phase20_tool_sample_map.json -diff --git a/dev/docs_build/dev/reports/phase20_tool_sample_map.md b/dev/reports/phase20_tool_sample_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/phase20_tool_sample_map.md -rename to dev/reports/phase20_tool_sample_map.md -diff --git a/dev/docs_build/dev/reports/phase_24_closeout_execution_guard_spec.txt b/dev/reports/phase_24_closeout_execution_guard_spec.txt -similarity index 100% -rename from dev/docs_build/dev/reports/phase_24_closeout_execution_guard_spec.txt -rename to dev/reports/phase_24_closeout_execution_guard_spec.txt -diff --git a/dev/docs_build/dev/reports/planned-tool-shells.md b/dev/reports/planned-tool-shells.md -similarity index 100% -rename from dev/docs_build/dev/reports/planned-tool-shells.md -rename to dev/reports/planned-tool-shells.md -diff --git a/dev/docs_build/dev/reports/platform_data_ownership_model_validation.md b/dev/reports/platform_data_ownership_model_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/platform_data_ownership_model_validation.md -rename to dev/reports/platform_data_ownership_model_validation.md -diff --git a/dev/docs_build/dev/reports/platform_shell_pager_marker_validation.md b/dev/reports/platform_shell_pager_marker_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/platform_shell_pager_marker_validation.md -rename to dev/reports/platform_shell_pager_marker_validation.md -diff --git a/dev/docs_build/dev/reports/playwright_active_game_manifest_discovery.md b/dev/reports/playwright_active_game_manifest_discovery.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_active_game_manifest_discovery.md -rename to dev/reports/playwright_active_game_manifest_discovery.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_balanced_right_panel.md b/dev/reports/playwright_audio_sfx_balanced_right_panel.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_balanced_right_panel.md -rename to dev/reports/playwright_audio_sfx_balanced_right_panel.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_center_column_tight_layout.md b/dev/reports/playwright_audio_sfx_center_column_tight_layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_center_column_tight_layout.md -rename to dev/reports/playwright_audio_sfx_center_column_tight_layout.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_copy_json_frequency_alignment.md b/dev/reports/playwright_audio_sfx_copy_json_frequency_alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_copy_json_frequency_alignment.md -rename to dev/reports/playwright_audio_sfx_copy_json_frequency_alignment.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_json_actions_and_name_controls.md b/dev/reports/playwright_audio_sfx_json_actions_and_name_controls.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_json_actions_and_name_controls.md -rename to dev/reports/playwright_audio_sfx_json_actions_and_name_controls.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_json_import_export.md b/dev/reports/playwright_audio_sfx_json_import_export.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_json_import_export.md -rename to dev/reports/playwright_audio_sfx_json_import_export.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_layout_density.md b/dev/reports/playwright_audio_sfx_layout_density.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_layout_density.md -rename to dev/reports/playwright_audio_sfx_layout_density.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_left_margin_reduction.md b/dev/reports/playwright_audio_sfx_left_margin_reduction.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_left_margin_reduction.md -rename to dev/reports/playwright_audio_sfx_left_margin_reduction.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_multi_sound_workflow.md b/dev/reports/playwright_audio_sfx_multi_sound_workflow.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_multi_sound_workflow.md -rename to dev/reports/playwright_audio_sfx_multi_sound_workflow.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_no_state_abstraction.md b/dev/reports/playwright_audio_sfx_no_state_abstraction.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_no_state_abstraction.md -rename to dev/reports/playwright_audio_sfx_no_state_abstraction.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_noise_and_slider_resolution.md b/dev/reports/playwright_audio_sfx_noise_and_slider_resolution.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_noise_and_slider_resolution.md -rename to dev/reports/playwright_audio_sfx_noise_and_slider_resolution.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_play_stop_loop_mode.md b/dev/reports/playwright_audio_sfx_play_stop_loop_mode.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_play_stop_loop_mode.md -rename to dev/reports/playwright_audio_sfx_play_stop_loop_mode.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_playback_layout.md b/dev/reports/playwright_audio_sfx_playback_layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_playback_layout.md -rename to dev/reports/playwright_audio_sfx_playback_layout.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_playground_v2.md b/dev/reports/playwright_audio_sfx_playground_v2.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_playground_v2.md -rename to dev/reports/playwright_audio_sfx_playground_v2.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_pure_tone_noise_modes.md b/dev/reports/playwright_audio_sfx_pure_tone_noise_modes.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_pure_tone_noise_modes.md -rename to dev/reports/playwright_audio_sfx_pure_tone_noise_modes.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_rebalanced_layout.md b/dev/reports/playwright_audio_sfx_rebalanced_layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_rebalanced_layout.md -rename to dev/reports/playwright_audio_sfx_rebalanced_layout.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_remove_copy_json_fallback.md b/dev/reports/playwright_audio_sfx_remove_copy_json_fallback.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_remove_copy_json_fallback.md -rename to dev/reports/playwright_audio_sfx_remove_copy_json_fallback.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_right_accordion_folding.md b/dev/reports/playwright_audio_sfx_right_accordion_folding.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_right_accordion_folding.md -rename to dev/reports/playwright_audio_sfx_right_accordion_folding.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_schema_and_copy_json.md b/dev/reports/playwright_audio_sfx_schema_and_copy_json.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_schema_and_copy_json.md -rename to dev/reports/playwright_audio_sfx_schema_and_copy_json.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_schema_location_unique_names.md b/dev/reports/playwright_audio_sfx_schema_location_unique_names.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_schema_location_unique_names.md -rename to dev/reports/playwright_audio_sfx_schema_location_unique_names.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_shared_dirty_contract.md b/dev/reports/playwright_audio_sfx_shared_dirty_contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_shared_dirty_contract.md -rename to dev/reports/playwright_audio_sfx_shared_dirty_contract.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_slider_focus.md b/dev/reports/playwright_audio_sfx_slider_focus.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_slider_focus.md -rename to dev/reports/playwright_audio_sfx_slider_focus.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_slider_undo_coalescing.md b/dev/reports/playwright_audio_sfx_slider_undo_coalescing.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_slider_undo_coalescing.md -rename to dev/reports/playwright_audio_sfx_slider_undo_coalescing.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_style_descriptions.md b/dev/reports/playwright_audio_sfx_style_descriptions.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_style_descriptions.md -rename to dev/reports/playwright_audio_sfx_style_descriptions.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_style_examples_and_helpers.md b/dev/reports/playwright_audio_sfx_style_examples_and_helpers.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_style_examples_and_helpers.md -rename to dev/reports/playwright_audio_sfx_style_examples_and_helpers.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_style_order.md b/dev/reports/playwright_audio_sfx_style_order.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_style_order.md -rename to dev/reports/playwright_audio_sfx_style_order.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_style_slider_clamps.md b/dev/reports/playwright_audio_sfx_style_slider_clamps.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_style_slider_clamps.md -rename to dev/reports/playwright_audio_sfx_style_slider_clamps.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_style_ux_noise_labels.md b/dev/reports/playwright_audio_sfx_style_ux_noise_labels.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_style_ux_noise_labels.md -rename to dev/reports/playwright_audio_sfx_style_ux_noise_labels.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_template_css_alignment.md b/dev/reports/playwright_audio_sfx_template_css_alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_template_css_alignment.md -rename to dev/reports/playwright_audio_sfx_template_css_alignment.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_tile_play_and_button_move.md b/dev/reports/playwright_audio_sfx_tile_play_and_button_move.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_tile_play_and_button_move.md -rename to dev/reports/playwright_audio_sfx_tile_play_and_button_move.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_undo_redo.md b/dev/reports/playwright_audio_sfx_undo_redo.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_undo_redo.md -rename to dev/reports/playwright_audio_sfx_undo_redo.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_visible_style_ranges.md b/dev/reports/playwright_audio_sfx_visible_style_ranges.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_visible_style_ranges.md -rename to dev/reports/playwright_audio_sfx_visible_style_ranges.md -diff --git a/dev/docs_build/dev/reports/playwright_audio_sfx_workspace_manifest_schema.md b/dev/reports/playwright_audio_sfx_workspace_manifest_schema.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_audio_sfx_workspace_manifest_schema.md -rename to dev/reports/playwright_audio_sfx_workspace_manifest_schema.md -diff --git a/dev/docs_build/dev/reports/playwright_discovery_ownership_report.md b/dev/reports/playwright_discovery_ownership_report.md -similarity index 99% -rename from dev/docs_build/dev/reports/playwright_discovery_ownership_report.md -rename to dev/reports/playwright_discovery_ownership_report.md -index 5ae115149..146056e54 100644 ---- a/dev/docs_build/dev/reports/playwright_discovery_ownership_report.md -+++ b/dev/reports/playwright_discovery_ownership_report.md -@@ -1,6 +1,6 @@ - # Playwright Discovery Ownership Report - --Generated: 2026-06-27T19:09:29.483Z -+Generated: 2026-06-27T19:31:16.143Z - Status: PASS - - ## Discovery-Time Ownership -diff --git a/dev/docs_build/dev/reports/playwright_discovery_scope_report.md b/dev/reports/playwright_discovery_scope_report.md -similarity index 95% -rename from dev/docs_build/dev/reports/playwright_discovery_scope_report.md -rename to dev/reports/playwright_discovery_scope_report.md -index e045e0e54..ca512483f 100644 ---- a/dev/docs_build/dev/reports/playwright_discovery_scope_report.md -+++ b/dev/reports/playwright_discovery_scope_report.md -@@ -1,6 +1,6 @@ - # Playwright Discovery Scope Report - --Generated: 2026-06-27T19:09:29.486Z -+Generated: 2026-06-27T19:31:16.148Z - Status: PASS - Scoped discovery: No - -diff --git a/dev/docs_build/dev/reports/playwright_e2e_flow_completion.txt b/dev/reports/playwright_e2e_flow_completion.txt -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_e2e_flow_completion.txt -rename to dev/reports/playwright_e2e_flow_completion.txt -diff --git a/dev/docs_build/dev/reports/playwright_game_manifest_ssot.md b/dev/reports/playwright_game_manifest_ssot.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_game_manifest_ssot.md -rename to dev/reports/playwright_game_manifest_ssot.md -diff --git a/dev/docs_build/dev/reports/playwright_game_workspace_boundary_contract.md b/dev/reports/playwright_game_workspace_boundary_contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_game_workspace_boundary_contract.md -rename to dev/reports/playwright_game_workspace_boundary_contract.md -diff --git a/dev/docs_build/dev/reports/playwright_palette_manager_v2_session_persistence.md b/dev/reports/playwright_palette_manager_v2_session_persistence.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_palette_manager_v2_session_persistence.md -rename to dev/reports/playwright_palette_manager_v2_session_persistence.md -diff --git a/dev/docs_build/dev/reports/playwright_preview_generator_real_root_path.md b/dev/reports/playwright_preview_generator_real_root_path.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_preview_generator_real_root_path.md -rename to dev/reports/playwright_preview_generator_real_root_path.md -diff --git a/dev/docs_build/dev/reports/playwright_preview_generator_repo_writer_retention.md b/dev/reports/playwright_preview_generator_repo_writer_retention.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_preview_generator_repo_writer_retention.md -rename to dev/reports/playwright_preview_generator_repo_writer_retention.md -diff --git a/dev/docs_build/dev/reports/playwright_preview_generator_session_repo_load.md b/dev/reports/playwright_preview_generator_session_repo_load.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_preview_generator_session_repo_load.md -rename to dev/reports/playwright_preview_generator_session_repo_load.md -diff --git a/dev/docs_build/dev/reports/playwright_preview_generator_write_path_logging.md b/dev/reports/playwright_preview_generator_write_path_logging.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_preview_generator_write_path_logging.md -rename to dev/reports/playwright_preview_generator_write_path_logging.md -diff --git a/dev/docs_build/dev/reports/playwright_session_delete_save_and_preview_root_handle.md b/dev/reports/playwright_session_delete_save_and_preview_root_handle.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_delete_save_and_preview_root_handle.md -rename to dev/reports/playwright_session_delete_save_and_preview_root_handle.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_controls_polish.md b/dev/reports/playwright_session_inspector_v2_controls_polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_controls_polish.md -rename to dev/reports/playwright_session_inspector_v2_controls_polish.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_data_dirty_model.md b/dev/reports/playwright_session_inspector_v2_data_dirty_model.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_data_dirty_model.md -rename to dev/reports/playwright_session_inspector_v2_data_dirty_model.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_deep_rename.md b/dev/reports/playwright_session_inspector_v2_deep_rename.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_deep_rename.md -rename to dev/reports/playwright_session_inspector_v2_deep_rename.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_detail_panel_height.md b/dev/reports/playwright_session_inspector_v2_detail_panel_height.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_detail_panel_height.md -rename to dev/reports/playwright_session_inspector_v2_detail_panel_height.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_layout_fix.md b/dev/reports/playwright_session_inspector_v2_layout_fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_layout_fix.md -rename to dev/reports/playwright_session_inspector_v2_layout_fix.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_normalized_tool_keys.md b/dev/reports/playwright_session_inspector_v2_normalized_tool_keys.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_normalized_tool_keys.md -rename to dev/reports/playwright_session_inspector_v2_normalized_tool_keys.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_output_scrollbars.md b/dev/reports/playwright_session_inspector_v2_output_scrollbars.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_output_scrollbars.md -rename to dev/reports/playwright_session_inspector_v2_output_scrollbars.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_output_wrap_height.md b/dev/reports/playwright_session_inspector_v2_output_wrap_height.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_output_wrap_height.md -rename to dev/reports/playwright_session_inspector_v2_output_wrap_height.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_reapply_detail_accordions.md b/dev/reports/playwright_session_inspector_v2_reapply_detail_accordions.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_reapply_detail_accordions.md -rename to dev/reports/playwright_session_inspector_v2_reapply_detail_accordions.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_shared_detail_space.md b/dev/reports/playwright_session_inspector_v2_shared_detail_space.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_shared_detail_space.md -rename to dev/reports/playwright_session_inspector_v2_shared_detail_space.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_shell_layout.md b/dev/reports/playwright_session_inspector_v2_shell_layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_shell_layout.md -rename to dev/reports/playwright_session_inspector_v2_shell_layout.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_state_view.md b/dev/reports/playwright_session_inspector_v2_state_view.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_state_view.md -rename to dev/reports/playwright_session_inspector_v2_state_view.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_tile_nav_polish.md b/dev/reports/playwright_session_inspector_v2_tile_nav_polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_tile_nav_polish.md -rename to dev/reports/playwright_session_inspector_v2_tile_nav_polish.md -diff --git a/dev/docs_build/dev/reports/playwright_session_inspector_v2_tile_sizing.md b/dev/reports/playwright_session_inspector_v2_tile_sizing.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_session_inspector_v2_tile_sizing.md -rename to dev/reports/playwright_session_inspector_v2_tile_sizing.md -diff --git a/dev/docs_build/dev/reports/playwright_structure_audit.md b/dev/reports/playwright_structure_audit.md -similarity index 99% -rename from dev/docs_build/dev/reports/playwright_structure_audit.md -rename to dev/reports/playwright_structure_audit.md -index eec6c97cf..0a51b1648 100644 ---- a/dev/docs_build/dev/reports/playwright_structure_audit.md -+++ b/dev/reports/playwright_structure_audit.md -@@ -1,6 +1,6 @@ - # Playwright Structure Audit - --Generated: 2026-06-27T19:09:29.449Z -+Generated: 2026-06-27T19:31:16.106Z - Status: PASS - - ## Lane Directories -diff --git a/dev/docs_build/dev/reports/playwright_v8_coverage.txt b/dev/reports/playwright_v8_coverage.txt -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_v8_coverage.txt -rename to dev/reports/playwright_v8_coverage.txt -diff --git a/dev/docs_build/dev/reports/playwright_v8_coverage_report.md b/dev/reports/playwright_v8_coverage_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_v8_coverage_report.md -rename to dev/reports/playwright_v8_coverage_report.md -diff --git a/dev/docs_build/dev/reports/playwright_v8_coverage_report.txt b/dev/reports/playwright_v8_coverage_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_v8_coverage_report.txt -rename to dev/reports/playwright_v8_coverage_report.txt -diff --git a/dev/docs_build/dev/reports/playwright_workspace_hydrate_game_tools_only.md b/dev/reports/playwright_workspace_hydrate_game_tools_only.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_workspace_hydrate_game_tools_only.md -rename to dev/reports/playwright_workspace_hydrate_game_tools_only.md -diff --git a/dev/docs_build/dev/reports/playwright_workspace_recovery.md b/dev/reports/playwright_workspace_recovery.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_workspace_recovery.md -rename to dev/reports/playwright_workspace_recovery.md -diff --git a/dev/docs_build/dev/reports/playwright_workspace_return_repo_rehydrate.md b/dev/reports/playwright_workspace_return_repo_rehydrate.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_workspace_return_repo_rehydrate.md -rename to dev/reports/playwright_workspace_return_repo_rehydrate.md -diff --git a/dev/docs_build/dev/reports/playwright_workspace_selection_gates.md b/dev/reports/playwright_workspace_selection_gates.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_workspace_selection_gates.md -rename to dev/reports/playwright_workspace_selection_gates.md -diff --git a/dev/docs_build/dev/reports/playwright_workspace_session_hydration.md b/dev/reports/playwright_workspace_session_hydration.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_workspace_session_hydration.md -rename to dev/reports/playwright_workspace_session_hydration.md -diff --git a/dev/docs_build/dev/reports/playwright_workspace_tool_session_refresh.md b/dev/reports/playwright_workspace_tool_session_refresh.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_workspace_tool_session_refresh.md -rename to dev/reports/playwright_workspace_tool_session_refresh.md -diff --git a/dev/docs_build/dev/reports/playwright_workspace_v2_results.md b/dev/reports/playwright_workspace_v2_results.md -similarity index 100% -rename from dev/docs_build/dev/reports/playwright_workspace_v2_results.md -rename to dev/reports/playwright_workspace_v2_results.md -diff --git a/dev/docs_build/dev/reports/pointer_drag_input_mapping_tiles_report.md b/dev/reports/pointer_drag_input_mapping_tiles_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pointer_drag_input_mapping_tiles_report.md -rename to dev/reports/pointer_drag_input_mapping_tiles_report.md -diff --git a/dev/docs_build/dev/reports/post_closeout_monitoring.txt b/dev/reports/post_closeout_monitoring.txt -similarity index 100% -rename from dev/docs_build/dev/reports/post_closeout_monitoring.txt -rename to dev/reports/post_closeout_monitoring.txt -diff --git a/dev/docs_build/dev/reports/post_migration_platform_roadmap_validation.md b/dev/reports/post_migration_platform_roadmap_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/post_migration_platform_roadmap_validation.md -rename to dev/reports/post_migration_platform_roadmap_validation.md -diff --git a/dev/docs_build/dev/reports/pr-26157-010-historical-limitation.md b/dev/reports/pr-26157-010-historical-limitation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr-26157-010-historical-limitation.md -rename to dev/reports/pr-26157-010-historical-limitation.md -diff --git a/dev/docs_build/dev/reports/pr-completion-rule-and-journey-filter-fix-report.md b/dev/reports/pr-completion-rule-and-journey-filter-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr-completion-rule-and-journey-filter-fix-report.md -rename to dev/reports/pr-completion-rule-and-journey-filter-fix-report.md -diff --git a/dev/docs_build/dev/reports/pr097-admin-account-local-db-migration.md b/dev/reports/pr097-admin-account-local-db-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr097-admin-account-local-db-migration.md -rename to dev/reports/pr097-admin-account-local-db-migration.md -diff --git a/dev/docs_build/dev/reports/pr098-toolbox-local-db-migration.md b/dev/reports/pr098-toolbox-local-db-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr098-toolbox-local-db-migration.md -rename to dev/reports/pr098-toolbox-local-db-migration.md -diff --git a/dev/docs_build/dev/reports/pr099-site-setup-foundation.md b/dev/reports/pr099-site-setup-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr099-site-setup-foundation.md -rename to dev/reports/pr099-site-setup-foundation.md -diff --git a/dev/docs_build/dev/reports/pr100-auth-contract-foundation.md b/dev/reports/pr100-auth-contract-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr100-auth-contract-foundation.md -rename to dev/reports/pr100-auth-contract-foundation.md -diff --git a/dev/docs_build/dev/reports/pr101-db-auth-foundation-fixes.md b/dev/reports/pr101-db-auth-foundation-fixes.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr101-db-auth-foundation-fixes.md -rename to dev/reports/pr101-db-auth-foundation-fixes.md -diff --git a/dev/docs_build/dev/reports/pr102-production-sign-in-cleanup.md b/dev/reports/pr102-production-sign-in-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr102-production-sign-in-cleanup.md -rename to dev/reports/pr102-production-sign-in-cleanup.md -diff --git a/dev/docs_build/dev/reports/pr103-pr102-auth-cleanup-fixes.md b/dev/reports/pr103-pr102-auth-cleanup-fixes.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr103-pr102-auth-cleanup-fixes.md -rename to dev/reports/pr103-pr102-auth-cleanup-fixes.md -diff --git a/dev/docs_build/dev/reports/pr104-complete-grouped-ddl.md b/dev/reports/pr104-complete-grouped-ddl.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr104-complete-grouped-ddl.md -rename to dev/reports/pr104-complete-grouped-ddl.md -diff --git a/dev/docs_build/dev/reports/pr105-complete-grouped-dml.md b/dev/reports/pr105-complete-grouped-dml.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr105-complete-grouped-dml.md -rename to dev/reports/pr105-complete-grouped-dml.md -diff --git a/dev/docs_build/dev/reports/pr106-server-side-seed-api.md b/dev/reports/pr106-server-side-seed-api.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr106-server-side-seed-api.md -rename to dev/reports/pr106-server-side-seed-api.md -diff --git a/dev/docs_build/dev/reports/pr107-guest-seed-data-migration.md b/dev/reports/pr107-guest-seed-data-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr107-guest-seed-data-migration.md -rename to dev/reports/pr107-guest-seed-data-migration.md -diff --git a/dev/docs_build/dev/reports/pr108-complete-db-consumer-migration.md b/dev/reports/pr108-complete-db-consumer-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr108-complete-db-consumer-migration.md -rename to dev/reports/pr108-complete-db-consumer-migration.md -diff --git a/dev/docs_build/dev/reports/pr109-final-db-migration-audit.md b/dev/reports/pr109-final-db-migration-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr109-final-db-migration-audit.md -rename to dev/reports/pr109-final-db-migration-audit.md -diff --git a/dev/docs_build/dev/reports/pr110-local-api-naming-cleanup.md b/dev/reports/pr110-local-api-naming-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr110-local-api-naming-cleanup.md -rename to dev/reports/pr110-local-api-naming-cleanup.md -diff --git a/dev/docs_build/dev/reports/pr111-local-db-schema-alignment.md b/dev/reports/pr111-local-db-schema-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr111-local-db-schema-alignment.md -rename to dev/reports/pr111-local-db-schema-alignment.md -diff --git a/dev/docs_build/dev/reports/pr112-dml-seed-execution-clarity.md b/dev/reports/pr112-dml-seed-execution-clarity.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr112-dml-seed-execution-clarity.md -rename to dev/reports/pr112-dml-seed-execution-clarity.md -diff --git a/dev/docs_build/dev/reports/pr113-db-review-items-cleanup.md b/dev/reports/pr113-db-review-items-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr113-db-review-items-cleanup.md -rename to dev/reports/pr113-db-review-items-cleanup.md -diff --git a/dev/docs_build/dev/reports/pr118-external-auth-readiness-plan.md b/dev/reports/pr118-external-auth-readiness-plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr118-external-auth-readiness-plan.md -rename to dev/reports/pr118-external-auth-readiness-plan.md -diff --git a/dev/docs_build/dev/reports/pr119-supabase-environment-checklist.md b/dev/reports/pr119-supabase-environment-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr119-supabase-environment-checklist.md -rename to dev/reports/pr119-supabase-environment-checklist.md -diff --git a/dev/docs_build/dev/reports/pr120-supabase-provider-contract-stub.md b/dev/reports/pr120-supabase-provider-contract-stub.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr120-supabase-provider-contract-stub.md -rename to dev/reports/pr120-supabase-provider-contract-stub.md -diff --git a/dev/docs_build/dev/reports/pr121-supabase-dev-project-preparation.md b/dev/reports/pr121-supabase-dev-project-preparation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr121-supabase-dev-project-preparation.md -rename to dev/reports/pr121-supabase-dev-project-preparation.md -diff --git a/dev/docs_build/dev/reports/pr122-supabase-dev-auth-stub.md b/dev/reports/pr122-supabase-dev-auth-stub.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr122-supabase-dev-auth-stub.md -rename to dev/reports/pr122-supabase-dev-auth-stub.md -diff --git a/dev/docs_build/dev/reports/pr123-supabase-dev-postgres-stub.md b/dev/reports/pr123-supabase-dev-postgres-stub.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr123-supabase-dev-postgres-stub.md -rename to dev/reports/pr123-supabase-dev-postgres-stub.md -diff --git a/dev/docs_build/dev/reports/pr125-supabase-dev-provider-prep.md b/dev/reports/pr125-supabase-dev-provider-prep.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr125-supabase-dev-provider-prep.md -rename to dev/reports/pr125-supabase-dev-provider-prep.md -diff --git a/dev/docs_build/dev/reports/pr126-supabase-auth-provider-adapter.md b/dev/reports/pr126-supabase-auth-provider-adapter.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr126-supabase-auth-provider-adapter.md -rename to dev/reports/pr126-supabase-auth-provider-adapter.md -diff --git a/dev/docs_build/dev/reports/pr127-supabase-postgres-provider-adapter.md b/dev/reports/pr127-supabase-postgres-provider-adapter.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr127-supabase-postgres-provider-adapter.md -rename to dev/reports/pr127-supabase-postgres-provider-adapter.md -diff --git a/dev/docs_build/dev/reports/pr128-supabase-dev-activation-checklist.md b/dev/reports/pr128-supabase-dev-activation-checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr128-supabase-dev-activation-checklist.md -rename to dev/reports/pr128-supabase-dev-activation-checklist.md -diff --git a/dev/docs_build/dev/reports/pr129-local-db-migration-audit.md b/dev/reports/pr129-local-db-migration-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr129-local-db-migration-audit.md -rename to dev/reports/pr129-local-db-migration-audit.md -diff --git a/dev/docs_build/dev/reports/pr130-provider-failure-contract.md b/dev/reports/pr130-provider-failure-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr130-provider-failure-contract.md -rename to dev/reports/pr130-provider-failure-contract.md -diff --git a/dev/docs_build/dev/reports/pr131-supabase-dev-activation-runtime.md b/dev/reports/pr131-supabase-dev-activation-runtime.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr131-supabase-dev-activation-runtime.md -rename to dev/reports/pr131-supabase-dev-activation-runtime.md -diff --git a/dev/docs_build/dev/reports/pr132-supabase-users-roles-migration.md b/dev/reports/pr132-supabase-users-roles-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr132-supabase-users-roles-migration.md -rename to dev/reports/pr132-supabase-users-roles-migration.md -diff --git a/dev/docs_build/dev/reports/pr133-site-setup-productionization.md b/dev/reports/pr133-site-setup-productionization.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr133-site-setup-productionization.md -rename to dev/reports/pr133-site-setup-productionization.md -diff --git a/dev/docs_build/dev/reports/pr134-db-migration-finish-line-audit.md b/dev/reports/pr134-db-migration-finish-line-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr134-db-migration-finish-line-audit.md -rename to dev/reports/pr134-db-migration-finish-line-audit.md -diff --git a/dev/docs_build/dev/reports/pr135-site-setup-warning-cleanup.md b/dev/reports/pr135-site-setup-warning-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr135-site-setup-warning-cleanup.md -rename to dev/reports/pr135-site-setup-warning-cleanup.md -diff --git a/dev/docs_build/dev/reports/pr136-objects-controls-db-catalog-migration.md b/dev/reports/pr136-objects-controls-db-catalog-migration.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr136-objects-controls-db-catalog-migration.md -rename to dev/reports/pr136-objects-controls-db-catalog-migration.md -diff --git a/dev/docs_build/dev/reports/pr137-supabase-dev-preflight-diagnostics.md b/dev/reports/pr137-supabase-dev-preflight-diagnostics.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr137-supabase-dev-preflight-diagnostics.md -rename to dev/reports/pr137-supabase-dev-preflight-diagnostics.md -diff --git a/dev/docs_build/dev/reports/pr138-db-auth-ready-for-dev-supabase-audit.md b/dev/reports/pr138-db-auth-ready-for-dev-supabase-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr138-db-auth-ready-for-dev-supabase-audit.md -rename to dev/reports/pr138-db-auth-ready-for-dev-supabase-audit.md -diff --git a/dev/docs_build/dev/reports/pr139-supabase-dev-project-creation-guide.md b/dev/reports/pr139-supabase-dev-project-creation-guide.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr139-supabase-dev-project-creation-guide.md -rename to dev/reports/pr139-supabase-dev-project-creation-guide.md -diff --git a/dev/docs_build/dev/reports/pr_072_failure_classification_report.md b/dev/reports/pr_072_failure_classification_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_072_failure_classification_report.md -rename to dev/reports/pr_072_failure_classification_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_162_dead_wiring_report.txt b/dev/reports/pr_11_162_dead_wiring_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_162_dead_wiring_report.txt -rename to dev/reports/pr_11_162_dead_wiring_report.txt -diff --git a/dev/docs_build/dev/reports/pr_11_162_evidence_template.txt b/dev/reports/pr_11_162_evidence_template.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_162_evidence_template.txt -rename to dev/reports/pr_11_162_evidence_template.txt -diff --git a/dev/docs_build/dev/reports/pr_11_163_delivery_manifest.md b/dev/reports/pr_11_163_delivery_manifest.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_163_delivery_manifest.md -rename to dev/reports/pr_11_163_delivery_manifest.md -diff --git a/dev/docs_build/dev/reports/pr_11_163_handoff_trace_report.md b/dev/reports/pr_11_163_handoff_trace_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_163_handoff_trace_report.md -rename to dev/reports/pr_11_163_handoff_trace_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_164_badge_ownership_map.md b/dev/reports/pr_11_164_badge_ownership_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_164_badge_ownership_map.md -rename to dev/reports/pr_11_164_badge_ownership_map.md -diff --git a/dev/docs_build/dev/reports/pr_11_164_build_notes.md b/dev/reports/pr_11_164_build_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_164_build_notes.md -rename to dev/reports/pr_11_164_build_notes.md -diff --git a/dev/docs_build/dev/reports/pr_11_164_dead_code_ledger.md b/dev/reports/pr_11_164_dead_code_ledger.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_164_dead_code_ledger.md -rename to dev/reports/pr_11_164_dead_code_ledger.md -diff --git a/dev/docs_build/dev/reports/pr_11_164_expected_outputs.md b/dev/reports/pr_11_164_expected_outputs.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_164_expected_outputs.md -rename to dev/reports/pr_11_164_expected_outputs.md -diff --git a/dev/docs_build/dev/reports/pr_11_164_revert_map.md b/dev/reports/pr_11_164_revert_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_164_revert_map.md -rename to dev/reports/pr_11_164_revert_map.md -diff --git a/dev/docs_build/dev/reports/pr_11_166_hosted_badge_clear_order_report.md b/dev/reports/pr_11_166_hosted_badge_clear_order_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_166_hosted_badge_clear_order_report.md -rename to dev/reports/pr_11_166_hosted_badge_clear_order_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_166_svg_badge_root_cause_review.md b/dev/reports/pr_11_166_svg_badge_root_cause_review.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_166_svg_badge_root_cause_review.md -rename to dev/reports/pr_11_166_svg_badge_root_cause_review.md -diff --git a/dev/docs_build/dev/reports/pr_11_167_corrected_badge_ownership.md b/dev/reports/pr_11_167_corrected_badge_ownership.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_167_corrected_badge_ownership.md -rename to dev/reports/pr_11_167_corrected_badge_ownership.md -diff --git a/dev/docs_build/dev/reports/pr_11_167_validation.md b/dev/reports/pr_11_167_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_167_validation.md -rename to dev/reports/pr_11_167_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_169_decision_record.md b/dev/reports/pr_11_169_decision_record.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_169_decision_record.md -rename to dev/reports/pr_11_169_decision_record.md -diff --git a/dev/docs_build/dev/reports/pr_11_169_legacy_shell_replacement_ledger.md b/dev/reports/pr_11_169_legacy_shell_replacement_ledger.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_169_legacy_shell_replacement_ledger.md -rename to dev/reports/pr_11_169_legacy_shell_replacement_ledger.md -diff --git a/dev/docs_build/dev/reports/pr_11_170_pass_two_decision_record.md b/dev/reports/pr_11_170_pass_two_decision_record.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_170_pass_two_decision_record.md -rename to dev/reports/pr_11_170_pass_two_decision_record.md -diff --git a/dev/docs_build/dev/reports/pr_11_170_workspace_tile_state_ledger.md b/dev/reports/pr_11_170_workspace_tile_state_ledger.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_170_workspace_tile_state_ledger.md -rename to dev/reports/pr_11_170_workspace_tile_state_ledger.md -diff --git a/dev/docs_build/dev/reports/pr_11_172_root_cause_lock.md b/dev/reports/pr_11_172_root_cause_lock.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_172_root_cause_lock.md -rename to dev/reports/pr_11_172_root_cause_lock.md -diff --git a/dev/docs_build/dev/reports/pr_11_172_validation.md b/dev/reports/pr_11_172_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_172_validation.md -rename to dev/reports/pr_11_172_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_174_root_cause_final.md b/dev/reports/pr_11_174_root_cause_final.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_174_root_cause_final.md -rename to dev/reports/pr_11_174_root_cause_final.md -diff --git a/dev/docs_build/dev/reports/pr_11_174_validation.md b/dev/reports/pr_11_174_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_174_validation.md -rename to dev/reports/pr_11_174_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_176_evidence.md b/dev/reports/pr_11_176_evidence.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_176_evidence.md -rename to dev/reports/pr_11_176_evidence.md -diff --git a/dev/docs_build/dev/reports/pr_11_176_validation.md b/dev/reports/pr_11_176_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_176_validation.md -rename to dev/reports/pr_11_176_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_179_design_lock.md b/dev/reports/pr_11_179_design_lock.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_179_design_lock.md -rename to dev/reports/pr_11_179_design_lock.md -diff --git a/dev/docs_build/dev/reports/pr_11_179_validation.md b/dev/reports/pr_11_179_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_179_validation.md -rename to dev/reports/pr_11_179_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_180_diagnosis.md b/dev/reports/pr_11_180_diagnosis.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_180_diagnosis.md -rename to dev/reports/pr_11_180_diagnosis.md -diff --git a/dev/docs_build/dev/reports/pr_11_180_validation.md b/dev/reports/pr_11_180_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_180_validation.md -rename to dev/reports/pr_11_180_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_181_mapping_strategy.md b/dev/reports/pr_11_181_mapping_strategy.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_181_mapping_strategy.md -rename to dev/reports/pr_11_181_mapping_strategy.md -diff --git a/dev/docs_build/dev/reports/pr_11_181_validation.md b/dev/reports/pr_11_181_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_181_validation.md -rename to dev/reports/pr_11_181_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_183_final_click_dispatch_lock.md b/dev/reports/pr_11_183_final_click_dispatch_lock.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_183_final_click_dispatch_lock.md -rename to dev/reports/pr_11_183_final_click_dispatch_lock.md -diff --git a/dev/docs_build/dev/reports/pr_11_183_validation.md b/dev/reports/pr_11_183_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_183_validation.md -rename to dev/reports/pr_11_183_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_184_decision_record.md b/dev/reports/pr_11_184_decision_record.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_184_decision_record.md -rename to dev/reports/pr_11_184_decision_record.md -diff --git a/dev/docs_build/dev/reports/pr_11_184_validation.md b/dev/reports/pr_11_184_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_184_validation.md -rename to dev/reports/pr_11_184_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_187_restart_notes.md b/dev/reports/pr_11_187_restart_notes.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_187_restart_notes.md -rename to dev/reports/pr_11_187_restart_notes.md -diff --git a/dev/docs_build/dev/reports/pr_11_188_bundle_validation.md b/dev/reports/pr_11_188_bundle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_188_bundle_validation.md -rename to dev/reports/pr_11_188_bundle_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_188_palette_manager_reverse_engineering.md b/dev/reports/pr_11_188_palette_manager_reverse_engineering.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_188_palette_manager_reverse_engineering.md -rename to dev/reports/pr_11_188_palette_manager_reverse_engineering.md -diff --git a/dev/docs_build/dev/reports/pr_11_188_palette_reverse_engineering.md b/dev/reports/pr_11_188_palette_reverse_engineering.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_188_palette_reverse_engineering.md -rename to dev/reports/pr_11_188_palette_reverse_engineering.md -diff --git a/dev/docs_build/dev/reports/pr_11_196_v2_runtime_validation_cleanup_report.md b/dev/reports/pr_11_196_v2_runtime_validation_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_196_v2_runtime_validation_cleanup_report.md -rename to dev/reports/pr_11_196_v2_runtime_validation_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_56_after_audit.txt b/dev/reports/pr_11_56_after_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_56_after_audit.txt -rename to dev/reports/pr_11_56_after_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_56_before_audit.txt b/dev/reports/pr_11_56_before_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_56_before_audit.txt -rename to dev/reports/pr_11_56_before_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_56_candidate_classification.md b/dev/reports/pr_11_56_candidate_classification.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_56_candidate_classification.md -rename to dev/reports/pr_11_56_candidate_classification.md -diff --git a/dev/docs_build/dev/reports/pr_11_56_cleanup_actions.json b/dev/reports/pr_11_56_cleanup_actions.json -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_56_cleanup_actions.json -rename to dev/reports/pr_11_56_cleanup_actions.json -diff --git a/dev/docs_build/dev/reports/pr_11_56_post_cleanup_checks.md b/dev/reports/pr_11_56_post_cleanup_checks.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_56_post_cleanup_checks.md -rename to dev/reports/pr_11_56_post_cleanup_checks.md -diff --git a/dev/docs_build/dev/reports/pr_11_56_validation_requirements.md b/dev/reports/pr_11_56_validation_requirements.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_56_validation_requirements.md -rename to dev/reports/pr_11_56_validation_requirements.md -diff --git a/dev/docs_build/dev/reports/pr_11_62_after_audit.txt b/dev/reports/pr_11_62_after_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_62_after_audit.txt -rename to dev/reports/pr_11_62_after_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_62_before_audit.txt b/dev/reports/pr_11_62_before_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_62_before_audit.txt -rename to dev/reports/pr_11_62_before_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_62_expected_report_template.md b/dev/reports/pr_11_62_expected_report_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_62_expected_report_template.md -rename to dev/reports/pr_11_62_expected_report_template.md -diff --git a/dev/docs_build/dev/reports/pr_11_62_missing_reference_repair_report.md b/dev/reports/pr_11_62_missing_reference_repair_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_62_missing_reference_repair_report.md -rename to dev/reports/pr_11_62_missing_reference_repair_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_64_after_audit.txt b/dev/reports/pr_11_64_after_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_64_after_audit.txt -rename to dev/reports/pr_11_64_after_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_64_after_audit_details.txt b/dev/reports/pr_11_64_after_audit_details.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_64_after_audit_details.txt -rename to dev/reports/pr_11_64_after_audit_details.txt -diff --git a/dev/docs_build/dev/reports/pr_11_64_before_audit.txt b/dev/reports/pr_11_64_before_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_64_before_audit.txt -rename to dev/reports/pr_11_64_before_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_64_scope.md b/dev/reports/pr_11_64_scope.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_64_scope.md -rename to dev/reports/pr_11_64_scope.md -diff --git a/dev/docs_build/dev/reports/pr_11_65_after_audit.txt b/dev/reports/pr_11_65_after_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_65_after_audit.txt -rename to dev/reports/pr_11_65_after_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_65_before_audit.txt b/dev/reports/pr_11_65_before_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_65_before_audit.txt -rename to dev/reports/pr_11_65_before_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_65_expected_report.md b/dev/reports/pr_11_65_expected_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_65_expected_report.md -rename to dev/reports/pr_11_65_expected_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_65_palette_reconstruction_report.md b/dev/reports/pr_11_65_palette_reconstruction_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_65_palette_reconstruction_report.md -rename to dev/reports/pr_11_65_palette_reconstruction_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_66_after_audit.txt b/dev/reports/pr_11_66_after_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_66_after_audit.txt -rename to dev/reports/pr_11_66_after_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_66_before_audit.txt b/dev/reports/pr_11_66_before_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_66_before_audit.txt -rename to dev/reports/pr_11_66_before_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_66_expected_validation.md b/dev/reports/pr_11_66_expected_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_66_expected_validation.md -rename to dev/reports/pr_11_66_expected_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_66_palette_audit_stabilization_report.md b/dev/reports/pr_11_66_palette_audit_stabilization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_66_palette_audit_stabilization_report.md -rename to dev/reports/pr_11_66_palette_audit_stabilization_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_67_after_audit.txt b/dev/reports/pr_11_67_after_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_67_after_audit.txt -rename to dev/reports/pr_11_67_after_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_67_before_audit.txt b/dev/reports/pr_11_67_before_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_67_before_audit.txt -rename to dev/reports/pr_11_67_before_audit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_68_ci_exit.txt b/dev/reports/pr_11_68_ci_exit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_68_ci_exit.txt -rename to dev/reports/pr_11_68_ci_exit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_68_ci_output.txt b/dev/reports/pr_11_68_ci_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_68_ci_output.txt -rename to dev/reports/pr_11_68_ci_output.txt -diff --git a/dev/docs_build/dev/reports/pr_11_68_default_exit.txt b/dev/reports/pr_11_68_default_exit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_68_default_exit.txt -rename to dev/reports/pr_11_68_default_exit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_68_default_output.txt b/dev/reports/pr_11_68_default_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_68_default_output.txt -rename to dev/reports/pr_11_68_default_output.txt -diff --git a/dev/docs_build/dev/reports/pr_11_68_details_exit.txt b/dev/reports/pr_11_68_details_exit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_68_details_exit.txt -rename to dev/reports/pr_11_68_details_exit.txt -diff --git a/dev/docs_build/dev/reports/pr_11_68_details_output.txt b/dev/reports/pr_11_68_details_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_68_details_output.txt -rename to dev/reports/pr_11_68_details_output.txt -diff --git a/dev/docs_build/dev/reports/pr_11_71_ci_output.txt b/dev/reports/pr_11_71_ci_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_71_ci_output.txt -rename to dev/reports/pr_11_71_ci_output.txt -diff --git a/dev/docs_build/dev/reports/pr_11_71_default_output.txt b/dev/reports/pr_11_71_default_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_71_default_output.txt -rename to dev/reports/pr_11_71_default_output.txt -diff --git a/dev/docs_build/dev/reports/pr_11_71_details_output.txt b/dev/reports/pr_11_71_details_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_71_details_output.txt -rename to dev/reports/pr_11_71_details_output.txt -diff --git a/dev/docs_build/dev/reports/pr_11_71_exit_codes.txt b/dev/reports/pr_11_71_exit_codes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_71_exit_codes.txt -rename to dev/reports/pr_11_71_exit_codes.txt -diff --git a/dev/docs_build/dev/reports/pr_11_72_expected_evidence.md b/dev/reports/pr_11_72_expected_evidence.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_72_expected_evidence.md -rename to dev/reports/pr_11_72_expected_evidence.md -diff --git a/dev/docs_build/dev/reports/pr_11_72_workspace_manager_tile_json_counts.md b/dev/reports/pr_11_72_workspace_manager_tile_json_counts.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_72_workspace_manager_tile_json_counts.md -rename to dev/reports/pr_11_72_workspace_manager_tile_json_counts.md -diff --git a/dev/docs_build/dev/reports/pr_11_77_engine_utils_search_after.txt b/dev/reports/pr_11_77_engine_utils_search_after.txt -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_77_engine_utils_search_after.txt -rename to dev/reports/pr_11_77_engine_utils_search_after.txt -diff --git a/dev/docs_build/dev/reports/pr_11_77_expected_report.md b/dev/reports/pr_11_77_expected_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_77_expected_report.md -rename to dev/reports/pr_11_77_expected_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_77_import_rewire_report.md b/dev/reports/pr_11_77_import_rewire_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_77_import_rewire_report.md -rename to dev/reports/pr_11_77_import_rewire_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_84_asteroids_manifest_validation.md b/dev/reports/pr_11_84_asteroids_manifest_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_84_asteroids_manifest_validation.md -rename to dev/reports/pr_11_84_asteroids_manifest_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_84_expected_validation.md b/dev/reports/pr_11_84_expected_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_84_expected_validation.md -rename to dev/reports/pr_11_84_expected_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_85_validation.md b/dev/reports/pr_11_85_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_85_validation.md -rename to dev/reports/pr_11_85_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_88_expected_validation.md b/dev/reports/pr_11_88_expected_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_88_expected_validation.md -rename to dev/reports/pr_11_88_expected_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_88_validation.md b/dev/reports/pr_11_88_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_88_validation.md -rename to dev/reports/pr_11_88_validation.md -diff --git a/dev/docs_build/dev/reports/pr_11_89_asteroids_engine_render_ownership_report.md b/dev/reports/pr_11_89_asteroids_engine_render_ownership_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_89_asteroids_engine_render_ownership_report.md -rename to dev/reports/pr_11_89_asteroids_engine_render_ownership_report.md -diff --git a/dev/docs_build/dev/reports/pr_11_90_validation.md b/dev/reports/pr_11_90_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_11_90_validation.md -rename to dev/reports/pr_11_90_validation.md -diff --git a/dev/docs_build/dev/reports/pr_stack_summary.md b/dev/reports/pr_stack_summary.md -similarity index 100% -rename from dev/docs_build/dev/reports/pr_stack_summary.md -rename to dev/reports/pr_stack_summary.md -diff --git a/dev/docs_build/dev/reports/preset_default_removal_11_135.txt b/dev/reports/preset_default_removal_11_135.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preset_default_removal_11_135.txt -rename to dev/reports/preset_default_removal_11_135.txt -diff --git a/dev/docs_build/dev/reports/preset_path_removal_11_112.txt b/dev/reports/preset_path_removal_11_112.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preset_path_removal_11_112.txt -rename to dev/reports/preset_path_removal_11_112.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_real_root_path.md b/dev/reports/preview_generator_real_root_path.md -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_real_root_path.md -rename to dev/reports/preview_generator_real_root_path.md -diff --git a/dev/docs_build/dev/reports/preview_generator_repo_writer_retention.md b/dev/reports/preview_generator_repo_writer_retention.md -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_repo_writer_retention.md -rename to dev/reports/preview_generator_repo_writer_retention.md -diff --git a/dev/docs_build/dev/reports/preview_generator_session_repo_load.md b/dev/reports/preview_generator_session_repo_load.md -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_session_repo_load.md -rename to dev/reports/preview_generator_session_repo_load.md -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_accordion_abstraction.txt b/dev/reports/preview_generator_v2_accordion_abstraction.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_accordion_abstraction.txt -rename to dev/reports/preview_generator_v2_accordion_abstraction.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_accordion_consistency.txt b/dev/reports/preview_generator_v2_accordion_consistency.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_accordion_consistency.txt -rename to dev/reports/preview_generator_v2_accordion_consistency.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_accordion_edge_cases.txt b/dev/reports/preview_generator_v2_accordion_edge_cases.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_accordion_edge_cases.txt -rename to dev/reports/preview_generator_v2_accordion_edge_cases.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_app_logger_separation.txt b/dev/reports/preview_generator_v2_app_logger_separation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_app_logger_separation.txt -rename to dev/reports/preview_generator_v2_app_logger_separation.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_class_responsibilities.md b/dev/reports/preview_generator_v2_class_responsibilities.md -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_class_responsibilities.md -rename to dev/reports/preview_generator_v2_class_responsibilities.md -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_common_style_candidates.txt b/dev/reports/preview_generator_v2_common_style_candidates.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_common_style_candidates.txt -rename to dev/reports/preview_generator_v2_common_style_candidates.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_common_styles_applied.txt b/dev/reports/preview_generator_v2_common_styles_applied.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_common_styles_applied.txt -rename to dev/reports/preview_generator_v2_common_styles_applied.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_control_class_boundaries.txt b/dev/reports/preview_generator_v2_control_class_boundaries.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_control_class_boundaries.txt -rename to dev/reports/preview_generator_v2_control_class_boundaries.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_final_lock.txt b/dev/reports/preview_generator_v2_final_lock.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_final_lock.txt -rename to dev/reports/preview_generator_v2_final_lock.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_final_review.txt b/dev/reports/preview_generator_v2_final_review.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_final_review.txt -rename to dev/reports/preview_generator_v2_final_review.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_paths_accordion_collapse_fix.txt b/dev/reports/preview_generator_v2_paths_accordion_collapse_fix.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_paths_accordion_collapse_fix.txt -rename to dev/reports/preview_generator_v2_paths_accordion_collapse_fix.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_playwright_coverage.txt b/dev/reports/preview_generator_v2_playwright_coverage.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_playwright_coverage.txt -rename to dev/reports/preview_generator_v2_playwright_coverage.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_playwright_depth.txt b/dev/reports/preview_generator_v2_playwright_depth.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_playwright_depth.txt -rename to dev/reports/preview_generator_v2_playwright_depth.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_playwright_result.txt b/dev/reports/preview_generator_v2_playwright_result.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_playwright_result.txt -rename to dev/reports/preview_generator_v2_playwright_result.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_roadmap_update.txt b/dev/reports/preview_generator_v2_roadmap_update.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_roadmap_update.txt -rename to dev/reports/preview_generator_v2_roadmap_update.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_shared_dependency_audit.txt b/dev/reports/preview_generator_v2_shared_dependency_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_shared_dependency_audit.txt -rename to dev/reports/preview_generator_v2_shared_dependency_audit.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_shared_removed.txt b/dev/reports/preview_generator_v2_shared_removed.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_shared_removed.txt -rename to dev/reports/preview_generator_v2_shared_removed.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_status_accordion_restore.txt b/dev/reports/preview_generator_v2_status_accordion_restore.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_status_accordion_restore.txt -rename to dev/reports/preview_generator_v2_status_accordion_restore.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_v2_unexpected_changes_reverted.txt b/dev/reports/preview_generator_v2_unexpected_changes_reverted.txt -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_v2_unexpected_changes_reverted.txt -rename to dev/reports/preview_generator_v2_unexpected_changes_reverted.txt -diff --git a/dev/docs_build/dev/reports/preview_generator_write_path_logging.md b/dev/reports/preview_generator_write_path_logging.md -similarity index 100% -rename from dev/docs_build/dev/reports/preview_generator_write_path_logging.md -rename to dev/reports/preview_generator_write_path_logging.md -diff --git a/dev/docs_build/dev/reports/primary-navigation-order.md b/dev/reports/primary-navigation-order.md -similarity index 100% -rename from dev/docs_build/dev/reports/primary-navigation-order.md -rename to dev/reports/primary-navigation-order.md -diff --git a/dev/docs_build/dev/reports/project-journey-db-audit-and-usability-report.md b/dev/reports/project-journey-db-audit-and-usability-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-journey-db-audit-and-usability-report.md -rename to dev/reports/project-journey-db-audit-and-usability-report.md -diff --git a/dev/docs_build/dev/reports/project-journey-db-viewer-template-polish-report.md b/dev/reports/project-journey-db-viewer-template-polish-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-journey-db-viewer-template-polish-report.md -rename to dev/reports/project-journey-db-viewer-template-polish-report.md -diff --git a/dev/docs_build/dev/reports/project-journey-key-search-additem-polish-report.md b/dev/reports/project-journey-key-search-additem-polish-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-journey-key-search-additem-polish-report.md -rename to dev/reports/project-journey-key-search-additem-polish-report.md -diff --git a/dev/docs_build/dev/reports/project-journey-selection-counts-and-ownership-report.md b/dev/reports/project-journey-selection-counts-and-ownership-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-journey-selection-counts-and-ownership-report.md -rename to dev/reports/project-journey-selection-counts-and-ownership-report.md -diff --git a/dev/docs_build/dev/reports/project-journey-sort-and-skipped-status-report.md b/dev/reports/project-journey-sort-and-skipped-status-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-journey-sort-and-skipped-status-report.md -rename to dev/reports/project-journey-sort-and-skipped-status-report.md -diff --git a/dev/docs_build/dev/reports/project-journey-status-tiles-and-delete-polish-report.md b/dev/reports/project-journey-status-tiles-and-delete-polish-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-journey-status-tiles-and-delete-polish-report.md -rename to dev/reports/project-journey-status-tiles-and-delete-polish-report.md -diff --git a/dev/docs_build/dev/reports/project-journey-template-ssot-report.md b/dev/reports/project-journey-template-ssot-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-journey-template-ssot-report.md -rename to dev/reports/project-journey-template-ssot-report.md -diff --git a/dev/docs_build/dev/reports/project-journey-tool-v1-report.md b/dev/reports/project-journey-tool-v1-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-journey-tool-v1-report.md -rename to dev/reports/project-journey-tool-v1-report.md -diff --git a/dev/docs_build/dev/reports/project-journey-ulid-db-table-polish-report.md b/dev/reports/project-journey-ulid-db-table-polish-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-journey-ulid-db-table-polish-report.md -rename to dev/reports/project-journey-ulid-db-table-polish-report.md -diff --git a/dev/docs_build/dev/reports/project-member-role-model.md b/dev/reports/project-member-role-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-member-role-model.md -rename to dev/reports/project-member-role-model.md -diff --git a/dev/docs_build/dev/reports/project-progress-model.md b/dev/reports/project-progress-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-progress-model.md -rename to dev/reports/project-progress-model.md -diff --git a/dev/docs_build/dev/reports/project-purpose-model.md b/dev/reports/project-purpose-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-purpose-model.md -rename to dev/reports/project-purpose-model.md -diff --git a/dev/docs_build/dev/reports/project-workspace-button-style.md b/dev/reports/project-workspace-button-style.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-button-style.md -rename to dev/reports/project-workspace-button-style.md -diff --git a/dev/docs_build/dev/reports/project-workspace-contract.md b/dev/reports/project-workspace-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-contract.md -rename to dev/reports/project-workspace-contract.md -diff --git a/dev/docs_build/dev/reports/project-workspace-create-open-delete.md b/dev/reports/project-workspace-create-open-delete.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-create-open-delete.md -rename to dev/reports/project-workspace-create-open-delete.md -diff --git a/dev/docs_build/dev/reports/project-workspace-layout-cleanup.md b/dev/reports/project-workspace-layout-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-layout-cleanup.md -rename to dev/reports/project-workspace-layout-cleanup.md -diff --git a/dev/docs_build/dev/reports/project-workspace-mock-repository.md b/dev/reports/project-workspace-mock-repository.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-mock-repository.md -rename to dev/reports/project-workspace-mock-repository.md -diff --git a/dev/docs_build/dev/reports/project-workspace-msj-tests.md b/dev/reports/project-workspace-msj-tests.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-msj-tests.md -rename to dev/reports/project-workspace-msj-tests.md -diff --git a/dev/docs_build/dev/reports/project-workspace-open-project-state.md b/dev/reports/project-workspace-open-project-state.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-open-project-state.md -rename to dev/reports/project-workspace-open-project-state.md -diff --git a/dev/docs_build/dev/reports/project-workspace-panel-layout-polish.md b/dev/reports/project-workspace-panel-layout-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-panel-layout-polish.md -rename to dev/reports/project-workspace-panel-layout-polish.md -diff --git a/dev/docs_build/dev/reports/project-workspace-progress-panel.md b/dev/reports/project-workspace-progress-panel.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-progress-panel.md -rename to dev/reports/project-workspace-progress-panel.md -diff --git a/dev/docs_build/dev/reports/project-workspace-purpose-role-ui.md b/dev/reports/project-workspace-purpose-role-ui.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-purpose-role-ui.md -rename to dev/reports/project-workspace-purpose-role-ui.md -diff --git a/dev/docs_build/dev/reports/project-workspace-ready-for-game-design.md b/dev/reports/project-workspace-ready-for-game-design.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-ready-for-game-design.md -rename to dev/reports/project-workspace-ready-for-game-design.md -diff --git a/dev/docs_build/dev/reports/project-workspace-ready-gate.md b/dev/reports/project-workspace-ready-gate.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-ready-gate.md -rename to dev/reports/project-workspace-ready-gate.md -diff --git a/dev/docs_build/dev/reports/project-workspace-targeted-msj-coverage.md b/dev/reports/project-workspace-targeted-msj-coverage.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-targeted-msj-coverage.md -rename to dev/reports/project-workspace-targeted-msj-coverage.md -diff --git a/dev/docs_build/dev/reports/project-workspace-toolbox-integration.md b/dev/reports/project-workspace-toolbox-integration.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-toolbox-integration.md -rename to dev/reports/project-workspace-toolbox-integration.md -diff --git a/dev/docs_build/dev/reports/project-workspace-wide-layout.md b/dev/reports/project-workspace-wide-layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/project-workspace-wide-layout.md -rename to dev/reports/project-workspace-wide-layout.md -diff --git a/dev/docs_build/dev/reports/project_contract_tests_validation.md b/dev/reports/project_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/project_contract_tests_validation.md -rename to dev/reports/project_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/project_data_store_contract.md b/dev/reports/project_data_store_contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/project_data_store_contract.md -rename to dev/reports/project_data_store_contract.md -diff --git a/dev/docs_build/dev/reports/project_instructions_completion_contracts.txt b/dev/reports/project_instructions_completion_contracts.txt -similarity index 100% -rename from dev/docs_build/dev/reports/project_instructions_completion_contracts.txt -rename to dev/reports/project_instructions_completion_contracts.txt -diff --git a/dev/docs_build/dev/reports/project_instructions_dedup_cleanup.txt b/dev/reports/project_instructions_dedup_cleanup.txt -similarity index 100% -rename from dev/docs_build/dev/reports/project_instructions_dedup_cleanup.txt -rename to dev/reports/project_instructions_dedup_cleanup.txt -diff --git a/dev/docs_build/dev/reports/project_instructions_dod_playwright.txt b/dev/reports/project_instructions_dod_playwright.txt -similarity index 100% -rename from dev/docs_build/dev/reports/project_instructions_dod_playwright.txt -rename to dev/reports/project_instructions_dod_playwright.txt -diff --git a/dev/docs_build/dev/reports/project_instructions_final_gaps.txt b/dev/reports/project_instructions_final_gaps.txt -similarity index 100% -rename from dev/docs_build/dev/reports/project_instructions_final_gaps.txt -rename to dev/reports/project_instructions_final_gaps.txt -diff --git a/dev/docs_build/dev/reports/project_instructions_full_output.txt b/dev/reports/project_instructions_full_output.txt -similarity index 100% -rename from dev/docs_build/dev/reports/project_instructions_full_output.txt -rename to dev/reports/project_instructions_full_output.txt -diff --git a/dev/docs_build/dev/reports/project_instructions_organization.txt b/dev/reports/project_instructions_organization.txt -similarity index 100% -rename from dev/docs_build/dev/reports/project_instructions_organization.txt -rename to dev/reports/project_instructions_organization.txt -diff --git a/dev/docs_build/dev/reports/project_instructions_playwright_depth.txt b/dev/reports/project_instructions_playwright_depth.txt -similarity index 100% -rename from dev/docs_build/dev/reports/project_instructions_playwright_depth.txt -rename to dev/reports/project_instructions_playwright_depth.txt -diff --git a/dev/docs_build/dev/reports/project_lifecycle_model_validation.md b/dev/reports/project_lifecycle_model_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/project_lifecycle_model_validation.md -rename to dev/reports/project_lifecycle_model_validation.md -diff --git a/dev/docs_build/dev/reports/project_system_validation.txt b/dev/reports/project_system_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/project_system_validation.txt -rename to dev/reports/project_system_validation.txt -diff --git a/dev/docs_build/dev/reports/project_type_contract_tests_validation.md b/dev/reports/project_type_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/project_type_contract_tests_validation.md -rename to dev/reports/project_type_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/project_workspace_contract_rename_validation.md b/dev/reports/project_workspace_contract_rename_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/project_workspace_contract_rename_validation.md -rename to dev/reports/project_workspace_contract_rename_validation.md -diff --git a/dev/docs_build/dev/reports/project_workspace_governance_toolbox_modes_report.md b/dev/reports/project_workspace_governance_toolbox_modes_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/project_workspace_governance_toolbox_modes_report.md -rename to dev/reports/project_workspace_governance_toolbox_modes_report.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_contract_uat_validation.md b/dev/reports/projectworkspace_contract_uat_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_contract_uat_validation.md -rename to dev/reports/projectworkspace_contract_uat_validation.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_launch_boundary_validation.md b/dev/reports/projectworkspace_launch_boundary_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_launch_boundary_validation.md -rename to dev/reports/projectworkspace_launch_boundary_validation.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_lifecycle_validation.md b/dev/reports/projectworkspace_lifecycle_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_lifecycle_validation.md -rename to dev/reports/projectworkspace_lifecycle_validation.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_manifest_handoff_boundary_validation.md b/dev/reports/projectworkspace_manifest_handoff_boundary_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_manifest_handoff_boundary_validation.md -rename to dev/reports/projectworkspace_manifest_handoff_boundary_validation.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_migration_closeout.md b/dev/reports/projectworkspace_migration_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_migration_closeout.md -rename to dev/reports/projectworkspace_migration_closeout.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_recovery_audit.md b/dev/reports/projectworkspace_recovery_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_recovery_audit.md -rename to dev/reports/projectworkspace_recovery_audit.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_recovery_closeout.md b/dev/reports/projectworkspace_recovery_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_recovery_closeout.md -rename to dev/reports/projectworkspace_recovery_closeout.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_report_normalization.md b/dev/reports/projectworkspace_report_normalization.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_report_normalization.md -rename to dev/reports/projectworkspace_report_normalization.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_state_boundary_validation.md b/dev/reports/projectworkspace_state_boundary_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_state_boundary_validation.md -rename to dev/reports/projectworkspace_state_boundary_validation.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_terminology_alignment.md b/dev/reports/projectworkspace_terminology_alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_terminology_alignment.md -rename to dev/reports/projectworkspace_terminology_alignment.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_tool_compliance.md b/dev/reports/projectworkspace_tool_compliance.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_tool_compliance.md -rename to dev/reports/projectworkspace_tool_compliance.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_tool_registration_validation.md b/dev/reports/projectworkspace_tool_registration_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_tool_registration_validation.md -rename to dev/reports/projectworkspace_tool_registration_validation.md -diff --git a/dev/docs_build/dev/reports/projectworkspace_validation_boundaries.md b/dev/reports/projectworkspace_validation_boundaries.md -similarity index 100% -rename from dev/docs_build/dev/reports/projectworkspace_validation_boundaries.md -rename to dev/reports/projectworkspace_validation_boundaries.md -diff --git a/dev/docs_build/dev/reports/publish_contract_tests_validation.md b/dev/reports/publish_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/publish_contract_tests_validation.md -rename to dev/reports/publish_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/ready-for-first-tool-rebuild.md b/dev/reports/ready-for-first-tool-rebuild.md -similarity index 100% -rename from dev/docs_build/dev/reports/ready-for-first-tool-rebuild.md -rename to dev/reports/ready-for-first-tool-rebuild.md -diff --git a/dev/docs_build/dev/reports/recovery_antipattern_audit_from_20_1.md b/dev/reports/recovery_antipattern_audit_from_20_1.md -similarity index 100% -rename from dev/docs_build/dev/reports/recovery_antipattern_audit_from_20_1.md -rename to dev/reports/recovery_antipattern_audit_from_20_1.md -diff --git a/dev/docs_build/dev/reports/recovery_change_audit_from_20_1.md b/dev/reports/recovery_change_audit_from_20_1.md -similarity index 100% -rename from dev/docs_build/dev/reports/recovery_change_audit_from_20_1.md -rename to dev/reports/recovery_change_audit_from_20_1.md -diff --git a/dev/docs_build/dev/reports/recovery_file_risk_list_from_20_1.md b/dev/reports/recovery_file_risk_list_from_20_1.md -similarity index 100% -rename from dev/docs_build/dev/reports/recovery_file_risk_list_from_20_1.md -rename to dev/reports/recovery_file_risk_list_from_20_1.md -diff --git a/dev/docs_build/dev/reports/recovery_reset_decision_from_20_1.md b/dev/reports/recovery_reset_decision_from_20_1.md -similarity index 100% -rename from dev/docs_build/dev/reports/recovery_reset_decision_from_20_1.md -rename to dev/reports/recovery_reset_decision_from_20_1.md -diff --git a/dev/docs_build/dev/reports/recovery_status_gate.md b/dev/reports/recovery_status_gate.md -similarity index 100% -rename from dev/docs_build/dev/reports/recovery_status_gate.md -rename to dev/reports/recovery_status_gate.md -diff --git a/dev/docs_build/dev/reports/relationships_fixed_11_121.txt b/dev/reports/relationships_fixed_11_121.txt -similarity index 100% -rename from dev/docs_build/dev/reports/relationships_fixed_11_121.txt -rename to dev/reports/relationships_fixed_11_121.txt -diff --git a/dev/docs_build/dev/reports/relationships_removed_11_121.txt b/dev/reports/relationships_removed_11_121.txt -similarity index 100% -rename from dev/docs_build/dev/reports/relationships_removed_11_121.txt -rename to dev/reports/relationships_removed_11_121.txt -diff --git a/dev/docs_build/dev/reports/relationships_working_11_121.txt b/dev/reports/relationships_working_11_121.txt -similarity index 100% -rename from dev/docs_build/dev/reports/relationships_working_11_121.txt -rename to dev/reports/relationships_working_11_121.txt -diff --git a/dev/docs_build/dev/reports/release_contract_tests_validation.md b/dev/reports/release_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/release_contract_tests_validation.md -rename to dev/reports/release_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/remaining_cleanup_report.md b/dev/reports/remaining_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/remaining_cleanup_report.md -rename to dev/reports/remaining_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/remaining_mismatches_report.md b/dev/reports/remaining_mismatches_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/remaining_mismatches_report.md -rename to dev/reports/remaining_mismatches_report.md -diff --git a/dev/docs_build/dev/reports/remaining_monoliths_report.md b/dev/reports/remaining_monoliths_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/remaining_monoliths_report.md -rename to dev/reports/remaining_monoliths_report.md -diff --git a/dev/docs_build/dev/reports/remote_branch_review.md b/dev/reports/remote_branch_review.md -similarity index 100% -rename from dev/docs_build/dev/reports/remote_branch_review.md -rename to dev/reports/remote_branch_review.md -diff --git a/dev/docs_build/dev/reports/remove-static-api-fallbacks-report.md b/dev/reports/remove-static-api-fallbacks-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/remove-static-api-fallbacks-report.md -rename to dev/reports/remove-static-api-fallbacks-report.md -diff --git a/dev/docs_build/dev/reports/rename_audit.txt b/dev/reports/rename_audit.txt -similarity index 100% -rename from dev/docs_build/dev/reports/rename_audit.txt -rename to dev/reports/rename_audit.txt -diff --git a/dev/docs_build/dev/reports/renderer_toolhint_cleanup_11_119.txt b/dev/reports/renderer_toolhint_cleanup_11_119.txt -similarity index 100% -rename from dev/docs_build/dev/reports/renderer_toolhint_cleanup_11_119.txt -rename to dev/reports/renderer_toolhint_cleanup_11_119.txt -diff --git a/dev/docs_build/dev/reports/repair_or_report_summary_11_113.txt b/dev/reports/repair_or_report_summary_11_113.txt -similarity index 100% -rename from dev/docs_build/dev/reports/repair_or_report_summary_11_113.txt -rename to dev/reports/repair_or_report_summary_11_113.txt -diff --git a/dev/docs_build/dev/reports/replace_path_review_11_112.txt b/dev/reports/replace_path_review_11_112.txt -similarity index 100% -rename from dev/docs_build/dev/reports/replace_path_review_11_112.txt -rename to dev/reports/replace_path_review_11_112.txt -diff --git a/dev/docs_build/dev/reports/replaced_vector_tools_deprecation_report.md b/dev/reports/replaced_vector_tools_deprecation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/replaced_vector_tools_deprecation_report.md -rename to dev/reports/replaced_vector_tools_deprecation_report.md -diff --git a/dev/docs_build/dev/reports/repo_duplicate_file_content_audit.json b/dev/reports/repo_duplicate_file_content_audit.json -similarity index 100% -rename from dev/docs_build/dev/reports/repo_duplicate_file_content_audit.json -rename to dev/reports/repo_duplicate_file_content_audit.json -diff --git a/dev/docs_build/dev/reports/restore_snapshot_contract_rename_validation.md b/dev/reports/restore_snapshot_contract_rename_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/restore_snapshot_contract_rename_validation.md -rename to dev/reports/restore_snapshot_contract_rename_validation.md -diff --git a/dev/docs_build/dev/reports/restore_snapshot_contract_tests_validation.md b/dev/reports/restore_snapshot_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/restore_snapshot_contract_tests_validation.md -rename to dev/reports/restore_snapshot_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/retry_suppression_report.md b/dev/reports/retry_suppression_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/retry_suppression_report.md -rename to dev/reports/retry_suppression_report.md -diff --git a/dev/docs_build/dev/reports/review_artifact_handling_report.md b/dev/reports/review_artifact_handling_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/review_artifact_handling_report.md -rename to dev/reports/review_artifact_handling_report.md -diff --git a/dev/docs_build/dev/reports/review_rating_contract_tests_validation.md b/dev/reports/review_rating_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/review_rating_contract_tests_validation.md -rename to dev/reports/review_rating_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/roadmap_finalization_report.txt b/dev/reports/roadmap_finalization_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/roadmap_finalization_report.txt -rename to dev/reports/roadmap_finalization_report.txt -diff --git a/dev/docs_build/dev/reports/roadmap_lock_report.txt b/dev/reports/roadmap_lock_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/roadmap_lock_report.txt -rename to dev/reports/roadmap_lock_report.txt -diff --git a/dev/docs_build/dev/reports/roadmap_lock_validation.txt b/dev/reports/roadmap_lock_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/roadmap_lock_validation.txt -rename to dev/reports/roadmap_lock_validation.txt -diff --git a/dev/docs_build/dev/reports/roadmap_status_transition_matrix.txt b/dev/reports/roadmap_status_transition_matrix.txt -similarity index 100% -rename from dev/docs_build/dev/reports/roadmap_status_transition_matrix.txt -rename to dev/reports/roadmap_status_transition_matrix.txt -diff --git a/dev/docs_build/dev/reports/rollback_preserved_items.md b/dev/reports/rollback_preserved_items.md -similarity index 100% -rename from dev/docs_build/dev/reports/rollback_preserved_items.md -rename to dev/reports/rollback_preserved_items.md -diff --git a/dev/docs_build/dev/reports/rollback_removed_items.md b/dev/reports/rollback_removed_items.md -similarity index 100% -rename from dev/docs_build/dev/reports/rollback_removed_items.md -rename to dev/reports/rollback_removed_items.md -diff --git a/dev/docs_build/dev/reports/root_account_pages_migration_validation.md b/dev/reports/root_account_pages_migration_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_account_pages_migration_validation.md -rename to dev/reports/root_account_pages_migration_validation.md -diff --git a/dev/docs_build/dev/reports/root_admin_original_parity_recovery_validation.md b/dev/reports/root_admin_original_parity_recovery_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_admin_original_parity_recovery_validation.md -rename to dev/reports/root_admin_original_parity_recovery_validation.md -diff --git a/dev/docs_build/dev/reports/root_admin_pages_migration_validation.md b/dev/reports/root_admin_pages_migration_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_admin_pages_migration_validation.md -rename to dev/reports/root_admin_pages_migration_validation.md -diff --git a/dev/docs_build/dev/reports/root_admin_specific_page_replacement_validation.md b/dev/reports/root_admin_specific_page_replacement_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_admin_specific_page_replacement_validation.md -rename to dev/reports/root_admin_specific_page_replacement_validation.md -diff --git a/dev/docs_build/dev/reports/root_admin_tools_parity_recovery_validation.md b/dev/reports/root_admin_tools_parity_recovery_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_admin_tools_parity_recovery_validation.md -rename to dev/reports/root_admin_tools_parity_recovery_validation.md -diff --git a/dev/docs_build/dev/reports/root_asset_reference_cleanup_report.md b/dev/reports/root_asset_reference_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_asset_reference_cleanup_report.md -rename to dev/reports/root_asset_reference_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/root_company_pages_migration_validation.md b/dev/reports/root_company_pages_migration_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_company_pages_migration_validation.md -rename to dev/reports/root_company_pages_migration_validation.md -diff --git a/dev/docs_build/dev/reports/root_first_tool_page_migration_validation.md b/dev/reports/root_first_tool_page_migration_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_first_tool_page_migration_validation.md -rename to dev/reports/root_first_tool_page_migration_validation.md -diff --git a/dev/docs_build/dev/reports/root_gamefoundrystudio_css_copy_validation.md b/dev/reports/root_gamefoundrystudio_css_copy_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_gamefoundrystudio_css_copy_validation.md -rename to dev/reports/root_gamefoundrystudio_css_copy_validation.md -diff --git a/dev/docs_build/dev/reports/root_ia_lowercase_validation.txt b/dev/reports/root_ia_lowercase_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/root_ia_lowercase_validation.txt -rename to dev/reports/root_ia_lowercase_validation.txt -diff --git a/dev/docs_build/dev/reports/root_index_from_gamefoundrystudio_validation.md b/dev/reports/root_index_from_gamefoundrystudio_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_index_from_gamefoundrystudio_validation.md -rename to dev/reports/root_index_from_gamefoundrystudio_validation.md -diff --git a/dev/docs_build/dev/reports/root_migration_closeout_bundle_report.md b/dev/reports/root_migration_closeout_bundle_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_migration_closeout_bundle_report.md -rename to dev/reports/root_migration_closeout_bundle_report.md -diff --git a/dev/docs_build/dev/reports/root_migration_path_recovery_validation.md b/dev/reports/root_migration_path_recovery_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_migration_path_recovery_validation.md -rename to dev/reports/root_migration_path_recovery_validation.md -diff --git a/dev/docs_build/dev/reports/root_migration_remaining_work_report.md b/dev/reports/root_migration_remaining_work_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_migration_remaining_work_report.md -rename to dev/reports/root_migration_remaining_work_report.md -diff --git a/dev/docs_build/dev/reports/root_structure_inventory_closeout_report.md b/dev/reports/root_structure_inventory_closeout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_structure_inventory_closeout_report.md -rename to dev/reports/root_structure_inventory_closeout_report.md -diff --git a/dev/docs_build/dev/reports/root_structure_samples_tools_theme_license_report.md b/dev/reports/root_structure_samples_tools_theme_license_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_structure_samples_tools_theme_license_report.md -rename to dev/reports/root_structure_samples_tools_theme_license_report.md -diff --git a/dev/docs_build/dev/reports/root_tool_content_mapping_validation.md b/dev/reports/root_tool_content_mapping_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_tool_content_mapping_validation.md -rename to dev/reports/root_tool_content_mapping_validation.md -diff --git a/dev/docs_build/dev/reports/root_tools_index_group_outline_validation.md b/dev/reports/root_tools_index_group_outline_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_tools_index_group_outline_validation.md -rename to dev/reports/root_tools_index_group_outline_validation.md -diff --git a/dev/docs_build/dev/reports/root_tools_index_migration_validation.md b/dev/reports/root_tools_index_migration_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_tools_index_migration_validation.md -rename to dev/reports/root_tools_index_migration_validation.md -diff --git a/dev/docs_build/dev/reports/root_tools_index_parity_lock_validation.md b/dev/reports/root_tools_index_parity_lock_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_tools_index_parity_lock_validation.md -rename to dev/reports/root_tools_index_parity_lock_validation.md -diff --git a/dev/docs_build/dev/reports/root_tools_index_sort_group_validation.md b/dev/reports/root_tools_index_sort_group_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_tools_index_sort_group_validation.md -rename to dev/reports/root_tools_index_sort_group_validation.md -diff --git a/dev/docs_build/dev/reports/root_tools_original_parity_recovery_validation.md b/dev/reports/root_tools_original_parity_recovery_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_tools_original_parity_recovery_validation.md -rename to dev/reports/root_tools_original_parity_recovery_validation.md -diff --git a/dev/docs_build/dev/reports/root_tools_pages_batch_migration_validation.md b/dev/reports/root_tools_pages_batch_migration_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_tools_pages_batch_migration_validation.md -rename to dev/reports/root_tools_pages_batch_migration_validation.md -diff --git a/dev/docs_build/dev/reports/root_tree_cleanup_review_report.md b/dev/reports/root_tree_cleanup_review_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/root_tree_cleanup_review_report.md -rename to dev/reports/root_tree_cleanup_review_report.md -diff --git a/dev/docs_build/dev/reports/rule_system_foundation.md b/dev/reports/rule_system_foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/rule_system_foundation.md -rename to dev/reports/rule_system_foundation.md -diff --git a/dev/docs_build/dev/reports/runtime_action_system.md b/dev/reports/runtime_action_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_action_system.md -rename to dev/reports/runtime_action_system.md -diff --git a/dev/docs_build/dev/reports/runtime_assertions_11_133.txt b/dev/reports/runtime_assertions_11_133.txt -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_assertions_11_133.txt -rename to dev/reports/runtime_assertions_11_133.txt -diff --git a/dev/docs_build/dev/reports/runtime_behavior_composition.md b/dev/reports/runtime_behavior_composition.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_behavior_composition.md -rename to dev/reports/runtime_behavior_composition.md -diff --git a/dev/docs_build/dev/reports/runtime_behavior_composition_model.md b/dev/reports/runtime_behavior_composition_model.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_behavior_composition_model.md -rename to dev/reports/runtime_behavior_composition_model.md -diff --git a/dev/docs_build/dev/reports/runtime_collision_processing.md b/dev/reports/runtime_collision_processing.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_collision_processing.md -rename to dev/reports/runtime_collision_processing.md -diff --git a/dev/docs_build/dev/reports/runtime_condition_system.md b/dev/reports/runtime_condition_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_condition_system.md -rename to dev/reports/runtime_condition_system.md -diff --git a/dev/docs_build/dev/reports/runtime_config_model_closeout.md b/dev/reports/runtime_config_model_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_config_model_closeout.md -rename to dev/reports/runtime_config_model_closeout.md -diff --git a/dev/docs_build/dev/reports/runtime_contract_enforcement_11_108.txt b/dev/reports/runtime_contract_enforcement_11_108.txt -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_contract_enforcement_11_108.txt -rename to dev/reports/runtime_contract_enforcement_11_108.txt -diff --git a/dev/docs_build/dev/reports/runtime_contract_lock_11_137.txt b/dev/reports/runtime_contract_lock_11_137.txt -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_contract_lock_11_137.txt -rename to dev/reports/runtime_contract_lock_11_137.txt -diff --git a/dev/docs_build/dev/reports/runtime_cooldown_processing.md b/dev/reports/runtime_cooldown_processing.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_cooldown_processing.md -rename to dev/reports/runtime_cooldown_processing.md -diff --git a/dev/docs_build/dev/reports/runtime_damage_processing.md b/dev/reports/runtime_damage_processing.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_damage_processing.md -rename to dev/reports/runtime_damage_processing.md -diff --git a/dev/docs_build/dev/reports/runtime_determinism_validation.md b/dev/reports/runtime_determinism_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_determinism_validation.md -rename to dev/reports/runtime_determinism_validation.md -diff --git a/dev/docs_build/dev/reports/runtime_engine_closeout.md b/dev/reports/runtime_engine_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_engine_closeout.md -rename to dev/reports/runtime_engine_closeout.md -diff --git a/dev/docs_build/dev/reports/runtime_environment_effects.md b/dev/reports/runtime_environment_effects.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_environment_effects.md -rename to dev/reports/runtime_environment_effects.md -diff --git a/dev/docs_build/dev/reports/runtime_environment_force_boundary.md b/dev/reports/runtime_environment_force_boundary.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_environment_force_boundary.md -rename to dev/reports/runtime_environment_force_boundary.md -diff --git a/dev/docs_build/dev/reports/runtime_environment_force_instantiation.md b/dev/reports/runtime_environment_force_instantiation.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_environment_force_instantiation.md -rename to dev/reports/runtime_environment_force_instantiation.md -diff --git a/dev/docs_build/dev/reports/runtime_error_reporting.md b/dev/reports/runtime_error_reporting.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_error_reporting.md -rename to dev/reports/runtime_error_reporting.md -diff --git a/dev/docs_build/dev/reports/runtime_event_system.md b/dev/reports/runtime_event_system.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_event_system.md -rename to dev/reports/runtime_event_system.md -diff --git a/dev/docs_build/dev/reports/runtime_game_rule_closeout.md b/dev/reports/runtime_game_rule_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_game_rule_closeout.md -rename to dev/reports/runtime_game_rule_closeout.md -diff --git a/dev/docs_build/dev/reports/runtime_gameplay_loop_closeout.md b/dev/reports/runtime_gameplay_loop_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_gameplay_loop_closeout.md -rename to dev/reports/runtime_gameplay_loop_closeout.md -diff --git a/dev/docs_build/dev/reports/runtime_health_model.md b/dev/reports/runtime_health_model.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_health_model.md -rename to dev/reports/runtime_health_model.md -diff --git a/dev/docs_build/dev/reports/runtime_input_pipeline.md b/dev/reports/runtime_input_pipeline.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_input_pipeline.md -rename to dev/reports/runtime_input_pipeline.md -diff --git a/dev/docs_build/dev/reports/runtime_lives_and_respawn.md b/dev/reports/runtime_lives_and_respawn.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_lives_and_respawn.md -rename to dev/reports/runtime_lives_and_respawn.md -diff --git a/dev/docs_build/dev/reports/runtime_loader_slice_closeout.md b/dev/reports/runtime_loader_slice_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_loader_slice_closeout.md -rename to dev/reports/runtime_loader_slice_closeout.md -diff --git a/dev/docs_build/dev/reports/runtime_loader_validation.md b/dev/reports/runtime_loader_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_loader_validation.md -rename to dev/reports/runtime_loader_validation.md -diff --git a/dev/docs_build/dev/reports/runtime_manifest_fixture_hardening.md b/dev/reports/runtime_manifest_fixture_hardening.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_manifest_fixture_hardening.md -rename to dev/reports/runtime_manifest_fixture_hardening.md -diff --git a/dev/docs_build/dev/reports/runtime_manifest_parser_slice.md b/dev/reports/runtime_manifest_parser_slice.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_manifest_parser_slice.md -rename to dev/reports/runtime_manifest_parser_slice.md -diff --git a/dev/docs_build/dev/reports/runtime_movement_processing.md b/dev/reports/runtime_movement_processing.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_movement_processing.md -rename to dev/reports/runtime_movement_processing.md -diff --git a/dev/docs_build/dev/reports/runtime_multi_scene_loading.md b/dev/reports/runtime_multi_scene_loading.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_multi_scene_loading.md -rename to dev/reports/runtime_multi_scene_loading.md -diff --git a/dev/docs_build/dev/reports/runtime_object_capability_boundary.md b/dev/reports/runtime_object_capability_boundary.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_object_capability_boundary.md -rename to dev/reports/runtime_object_capability_boundary.md -diff --git a/dev/docs_build/dev/reports/runtime_object_default_rejection.md b/dev/reports/runtime_object_default_rejection.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_object_default_rejection.md -rename to dev/reports/runtime_object_default_rejection.md -diff --git a/dev/docs_build/dev/reports/runtime_object_definition_reader.md b/dev/reports/runtime_object_definition_reader.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_object_definition_reader.md -rename to dev/reports/runtime_object_definition_reader.md -diff --git a/dev/docs_build/dev/reports/runtime_object_instantiation.md b/dev/reports/runtime_object_instantiation.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_object_instantiation.md -rename to dev/reports/runtime_object_instantiation.md -diff --git a/dev/docs_build/dev/reports/runtime_object_record_factory.md b/dev/reports/runtime_object_record_factory.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_object_record_factory.md -rename to dev/reports/runtime_object_record_factory.md -diff --git a/dev/docs_build/dev/reports/runtime_object_record_validation.md b/dev/reports/runtime_object_record_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_object_record_validation.md -rename to dev/reports/runtime_object_record_validation.md -diff --git a/dev/docs_build/dev/reports/runtime_object_slice_closeout.md b/dev/reports/runtime_object_slice_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_object_slice_closeout.md -rename to dev/reports/runtime_object_slice_closeout.md -diff --git a/dev/docs_build/dev/reports/runtime_object_type_validation.md b/dev/reports/runtime_object_type_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_object_type_validation.md -rename to dev/reports/runtime_object_type_validation.md -diff --git a/dev/docs_build/dev/reports/runtime_outcome_processing.md b/dev/reports/runtime_outcome_processing.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_outcome_processing.md -rename to dev/reports/runtime_outcome_processing.md -diff --git a/dev/docs_build/dev/reports/runtime_playable_loop.md b/dev/reports/runtime_playable_loop.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_playable_loop.md -rename to dev/reports/runtime_playable_loop.md -diff --git a/dev/docs_build/dev/reports/runtime_playable_scene_uat.md b/dev/reports/runtime_playable_scene_uat.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_playable_scene_uat.md -rename to dev/reports/runtime_playable_scene_uat.md -diff --git a/dev/docs_build/dev/reports/runtime_render_pipeline.md b/dev/reports/runtime_render_pipeline.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_render_pipeline.md -rename to dev/reports/runtime_render_pipeline.md -diff --git a/dev/docs_build/dev/reports/runtime_rendering_bootstrap.md b/dev/reports/runtime_rendering_bootstrap.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_rendering_bootstrap.md -rename to dev/reports/runtime_rendering_bootstrap.md -diff --git a/dev/docs_build/dev/reports/runtime_rule_attachment.md b/dev/reports/runtime_rule_attachment.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_rule_attachment.md -rename to dev/reports/runtime_rule_attachment.md -diff --git a/dev/docs_build/dev/reports/runtime_rule_definition_reader.md b/dev/reports/runtime_rule_definition_reader.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_rule_definition_reader.md -rename to dev/reports/runtime_rule_definition_reader.md -diff --git a/dev/docs_build/dev/reports/runtime_scene_definition_support.md b/dev/reports/runtime_scene_definition_support.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_scene_definition_support.md -rename to dev/reports/runtime_scene_definition_support.md -diff --git a/dev/docs_build/dev/reports/runtime_schema_boundary_11_127.txt b/dev/reports/runtime_schema_boundary_11_127.txt -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_schema_boundary_11_127.txt -rename to dev/reports/runtime_schema_boundary_11_127.txt -diff --git a/dev/docs_build/dev/reports/runtime_scoring_and_state_processing.md b/dev/reports/runtime_scoring_and_state_processing.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_scoring_and_state_processing.md -rename to dev/reports/runtime_scoring_and_state_processing.md -diff --git a/dev/docs_build/dev/reports/runtime_spawn_despawn_processing.md b/dev/reports/runtime_spawn_despawn_processing.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_spawn_despawn_processing.md -rename to dev/reports/runtime_spawn_despawn_processing.md -diff --git a/dev/docs_build/dev/reports/runtime_terrain_effects.md b/dev/reports/runtime_terrain_effects.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_terrain_effects.md -rename to dev/reports/runtime_terrain_effects.md -diff --git a/dev/docs_build/dev/reports/runtime_terrain_material_boundary.md b/dev/reports/runtime_terrain_material_boundary.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_terrain_material_boundary.md -rename to dev/reports/runtime_terrain_material_boundary.md -diff --git a/dev/docs_build/dev/reports/runtime_terrain_material_instantiation.md b/dev/reports/runtime_terrain_material_instantiation.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_terrain_material_instantiation.md -rename to dev/reports/runtime_terrain_material_instantiation.md -diff --git a/dev/docs_build/dev/reports/runtime_tick_loop.md b/dev/reports/runtime_tick_loop.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_tick_loop.md -rename to dev/reports/runtime_tick_loop.md -diff --git a/dev/docs_build/dev/reports/runtime_trigger_processing.md b/dev/reports/runtime_trigger_processing.md -similarity index 100% -rename from dev/docs_build/dev/reports/runtime_trigger_processing.md -rename to dev/reports/runtime_trigger_processing.md -diff --git a/dev/docs_build/dev/reports/sample_1902_direct_payload_fix_11_147.txt b/dev/reports/sample_1902_direct_payload_fix_11_147.txt -similarity index 100% -rename from dev/docs_build/dev/reports/sample_1902_direct_payload_fix_11_147.txt -rename to dev/reports/sample_1902_direct_payload_fix_11_147.txt -diff --git a/dev/docs_build/dev/reports/sample_1902_workspace_manifest_launch_11_146.txt b/dev/reports/sample_1902_workspace_manifest_launch_11_146.txt -similarity index 100% -rename from dev/docs_build/dev/reports/sample_1902_workspace_manifest_launch_11_146.txt -rename to dev/reports/sample_1902_workspace_manifest_launch_11_146.txt -diff --git a/dev/docs_build/dev/reports/sample_json_js_reference_audit.csv b/dev/reports/sample_json_js_reference_audit.csv -similarity index 100% -rename from dev/docs_build/dev/reports/sample_json_js_reference_audit.csv -rename to dev/reports/sample_json_js_reference_audit.csv -diff --git a/dev/docs_build/dev/reports/sample_json_js_reference_audit.pr11_46.csv b/dev/reports/sample_json_js_reference_audit.pr11_46.csv -similarity index 100% -rename from dev/docs_build/dev/reports/sample_json_js_reference_audit.pr11_46.csv -rename to dev/reports/sample_json_js_reference_audit.pr11_46.csv -diff --git a/dev/docs_build/dev/reports/sample_json_js_reference_audit.pr_upgrade.csv b/dev/reports/sample_json_js_reference_audit.pr_upgrade.csv -similarity index 100% -rename from dev/docs_build/dev/reports/sample_json_js_reference_audit.pr_upgrade.csv -rename to dev/reports/sample_json_js_reference_audit.pr_upgrade.csv -diff --git a/dev/docs_build/dev/reports/sample_json_lockdown_audit.csv b/dev/reports/sample_json_lockdown_audit.csv -similarity index 100% -rename from dev/docs_build/dev/reports/sample_json_lockdown_audit.csv -rename to dev/reports/sample_json_lockdown_audit.csv -diff --git a/dev/docs_build/dev/reports/sample_json_schema_validation.csv b/dev/reports/sample_json_schema_validation.csv -similarity index 100% -rename from dev/docs_build/dev/reports/sample_json_schema_validation.csv -rename to dev/reports/sample_json_schema_validation.csv -diff --git a/dev/docs_build/dev/reports/sample_metadata_ssot_11_119.txt b/dev/reports/sample_metadata_ssot_11_119.txt -similarity index 100% -rename from dev/docs_build/dev/reports/sample_metadata_ssot_11_119.txt -rename to dev/reports/sample_metadata_ssot_11_119.txt -diff --git a/dev/docs_build/dev/reports/sample_rebuild_authoritative_surfaces.md b/dev/reports/sample_rebuild_authoritative_surfaces.md -similarity index 100% -rename from dev/docs_build/dev/reports/sample_rebuild_authoritative_surfaces.md -rename to dev/reports/sample_rebuild_authoritative_surfaces.md -diff --git a/dev/docs_build/dev/reports/sample_rebuild_execution_readiness.md b/dev/reports/sample_rebuild_execution_readiness.md -similarity index 100% -rename from dev/docs_build/dev/reports/sample_rebuild_execution_readiness.md -rename to dev/reports/sample_rebuild_execution_readiness.md -diff --git a/dev/docs_build/dev/reports/sample_rebuild_inventory.md b/dev/reports/sample_rebuild_inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/sample_rebuild_inventory.md -rename to dev/reports/sample_rebuild_inventory.md -diff --git a/dev/docs_build/dev/reports/sample_rebuild_planning_closeout.md b/dev/reports/sample_rebuild_planning_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/sample_rebuild_planning_closeout.md -rename to dev/reports/sample_rebuild_planning_closeout.md -diff --git a/dev/docs_build/dev/reports/sample_rebuild_validation_lane.md b/dev/reports/sample_rebuild_validation_lane.md -similarity index 100% -rename from dev/docs_build/dev/reports/sample_rebuild_validation_lane.md -rename to dev/reports/sample_rebuild_validation_lane.md -diff --git a/dev/docs_build/dev/reports/sample_rebuild_wave_1_scope.md b/dev/reports/sample_rebuild_wave_1_scope.md -similarity index 100% -rename from dev/docs_build/dev/reports/sample_rebuild_wave_1_scope.md -rename to dev/reports/sample_rebuild_wave_1_scope.md -diff --git a/dev/docs_build/dev/reports/sample_rebuild_wave_1_targets.md b/dev/reports/sample_rebuild_wave_1_targets.md -similarity index 100% -rename from dev/docs_build/dev/reports/sample_rebuild_wave_1_targets.md -rename to dev/reports/sample_rebuild_wave_1_targets.md -diff --git a/dev/docs_build/dev/reports/sample_schema_dependency_map.md b/dev/reports/sample_schema_dependency_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/sample_schema_dependency_map.md -rename to dev/reports/sample_schema_dependency_map.md -diff --git a/dev/docs_build/dev/reports/sample_schema_discovery.md b/dev/reports/sample_schema_discovery.md -similarity index 100% -rename from dev/docs_build/dev/reports/sample_schema_discovery.md -rename to dev/reports/sample_schema_discovery.md -diff --git a/dev/docs_build/dev/reports/sample_schema_target_plan.md b/dev/reports/sample_schema_target_plan.md -similarity index 100% -rename from dev/docs_build/dev/reports/sample_schema_target_plan.md -rename to dev/reports/sample_schema_target_plan.md -diff --git a/dev/docs_build/dev/reports/sample_tile_bad_links_removed_11_118.txt b/dev/reports/sample_tile_bad_links_removed_11_118.txt -similarity index 100% -rename from dev/docs_build/dev/reports/sample_tile_bad_links_removed_11_118.txt -rename to dev/reports/sample_tile_bad_links_removed_11_118.txt -diff --git a/dev/docs_build/dev/reports/sample_tile_link_ssot_11_118.txt b/dev/reports/sample_tile_link_ssot_11_118.txt -similarity index 100% -rename from dev/docs_build/dev/reports/sample_tile_link_ssot_11_118.txt -rename to dev/reports/sample_tile_link_ssot_11_118.txt -diff --git a/dev/docs_build/dev/reports/sample_tool_relationship_reconciliation_11_120.txt b/dev/reports/sample_tool_relationship_reconciliation_11_120.txt -similarity index 100% -rename from dev/docs_build/dev/reports/sample_tool_relationship_reconciliation_11_120.txt -rename to dev/reports/sample_tool_relationship_reconciliation_11_120.txt -diff --git a/dev/docs_build/dev/reports/sample_tool_ssot_after_11_120.txt b/dev/reports/sample_tool_ssot_after_11_120.txt -similarity index 100% -rename from dev/docs_build/dev/reports/sample_tool_ssot_after_11_120.txt -rename to dev/reports/sample_tool_ssot_after_11_120.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_10_summary.txt b/dev/reports/samples2tools_batch_10_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_10_summary.txt -rename to dev/reports/samples2tools_batch_10_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_10_validation.txt b/dev/reports/samples2tools_batch_10_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_10_validation.txt -rename to dev/reports/samples2tools_batch_10_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_11_summary.txt b/dev/reports/samples2tools_batch_11_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_11_summary.txt -rename to dev/reports/samples2tools_batch_11_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_11_validation.txt b/dev/reports/samples2tools_batch_11_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_11_validation.txt -rename to dev/reports/samples2tools_batch_11_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_12_summary.txt b/dev/reports/samples2tools_batch_12_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_12_summary.txt -rename to dev/reports/samples2tools_batch_12_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_12_validation.txt b/dev/reports/samples2tools_batch_12_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_12_validation.txt -rename to dev/reports/samples2tools_batch_12_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_13_summary.txt b/dev/reports/samples2tools_batch_13_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_13_summary.txt -rename to dev/reports/samples2tools_batch_13_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_13_validation.txt b/dev/reports/samples2tools_batch_13_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_13_validation.txt -rename to dev/reports/samples2tools_batch_13_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_14_summary.txt b/dev/reports/samples2tools_batch_14_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_14_summary.txt -rename to dev/reports/samples2tools_batch_14_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_14_validation.txt b/dev/reports/samples2tools_batch_14_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_14_validation.txt -rename to dev/reports/samples2tools_batch_14_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_15_summary.txt b/dev/reports/samples2tools_batch_15_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_15_summary.txt -rename to dev/reports/samples2tools_batch_15_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_15_validation.txt b/dev/reports/samples2tools_batch_15_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_15_validation.txt -rename to dev/reports/samples2tools_batch_15_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_16_summary.txt b/dev/reports/samples2tools_batch_16_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_16_summary.txt -rename to dev/reports/samples2tools_batch_16_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_16_validation.txt b/dev/reports/samples2tools_batch_16_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_16_validation.txt -rename to dev/reports/samples2tools_batch_16_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_17_summary.txt b/dev/reports/samples2tools_batch_17_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_17_summary.txt -rename to dev/reports/samples2tools_batch_17_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_17_validation.txt b/dev/reports/samples2tools_batch_17_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_17_validation.txt -rename to dev/reports/samples2tools_batch_17_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_18_summary.txt b/dev/reports/samples2tools_batch_18_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_18_summary.txt -rename to dev/reports/samples2tools_batch_18_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_18_validation.txt b/dev/reports/samples2tools_batch_18_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_18_validation.txt -rename to dev/reports/samples2tools_batch_18_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_19_summary.txt b/dev/reports/samples2tools_batch_19_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_19_summary.txt -rename to dev/reports/samples2tools_batch_19_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_19_validation.txt b/dev/reports/samples2tools_batch_19_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_19_validation.txt -rename to dev/reports/samples2tools_batch_19_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_1_summary.txt b/dev/reports/samples2tools_batch_1_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_1_summary.txt -rename to dev/reports/samples2tools_batch_1_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_1_validation.txt b/dev/reports/samples2tools_batch_1_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_1_validation.txt -rename to dev/reports/samples2tools_batch_1_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_20_summary.txt b/dev/reports/samples2tools_batch_20_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_20_summary.txt -rename to dev/reports/samples2tools_batch_20_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_20_validation.txt b/dev/reports/samples2tools_batch_20_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_20_validation.txt -rename to dev/reports/samples2tools_batch_20_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_21_summary.txt b/dev/reports/samples2tools_batch_21_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_21_summary.txt -rename to dev/reports/samples2tools_batch_21_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_22_summary.txt b/dev/reports/samples2tools_batch_22_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_22_summary.txt -rename to dev/reports/samples2tools_batch_22_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_22_validation.txt b/dev/reports/samples2tools_batch_22_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_22_validation.txt -rename to dev/reports/samples2tools_batch_22_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_23_validation.txt b/dev/reports/samples2tools_batch_23_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_23_validation.txt -rename to dev/reports/samples2tools_batch_23_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_24_validation.txt b/dev/reports/samples2tools_batch_24_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_24_validation.txt -rename to dev/reports/samples2tools_batch_24_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_25_validation.txt b/dev/reports/samples2tools_batch_25_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_25_validation.txt -rename to dev/reports/samples2tools_batch_25_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_26_validation.txt b/dev/reports/samples2tools_batch_26_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_26_validation.txt -rename to dev/reports/samples2tools_batch_26_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_27_validation.txt b/dev/reports/samples2tools_batch_27_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_27_validation.txt -rename to dev/reports/samples2tools_batch_27_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_28_validation.txt b/dev/reports/samples2tools_batch_28_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_28_validation.txt -rename to dev/reports/samples2tools_batch_28_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_29_summary.txt b/dev/reports/samples2tools_batch_29_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_29_summary.txt -rename to dev/reports/samples2tools_batch_29_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_29_validation.txt b/dev/reports/samples2tools_batch_29_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_29_validation.txt -rename to dev/reports/samples2tools_batch_29_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_2_summary.txt b/dev/reports/samples2tools_batch_2_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_2_summary.txt -rename to dev/reports/samples2tools_batch_2_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_2_validation.txt b/dev/reports/samples2tools_batch_2_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_2_validation.txt -rename to dev/reports/samples2tools_batch_2_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_30_summary.txt b/dev/reports/samples2tools_batch_30_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_30_summary.txt -rename to dev/reports/samples2tools_batch_30_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_30_validation.txt b/dev/reports/samples2tools_batch_30_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_30_validation.txt -rename to dev/reports/samples2tools_batch_30_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_31_summary.txt b/dev/reports/samples2tools_batch_31_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_31_summary.txt -rename to dev/reports/samples2tools_batch_31_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_31_validation.txt b/dev/reports/samples2tools_batch_31_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_31_validation.txt -rename to dev/reports/samples2tools_batch_31_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_32_summary.txt b/dev/reports/samples2tools_batch_32_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_32_summary.txt -rename to dev/reports/samples2tools_batch_32_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_32_validation.txt b/dev/reports/samples2tools_batch_32_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_32_validation.txt -rename to dev/reports/samples2tools_batch_32_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_33_summary.txt b/dev/reports/samples2tools_batch_33_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_33_summary.txt -rename to dev/reports/samples2tools_batch_33_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_33_validation.txt b/dev/reports/samples2tools_batch_33_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_33_validation.txt -rename to dev/reports/samples2tools_batch_33_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_34_summary.txt b/dev/reports/samples2tools_batch_34_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_34_summary.txt -rename to dev/reports/samples2tools_batch_34_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_34_validation.txt b/dev/reports/samples2tools_batch_34_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_34_validation.txt -rename to dev/reports/samples2tools_batch_34_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_35_summary.txt b/dev/reports/samples2tools_batch_35_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_35_summary.txt -rename to dev/reports/samples2tools_batch_35_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_35_validation.txt b/dev/reports/samples2tools_batch_35_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_35_validation.txt -rename to dev/reports/samples2tools_batch_35_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_36_summary.txt b/dev/reports/samples2tools_batch_36_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_36_summary.txt -rename to dev/reports/samples2tools_batch_36_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_36_validation.txt b/dev/reports/samples2tools_batch_36_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_36_validation.txt -rename to dev/reports/samples2tools_batch_36_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_37_summary.txt b/dev/reports/samples2tools_batch_37_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_37_summary.txt -rename to dev/reports/samples2tools_batch_37_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_37_validation.txt b/dev/reports/samples2tools_batch_37_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_37_validation.txt -rename to dev/reports/samples2tools_batch_37_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_38_summary.txt b/dev/reports/samples2tools_batch_38_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_38_summary.txt -rename to dev/reports/samples2tools_batch_38_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_38_validation.txt b/dev/reports/samples2tools_batch_38_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_38_validation.txt -rename to dev/reports/samples2tools_batch_38_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_39_summary.txt b/dev/reports/samples2tools_batch_39_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_39_summary.txt -rename to dev/reports/samples2tools_batch_39_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_39_validation.txt b/dev/reports/samples2tools_batch_39_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_39_validation.txt -rename to dev/reports/samples2tools_batch_39_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_3_summary.txt b/dev/reports/samples2tools_batch_3_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_3_summary.txt -rename to dev/reports/samples2tools_batch_3_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_3_validation.txt b/dev/reports/samples2tools_batch_3_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_3_validation.txt -rename to dev/reports/samples2tools_batch_3_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_40_summary.txt b/dev/reports/samples2tools_batch_40_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_40_summary.txt -rename to dev/reports/samples2tools_batch_40_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_40_validation.txt b/dev/reports/samples2tools_batch_40_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_40_validation.txt -rename to dev/reports/samples2tools_batch_40_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_41_summary.txt b/dev/reports/samples2tools_batch_41_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_41_summary.txt -rename to dev/reports/samples2tools_batch_41_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_41_validation.txt b/dev/reports/samples2tools_batch_41_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_41_validation.txt -rename to dev/reports/samples2tools_batch_41_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_42_summary.txt b/dev/reports/samples2tools_batch_42_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_42_summary.txt -rename to dev/reports/samples2tools_batch_42_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_42_validation.txt b/dev/reports/samples2tools_batch_42_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_42_validation.txt -rename to dev/reports/samples2tools_batch_42_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_43_summary.txt b/dev/reports/samples2tools_batch_43_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_43_summary.txt -rename to dev/reports/samples2tools_batch_43_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_43_validation.txt b/dev/reports/samples2tools_batch_43_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_43_validation.txt -rename to dev/reports/samples2tools_batch_43_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_44_summary.txt b/dev/reports/samples2tools_batch_44_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_44_summary.txt -rename to dev/reports/samples2tools_batch_44_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_44_validation.txt b/dev/reports/samples2tools_batch_44_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_44_validation.txt -rename to dev/reports/samples2tools_batch_44_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_45_summary.txt b/dev/reports/samples2tools_batch_45_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_45_summary.txt -rename to dev/reports/samples2tools_batch_45_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_45_validation.txt b/dev/reports/samples2tools_batch_45_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_45_validation.txt -rename to dev/reports/samples2tools_batch_45_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_46_summary.txt b/dev/reports/samples2tools_batch_46_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_46_summary.txt -rename to dev/reports/samples2tools_batch_46_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_46_validation.txt b/dev/reports/samples2tools_batch_46_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_46_validation.txt -rename to dev/reports/samples2tools_batch_46_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_47_summary.txt b/dev/reports/samples2tools_batch_47_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_47_summary.txt -rename to dev/reports/samples2tools_batch_47_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_47_validation.txt b/dev/reports/samples2tools_batch_47_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_47_validation.txt -rename to dev/reports/samples2tools_batch_47_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_48_summary.txt b/dev/reports/samples2tools_batch_48_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_48_summary.txt -rename to dev/reports/samples2tools_batch_48_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_48_validation.txt b/dev/reports/samples2tools_batch_48_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_48_validation.txt -rename to dev/reports/samples2tools_batch_48_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_49_summary.txt b/dev/reports/samples2tools_batch_49_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_49_summary.txt -rename to dev/reports/samples2tools_batch_49_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_49_validation.txt b/dev/reports/samples2tools_batch_49_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_49_validation.txt -rename to dev/reports/samples2tools_batch_49_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_4_summary.txt b/dev/reports/samples2tools_batch_4_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_4_summary.txt -rename to dev/reports/samples2tools_batch_4_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_4_validation.txt b/dev/reports/samples2tools_batch_4_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_4_validation.txt -rename to dev/reports/samples2tools_batch_4_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_50_summary.txt b/dev/reports/samples2tools_batch_50_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_50_summary.txt -rename to dev/reports/samples2tools_batch_50_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_50_validation.txt b/dev/reports/samples2tools_batch_50_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_50_validation.txt -rename to dev/reports/samples2tools_batch_50_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_51_summary.txt b/dev/reports/samples2tools_batch_51_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_51_summary.txt -rename to dev/reports/samples2tools_batch_51_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_51_validation.txt b/dev/reports/samples2tools_batch_51_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_51_validation.txt -rename to dev/reports/samples2tools_batch_51_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_52_summary.txt b/dev/reports/samples2tools_batch_52_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_52_summary.txt -rename to dev/reports/samples2tools_batch_52_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_52_validation.txt b/dev/reports/samples2tools_batch_52_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_52_validation.txt -rename to dev/reports/samples2tools_batch_52_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_5_summary.txt b/dev/reports/samples2tools_batch_5_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_5_summary.txt -rename to dev/reports/samples2tools_batch_5_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_5_validation.txt b/dev/reports/samples2tools_batch_5_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_5_validation.txt -rename to dev/reports/samples2tools_batch_5_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_6_summary.txt b/dev/reports/samples2tools_batch_6_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_6_summary.txt -rename to dev/reports/samples2tools_batch_6_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_6_validation.txt b/dev/reports/samples2tools_batch_6_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_6_validation.txt -rename to dev/reports/samples2tools_batch_6_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_7_summary.txt b/dev/reports/samples2tools_batch_7_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_7_summary.txt -rename to dev/reports/samples2tools_batch_7_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_7_validation.txt b/dev/reports/samples2tools_batch_7_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_7_validation.txt -rename to dev/reports/samples2tools_batch_7_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_8_summary.txt b/dev/reports/samples2tools_batch_8_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_8_summary.txt -rename to dev/reports/samples2tools_batch_8_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_8_validation.txt b/dev/reports/samples2tools_batch_8_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_8_validation.txt -rename to dev/reports/samples2tools_batch_8_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_9_summary.txt b/dev/reports/samples2tools_batch_9_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_9_summary.txt -rename to dev/reports/samples2tools_batch_9_summary.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_batch_9_validation.txt b/dev/reports/samples2tools_batch_9_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_batch_9_validation.txt -rename to dev/reports/samples2tools_batch_9_validation.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_completion_report.txt b/dev/reports/samples2tools_completion_report.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_completion_report.txt -rename to dev/reports/samples2tools_completion_report.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_known_bad_removals_11_116.txt b/dev/reports/samples2tools_known_bad_removals_11_116.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_known_bad_removals_11_116.txt -rename to dev/reports/samples2tools_known_bad_removals_11_116.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_1.json b/dev/reports/samples2tools_link_map_1.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_1.json -rename to dev/reports/samples2tools_link_map_1.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_10.json b/dev/reports/samples2tools_link_map_10.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_10.json -rename to dev/reports/samples2tools_link_map_10.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_11.json b/dev/reports/samples2tools_link_map_11.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_11.json -rename to dev/reports/samples2tools_link_map_11.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_12.json b/dev/reports/samples2tools_link_map_12.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_12.json -rename to dev/reports/samples2tools_link_map_12.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_13.json b/dev/reports/samples2tools_link_map_13.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_13.json -rename to dev/reports/samples2tools_link_map_13.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_14.json b/dev/reports/samples2tools_link_map_14.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_14.json -rename to dev/reports/samples2tools_link_map_14.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_15.json b/dev/reports/samples2tools_link_map_15.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_15.json -rename to dev/reports/samples2tools_link_map_15.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_16.json b/dev/reports/samples2tools_link_map_16.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_16.json -rename to dev/reports/samples2tools_link_map_16.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_17.json b/dev/reports/samples2tools_link_map_17.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_17.json -rename to dev/reports/samples2tools_link_map_17.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_18.json b/dev/reports/samples2tools_link_map_18.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_18.json -rename to dev/reports/samples2tools_link_map_18.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_19.json b/dev/reports/samples2tools_link_map_19.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_19.json -rename to dev/reports/samples2tools_link_map_19.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_2.json b/dev/reports/samples2tools_link_map_2.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_2.json -rename to dev/reports/samples2tools_link_map_2.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_20.json b/dev/reports/samples2tools_link_map_20.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_20.json -rename to dev/reports/samples2tools_link_map_20.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_22.json b/dev/reports/samples2tools_link_map_22.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_22.json -rename to dev/reports/samples2tools_link_map_22.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_3.json b/dev/reports/samples2tools_link_map_3.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_3.json -rename to dev/reports/samples2tools_link_map_3.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_5.json b/dev/reports/samples2tools_link_map_5.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_5.json -rename to dev/reports/samples2tools_link_map_5.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_6.json b/dev/reports/samples2tools_link_map_6.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_6.json -rename to dev/reports/samples2tools_link_map_6.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_7.json b/dev/reports/samples2tools_link_map_7.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_7.json -rename to dev/reports/samples2tools_link_map_7.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_8.json b/dev/reports/samples2tools_link_map_8.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_8.json -rename to dev/reports/samples2tools_link_map_8.json -diff --git a/dev/docs_build/dev/reports/samples2tools_link_map_9.json b/dev/reports/samples2tools_link_map_9.json -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_link_map_9.json -rename to dev/reports/samples2tools_link_map_9.json -diff --git a/dev/docs_build/dev/reports/samples2tools_phase20_deprecation_note.txt b/dev/reports/samples2tools_phase20_deprecation_note.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_phase20_deprecation_note.txt -rename to dev/reports/samples2tools_phase20_deprecation_note.txt -diff --git a/dev/docs_build/dev/reports/samples2tools_remaining_entries_11_116.txt b/dev/reports/samples2tools_remaining_entries_11_116.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples2tools_remaining_entries_11_116.txt -rename to dev/reports/samples2tools_remaining_entries_11_116.txt -diff --git a/dev/docs_build/dev/reports/samples_index_data_restore_strategy.txt b/dev/reports/samples_index_data_restore_strategy.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples_index_data_restore_strategy.txt -rename to dev/reports/samples_index_data_restore_strategy.txt -diff --git a/dev/docs_build/dev/reports/samples_index_rendered_links_11_120.txt b/dev/reports/samples_index_rendered_links_11_120.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples_index_rendered_links_11_120.txt -rename to dev/reports/samples_index_rendered_links_11_120.txt -diff --git a/dev/docs_build/dev/reports/samples_index_restore_strategy.txt b/dev/reports/samples_index_restore_strategy.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples_index_restore_strategy.txt -rename to dev/reports/samples_index_restore_strategy.txt -diff --git a/dev/docs_build/dev/reports/samples_index_ui_behavior_restore_strategy.txt b/dev/reports/samples_index_ui_behavior_restore_strategy.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples_index_ui_behavior_restore_strategy.txt -rename to dev/reports/samples_index_ui_behavior_restore_strategy.txt -diff --git a/dev/docs_build/dev/reports/samples_metadata_and_filter_bar_strategy.txt b/dev/reports/samples_metadata_and_filter_bar_strategy.txt -similarity index 100% -rename from dev/docs_build/dev/reports/samples_metadata_and_filter_bar_strategy.txt -rename to dev/reports/samples_metadata_and_filter_bar_strategy.txt -diff --git a/dev/docs_build/dev/reports/samples_only_palette_json_audit.csv b/dev/reports/samples_only_palette_json_audit.csv -similarity index 100% -rename from dev/docs_build/dev/reports/samples_only_palette_json_audit.csv -rename to dev/reports/samples_only_palette_json_audit.csv -diff --git a/dev/docs_build/dev/reports/samples_shared_cleanup_report.md b/dev/reports/samples_shared_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/samples_shared_cleanup_report.md -rename to dev/reports/samples_shared_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/schema_filename_canonicalization_11_104.txt b/dev/reports/schema_filename_canonicalization_11_104.txt -similarity index 100% -rename from dev/docs_build/dev/reports/schema_filename_canonicalization_11_104.txt -rename to dev/reports/schema_filename_canonicalization_11_104.txt -diff --git a/dev/docs_build/dev/reports/schema_lock_enforcement_11_143.txt b/dev/reports/schema_lock_enforcement_11_143.txt -similarity index 100% -rename from dev/docs_build/dev/reports/schema_lock_enforcement_11_143.txt -rename to dev/reports/schema_lock_enforcement_11_143.txt -diff --git a/dev/docs_build/dev/reports/schema_lock_readiness_11_142.txt b/dev/reports/schema_lock_readiness_11_142.txt -similarity index 100% -rename from dev/docs_build/dev/reports/schema_lock_readiness_11_142.txt -rename to dev/reports/schema_lock_readiness_11_142.txt -diff --git a/dev/docs_build/dev/reports/schema_only_runtime_check_11_111.txt b/dev/reports/schema_only_runtime_check_11_111.txt -similarity index 100% -rename from dev/docs_build/dev/reports/schema_only_runtime_check_11_111.txt -rename to dev/reports/schema_only_runtime_check_11_111.txt -diff --git a/dev/docs_build/dev/reports/schema_only_validation_11_110.txt b/dev/reports/schema_only_validation_11_110.txt -similarity index 100% -rename from dev/docs_build/dev/reports/schema_only_validation_11_110.txt -rename to dev/reports/schema_only_validation_11_110.txt -diff --git a/dev/docs_build/dev/reports/schema_separation_revert_11_123.txt b/dev/reports/schema_separation_revert_11_123.txt -similarity index 100% -rename from dev/docs_build/dev/reports/schema_separation_revert_11_123.txt -rename to dev/reports/schema_separation_revert_11_123.txt -diff --git a/dev/docs_build/dev/reports/schema_strictness_inventory.csv b/dev/reports/schema_strictness_inventory.csv -similarity index 100% -rename from dev/docs_build/dev/reports/schema_strictness_inventory.csv -rename to dev/reports/schema_strictness_inventory.csv -diff --git a/dev/docs_build/dev/reports/schema_strictness_inventory.md b/dev/reports/schema_strictness_inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/schema_strictness_inventory.md -rename to dev/reports/schema_strictness_inventory.md -diff --git a/dev/docs_build/dev/reports/schema_usage_code_updates.md b/dev/reports/schema_usage_code_updates.md -similarity index 100% -rename from dev/docs_build/dev/reports/schema_usage_code_updates.md -rename to dev/reports/schema_usage_code_updates.md -diff --git a/dev/docs_build/dev/reports/schema_validation_sweep_11_144.txt b/dev/reports/schema_validation_sweep_11_144.txt -similarity index 100% -rename from dev/docs_build/dev/reports/schema_validation_sweep_11_144.txt -rename to dev/reports/schema_validation_sweep_11_144.txt -diff --git a/dev/docs_build/dev/reports/schema_verification.md b/dev/reports/schema_verification.md -similarity index 100% -rename from dev/docs_build/dev/reports/schema_verification.md -rename to dev/reports/schema_verification.md -diff --git a/dev/docs_build/dev/reports/screen_error_contract_11_110.txt b/dev/reports/screen_error_contract_11_110.txt -similarity index 100% -rename from dev/docs_build/dev/reports/screen_error_contract_11_110.txt -rename to dev/reports/screen_error_contract_11_110.txt -diff --git a/dev/docs_build/dev/reports/server-api-migration-pass-3-login-environments-report.md b/dev/reports/server-api-migration-pass-3-login-environments-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/server-api-migration-pass-3-login-environments-report.md -rename to dev/reports/server-api-migration-pass-3-login-environments-report.md -diff --git a/dev/docs_build/dev/reports/server-api-migration-pass-4-local-mode-cleanup-report.md b/dev/reports/server-api-migration-pass-4-local-mode-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/server-api-migration-pass-4-local-mode-cleanup-report.md -rename to dev/reports/server-api-migration-pass-4-local-mode-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/server_api_migration_pass_2_report.md b/dev/reports/server_api_migration_pass_2_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/server_api_migration_pass_2_report.md -rename to dev/reports/server_api_migration_pass_2_report.md -diff --git a/dev/docs_build/dev/reports/server_mock_data_boundary_report.md b/dev/reports/server_mock_data_boundary_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/server_mock_data_boundary_report.md -rename to dev/reports/server_mock_data_boundary_report.md -diff --git a/dev/docs_build/dev/reports/session_delete_save_and_preview_root_handle.md b/dev/reports/session_delete_save_and_preview_root_handle.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_delete_save_and_preview_root_handle.md -rename to dev/reports/session_delete_save_and_preview_root_handle.md -diff --git a/dev/docs_build/dev/reports/session_inspector_restore.md b/dev/reports/session_inspector_restore.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_restore.md -rename to dev/reports/session_inspector_restore.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_controls_polish.md b/dev/reports/session_inspector_v2_controls_polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_controls_polish.md -rename to dev/reports/session_inspector_v2_controls_polish.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_data_dirty_model.md b/dev/reports/session_inspector_v2_data_dirty_model.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_data_dirty_model.md -rename to dev/reports/session_inspector_v2_data_dirty_model.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_deep_rename.md b/dev/reports/session_inspector_v2_deep_rename.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_deep_rename.md -rename to dev/reports/session_inspector_v2_deep_rename.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_detail_panel_height.md b/dev/reports/session_inspector_v2_detail_panel_height.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_detail_panel_height.md -rename to dev/reports/session_inspector_v2_detail_panel_height.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_layout_fix.md b/dev/reports/session_inspector_v2_layout_fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_layout_fix.md -rename to dev/reports/session_inspector_v2_layout_fix.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_normalized_tool_keys.md b/dev/reports/session_inspector_v2_normalized_tool_keys.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_normalized_tool_keys.md -rename to dev/reports/session_inspector_v2_normalized_tool_keys.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_output_scrollbars.md b/dev/reports/session_inspector_v2_output_scrollbars.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_output_scrollbars.md -rename to dev/reports/session_inspector_v2_output_scrollbars.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_output_wrap_height.md b/dev/reports/session_inspector_v2_output_wrap_height.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_output_wrap_height.md -rename to dev/reports/session_inspector_v2_output_wrap_height.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_reapply_detail_accordions.md b/dev/reports/session_inspector_v2_reapply_detail_accordions.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_reapply_detail_accordions.md -rename to dev/reports/session_inspector_v2_reapply_detail_accordions.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_shared_detail_space.md b/dev/reports/session_inspector_v2_shared_detail_space.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_shared_detail_space.md -rename to dev/reports/session_inspector_v2_shared_detail_space.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_shell_layout.md b/dev/reports/session_inspector_v2_shell_layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_shell_layout.md -rename to dev/reports/session_inspector_v2_shell_layout.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_state_view.md b/dev/reports/session_inspector_v2_state_view.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_state_view.md -rename to dev/reports/session_inspector_v2_state_view.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_tile_nav_polish.md b/dev/reports/session_inspector_v2_tile_nav_polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_tile_nav_polish.md -rename to dev/reports/session_inspector_v2_tile_nav_polish.md -diff --git a/dev/docs_build/dev/reports/session_inspector_v2_tile_sizing.md b/dev/reports/session_inspector_v2_tile_sizing.md -similarity index 100% -rename from dev/docs_build/dev/reports/session_inspector_v2_tile_sizing.md -rename to dev/reports/session_inspector_v2_tile_sizing.md -diff --git a/dev/docs_build/dev/reports/shape_identity_schema_cleanup_report.md b/dev/reports/shape_identity_schema_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/shape_identity_schema_cleanup_report.md -rename to dev/reports/shape_identity_schema_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/shape_schema_field_reduction_report.md b/dev/reports/shape_schema_field_reduction_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/shape_schema_field_reduction_report.md -rename to dev/reports/shape_schema_field_reduction_report.md -diff --git a/dev/docs_build/dev/reports/shared-mock-db-completion-validation-report.md b/dev/reports/shared-mock-db-completion-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/shared-mock-db-completion-validation-report.md -rename to dev/reports/shared-mock-db-completion-validation-report.md -diff --git a/dev/docs_build/dev/reports/shared_code_cleanup_11_113.txt b/dev/reports/shared_code_cleanup_11_113.txt -similarity index 100% -rename from dev/docs_build/dev/reports/shared_code_cleanup_11_113.txt -rename to dev/reports/shared_code_cleanup_11_113.txt -diff --git a/dev/docs_build/dev/reports/shared_folder_layout_normalization_report.md b/dev/reports/shared_folder_layout_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/shared_folder_layout_normalization_report.md -rename to dev/reports/shared_folder_layout_normalization_report.md -diff --git a/dev/docs_build/dev/reports/shared_index_barrel_removal_report.md b/dev/reports/shared_index_barrel_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/shared_index_barrel_removal_report.md -rename to dev/reports/shared_index_barrel_removal_report.md -diff --git a/dev/docs_build/dev/reports/shared_method_domain_audit_report.md b/dev/reports/shared_method_domain_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/shared_method_domain_audit_report.md -rename to dev/reports/shared_method_domain_audit_report.md -diff --git a/dev/docs_build/dev/reports/shared_shell_svg_asset_badge_11_160.txt b/dev/reports/shared_shell_svg_asset_badge_11_160.txt -similarity index 100% -rename from dev/docs_build/dev/reports/shared_shell_svg_asset_badge_11_160.txt -rename to dev/reports/shared_shell_svg_asset_badge_11_160.txt -diff --git a/dev/docs_build/dev/reports/shared_utils_consolidation_report.md b/dev/reports/shared_utils_consolidation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/shared_utils_consolidation_report.md -rename to dev/reports/shared_utils_consolidation_report.md -diff --git a/dev/docs_build/dev/reports/slider-double-click-reset-report.md b/dev/reports/slider-double-click-reset-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/slider-double-click-reset-report.md -rename to dev/reports/slider-double-click-reset-report.md -diff --git a/dev/docs_build/dev/reports/slider-value-visibility-report.md b/dev/reports/slider-value-visibility-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/slider-value-visibility-report.md -rename to dev/reports/slider-value-visibility-report.md -diff --git a/dev/docs_build/dev/reports/slow_path_pruning_report.md b/dev/reports/slow_path_pruning_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/slow_path_pruning_report.md -rename to dev/reports/slow_path_pruning_report.md -diff --git a/dev/docs_build/dev/reports/snap_angle_rotate_verification.md b/dev/reports/snap_angle_rotate_verification.md -similarity index 100% -rename from dev/docs_build/dev/reports/snap_angle_rotate_verification.md -rename to dev/reports/snap_angle_rotate_verification.md -diff --git a/dev/docs_build/dev/reports/space_invaders_manifest_collision_contract_report.md b/dev/reports/space_invaders_manifest_collision_contract_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/space_invaders_manifest_collision_contract_report.md -rename to dev/reports/space_invaders_manifest_collision_contract_report.md -diff --git a/dev/docs_build/dev/reports/split_tool_contracts_by_tool_validation.md b/dev/reports/split_tool_contracts_by_tool_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/split_tool_contracts_by_tool_validation.md -rename to dev/reports/split_tool_contracts_by_tool_validation.md -diff --git a/dev/docs_build/dev/reports/sqlite-local-db-report.md b/dev/reports/sqlite-local-db-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/sqlite-local-db-report.md -rename to dev/reports/sqlite-local-db-report.md -diff --git a/dev/docs_build/dev/reports/src-shared-toolbox-import-fix.md b/dev/reports/src-shared-toolbox-import-fix.md -similarity index 100% -rename from dev/docs_build/dev/reports/src-shared-toolbox-import-fix.md -rename to dev/reports/src-shared-toolbox-import-fix.md -diff --git a/dev/docs_build/dev/reports/ssot_branch_deep_review.md b/dev/reports/ssot_branch_deep_review.md -similarity index 100% -rename from dev/docs_build/dev/reports/ssot_branch_deep_review.md -rename to dev/reports/ssot_branch_deep_review.md -diff --git a/dev/docs_build/dev/reports/ssot_branch_delete_report.md b/dev/reports/ssot_branch_delete_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/ssot_branch_delete_report.md -rename to dev/reports/ssot_branch_delete_report.md -diff --git a/dev/docs_build/dev/reports/ssot_ideas_captured.md b/dev/reports/ssot_ideas_captured.md -similarity index 100% -rename from dev/docs_build/dev/reports/ssot_ideas_captured.md -rename to dev/reports/ssot_ideas_captured.md -diff --git a/dev/docs_build/dev/reports/ssot_relationship_load_validation_11_121.txt b/dev/reports/ssot_relationship_load_validation_11_121.txt -similarity index 100% -rename from dev/docs_build/dev/reports/ssot_relationship_load_validation_11_121.txt -rename to dev/reports/ssot_relationship_load_validation_11_121.txt -diff --git a/dev/docs_build/dev/reports/stack-toolbox-wireframes.md b/dev/reports/stack-toolbox-wireframes.md -similarity index 100% -rename from dev/docs_build/dev/reports/stack-toolbox-wireframes.md -rename to dev/reports/stack-toolbox-wireframes.md -diff --git a/dev/docs_build/dev/reports/stacked-pr-execution-report.md b/dev/reports/stacked-pr-execution-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/stacked-pr-execution-report.md -rename to dev/reports/stacked-pr-execution-report.md -diff --git a/dev/docs_build/dev/reports/staged_changes_review_11_123.txt b/dev/reports/staged_changes_review_11_123.txt -similarity index 100% -rename from dev/docs_build/dev/reports/staged_changes_review_11_123.txt -rename to dev/reports/staged_changes_review_11_123.txt -diff --git a/dev/docs_build/dev/reports/stale_launcher_sources_deleted_11_118.txt b/dev/reports/stale_launcher_sources_deleted_11_118.txt -similarity index 100% -rename from dev/docs_build/dev/reports/stale_launcher_sources_deleted_11_118.txt -rename to dev/reports/stale_launcher_sources_deleted_11_118.txt -diff --git a/dev/docs_build/dev/reports/stale_roundtrip_sources_11_119.txt b/dev/reports/stale_roundtrip_sources_11_119.txt -similarity index 100% -rename from dev/docs_build/dev/reports/stale_roundtrip_sources_11_119.txt -rename to dev/reports/stale_roundtrip_sources_11_119.txt -diff --git a/dev/docs_build/dev/reports/static-login-disabled-message-report.md b/dev/reports/static-login-disabled-message-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/static-login-disabled-message-report.md -rename to dev/reports/static-login-disabled-message-report.md -diff --git a/dev/docs_build/dev/reports/static-server-login-fallback-report.md b/dev/reports/static-server-login-fallback-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/static-server-login-fallback-report.md -rename to dev/reports/static-server-login-fallback-report.md -diff --git a/dev/docs_build/dev/reports/static_validation_report.md b/dev/reports/static_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/static_validation_report.md -rename to dev/reports/static_validation_report.md -diff --git a/dev/docs_build/dev/reports/status-legend-and-journey-counts-polish-report.md b/dev/reports/status-legend-and-journey-counts-polish-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/status-legend-and-journey-counts-polish-report.md -rename to dev/reports/status-legend-and-journey-counts-polish-report.md -diff --git a/dev/docs_build/dev/reports/status_clear_header_placement_fix.txt b/dev/reports/status_clear_header_placement_fix.txt -similarity index 100% -rename from dev/docs_build/dev/reports/status_clear_header_placement_fix.txt -rename to dev/reports/status_clear_header_placement_fix.txt -diff --git a/dev/docs_build/dev/reports/status_clear_preview_generator_pattern.txt b/dev/reports/status_clear_preview_generator_pattern.txt -similarity index 100% -rename from dev/docs_build/dev/reports/status_clear_preview_generator_pattern.txt -rename to dev/reports/status_clear_preview_generator_pattern.txt -diff --git a/dev/docs_build/dev/reports/status_clear_style_match.txt b/dev/reports/status_clear_style_match.txt -similarity index 100% -rename from dev/docs_build/dev/reports/status_clear_style_match.txt -rename to dev/reports/status_clear_style_match.txt -diff --git a/dev/docs_build/dev/reports/storage_inspector_template_mapping.md b/dev/reports/storage_inspector_template_mapping.md -similarity index 100% -rename from dev/docs_build/dev/reports/storage_inspector_template_mapping.md -rename to dev/reports/storage_inspector_template_mapping.md -diff --git a/dev/docs_build/dev/reports/strict_schema_unknown_field_validation_report.md b/dev/reports/strict_schema_unknown_field_validation_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/strict_schema_unknown_field_validation_report.md -rename to dev/reports/strict_schema_unknown_field_validation_report.md -diff --git a/dev/docs_build/dev/reports/studio-vocabulary-cleanup.md b/dev/reports/studio-vocabulary-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/studio-vocabulary-cleanup.md -rename to dev/reports/studio-vocabulary-cleanup.md -diff --git a/dev/docs_build/dev/reports/style_06_planning_note.txt b/dev/reports/style_06_planning_note.txt -similarity index 100% -rename from dev/docs_build/dev/reports/style_06_planning_note.txt -rename to dev/reports/style_06_planning_note.txt -diff --git a/dev/docs_build/dev/reports/style_08_planning_note.txt b/dev/reports/style_08_planning_note.txt -similarity index 100% -rename from dev/docs_build/dev/reports/style_08_planning_note.txt -rename to dev/reports/style_08_planning_note.txt -diff --git a/dev/docs_build/dev/reports/style_09_planning_note.txt b/dev/reports/style_09_planning_note.txt -similarity index 100% -rename from dev/docs_build/dev/reports/style_09_planning_note.txt -rename to dev/reports/style_09_planning_note.txt -diff --git a/dev/docs_build/dev/reports/style_10_12_bundle_rationale.txt b/dev/reports/style_10_12_bundle_rationale.txt -similarity index 100% -rename from dev/docs_build/dev/reports/style_10_12_bundle_rationale.txt -rename to dev/reports/style_10_12_bundle_rationale.txt -diff --git a/dev/docs_build/dev/reports/style_13_15_bundle_rationale.txt b/dev/reports/style_13_15_bundle_rationale.txt -similarity index 100% -rename from dev/docs_build/dev/reports/style_13_15_bundle_rationale.txt -rename to dev/reports/style_13_15_bundle_rationale.txt -diff --git a/dev/docs_build/dev/reports/style_execution_priority_rule.txt b/dev/reports/style_execution_priority_rule.txt -similarity index 100% -rename from dev/docs_build/dev/reports/style_execution_priority_rule.txt -rename to dev/reports/style_execution_priority_rule.txt -diff --git a/dev/docs_build/dev/reports/style_final_closeout_strategy.txt b/dev/reports/style_final_closeout_strategy.txt -similarity index 100% -rename from dev/docs_build/dev/reports/style_final_closeout_strategy.txt -rename to dev/reports/style_final_closeout_strategy.txt -diff --git a/dev/docs_build/dev/reports/style_final_system_completion_strategy.txt b/dev/reports/style_final_system_completion_strategy.txt -similarity index 100% -rename from dev/docs_build/dev/reports/style_final_system_completion_strategy.txt -rename to dev/reports/style_final_system_completion_strategy.txt -diff --git a/dev/docs_build/dev/reports/style_migration_notes.txt b/dev/reports/style_migration_notes.txt -similarity index 100% -rename from dev/docs_build/dev/reports/style_migration_notes.txt -rename to dev/reports/style_migration_notes.txt -diff --git a/dev/docs_build/dev/reports/style_roadmap_expansion_summary.txt b/dev/reports/style_roadmap_expansion_summary.txt -similarity index 100% -rename from dev/docs_build/dev/reports/style_roadmap_expansion_summary.txt -rename to dev/reports/style_roadmap_expansion_summary.txt -diff --git a/dev/docs_build/dev/reports/supabase-auth-live-validation-evidence.json b/dev/reports/supabase-auth-live-validation-evidence.json -similarity index 100% -rename from dev/docs_build/dev/reports/supabase-auth-live-validation-evidence.json -rename to dev/reports/supabase-auth-live-validation-evidence.json -diff --git a/dev/docs_build/dev/reports/supabase-preflight-report.md b/dev/reports/supabase-preflight-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/supabase-preflight-report.md -rename to dev/reports/supabase-preflight-report.md -diff --git a/dev/docs_build/dev/reports/svg_asset_none_trace_11_155.txt b/dev/reports/svg_asset_none_trace_11_155.txt -similarity index 100% -rename from dev/docs_build/dev/reports/svg_asset_none_trace_11_155.txt -rename to dev/reports/svg_asset_none_trace_11_155.txt -diff --git a/dev/docs_build/dev/reports/svg_asset_studio_hosted_payload_boot_11_152.txt b/dev/reports/svg_asset_studio_hosted_payload_boot_11_152.txt -similarity index 100% -rename from dev/docs_build/dev/reports/svg_asset_studio_hosted_payload_boot_11_152.txt -rename to dev/reports/svg_asset_studio_hosted_payload_boot_11_152.txt -diff --git a/dev/docs_build/dev/reports/svg_card_render_source_11_156.txt b/dev/reports/svg_card_render_source_11_156.txt -similarity index 100% -rename from dev/docs_build/dev/reports/svg_card_render_source_11_156.txt -rename to dev/reports/svg_card_render_source_11_156.txt -diff --git a/dev/docs_build/dev/reports/svg_favicon_normalization_report.md b/dev/reports/svg_favicon_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/svg_favicon_normalization_report.md -rename to dev/reports/svg_favicon_normalization_report.md -diff --git a/dev/docs_build/dev/reports/svg_payload_detection_fix_11_154.txt b/dev/reports/svg_payload_detection_fix_11_154.txt -similarity index 100% -rename from dev/docs_build/dev/reports/svg_payload_detection_fix_11_154.txt -rename to dev/reports/svg_payload_detection_fix_11_154.txt -diff --git a/dev/docs_build/dev/reports/svg_payload_to_shared_asset_badge_11_161.txt b/dev/reports/svg_payload_to_shared_asset_badge_11_161.txt -similarity index 100% -rename from dev/docs_build/dev/reports/svg_payload_to_shared_asset_badge_11_161.txt -rename to dev/reports/svg_payload_to_shared_asset_badge_11_161.txt -diff --git a/dev/docs_build/dev/reports/targeted-msj-validation-rule.md b/dev/reports/targeted-msj-validation-rule.md -similarity index 100% -rename from dev/docs_build/dev/reports/targeted-msj-validation-rule.md -rename to dev/reports/targeted-msj-validation-rule.md -diff --git a/dev/docs_build/dev/reports/targeted_file_manifest_report.md b/dev/reports/targeted_file_manifest_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/targeted_file_manifest_report.md -rename to dev/reports/targeted_file_manifest_report.md -diff --git a/dev/docs_build/dev/reports/targeted_testing_examples_report.md b/dev/reports/targeted_testing_examples_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/targeted_testing_examples_report.md -rename to dev/reports/targeted_testing_examples_report.md -diff --git a/dev/docs_build/dev/reports/targeted_testing_workflow_closeout.md b/dev/reports/targeted_testing_workflow_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/targeted_testing_workflow_closeout.md -rename to dev/reports/targeted_testing_workflow_closeout.md -diff --git a/dev/docs_build/dev/reports/team_alpha_beta_owner_approval_report.md b/dev/reports/team_alpha_beta_owner_approval_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/team_alpha_beta_owner_approval_report.md -rename to dev/reports/team_alpha_beta_owner_approval_report.md -diff --git a/dev/docs_build/dev/reports/template_consistency_after_theme_rename_report.md b/dev/reports/template_consistency_after_theme_rename_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/template_consistency_after_theme_rename_report.md -rename to dev/reports/template_consistency_after_theme_rename_report.md -diff --git a/dev/docs_build/dev/reports/template_consistency_after_toolbox_nav_report.md b/dev/reports/template_consistency_after_toolbox_nav_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/template_consistency_after_toolbox_nav_report.md -rename to dev/reports/template_consistency_after_toolbox_nav_report.md -diff --git a/dev/docs_build/dev/reports/template_consistency_before_after_report.md b/dev/reports/template_consistency_before_after_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/template_consistency_before_after_report.md -rename to dev/reports/template_consistency_before_after_report.md -diff --git a/dev/docs_build/dev/reports/template_editable_noneditable_input_pattern.txt b/dev/reports/template_editable_noneditable_input_pattern.txt -similarity index 100% -rename from dev/docs_build/dev/reports/template_editable_noneditable_input_pattern.txt -rename to dev/reports/template_editable_noneditable_input_pattern.txt -diff --git a/dev/docs_build/dev/reports/template_form_style_match_palette_manager.txt b/dev/reports/template_form_style_match_palette_manager.txt -similarity index 100% -rename from dev/docs_build/dev/reports/template_form_style_match_palette_manager.txt -rename to dev/reports/template_form_style_match_palette_manager.txt -diff --git a/dev/docs_build/dev/reports/template_v2_audit.md b/dev/reports/template_v2_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/template_v2_audit.md -rename to dev/reports/template_v2_audit.md -diff --git a/dev/docs_build/dev/reports/template_v2_final_visual_contract_lock.txt b/dev/reports/template_v2_final_visual_contract_lock.txt -similarity index 100% -rename from dev/docs_build/dev/reports/template_v2_final_visual_contract_lock.txt -rename to dev/reports/template_v2_final_visual_contract_lock.txt -diff --git a/dev/docs_build/dev/reports/test_cleanup_performance_report.md b/dev/reports/test_cleanup_performance_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/test_cleanup_performance_report.md -rename to dev/reports/test_cleanup_performance_report.md -diff --git a/dev/docs_build/dev/reports/test_cleanup_routing_report.md b/dev/reports/test_cleanup_routing_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/test_cleanup_routing_report.md -rename to dev/reports/test_cleanup_routing_report.md -diff --git a/dev/docs_build/dev/reports/test_location_audit_report.md b/dev/reports/test_location_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/test_location_audit_report.md -rename to dev/reports/test_location_audit_report.md -diff --git a/dev/docs_build/dev/reports/testing_lane_execution_report.md b/dev/reports/testing_lane_execution_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/testing_lane_execution_report.md -rename to dev/reports/testing_lane_execution_report.md -diff --git a/dev/docs_build/dev/reports/theme_css_entrypoint_closeout_report.md b/dev/reports/theme_css_entrypoint_closeout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_css_entrypoint_closeout_report.md -rename to dev/reports/theme_css_entrypoint_closeout_report.md -diff --git a/dev/docs_build/dev/reports/theme_header_validation_checklist.txt b/dev/reports/theme_header_validation_checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/theme_header_validation_checklist.txt -rename to dev/reports/theme_header_validation_checklist.txt -diff --git a/dev/docs_build/dev/reports/theme_surface_boundary_validation.md b/dev/reports/theme_surface_boundary_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_surface_boundary_validation.md -rename to dev/reports/theme_surface_boundary_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v1_assets_games_favicon_cleanup_report.md b/dev/reports/theme_v1_assets_games_favicon_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v1_assets_games_favicon_cleanup_report.md -rename to dev/reports/theme_v1_assets_games_favicon_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/theme_v1_final_teardown_report.md b/dev/reports/theme_v1_final_teardown_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v1_final_teardown_report.md -rename to dev/reports/theme_v1_final_teardown_report.md -diff --git a/dev/docs_build/dev/reports/theme_v1_removal_fontawesome_v2_report.md b/dev/reports/theme_v1_removal_fontawesome_v2_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v1_removal_fontawesome_v2_report.md -rename to dev/reports/theme_v1_removal_fontawesome_v2_report.md -diff --git a/dev/docs_build/dev/reports/theme_v2_admin_consumption_validation.md b/dev/reports/theme_v2_admin_consumption_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_admin_consumption_validation.md -rename to dev/reports/theme_v2_admin_consumption_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_admin_copy_correction_validation.md b/dev/reports/theme_v2_admin_copy_correction_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_admin_copy_correction_validation.md -rename to dev/reports/theme_v2_admin_copy_correction_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_admin_pages_validation.md b/dev/reports/theme_v2_admin_pages_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_admin_pages_validation.md -rename to dev/reports/theme_v2_admin_pages_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_asset_ownership_normalization_report.md b/dev/reports/theme_v2_asset_ownership_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_asset_ownership_normalization_report.md -rename to dev/reports/theme_v2_asset_ownership_normalization_report.md -diff --git a/dev/docs_build/dev/reports/theme_v2_bad_migration_removal_validation.md b/dev/reports/theme_v2_bad_migration_removal_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_bad_migration_removal_validation.md -rename to dev/reports/theme_v2_bad_migration_removal_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_company_pages_validation.md b/dev/reports/theme_v2_company_pages_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_company_pages_validation.md -rename to dev/reports/theme_v2_company_pages_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_css_foundation_validation.md b/dev/reports/theme_v2_css_foundation_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_css_foundation_validation.md -rename to dev/reports/theme_v2_css_foundation_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_css_structure_normalization_report.md b/dev/reports/theme_v2_css_structure_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_css_structure_normalization_report.md -rename to dev/reports/theme_v2_css_structure_normalization_report.md -diff --git a/dev/docs_build/dev/reports/theme_v2_design_system_gaps.md b/dev/reports/theme_v2_design_system_gaps.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_design_system_gaps.md -rename to dev/reports/theme_v2_design_system_gaps.md -diff --git a/dev/docs_build/dev/reports/theme_v2_direct_primitives_validation.md b/dev/reports/theme_v2_direct_primitives_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_direct_primitives_validation.md -rename to dev/reports/theme_v2_direct_primitives_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_final_normalization_report.md b/dev/reports/theme_v2_final_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_final_normalization_report.md -rename to dev/reports/theme_v2_final_normalization_report.md -diff --git a/dev/docs_build/dev/reports/theme_v2_gap_audit.md b/dev/reports/theme_v2_gap_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_gap_audit.md -rename to dev/reports/theme_v2_gap_audit.md -diff --git a/dev/docs_build/dev/reports/theme_v2_governance_validation.md b/dev/reports/theme_v2_governance_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_governance_validation.md -rename to dev/reports/theme_v2_governance_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_home_migration_validation.md b/dev/reports/theme_v2_home_migration_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_home_migration_validation.md -rename to dev/reports/theme_v2_home_migration_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_legacy_assets_deprecation.md b/dev/reports/theme_v2_legacy_assets_deprecation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_legacy_assets_deprecation.md -rename to dev/reports/theme_v2_legacy_assets_deprecation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_legacy_reference_validation.md b/dev/reports/theme_v2_legacy_reference_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_legacy_reference_validation.md -rename to dev/reports/theme_v2_legacy_reference_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_only_css_governance_validation.md b/dev/reports/theme_v2_only_css_governance_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_only_css_governance_validation.md -rename to dev/reports/theme_v2_only_css_governance_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_ownership_validation.md b/dev/reports/theme_v2_ownership_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_ownership_validation.md -rename to dev/reports/theme_v2_ownership_validation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_public_asset_path_fix_report.md b/dev/reports/theme_v2_public_asset_path_fix_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_public_asset_path_fix_report.md -rename to dev/reports/theme_v2_public_asset_path_fix_report.md -diff --git a/dev/docs_build/dev/reports/theme_v2_public_asset_teardown_report.md b/dev/reports/theme_v2_public_asset_teardown_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_public_asset_teardown_report.md -rename to dev/reports/theme_v2_public_asset_teardown_report.md -diff --git a/dev/docs_build/dev/reports/theme_v2_remaining_inventory_report.md b/dev/reports/theme_v2_remaining_inventory_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_remaining_inventory_report.md -rename to dev/reports/theme_v2_remaining_inventory_report.md -diff --git a/dev/docs_build/dev/reports/theme_v2_root_rename_report.md b/dev/reports/theme_v2_root_rename_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_root_rename_report.md -rename to dev/reports/theme_v2_root_rename_report.md -diff --git a/dev/docs_build/dev/reports/theme_v2_template_cleanup_report.md b/dev/reports/theme_v2_template_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_template_cleanup_report.md -rename to dev/reports/theme_v2_template_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/theme_v2_template_correction.md b/dev/reports/theme_v2_template_correction.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_template_correction.md -rename to dev/reports/theme_v2_template_correction.md -diff --git a/dev/docs_build/dev/reports/theme_v2_template_dependency_map.md b/dev/reports/theme_v2_template_dependency_map.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_template_dependency_map.md -rename to dev/reports/theme_v2_template_dependency_map.md -diff --git a/dev/docs_build/dev/reports/theme_v2_template_foundation.md b/dev/reports/theme_v2_template_foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_template_foundation.md -rename to dev/reports/theme_v2_template_foundation.md -diff --git a/dev/docs_build/dev/reports/theme_v2_template_reference_mapping.md b/dev/reports/theme_v2_template_reference_mapping.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_template_reference_mapping.md -rename to dev/reports/theme_v2_template_reference_mapping.md -diff --git a/dev/docs_build/dev/reports/theme_v2_tool_shell_gaps.md b/dev/reports/theme_v2_tool_shell_gaps.md -similarity index 100% -rename from dev/docs_build/dev/reports/theme_v2_tool_shell_gaps.md -rename to dev/reports/theme_v2_tool_shell_gaps.md -diff --git a/dev/docs_build/dev/reports/today-pr-completion-audit.md b/dev/reports/today-pr-completion-audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/today-pr-completion-audit.md -rename to dev/reports/today-pr-completion-audit.md -diff --git a/dev/docs_build/dev/reports/tool-center-image-and-badge-cleanup-report.md b/dev/reports/tool-center-image-and-badge-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-center-image-and-badge-cleanup-report.md -rename to dev/reports/tool-center-image-and-badge-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/tool-display-mode-build-game-regression.md b/dev/reports/tool-display-mode-build-game-regression.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-display-mode-build-game-regression.md -rename to dev/reports/tool-display-mode-build-game-regression.md -diff --git a/dev/docs_build/dev/reports/tool-display-mode-layout-fix-report.md b/dev/reports/tool-display-mode-layout-fix-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-display-mode-layout-fix-report.md -rename to dev/reports/tool-display-mode-layout-fix-report.md -diff --git a/dev/docs_build/dev/reports/tool-display-mode-links-not-buttons.md b/dev/reports/tool-display-mode-links-not-buttons.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-display-mode-links-not-buttons.md -rename to dev/reports/tool-display-mode-links-not-buttons.md -diff --git a/dev/docs_build/dev/reports/tool-display-mode-multi-path-fallback.md b/dev/reports/tool-display-mode-multi-path-fallback.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-display-mode-multi-path-fallback.md -rename to dev/reports/tool-display-mode-multi-path-fallback.md -diff --git a/dev/docs_build/dev/reports/tool-display-mode-nav-layout.md b/dev/reports/tool-display-mode-nav-layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-display-mode-nav-layout.md -rename to dev/reports/tool-display-mode-nav-layout.md -diff --git a/dev/docs_build/dev/reports/tool-display-mode-prev-next.md b/dev/reports/tool-display-mode-prev-next.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-display-mode-prev-next.md -rename to dev/reports/tool-display-mode-prev-next.md -diff --git a/dev/docs_build/dev/reports/tool-display-mode-registry-links.md b/dev/reports/tool-display-mode-registry-links.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-display-mode-registry-links.md -rename to dev/reports/tool-display-mode-registry-links.md -diff --git a/dev/docs_build/dev/reports/tool-display-mode-targeted-msj-tests.md b/dev/reports/tool-display-mode-targeted-msj-tests.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-display-mode-targeted-msj-tests.md -rename to dev/reports/tool-display-mode-targeted-msj-tests.md -diff --git a/dev/docs_build/dev/reports/tool-display-mode-two-row-layout.md b/dev/reports/tool-display-mode-two-row-layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-display-mode-two-row-layout.md -rename to dev/reports/tool-display-mode-two-row-layout.md -diff --git a/dev/docs_build/dev/reports/tool-form-table-layout-standard-report.md b/dev/reports/tool-form-table-layout-standard-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-form-table-layout-standard-report.md -rename to dev/reports/tool-form-table-layout-standard-report.md -diff --git a/dev/docs_build/dev/reports/tool-group-color-correction-pass-report.md b/dev/reports/tool-group-color-correction-pass-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-group-color-correction-pass-report.md -rename to dev/reports/tool-group-color-correction-pass-report.md -diff --git a/dev/docs_build/dev/reports/tool-group-color-ssot-consolidation-report.md b/dev/reports/tool-group-color-ssot-consolidation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-group-color-ssot-consolidation-report.md -rename to dev/reports/tool-group-color-ssot-consolidation-report.md -diff --git a/dev/docs_build/dev/reports/tool-image-coverage-report.md b/dev/reports/tool-image-coverage-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-image-coverage-report.md -rename to dev/reports/tool-image-coverage-report.md -diff --git a/dev/docs_build/dev/reports/tool-image-mapping.md b/dev/reports/tool-image-mapping.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-image-mapping.md -rename to dev/reports/tool-image-mapping.md -diff --git a/dev/docs_build/dev/reports/tool-image-registry-contract.md b/dev/reports/tool-image-registry-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-image-registry-contract.md -rename to dev/reports/tool-image-registry-contract.md -diff --git a/dev/docs_build/dev/reports/tool-image-targeted-msj-tests.md b/dev/reports/tool-image-targeted-msj-tests.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-image-targeted-msj-tests.md -rename to dev/reports/tool-image-targeted-msj-tests.md -diff --git a/dev/docs_build/dev/reports/tool-image-ui-closeout-report.md b/dev/reports/tool-image-ui-closeout-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-image-ui-closeout-report.md -rename to dev/reports/tool-image-ui-closeout-report.md -diff --git a/dev/docs_build/dev/reports/tool-layout-wide-all-tool-pages.md b/dev/reports/tool-layout-wide-all-tool-pages.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-layout-wide-all-tool-pages.md -rename to dev/reports/tool-layout-wide-all-tool-pages.md -diff --git a/dev/docs_build/dev/reports/tool-layout-width-standard.md b/dev/reports/tool-layout-width-standard.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-layout-width-standard.md -rename to dev/reports/tool-layout-width-standard.md -diff --git a/dev/docs_build/dev/reports/tool-layout-width-validation-report.md b/dev/reports/tool-layout-width-validation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-layout-width-validation-report.md -rename to dev/reports/tool-layout-width-validation-report.md -diff --git a/dev/docs_build/dev/reports/tool-navigation-targeted-msj-tests.md b/dev/reports/tool-navigation-targeted-msj-tests.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-navigation-targeted-msj-tests.md -rename to dev/reports/tool-navigation-targeted-msj-tests.md -diff --git a/dev/docs_build/dev/reports/tool-page-group-color-alignment-report.md b/dev/reports/tool-page-group-color-alignment-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-page-group-color-alignment-report.md -rename to dev/reports/tool-page-group-color-alignment-report.md -diff --git a/dev/docs_build/dev/reports/tool-planning-db-ownership-report.md b/dev/reports/tool-planning-db-ownership-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-planning-db-ownership-report.md -rename to dev/reports/tool-planning-db-ownership-report.md -diff --git a/dev/docs_build/dev/reports/tool-planning-field-audit-report.md b/dev/reports/tool-planning-field-audit-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-planning-field-audit-report.md -rename to dev/reports/tool-planning-field-audit-report.md -diff --git a/dev/docs_build/dev/reports/tool-status-governance-report.md b/dev/reports/tool-status-governance-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-status-governance-report.md -rename to dev/reports/tool-status-governance-report.md -diff --git a/dev/docs_build/dev/reports/tool-status-kickers-beta-access-report.md b/dev/reports/tool-status-kickers-beta-access-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-status-kickers-beta-access-report.md -rename to dev/reports/tool-status-kickers-beta-access-report.md -diff --git a/dev/docs_build/dev/reports/tool-status-registry-enforcement-report.md b/dev/reports/tool-status-registry-enforcement-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-status-registry-enforcement-report.md -rename to dev/reports/tool-status-registry-enforcement-report.md -diff --git a/dev/docs_build/dev/reports/tool-status-tooltip-update-report.md b/dev/reports/tool-status-tooltip-update-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool-status-tooltip-update-report.md -rename to dev/reports/tool-status-tooltip-update-report.md -diff --git a/dev/docs_build/dev/reports/tool_binding_truthfulness_11_113.txt b/dev/reports/tool_binding_truthfulness_11_113.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_binding_truthfulness_11_113.txt -rename to dev/reports/tool_binding_truthfulness_11_113.txt -diff --git a/dev/docs_build/dev/reports/tool_completion_audit.md b/dev/reports/tool_completion_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_completion_audit.md -rename to dev/reports/tool_completion_audit.md -diff --git a/dev/docs_build/dev/reports/tool_completion_batch_009.md b/dev/reports/tool_completion_batch_009.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_completion_batch_009.md -rename to dev/reports/tool_completion_batch_009.md -diff --git a/dev/docs_build/dev/reports/tool_contract_bundle_tests_validation.md b/dev/reports/tool_contract_bundle_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_contract_bundle_tests_validation.md -rename to dev/reports/tool_contract_bundle_tests_validation.md -diff --git a/dev/docs_build/dev/reports/tool_contract_deduplication_audit.md b/dev/reports/tool_contract_deduplication_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_contract_deduplication_audit.md -rename to dev/reports/tool_contract_deduplication_audit.md -diff --git a/dev/docs_build/dev/reports/tool_contract_location_correction_validation.md b/dev/reports/tool_contract_location_correction_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_contract_location_correction_validation.md -rename to dev/reports/tool_contract_location_correction_validation.md -diff --git a/dev/docs_build/dev/reports/tool_control_service_contracts.txt b/dev/reports/tool_control_service_contracts.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_control_service_contracts.txt -rename to dev/reports/tool_control_service_contracts.txt -diff --git a/dev/docs_build/dev/reports/tool_design_finalize_summary.md b/dev/reports/tool_design_finalize_summary.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_design_finalize_summary.md -rename to dev/reports/tool_design_finalize_summary.md -diff --git a/dev/docs_build/dev/reports/tool_design_precision_summary.md b/dev/reports/tool_design_precision_summary.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_design_precision_summary.md -rename to dev/reports/tool_design_precision_summary.md -diff --git a/dev/docs_build/dev/reports/tool_design_reset_summary.md b/dev/reports/tool_design_reset_summary.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_design_reset_summary.md -rename to dev/reports/tool_design_reset_summary.md -diff --git a/dev/docs_build/dev/reports/tool_design_tighten_summary.md b/dev/reports/tool_design_tighten_summary.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_design_tighten_summary.md -rename to dev/reports/tool_design_tighten_summary.md -diff --git a/dev/docs_build/dev/reports/tool_host_pager_inside_mount_container_validation.md b/dev/reports/tool_host_pager_inside_mount_container_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_host_pager_inside_mount_container_validation.md -rename to dev/reports/tool_host_pager_inside_mount_container_validation.md -diff --git a/dev/docs_build/dev/reports/tool_input_contract_11_129.txt b/dev/reports/tool_input_contract_11_129.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_input_contract_11_129.txt -rename to dev/reports/tool_input_contract_11_129.txt -diff --git a/dev/docs_build/dev/reports/tool_inventory.md b/dev/reports/tool_inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_inventory.md -rename to dev/reports/tool_inventory.md -diff --git a/dev/docs_build/dev/reports/tool_known_bugs.md b/dev/reports/tool_known_bugs.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_known_bugs.md -rename to dev/reports/tool_known_bugs.md -diff --git a/dev/docs_build/dev/reports/tool_launch_ssot_data_layer_validation.md b/dev/reports/tool_launch_ssot_data_layer_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_launch_ssot_data_layer_validation.md -rename to dev/reports/tool_launch_ssot_data_layer_validation.md -diff --git a/dev/docs_build/dev/reports/tool_launch_ssot_external_memory_reset_validation.md b/dev/reports/tool_launch_ssot_external_memory_reset_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_launch_ssot_external_memory_reset_validation.md -rename to dev/reports/tool_launch_ssot_external_memory_reset_validation.md -diff --git a/dev/docs_build/dev/reports/tool_launch_ssot_routing_validation.md b/dev/reports/tool_launch_ssot_routing_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_launch_ssot_routing_validation.md -rename to dev/reports/tool_launch_ssot_routing_validation.md -diff --git a/dev/docs_build/dev/reports/tool_migration_lane_bootstrap.md b/dev/reports/tool_migration_lane_bootstrap.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_migration_lane_bootstrap.md -rename to dev/reports/tool_migration_lane_bootstrap.md -diff --git a/dev/docs_build/dev/reports/tool_migration_wave_1_scope.md b/dev/reports/tool_migration_wave_1_scope.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_migration_wave_1_scope.md -rename to dev/reports/tool_migration_wave_1_scope.md -diff --git a/dev/docs_build/dev/reports/tool_migration_wave_2_scope.md b/dev/reports/tool_migration_wave_2_scope.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_migration_wave_2_scope.md -rename to dev/reports/tool_migration_wave_2_scope.md -diff --git a/dev/docs_build/dev/reports/tool_migration_wave_audit.md b/dev/reports/tool_migration_wave_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_migration_wave_audit.md -rename to dev/reports/tool_migration_wave_audit.md -diff --git a/dev/docs_build/dev/reports/tool_missing_functionality.md b/dev/reports/tool_missing_functionality.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_missing_functionality.md -rename to dev/reports/tool_missing_functionality.md -diff --git a/dev/docs_build/dev/reports/tool_palette_dependency_11_130.txt b/dev/reports/tool_palette_dependency_11_130.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_palette_dependency_11_130.txt -rename to dev/reports/tool_palette_dependency_11_130.txt -diff --git a/dev/docs_build/dev/reports/tool_payload_schema_validation.csv b/dev/reports/tool_payload_schema_validation.csv -similarity index 100% -rename from dev/docs_build/dev/reports/tool_payload_schema_validation.csv -rename to dev/reports/tool_payload_schema_validation.csv -diff --git a/dev/docs_build/dev/reports/tool_reference_cleanup_11_105.txt b/dev/reports/tool_reference_cleanup_11_105.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_reference_cleanup_11_105.txt -rename to dev/reports/tool_reference_cleanup_11_105.txt -diff --git a/dev/docs_build/dev/reports/tool_registry_validation.txt b/dev/reports/tool_registry_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_registry_validation.txt -rename to dev/reports/tool_registry_validation.txt -diff --git a/dev/docs_build/dev/reports/tool_schema_boundary_11_122.txt b/dev/reports/tool_schema_boundary_11_122.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_schema_boundary_11_122.txt -rename to dev/reports/tool_schema_boundary_11_122.txt -diff --git a/dev/docs_build/dev/reports/tool_schema_fixture_relocation_11_111.txt b/dev/reports/tool_schema_fixture_relocation_11_111.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_schema_fixture_relocation_11_111.txt -rename to dev/reports/tool_schema_fixture_relocation_11_111.txt -diff --git a/dev/docs_build/dev/reports/tool_schema_payload_review_11_123.txt b/dev/reports/tool_schema_payload_review_11_123.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_schema_payload_review_11_123.txt -rename to dev/reports/tool_schema_payload_review_11_123.txt -diff --git a/dev/docs_build/dev/reports/tool_select_population_validation.md b/dev/reports/tool_select_population_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_select_population_validation.md -rename to dev/reports/tool_select_population_validation.md -diff --git a/dev/docs_build/dev/reports/tool_select_removed_validation.md b/dev/reports/tool_select_removed_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_select_removed_validation.md -rename to dev/reports/tool_select_removed_validation.md -diff --git a/dev/docs_build/dev/reports/tool_shell_flex_center_layout_validation.md b/dev/reports/tool_shell_flex_center_layout_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_shell_flex_center_layout_validation.md -rename to dev/reports/tool_shell_flex_center_layout_validation.md -diff --git a/dev/docs_build/dev/reports/tool_state_contract_tests_validation.md b/dev/reports/tool_state_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_state_contract_tests_validation.md -rename to dev/reports/tool_state_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/tool_state_recovery_contract_validation.md b/dev/reports/tool_state_recovery_contract_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_state_recovery_contract_validation.md -rename to dev/reports/tool_state_recovery_contract_validation.md -diff --git a/dev/docs_build/dev/reports/tool_surface_removal_summary.md b/dev/reports/tool_surface_removal_summary.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_surface_removal_summary.md -rename to dev/reports/tool_surface_removal_summary.md -diff --git a/dev/docs_build/dev/reports/tool_template_baseline_copy.md b/dev/reports/tool_template_baseline_copy.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_baseline_copy.md -rename to dev/reports/tool_template_baseline_copy.md -diff --git a/dev/docs_build/dev/reports/tool_template_cleanup.md b/dev/reports/tool_template_cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_cleanup.md -rename to dev/reports/tool_template_cleanup.md -diff --git a/dev/docs_build/dev/reports/tool_template_display_mode_layout.md b/dev/reports/tool_template_display_mode_layout.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_display_mode_layout.md -rename to dev/reports/tool_template_display_mode_layout.md -diff --git a/dev/docs_build/dev/reports/tool_template_hardening.txt b/dev/reports/tool_template_hardening.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_hardening.txt -rename to dev/reports/tool_template_hardening.txt -diff --git a/dev/docs_build/dev/reports/tool_template_launch_mode_nav.txt b/dev/reports/tool_template_launch_mode_nav.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_launch_mode_nav.txt -rename to dev/reports/tool_template_launch_mode_nav.txt -diff --git a/dev/docs_build/dev/reports/tool_template_panel_role_standardization.txt b/dev/reports/tool_template_panel_role_standardization.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_panel_role_standardization.txt -rename to dev/reports/tool_template_panel_role_standardization.txt -diff --git a/dev/docs_build/dev/reports/tool_template_path_adjustments.md b/dev/reports/tool_template_path_adjustments.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_path_adjustments.md -rename to dev/reports/tool_template_path_adjustments.md -diff --git a/dev/docs_build/dev/reports/tool_template_playwright_e2e_depth.txt b/dev/reports/tool_template_playwright_e2e_depth.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_playwright_e2e_depth.txt -rename to dev/reports/tool_template_playwright_e2e_depth.txt -diff --git a/dev/docs_build/dev/reports/tool_template_preview_generator_theme_match.txt b/dev/reports/tool_template_preview_generator_theme_match.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_preview_generator_theme_match.txt -rename to dev/reports/tool_template_preview_generator_theme_match.txt -diff --git a/dev/docs_build/dev/reports/tool_template_runtime_validation.txt b/dev/reports/tool_template_runtime_validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_runtime_validation.txt -rename to dev/reports/tool_template_runtime_validation.txt -diff --git a/dev/docs_build/dev/reports/tool_template_v2_rename.txt b/dev/reports/tool_template_v2_rename.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_template_v2_rename.txt -rename to dev/reports/tool_template_v2_rename.txt -diff --git a/dev/docs_build/dev/reports/tool_uat_template.md b/dev/reports/tool_uat_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_uat_template.md -rename to dev/reports/tool_uat_template.md -diff --git a/dev/docs_build/dev/reports/tool_validation_report.json b/dev/reports/tool_validation_report.json -similarity index 100% -rename from dev/docs_build/dev/reports/tool_validation_report.json -rename to dev/reports/tool_validation_report.json -diff --git a/dev/docs_build/dev/reports/tool_validation_report_template.md b/dev/reports/tool_validation_report_template.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_validation_report_template.md -rename to dev/reports/tool_validation_report_template.md -diff --git a/dev/docs_build/dev/reports/tool_validation_results.md b/dev/reports/tool_validation_results.md -similarity index 100% -rename from dev/docs_build/dev/reports/tool_validation_results.md -rename to dev/reports/tool_validation_results.md -diff --git a/dev/docs_build/dev/reports/tool_vs_asset_kind_11_107.txt b/dev/reports/tool_vs_asset_kind_11_107.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tool_vs_asset_kind_11_107.txt -rename to dev/reports/tool_vs_asset_kind_11_107.txt -diff --git a/dev/docs_build/dev/reports/toolbox-banner-and-image-polish.md b/dev/reports/toolbox-banner-and-image-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-banner-and-image-polish.md -rename to dev/reports/toolbox-banner-and-image-polish.md -diff --git a/dev/docs_build/dev/reports/toolbox-build-path-model.md b/dev/reports/toolbox-build-path-model.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-build-path-model.md -rename to dev/reports/toolbox-build-path-model.md -diff --git a/dev/docs_build/dev/reports/toolbox-card-and-status-cleanup-report.md b/dev/reports/toolbox-card-and-status-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-card-and-status-cleanup-report.md -rename to dev/reports/toolbox-card-and-status-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-create-build-content-split.md b/dev/reports/toolbox-create-build-content-split.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-create-build-content-split.md -rename to dev/reports/toolbox-create-build-content-split.md -diff --git a/dev/docs_build/dev/reports/toolbox-creator-grouping.md b/dev/reports/toolbox-creator-grouping.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-creator-grouping.md -rename to dev/reports/toolbox-creator-grouping.md -diff --git a/dev/docs_build/dev/reports/toolbox-db-contract-enforcement-report.md b/dev/reports/toolbox-db-contract-enforcement-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-db-contract-enforcement-report.md -rename to dev/reports/toolbox-db-contract-enforcement-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-db-status-vote-restore-report.md b/dev/reports/toolbox-db-status-vote-restore-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-db-status-vote-restore-report.md -rename to dev/reports/toolbox-db-status-vote-restore-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-filters-and-color-picker-controls-report.md b/dev/reports/toolbox-filters-and-color-picker-controls-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-filters-and-color-picker-controls-report.md -rename to dev/reports/toolbox-filters-and-color-picker-controls-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-final-name-cleanup.md b/dev/reports/toolbox-final-name-cleanup.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-final-name-cleanup.md -rename to dev/reports/toolbox-final-name-cleanup.md -diff --git a/dev/docs_build/dev/reports/toolbox-group-color-consistency.md b/dev/reports/toolbox-group-color-consistency.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-group-color-consistency.md -rename to dev/reports/toolbox-group-color-consistency.md -diff --git a/dev/docs_build/dev/reports/toolbox-group-color-model-restore.md b/dev/reports/toolbox-group-color-model-restore.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-group-color-model-restore.md -rename to dev/reports/toolbox-group-color-model-restore.md -diff --git a/dev/docs_build/dev/reports/toolbox-group-color-name-normalization.md b/dev/reports/toolbox-group-color-name-normalization.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-group-color-name-normalization.md -rename to dev/reports/toolbox-group-color-name-normalization.md -diff --git a/dev/docs_build/dev/reports/toolbox-group-color-restore-report.md b/dev/reports/toolbox-group-color-restore-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-group-color-restore-report.md -rename to dev/reports/toolbox-group-color-restore-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-name-link-navigation-report.md b/dev/reports/toolbox-name-link-navigation-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-name-link-navigation-report.md -rename to dev/reports/toolbox-name-link-navigation-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-planned-filter-tiles-report.md b/dev/reports/toolbox-planned-filter-tiles-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-planned-filter-tiles-report.md -rename to dev/reports/toolbox-planned-filter-tiles-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-progress-foundation.md b/dev/reports/toolbox-progress-foundation.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-progress-foundation.md -rename to dev/reports/toolbox-progress-foundation.md -diff --git a/dev/docs_build/dev/reports/toolbox-progress-game-configuration.md b/dev/reports/toolbox-progress-game-configuration.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-progress-game-configuration.md -rename to dev/reports/toolbox-progress-game-configuration.md -diff --git a/dev/docs_build/dev/reports/toolbox-recovery-alignment.md b/dev/reports/toolbox-recovery-alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-recovery-alignment.md -rename to dev/reports/toolbox-recovery-alignment.md -diff --git a/dev/docs_build/dev/reports/toolbox-registry-contract.md b/dev/reports/toolbox-registry-contract.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-registry-contract.md -rename to dev/reports/toolbox-registry-contract.md -diff --git a/dev/docs_build/dev/reports/toolbox-remove-bootstrap-registry-report.md b/dev/reports/toolbox-remove-bootstrap-registry-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-remove-bootstrap-registry-report.md -rename to dev/reports/toolbox-remove-bootstrap-registry-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-role-filter-wireframe.md b/dev/reports/toolbox-role-filter-wireframe.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-role-filter-wireframe.md -rename to dev/reports/toolbox-role-filter-wireframe.md -diff --git a/dev/docs_build/dev/reports/toolbox-role-focused-filtering.md b/dev/reports/toolbox-role-focused-filtering.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-role-focused-filtering.md -rename to dev/reports/toolbox-role-focused-filtering.md -diff --git a/dev/docs_build/dev/reports/toolbox-runtime-ownership.md b/dev/reports/toolbox-runtime-ownership.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-runtime-ownership.md -rename to dev/reports/toolbox-runtime-ownership.md -diff --git a/dev/docs_build/dev/reports/toolbox-status-and-display-cleanup-report.md b/dev/reports/toolbox-status-and-display-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-status-and-display-cleanup-report.md -rename to dev/reports/toolbox-status-and-display-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-status-system.md b/dev/reports/toolbox-status-system.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-status-system.md -rename to dev/reports/toolbox-status-system.md -diff --git a/dev/docs_build/dev/reports/toolbox-tile-layout-and-planned-filter-report.md b/dev/reports/toolbox-tile-layout-and-planned-filter-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-tile-layout-and-planned-filter-report.md -rename to dev/reports/toolbox-tile-layout-and-planned-filter-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-tile-layout-polish.md b/dev/reports/toolbox-tile-layout-polish.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-tile-layout-polish.md -rename to dev/reports/toolbox-tile-layout-polish.md -diff --git a/dev/docs_build/dev/reports/toolbox-tool-count-and-group-name.md b/dev/reports/toolbox-tool-count-and-group-name.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-tool-count-and-group-name.md -rename to dev/reports/toolbox-tool-count-and-group-name.md -diff --git a/dev/docs_build/dev/reports/toolbox-user-voting-and-admin-width-report.md b/dev/reports/toolbox-user-voting-and-admin-width-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-user-voting-and-admin-width-report.md -rename to dev/reports/toolbox-user-voting-and-admin-width-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-vote-review-ordering-report.md b/dev/reports/toolbox-vote-review-ordering-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-vote-review-ordering-report.md -rename to dev/reports/toolbox-vote-review-ordering-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-vote-review-ssot-report.md b/dev/reports/toolbox-vote-review-ssot-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-vote-review-ssot-report.md -rename to dev/reports/toolbox-vote-review-ssot-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-votes-and-state-cleanup-report.md b/dev/reports/toolbox-votes-and-state-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-votes-and-state-cleanup-report.md -rename to dev/reports/toolbox-votes-and-state-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-voting-and-color-ssot-report.md b/dev/reports/toolbox-voting-and-color-ssot-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-voting-and-color-ssot-report.md -rename to dev/reports/toolbox-voting-and-color-ssot-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-wireframe-and-port-guard-report.md b/dev/reports/toolbox-wireframe-and-port-guard-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-wireframe-and-port-guard-report.md -rename to dev/reports/toolbox-wireframe-and-port-guard-report.md -diff --git a/dev/docs_build/dev/reports/toolbox-worlds-objects-naming.md b/dev/reports/toolbox-worlds-objects-naming.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-worlds-objects-naming.md -rename to dev/reports/toolbox-worlds-objects-naming.md -diff --git a/dev/docs_build/dev/reports/toolbox-worlds-objects-submenus.md b/dev/reports/toolbox-worlds-objects-submenus.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox-worlds-objects-submenus.md -rename to dev/reports/toolbox-worlds-objects-submenus.md -diff --git a/dev/docs_build/dev/reports/toolbox_endstate_inventory_report.md b/dev/reports/toolbox_endstate_inventory_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_endstate_inventory_report.md -rename to dev/reports/toolbox_endstate_inventory_report.md -diff --git a/dev/docs_build/dev/reports/toolbox_footer_template_bundle_report.md b/dev/reports/toolbox_footer_template_bundle_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_footer_template_bundle_report.md -rename to dev/reports/toolbox_footer_template_bundle_report.md -diff --git a/dev/docs_build/dev/reports/toolbox_header_accordion_submenu.md b/dev/reports/toolbox_header_accordion_submenu.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_header_accordion_submenu.md -rename to dev/reports/toolbox_header_accordion_submenu.md -diff --git a/dev/docs_build/dev/reports/toolbox_header_menu_structure_correction.md b/dev/reports/toolbox_header_menu_structure_correction.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_header_menu_structure_correction.md -rename to dev/reports/toolbox_header_menu_structure_correction.md -diff --git a/dev/docs_build/dev/reports/toolbox_header_popout_safe_reapply.md b/dev/reports/toolbox_header_popout_safe_reapply.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_header_popout_safe_reapply.md -rename to dev/reports/toolbox_header_popout_safe_reapply.md -diff --git a/dev/docs_build/dev/reports/toolbox_menu_ia.md b/dev/reports/toolbox_menu_ia.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_menu_ia.md -rename to dev/reports/toolbox_menu_ia.md -diff --git a/dev/docs_build/dev/reports/toolbox_readiness_gate.md b/dev/reports/toolbox_readiness_gate.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_readiness_gate.md -rename to dev/reports/toolbox_readiness_gate.md -diff --git a/dev/docs_build/dev/reports/toolbox_registry_final_cleanup_report.md b/dev/reports/toolbox_registry_final_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_registry_final_cleanup_report.md -rename to dev/reports/toolbox_registry_final_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/toolbox_route_reference_hygiene_report.md b/dev/reports/toolbox_route_reference_hygiene_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_route_reference_hygiene_report.md -rename to dev/reports/toolbox_route_reference_hygiene_report.md -diff --git a/dev/docs_build/dev/reports/toolbox_shared_dev_final_classification_report.md b/dev/reports/toolbox_shared_dev_final_classification_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_shared_dev_final_classification_report.md -rename to dev/reports/toolbox_shared_dev_final_classification_report.md -diff --git a/dev/docs_build/dev/reports/toolbox_shared_dev_schema_audit_report.md b/dev/reports/toolbox_shared_dev_schema_audit_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_shared_dev_schema_audit_report.md -rename to dev/reports/toolbox_shared_dev_schema_audit_report.md -diff --git a/dev/docs_build/dev/reports/toolbox_template_mismatch_closeout_report.md b/dev/reports/toolbox_template_mismatch_closeout_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_template_mismatch_closeout_report.md -rename to dev/reports/toolbox_template_mismatch_closeout_report.md -diff --git a/dev/docs_build/dev/reports/toolbox_wireframe_rebuild_rule_report.md b/dev/reports/toolbox_wireframe_rebuild_rule_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/toolbox_wireframe_rebuild_rule_report.md -rename to dev/reports/toolbox_wireframe_rebuild_rule_report.md -diff --git a/dev/docs_build/dev/reports/tools-progress-targeted-msj-tests.md b/dev/reports/tools-progress-targeted-msj-tests.md -similarity index 100% -rename from dev/docs_build/dev/reports/tools-progress-targeted-msj-tests.md -rename to dev/reports/tools-progress-targeted-msj-tests.md -diff --git a/dev/docs_build/dev/reports/tools-progress-tool-links.md b/dev/reports/tools-progress-tool-links.md -similarity index 100% -rename from dev/docs_build/dev/reports/tools-progress-tool-links.md -rename to dev/reports/tools-progress-tool-links.md -diff --git a/dev/docs_build/dev/reports/tools_index_expected_relationships_11_120.txt b/dev/reports/tools_index_expected_relationships_11_120.txt -similarity index 100% -rename from dev/docs_build/dev/reports/tools_index_expected_relationships_11_120.txt -rename to dev/reports/tools_index_expected_relationships_11_120.txt -diff --git a/dev/docs_build/dev/reports/tools_index_tile_image_size_validation.md b/dev/reports/tools_index_tile_image_size_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/tools_index_tile_image_size_validation.md -rename to dev/reports/tools_index_tile_image_size_validation.md -diff --git a/dev/docs_build/dev/reports/tools_readme_v2_normalization_report.md b/dev/reports/tools_readme_v2_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tools_readme_v2_normalization_report.md -rename to dev/reports/tools_readme_v2_normalization_report.md -diff --git a/dev/docs_build/dev/reports/tools_shared_index_barrel_removal_report.md b/dev/reports/tools_shared_index_barrel_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/tools_shared_index_barrel_removal_report.md -rename to dev/reports/tools_shared_index_barrel_removal_report.md -diff --git a/dev/docs_build/dev/reports/unified_tool_contract_behavior_validation.md b/dev/reports/unified_tool_contract_behavior_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/unified_tool_contract_behavior_validation.md -rename to dev/reports/unified_tool_contract_behavior_validation.md -diff --git a/dev/docs_build/dev/reports/update_channel_contract_tests_validation.md b/dev/reports/update_channel_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/update_channel_contract_tests_validation.md -rename to dev/reports/update_channel_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/user-controls-defaults-and-profile-rules-report.md b/dev/reports/user-controls-defaults-and-profile-rules-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/user-controls-defaults-and-profile-rules-report.md -rename to dev/reports/user-controls-defaults-and-profile-rules-report.md -diff --git a/dev/docs_build/dev/reports/user-controls-gamepad-table-and-defaults-report.md b/dev/reports/user-controls-gamepad-table-and-defaults-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/user-controls-gamepad-table-and-defaults-report.md -rename to dev/reports/user-controls-gamepad-table-and-defaults-report.md -diff --git a/dev/docs_build/dev/reports/user-controls-input-capture-cleanup-report.md b/dev/reports/user-controls-input-capture-cleanup-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/user-controls-input-capture-cleanup-report.md -rename to dev/reports/user-controls-input-capture-cleanup-report.md -diff --git a/dev/docs_build/dev/reports/user-controls-selected-device-fallback-report.md b/dev/reports/user-controls-selected-device-fallback-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/user-controls-selected-device-fallback-report.md -rename to dev/reports/user-controls-selected-device-fallback-report.md -diff --git a/dev/docs_build/dev/reports/users-roles-login-and-db-viewer-completion-report.md b/dev/reports/users-roles-login-and-db-viewer-completion-report.md -similarity index 100% -rename from dev/docs_build/dev/reports/users-roles-login-and-db-viewer-completion-report.md -rename to dev/reports/users-roles-login-and-db-viewer-completion-report.md -diff --git a/dev/docs_build/dev/reports/utils_audit_summary.csv b/dev/reports/utils_audit_summary.csv -similarity index 100% -rename from dev/docs_build/dev/reports/utils_audit_summary.csv -rename to dev/reports/utils_audit_summary.csv -diff --git a/dev/docs_build/dev/reports/utils_consolidation_inventory.csv b/dev/reports/utils_consolidation_inventory.csv -similarity index 100% -rename from dev/docs_build/dev/reports/utils_consolidation_inventory.csv -rename to dev/reports/utils_consolidation_inventory.csv -diff --git a/dev/docs_build/dev/reports/utils_consolidation_inventory.md b/dev/reports/utils_consolidation_inventory.md -similarity index 100% -rename from dev/docs_build/dev/reports/utils_consolidation_inventory.md -rename to dev/reports/utils_consolidation_inventory.md -diff --git a/dev/docs_build/dev/reports/utils_dead_usage_audit.md b/dev/reports/utils_dead_usage_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/utils_dead_usage_audit.md -rename to dev/reports/utils_dead_usage_audit.md -diff --git a/dev/docs_build/dev/reports/utils_duplicate_exports_audit.md b/dev/reports/utils_duplicate_exports_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/utils_duplicate_exports_audit.md -rename to dev/reports/utils_duplicate_exports_audit.md -diff --git a/dev/docs_build/dev/reports/utils_folder_category_audit.md b/dev/reports/utils_folder_category_audit.md -similarity index 100% -rename from dev/docs_build/dev/reports/utils_folder_category_audit.md -rename to dev/reports/utils_folder_category_audit.md -diff --git a/dev/docs_build/dev/reports/utils_rules_audit.csv b/dev/reports/utils_rules_audit.csv -similarity index 100% -rename from dev/docs_build/dev/reports/utils_rules_audit.csv -rename to dev/reports/utils_rules_audit.csv -diff --git a/dev/docs_build/dev/reports/validation.txt b/dev/reports/validation.txt -similarity index 100% -rename from dev/docs_build/dev/reports/validation.txt -rename to dev/reports/validation.txt -diff --git a/dev/docs_build/dev/reports/validation_after_11_103.txt b/dev/reports/validation_after_11_103.txt -similarity index 100% -rename from dev/docs_build/dev/reports/validation_after_11_103.txt -rename to dev/reports/validation_after_11_103.txt -diff --git a/dev/docs_build/dev/reports/validation_after_11_116.txt b/dev/reports/validation_after_11_116.txt -similarity index 100% -rename from dev/docs_build/dev/reports/validation_after_11_116.txt -rename to dev/reports/validation_after_11_116.txt -diff --git a/dev/docs_build/dev/reports/validation_after_11_118.txt b/dev/reports/validation_after_11_118.txt -similarity index 100% -rename from dev/docs_build/dev/reports/validation_after_11_118.txt -rename to dev/reports/validation_after_11_118.txt -diff --git a/dev/docs_build/dev/reports/validation_after_11_120.txt b/dev/reports/validation_after_11_120.txt -similarity index 100% -rename from dev/docs_build/dev/reports/validation_after_11_120.txt -rename to dev/reports/validation_after_11_120.txt -diff --git a/dev/docs_build/dev/reports/validation_after_11_121.txt b/dev/reports/validation_after_11_121.txt -similarity index 100% -rename from dev/docs_build/dev/reports/validation_after_11_121.txt -rename to dev/reports/validation_after_11_121.txt -diff --git a/dev/docs_build/dev/reports/validation_after_11_122.txt b/dev/reports/validation_after_11_122.txt -similarity index 100% -rename from dev/docs_build/dev/reports/validation_after_11_122.txt -rename to dev/reports/validation_after_11_122.txt -diff --git a/dev/docs_build/dev/reports/validation_after_11_123.txt b/dev/reports/validation_after_11_123.txt -similarity index 100% -rename from dev/docs_build/dev/reports/validation_after_11_123.txt -rename to dev/reports/validation_after_11_123.txt -diff --git a/dev/docs_build/dev/reports/validation_cache_report.md b/dev/reports/validation_cache_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/validation_cache_report.md -rename to dev/reports/validation_cache_report.md -diff --git a/dev/docs_build/dev/reports/validation_checklist.md b/dev/reports/validation_checklist.md -similarity index 100% -rename from dev/docs_build/dev/reports/validation_checklist.md -rename to dev/reports/validation_checklist.md -diff --git a/dev/docs_build/dev/reports/validation_checklist.txt b/dev/reports/validation_checklist.txt -similarity index 100% -rename from dev/docs_build/dev/reports/validation_checklist.txt -rename to dev/reports/validation_checklist.txt -diff --git a/dev/docs_build/dev/reports/vector_asset_contract_tests_validation.md b/dev/reports/vector_asset_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/vector_asset_contract_tests_validation.md -rename to dev/reports/vector_asset_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/vector_map_editor_removal_report.md b/dev/reports/vector_map_editor_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/vector_map_editor_removal_report.md -rename to dev/reports/vector_map_editor_removal_report.md -diff --git a/dev/docs_build/dev/reports/vector_map_hosted_payload_boot_11_151.txt b/dev/reports/vector_map_hosted_payload_boot_11_151.txt -similarity index 100% -rename from dev/docs_build/dev/reports/vector_map_hosted_payload_boot_11_151.txt -rename to dev/reports/vector_map_hosted_payload_boot_11_151.txt -diff --git a/dev/docs_build/dev/reports/vector_map_workspace_object_render_11_150.txt b/dev/reports/vector_map_workspace_object_render_11_150.txt -similarity index 100% -rename from dev/docs_build/dev/reports/vector_map_workspace_object_render_11_150.txt -rename to dev/reports/vector_map_workspace_object_render_11_150.txt -diff --git a/dev/docs_build/dev/reports/version_compatibility_contract_tests_validation.md b/dev/reports/version_compatibility_contract_tests_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/version_compatibility_contract_tests_validation.md -rename to dev/reports/version_compatibility_contract_tests_validation.md -diff --git a/dev/docs_build/dev/reports/wave_1_migration_closeout.md b/dev/reports/wave_1_migration_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_1_migration_closeout.md -rename to dev/reports/wave_1_migration_closeout.md -diff --git a/dev/docs_build/dev/reports/wave_1_projectworkspace_integration.md b/dev/reports/wave_1_projectworkspace_integration.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_1_projectworkspace_integration.md -rename to dev/reports/wave_1_projectworkspace_integration.md -diff --git a/dev/docs_build/dev/reports/wave_1_reporting_normalization.md b/dev/reports/wave_1_reporting_normalization.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_1_reporting_normalization.md -rename to dev/reports/wave_1_reporting_normalization.md -diff --git a/dev/docs_build/dev/reports/wave_1_sample_execution_readiness.md b/dev/reports/wave_1_sample_execution_readiness.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_1_sample_execution_readiness.md -rename to dev/reports/wave_1_sample_execution_readiness.md -diff --git a/dev/docs_build/dev/reports/wave_1_sample_fixture_baseline.md b/dev/reports/wave_1_sample_fixture_baseline.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_1_sample_fixture_baseline.md -rename to dev/reports/wave_1_sample_fixture_baseline.md -diff --git a/dev/docs_build/dev/reports/wave_1_sample_manifest_alignment.md b/dev/reports/wave_1_sample_manifest_alignment.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_1_sample_manifest_alignment.md -rename to dev/reports/wave_1_sample_manifest_alignment.md -diff --git a/dev/docs_build/dev/reports/wave_1_sample_reporting_baseline.md b/dev/reports/wave_1_sample_reporting_baseline.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_1_sample_reporting_baseline.md -rename to dev/reports/wave_1_sample_reporting_baseline.md -diff --git a/dev/docs_build/dev/reports/wave_1_sample_validation_baseline.md b/dev/reports/wave_1_sample_validation_baseline.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_1_sample_validation_baseline.md -rename to dev/reports/wave_1_sample_validation_baseline.md -diff --git a/dev/docs_build/dev/reports/wave_1_tool_contract_baseline.md b/dev/reports/wave_1_tool_contract_baseline.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_1_tool_contract_baseline.md -rename to dev/reports/wave_1_tool_contract_baseline.md -diff --git a/dev/docs_build/dev/reports/wave_1_toolstate_boundary_validation.md b/dev/reports/wave_1_toolstate_boundary_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_1_toolstate_boundary_validation.md -rename to dev/reports/wave_1_toolstate_boundary_validation.md -diff --git a/dev/docs_build/dev/reports/wave_2_migration_closeout.md b/dev/reports/wave_2_migration_closeout.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_2_migration_closeout.md -rename to dev/reports/wave_2_migration_closeout.md -diff --git a/dev/docs_build/dev/reports/wave_2_projectworkspace_integration.md b/dev/reports/wave_2_projectworkspace_integration.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_2_projectworkspace_integration.md -rename to dev/reports/wave_2_projectworkspace_integration.md -diff --git a/dev/docs_build/dev/reports/wave_2_reporting_normalization.md b/dev/reports/wave_2_reporting_normalization.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_2_reporting_normalization.md -rename to dev/reports/wave_2_reporting_normalization.md -diff --git a/dev/docs_build/dev/reports/wave_2_tool_contract_baseline.md b/dev/reports/wave_2_tool_contract_baseline.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_2_tool_contract_baseline.md -rename to dev/reports/wave_2_tool_contract_baseline.md -diff --git a/dev/docs_build/dev/reports/wave_2_toolstate_boundary_validation.md b/dev/reports/wave_2_toolstate_boundary_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_2_toolstate_boundary_validation.md -rename to dev/reports/wave_2_toolstate_boundary_validation.md -diff --git a/dev/docs_build/dev/reports/wave_3_reporting_normalization.md b/dev/reports/wave_3_reporting_normalization.md -similarity index 100% -rename from dev/docs_build/dev/reports/wave_3_reporting_normalization.md -rename to dev/reports/wave_3_reporting_normalization.md -diff --git a/dev/docs_build/dev/reports/workspace_asset_catalog_residue_cleanup_report.md b/dev/reports/workspace_asset_catalog_residue_cleanup_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_asset_catalog_residue_cleanup_report.md -rename to dev/reports/workspace_asset_catalog_residue_cleanup_report.md -diff --git a/dev/docs_build/dev/reports/workspace_cleanup_normalization_report.md b/dev/reports/workspace_cleanup_normalization_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_cleanup_normalization_report.md -rename to dev/reports/workspace_cleanup_normalization_report.md -diff --git a/dev/docs_build/dev/reports/workspace_direct_payload_card_status_11_149.txt b/dev/reports/workspace_direct_payload_card_status_11_149.txt -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_direct_payload_card_status_11_149.txt -rename to dev/reports/workspace_direct_payload_card_status_11_149.txt -diff --git a/dev/docs_build/dev/reports/workspace_host_size_and_tool_resolution_validation.md b/dev/reports/workspace_host_size_and_tool_resolution_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_host_size_and_tool_resolution_validation.md -rename to dev/reports/workspace_host_size_and_tool_resolution_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_hydrate_game_tools_only.md b/dev/reports/workspace_hydrate_game_tools_only.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_hydrate_game_tools_only.md -rename to dev/reports/workspace_hydrate_game_tools_only.md -diff --git a/dev/docs_build/dev/reports/workspace_manager_auto_mount_tool_selection_validation.md b/dev/reports/workspace_manager_auto_mount_tool_selection_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manager_auto_mount_tool_selection_validation.md -rename to dev/reports/workspace_manager_auto_mount_tool_selection_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_manager_blank_game_launch_repair_validation.md b/dev/reports/workspace_manager_blank_game_launch_repair_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manager_blank_game_launch_repair_validation.md -rename to dev/reports/workspace_manager_blank_game_launch_repair_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_manager_default_query_fallback_removal_validation.md b/dev/reports/workspace_manager_default_query_fallback_removal_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manager_default_query_fallback_removal_validation.md -rename to dev/reports/workspace_manager_default_query_fallback_removal_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_manager_game_launch_tools_view_validation.md b/dev/reports/workspace_manager_game_launch_tools_view_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manager_game_launch_tools_view_validation.md -rename to dev/reports/workspace_manager_game_launch_tools_view_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_manager_hide_tool_banner_validation.md b/dev/reports/workspace_manager_hide_tool_banner_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manager_hide_tool_banner_validation.md -rename to dev/reports/workspace_manager_hide_tool_banner_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_manager_mount_container_pager_validation.md b/dev/reports/workspace_manager_mount_container_pager_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manager_mount_container_pager_validation.md -rename to dev/reports/workspace_manager_mount_container_pager_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_manager_rollback_header_and_tool_pager_validation.md b/dev/reports/workspace_manager_rollback_header_and_tool_pager_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manager_rollback_header_and_tool_pager_validation.md -rename to dev/reports/workspace_manager_rollback_header_and_tool_pager_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_manager_tool_pager_above_editors_validation.md b/dev/reports/workspace_manager_tool_pager_above_editors_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manager_tool_pager_above_editors_validation.md -rename to dev/reports/workspace_manager_tool_pager_above_editors_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_manager_tool_selector_surface_validation.md b/dev/reports/workspace_manager_tool_selector_surface_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manager_tool_selector_surface_validation.md -rename to dev/reports/workspace_manager_tool_selector_surface_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_manifest_documentkind_removal_report.md b/dev/reports/workspace_manifest_documentkind_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manifest_documentkind_removal_report.md -rename to dev/reports/workspace_manifest_documentkind_removal_report.md -diff --git a/dev/docs_build/dev/reports/workspace_manifest_final_removal_report.md b/dev/reports/workspace_manifest_final_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_manifest_final_removal_report.md -rename to dev/reports/workspace_manifest_final_removal_report.md -diff --git a/dev/docs_build/dev/reports/workspace_pager_button_events_validation.md b/dev/reports/workspace_pager_button_events_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_pager_button_events_validation.md -rename to dev/reports/workspace_pager_button_events_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_pager_delegated_events_validation.md b/dev/reports/workspace_pager_delegated_events_validation.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_pager_delegated_events_validation.md -rename to dev/reports/workspace_pager_delegated_events_validation.md -diff --git a/dev/docs_build/dev/reports/workspace_payload_routing_review_11_123.txt b/dev/reports/workspace_payload_routing_review_11_123.txt -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_payload_routing_review_11_123.txt -rename to dev/reports/workspace_payload_routing_review_11_123.txt -diff --git a/dev/docs_build/dev/reports/workspace_removal_verification.md b/dev/reports/workspace_removal_verification.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_removal_verification.md -rename to dev/reports/workspace_removal_verification.md -diff --git a/dev/docs_build/dev/reports/workspace_repo_destination_control.md b/dev/reports/workspace_repo_destination_control.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_repo_destination_control.md -rename to dev/reports/workspace_repo_destination_control.md -diff --git a/dev/docs_build/dev/reports/workspace_return_repo_rehydrate.md b/dev/reports/workspace_return_repo_rehydrate.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_return_repo_rehydrate.md -rename to dev/reports/workspace_return_repo_rehydrate.md -diff --git a/dev/docs_build/dev/reports/workspace_schema_removal_report.md b/dev/reports/workspace_schema_removal_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_schema_removal_report.md -rename to dev/reports/workspace_schema_removal_report.md -diff --git a/dev/docs_build/dev/reports/workspace_selection_gates.md b/dev/reports/workspace_selection_gates.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_selection_gates.md -rename to dev/reports/workspace_selection_gates.md -diff --git a/dev/docs_build/dev/reports/workspace_session_hydration.md b/dev/reports/workspace_session_hydration.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_session_hydration.md -rename to dev/reports/workspace_session_hydration.md -diff --git a/dev/docs_build/dev/reports/workspace_svg_asset_status_label_11_153.txt b/dev/reports/workspace_svg_asset_status_label_11_153.txt -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_svg_asset_status_label_11_153.txt -rename to dev/reports/workspace_svg_asset_status_label_11_153.txt -diff --git a/dev/docs_build/dev/reports/workspace_tile_summary_display_model_11_157.txt b/dev/reports/workspace_tile_summary_display_model_11_157.txt -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_tile_summary_display_model_11_157.txt -rename to dev/reports/workspace_tile_summary_display_model_11_157.txt -diff --git a/dev/docs_build/dev/reports/workspace_tool_key_id_fix_11_148.txt b/dev/reports/workspace_tool_key_id_fix_11_148.txt -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_tool_key_id_fix_11_148.txt -rename to dev/reports/workspace_tool_key_id_fix_11_148.txt -diff --git a/dev/docs_build/dev/reports/workspace_tool_payload_routing_11_122.txt b/dev/reports/workspace_tool_payload_routing_11_122.txt -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_tool_payload_routing_11_122.txt -rename to dev/reports/workspace_tool_payload_routing_11_122.txt -diff --git a/dev/docs_build/dev/reports/workspace_tool_session_refresh.md b/dev/reports/workspace_tool_session_refresh.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_tool_session_refresh.md -rename to dev/reports/workspace_tool_session_refresh.md -diff --git a/dev/docs_build/dev/reports/workspace_v2_object_collision_enablement_report.md b/dev/reports/workspace_v2_object_collision_enablement_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/workspace_v2_object_collision_enablement_report.md -rename to dev/reports/workspace_v2_object_collision_enablement_report.md -diff --git a/dev/docs_build/dev/reports/zero_browser_preflight_report.md b/dev/reports/zero_browser_preflight_report.md -similarity index 100% -rename from dev/docs_build/dev/reports/zero_browser_preflight_report.md -rename to dev/reports/zero_browser_preflight_report.md -diff --git a/dev/scripts/PS/audit-dead-utils.ps1 b/dev/scripts/PS/audit-dead-utils.ps1 -index 4229ec59f..80c76b1c8 100644 ---- a/dev/scripts/PS/audit-dead-utils.ps1 -+++ b/dev/scripts/PS/audit-dead-utils.ps1 -@@ -1,5 +1,5 @@ - param( -- [string]$OutputPath = "dev/docs_build/dev/reports/dead_utils_audit.csv", -+ [string]$OutputPath = "dev/reports/dead_utils_audit.csv", - [switch]$Details, - [switch]$Ci - ) -diff --git a/dev/scripts/PS/deploy/WebsiteRepoDeploymentCommon.ps1 b/dev/scripts/PS/deploy/WebsiteRepoDeploymentCommon.ps1 -index 2dba397c4..6295a6336 100644 ---- a/dev/scripts/PS/deploy/WebsiteRepoDeploymentCommon.ps1 -+++ b/dev/scripts/PS/deploy/WebsiteRepoDeploymentCommon.ps1 -@@ -87,7 +87,8 @@ function Get-DeployEnvironmentStatus { - ) - - $repoRoot = Get-DeployRepoRoot -- $tmpRoot = [System.IO.Path]::GetFullPath((Join-Path $repoRoot "tmp")) -+ $tmpRoot = [System.IO.Path]::GetFullPath((Join-Path $repoRoot "dev\workspace\artifacts\tmp")) -+ New-Item -ItemType Directory -Path $tmpRoot -Force | Out-Null - $dockerCommand = Get-Command docker -ErrorAction SilentlyContinue - - return [ordered]@{ -@@ -112,11 +113,11 @@ function Assert-DeployEnvironmentReadiness { - } - - if (-not $status.tmpRootExists) { -- throw "Environment validation failed. Required tmp root not found: $($status.tmpRoot)" -+ throw "Environment validation failed. Required artifact tmp root not found: $($status.tmpRoot)" - } - - if (-not (Test-PathWithinRoot -Path $status.stagingRoot -RootPath $status.tmpRoot)) { -- throw "Environment validation failed. Staging root must remain under tmp root: $($status.stagingRoot)" -+ throw "Environment validation failed. Staging root must remain under artifact tmp root: $($status.stagingRoot)" - } - - return $status -@@ -396,7 +397,7 @@ function Resolve-WebsiteStagingRoot { - ) - - if ([string]::IsNullOrWhiteSpace($StagingRoot)) { -- return [System.IO.Path]::GetFullPath((Join-Path (Get-DeployRepoRoot) "tmp\website-deploy")) -+ return [System.IO.Path]::GetFullPath((Join-Path (Get-DeployRepoRoot) "dev\workspace\artifacts\tmp\website-deploy")) - } - - return [System.IO.Path]::GetFullPath($StagingRoot) -@@ -620,9 +621,9 @@ function Test-StagingRootSafety { - ) - - $repoRoot = Get-DeployRepoRoot -- $tmpRoot = [System.IO.Path]::GetFullPath((Join-Path $repoRoot "tmp")) -+ $tmpRoot = [System.IO.Path]::GetFullPath((Join-Path $repoRoot "dev\workspace\artifacts\tmp")) - if (-not (Test-PathWithinRoot -Path $StagingRoot -RootPath $tmpRoot)) { -- throw "Safety check failed. Staging root must remain under /tmp: $StagingRoot" -+ throw "Safety check failed. Staging root must remain under /dev/workspace/artifacts/tmp: $StagingRoot" - } - } - -diff --git a/dev/scripts/PS/enforce-utils-rules.ps1 b/dev/scripts/PS/enforce-utils-rules.ps1 -index a285a2da7..fee787857 100644 ---- a/dev/scripts/PS/enforce-utils-rules.ps1 -+++ b/dev/scripts/PS/enforce-utils-rules.ps1 -@@ -27,7 +27,7 @@ $ErrorActionPreference = "Stop" - $RepoRoot = Resolve-Path (Join-Path $PSScriptRoot "..\..\..") - $SharedUtilsRoot = Join-Path $RepoRoot "src\shared\utils" - $EngineUtilsRoot = Join-Path $RepoRoot "src\engine\utils" --$ReportDir = Join-Path $RepoRoot "dev\docs_build\dev\reports" -+$ReportDir = Join-Path $RepoRoot "dev\reports" - $CsvPath = Join-Path $ReportDir "utils_rules_audit.csv" - - New-Item -ItemType Directory -Path $ReportDir -Force | Out-Null -@@ -72,7 +72,9 @@ foreach ($file in $EngineUtils) { - $SourceFiles = @(Get-ChildItem -Path $RepoRoot -Recurse -File -Include *.js,*.mjs,*.html,*.json,*.md -ErrorAction SilentlyContinue | Where-Object { - $_.FullName -notmatch '\\.git\\' -and - $_.FullName -notmatch '\\node_modules\\' -and -+ $_.FullName -notmatch '\\dev\\workspace\\artifacts\\' -and - $_.FullName -notmatch '\\tmp\\' -and -+ $_.FullName -notmatch '\\dev\\reports\\' -and - $_.FullName -notmatch '\\docs\\dev\\reports\\' - }) - -@@ -113,7 +115,7 @@ Write-Output "Utils rules audit complete." - Write-Output "Shared utility files scanned: $($SharedUtils.Count)" - Write-Output "Engine utility files found: $($EngineUtils.Count)" - Write-Output "Findings: $($Findings.Count)" --Write-Output "Report: dev/docs_build/dev/reports/utils_rules_audit.csv" -+Write-Output "Report: dev/reports/utils_rules_audit.csv" - - if ($Details -and $Findings.Count -gt 0) { - Write-Output "" -diff --git a/dev/scripts/PS/find_json.ps1 b/dev/scripts/PS/find_json.ps1 -index af16f6cb1..3ac11dfff 100644 ---- a/dev/scripts/PS/find_json.ps1 -+++ b/dev/scripts/PS/find_json.ps1 -@@ -1,9 +1,13 @@ - $project = "C:\Users\davidq\Documents\GitHub\HTML-JavaScript-Gaming" -+$artifactTmp = Join-Path $project "dev\workspace\artifacts\tmp" -+$outputPath = Join-Path $artifactTmp "asteroids-json-list.txt" -+ -+New-Item -ItemType Directory -Path $artifactTmp -Force | Out-Null - - Get-ChildItem "$project\games\Asteroids" -Recurse -Filter *.json | - Sort-Object FullName | - ForEach-Object { - $_.FullName.Replace("$project\", "") --} | Set-Content "$project\tmp\asteroids-json-list.txt" -+} | Set-Content $outputPath - --Get-Content "$project\tmp\asteroids-json-list.txt" -\ No newline at end of file -+Get-Content $outputPath -diff --git a/dev/scripts/audit-playwright-test-locations.mjs b/dev/scripts/audit-playwright-test-locations.mjs -index dfce82024..f8f326c5d 100644 ---- a/dev/scripts/audit-playwright-test-locations.mjs -+++ b/dev/scripts/audit-playwright-test-locations.mjs -@@ -9,10 +9,10 @@ import path from "node:path"; - import { fileURLToPath } from "node:url"; - - const repoRoot = fileURLToPath(new URL("../..", import.meta.url)); --const defaultReportPath = "dev/docs_build/dev/reports/playwright_structure_audit.md"; --const defaultDiscoveryReportPath = "dev/docs_build/dev/reports/playwright_discovery_ownership_report.md"; --const defaultDiscoveryScopeReportPath = "dev/docs_build/dev/reports/playwright_discovery_scope_report.md"; --const defaultFilesystemScanReportPath = "dev/docs_build/dev/reports/filesystem_scan_reduction_report.md"; -+const defaultReportPath = "dev/reports/playwright_structure_audit.md"; -+const defaultDiscoveryReportPath = "dev/reports/playwright_discovery_ownership_report.md"; -+const defaultDiscoveryScopeReportPath = "dev/reports/playwright_discovery_scope_report.md"; -+const defaultFilesystemScanReportPath = "dev/reports/filesystem_scan_reduction_report.md"; - const playwrightRoot = "dev/tests/playwright"; - const sharedHelpersDir = "dev/tests/helpers"; - const textCache = new Map(); -diff --git a/dev/scripts/run-targeted-test-lanes.mjs b/dev/scripts/run-targeted-test-lanes.mjs -index 13340f555..ede9c0119 100644 ---- a/dev/scripts/run-targeted-test-lanes.mjs -+++ b/dev/scripts/run-targeted-test-lanes.mjs -@@ -12,34 +12,34 @@ import { fileURLToPath } from "node:url"; - - const repoRoot = fileURLToPath(new URL("../..", import.meta.url)); - const playwrightConfigPath = "dev/config/playwright.config.cjs"; --const defaultReportPath = "dev/docs_build/dev/reports/testing_lane_execution_report.md"; --const defaultDependencyGatingReportPath = "dev/docs_build/dev/reports/dependency_gating_report.md"; --const defaultDiscoveryOwnershipReportPath = "dev/docs_build/dev/reports/playwright_discovery_ownership_report.md"; --const defaultDiscoveryScopeReportPath = "dev/docs_build/dev/reports/playwright_discovery_scope_report.md"; --const defaultDependencyHydrationReuseReportPath = "dev/docs_build/dev/reports/dependency_hydration_reuse_report.md"; --const defaultFailureFingerprintReportPath = "dev/docs_build/dev/reports/failure_fingerprint_report.md"; --const defaultFilesystemScanReportPath = "dev/docs_build/dev/reports/filesystem_scan_reduction_report.md"; --const defaultIncrementalValidationReportPath = "dev/docs_build/dev/reports/incremental_validation_report.md"; --const defaultLaneInputValidationReportPath = "dev/docs_build/dev/reports/lane_input_validation_report.md"; --const defaultLaneDeduplicationReportPath = "dev/docs_build/dev/reports/lane_deduplication_report.md"; --const defaultLaneCompilationReportPath = "dev/docs_build/dev/reports/lane_compilation_report.md"; --const defaultLaneRuntimeOptimizationReportPath = "dev/docs_build/dev/reports/lane_runtime_optimization_report.md"; --const defaultLaneSnapshotReportPath = "dev/docs_build/dev/reports/lane_snapshot_report.md"; --const defaultLaneSnapshotDir = "dev/docs_build/dev/reports/lane_snapshots"; --const defaultLaneWarmStartReportPath = "dev/docs_build/dev/reports/lane_warm_start_report.md"; --const defaultLaneWarmStartDir = "dev/docs_build/dev/reports/lane_warm_starts"; --const defaultStaticReportPath = "dev/docs_build/dev/reports/static_validation_report.md"; --const defaultTargetedFileManifestReportPath = "dev/docs_build/dev/reports/targeted_file_manifest_report.md"; --const defaultPersistentLaneManifestReportPath = "dev/docs_build/dev/reports/persistent_lane_manifest_report.md"; --const defaultPersistentLaneManifestDir = "dev/docs_build/dev/reports/lane_manifests"; --const defaultRetrySuppressionReportPath = "dev/docs_build/dev/reports/retry_suppression_report.md"; --const defaultExecutionGraphReuseReportPath = "dev/docs_build/dev/reports/execution_graph_reuse_report.md"; --const defaultSlowPathPruningReportPath = "dev/docs_build/dev/reports/slow_path_pruning_report.md"; --const defaultMonolithTriggerRemovalReportPath = "dev/docs_build/dev/reports/monolith_trigger_removal_report.md"; --const defaultTestCleanupPerformanceReportPath = "dev/docs_build/dev/reports/test_cleanup_performance_report.md"; --const defaultTestCleanupRoutingReportPath = "dev/docs_build/dev/reports/test_cleanup_routing_report.md"; --const defaultValidationCacheReportPath = "dev/docs_build/dev/reports/validation_cache_report.md"; --const defaultZeroBrowserReportPath = "dev/docs_build/dev/reports/zero_browser_preflight_report.md"; -+const defaultReportPath = "dev/reports/testing_lane_execution_report.md"; -+const defaultDependencyGatingReportPath = "dev/reports/dependency_gating_report.md"; -+const defaultDiscoveryOwnershipReportPath = "dev/reports/playwright_discovery_ownership_report.md"; -+const defaultDiscoveryScopeReportPath = "dev/reports/playwright_discovery_scope_report.md"; -+const defaultDependencyHydrationReuseReportPath = "dev/reports/dependency_hydration_reuse_report.md"; -+const defaultFailureFingerprintReportPath = "dev/reports/failure_fingerprint_report.md"; -+const defaultFilesystemScanReportPath = "dev/reports/filesystem_scan_reduction_report.md"; -+const defaultIncrementalValidationReportPath = "dev/reports/incremental_validation_report.md"; -+const defaultLaneInputValidationReportPath = "dev/reports/lane_input_validation_report.md"; -+const defaultLaneDeduplicationReportPath = "dev/reports/lane_deduplication_report.md"; -+const defaultLaneCompilationReportPath = "dev/reports/lane_compilation_report.md"; -+const defaultLaneRuntimeOptimizationReportPath = "dev/reports/lane_runtime_optimization_report.md"; -+const defaultLaneSnapshotReportPath = "dev/reports/lane_snapshot_report.md"; -+const defaultLaneSnapshotDir = "dev/workspace/artifacts/lane_snapshots"; -+const defaultLaneWarmStartReportPath = "dev/reports/lane_warm_start_report.md"; -+const defaultLaneWarmStartDir = "dev/workspace/artifacts/lane_warm_starts"; -+const defaultStaticReportPath = "dev/reports/static_validation_report.md"; -+const defaultTargetedFileManifestReportPath = "dev/reports/targeted_file_manifest_report.md"; -+const defaultPersistentLaneManifestReportPath = "dev/reports/persistent_lane_manifest_report.md"; -+const defaultPersistentLaneManifestDir = "dev/workspace/artifacts/lane_manifests"; -+const defaultRetrySuppressionReportPath = "dev/reports/retry_suppression_report.md"; -+const defaultExecutionGraphReuseReportPath = "dev/reports/execution_graph_reuse_report.md"; -+const defaultSlowPathPruningReportPath = "dev/reports/slow_path_pruning_report.md"; -+const defaultMonolithTriggerRemovalReportPath = "dev/reports/monolith_trigger_removal_report.md"; -+const defaultTestCleanupPerformanceReportPath = "dev/reports/test_cleanup_performance_report.md"; -+const defaultTestCleanupRoutingReportPath = "dev/reports/test_cleanup_routing_report.md"; -+const defaultValidationCacheReportPath = "dev/reports/validation_cache_report.md"; -+const defaultZeroBrowserReportPath = "dev/reports/zero_browser_preflight_report.md"; - const locationAuditScript = "dev/scripts/audit-playwright-test-locations.mjs"; - const playwrightCli = path.join( - repoRoot, -@@ -76,7 +76,7 @@ const pr38PerformanceEvidence = Object.freeze({ - test: "Preview Generator V2 real batch output" - } - ], -- sourceReport: "dev/docs_build/dev/reports/test_cleanup_performance_report.md", -+ sourceReport: "dev/reports/test_cleanup_performance_report.md", - totalLaneElapsedMs: 169710 - }); - -@@ -3954,7 +3954,7 @@ function makeIncrementalValidationReport({ scopedDiscovery }) { - "- Fresh persisted manifests avoid repeated lane graph generation.", - "- Fresh persisted manifests avoid repeated helper and fixture resolution.", - "- Fresh persisted manifests avoid repeated ownership scans outside explicit manifest inputs.", -- "- Incremental validation remains deterministic and does not use project JSON, toolState, localStorage, sessionStorage, or repo tmp/." -+ "- Incremental validation remains deterministic and does not use project JSON, toolState, localStorage, sessionStorage, or repo artifact tmp/." - ); - - return `${lines.join("\n").trim()}\n`; -@@ -4550,8 +4550,8 @@ function makeZeroBrowserPreflightReport({ - `| invalid grep patterns | ${runnerPreflight.findings.some((entry) => entry.includes("grep")) ? "FAIL" : "PASS"} | ${runnerPreflight.findings.filter((entry) => entry.includes("grep")).join("; ") || "No invalid grep patterns."} |`, - `| Windows quoting hazards | ${runnerPreflight.findings.some((entry) => entry.includes("quoting hazard")) ? "FAIL" : "PASS"} | ${runnerPreflight.notes.filter((entry) => entry.includes("grep pattern")).join("; ") || "No shell quoting hazards."} |`, - `| invalid lane references | ${unknownLanes.length > 0 ? "FAIL" : "PASS"} | ${unknownLanes.join("; ") || "No invalid lane references."} |`, -- `| invalid lane configuration | ${laneCompilation.status} | See dev/docs_build/dev/reports/lane_compilation_report.md. |`, -- `| deterministic dependency graph | ${dependencyGate.status} | See dev/docs_build/dev/reports/dependency_gating_report.md. |`, -+ `| invalid lane configuration | ${laneCompilation.status} | See dev/reports/lane_compilation_report.md. |`, -+ `| deterministic dependency graph | ${dependencyGate.status} | See dev/reports/dependency_gating_report.md. |`, - `| conflicting reusable helper ownership | ${structureAudit.status} | Shared helper filenames checked against known game names. |`, - "", - "## Corrected Ownership Drift", -diff --git a/dev/scripts/validate-asset-ownership-strategy.mjs b/dev/scripts/validate-asset-ownership-strategy.mjs -index 750e2ac06..6cee119f6 100644 ---- a/dev/scripts/validate-asset-ownership-strategy.mjs -+++ b/dev/scripts/validate-asset-ownership-strategy.mjs -@@ -18,7 +18,7 @@ const ASTEROIDS_MANIFEST_PATH = "dev/archive/v1-v2/games/Asteroids/game.manifest - const TEMPLATE_MANIFEST_PATH = "dev/archive/v1-v2/games/_template/assets/tools.manifest.json"; - const SAMPLE_ASSET_BROWSER_SCENE_PATH = "dev/archive/v1-v2/samples/phase-15/1505/AssetBrowserScene.js"; - const TOOL_DEMO_PROJECT_ASSETS_PATH = "src/shared/toolbox/samples/project-asset-registry-demo/project.assets.json"; --const REPORT_PATH = "dev/docs_build/dev/reports/asset_ownership_strategy_validation.txt"; -+const REPORT_PATH = "dev/reports/asset_ownership_strategy_validation.txt"; - - function toRepoPath(value) { - return String(value || "").replace(/\\/g, "/"); -diff --git a/dev/scripts/validate-canonical-repository-structure.mjs b/dev/scripts/validate-canonical-repository-structure.mjs -index 2b142956f..a101e9ba0 100644 ---- a/dev/scripts/validate-canonical-repository-structure.mjs -+++ b/dev/scripts/validate-canonical-repository-structure.mjs -@@ -223,7 +223,7 @@ function auditTestPath(filePath) { - "Tests", - filePath, - "Generated test result artifacts must not be tracked under active dev/tests/results/.", -- "ignored tmp/test-results/ or dev/docs_build/dev/reports/", -+ "ignored dev/workspace/artifacts/tmp/test-results/ or dev/reports/", - ); - } - if (APPROVED_LEGACY_TEST_SEGMENTS.has(segment)) { -diff --git a/dev/scripts/validate-tool-registry.mjs b/dev/scripts/validate-tool-registry.mjs -index 189249c6a..67cd5092d 100644 ---- a/dev/scripts/validate-tool-registry.mjs -+++ b/dev/scripts/validate-tool-registry.mjs -@@ -7,7 +7,7 @@ const __filename = fileURLToPath(import.meta.url); - const __dirname = path.dirname(__filename); - const repoRoot = path.resolve(__dirname, "../.."); - const toolboxRoot = path.join(repoRoot, "toolbox"); --const reportPath = path.join(repoRoot, "dev", "docs_build", "dev", "reports", "tool_registry_validation.txt"); -+const reportPath = path.join(repoRoot, "dev", "reports", "tool_registry_validation.txt"); - - const IGNORED_DIRECTORIES = new Set([ - "_tool_template-v2", -@@ -147,7 +147,7 @@ async function main() { - - console.log("TOOL_REGISTRY_VALID"); - visibleActiveEntries.forEach((entry) => console.log(`- ACTIVE ${entry.displayName}`)); -- console.log(`- REPORT dev/docs_build/dev/reports/${path.basename(reportPath)}`); -+ console.log(`- REPORT dev/reports/${path.basename(reportPath)}`); - } - - await main(); -diff --git a/dev/scripts/write-codex-review-artifacts.mjs b/dev/scripts/write-codex-review-artifacts.mjs -index 859ce7f3c..c7b3b5469 100644 ---- a/dev/scripts/write-codex-review-artifacts.mjs -+++ b/dev/scripts/write-codex-review-artifacts.mjs -@@ -4,7 +4,7 @@ import { dirname, resolve } from "node:path"; - import { mkdirSync, writeFileSync } from "node:fs"; - - const repoRoot = resolve(dirname(fileURLToPath(import.meta.url)), "../.."); --const reportsDirectory = resolve(repoRoot, "dev", "docs_build", "dev", "reports"); -+const reportsDirectory = resolve(repoRoot, "dev", "reports"); - const reviewDiffPath = resolve(reportsDirectory, "codex_review.diff"); - const changedFilesPath = resolve(reportsDirectory, "codex_changed_files.txt"); - -diff --git a/dev/tests/helpers/playwrightV8CoverageReporter.mjs b/dev/tests/helpers/playwrightV8CoverageReporter.mjs -index 861869633..c51336e33 100644 ---- a/dev/tests/helpers/playwrightV8CoverageReporter.mjs -+++ b/dev/tests/helpers/playwrightV8CoverageReporter.mjs -@@ -6,8 +6,8 @@ import path from "node:path"; - export class PlaywrightV8CoverageReporter { - constructor({ - repoRoot = process.cwd(), -- reportPath = "dev/docs_build/dev/reports/playwright_v8_coverage_report.txt", -- guardrailReportPath = "dev/docs_build/dev/reports/coverage_changed_js_guardrail.txt", -+ reportPath = "dev/reports/playwright_v8_coverage_report.txt", -+ guardrailReportPath = "dev/reports/coverage_changed_js_guardrail.txt", - advisoryLowCoveragePercent = 50 - } = {}) { - this.repoRoot = repoRoot; -diff --git a/dev/tests/index.html b/dev/tests/index.html -index ab65a1bb0..89ae741de 100644 ---- a/dev/tests/index.html -+++ b/dev/tests/index.html -@@ -13,7 +13,7 @@ -

Install and Run

-
npm run test:launch-smoke
- --

The script auto-installs ws into <project>/tmp/node_modules if missing.

-+

The script auto-installs ws into <project>/dev/workspace/artifacts/tmp/node_modules if missing.

- - -
-@@ -28,28 +28,28 @@ npm run test:launch-smoke -- --games --tools - -
-

What the Script Creates

--
<project>/tmp/node_modules/
--<project>/tmp/package.json
--<project>/tmp/launch-smoke-browser/
--<project>/tmp/launch-smoke-runtime/
--<project>/tmp/launch-smoke-owned.json
-+
<project>/dev/workspace/artifacts/tmp/node_modules/
-+<project>/dev/workspace/artifacts/tmp/package.json
-+<project>/dev/workspace/artifacts/tmp/launch-smoke-browser/
-+<project>/dev/workspace/artifacts/tmp/launch-smoke-runtime/
-+<project>/dev/workspace/artifacts/tmp/launch-smoke-owned.json
-
- -
-

Cleanup Behavior

-

Deletes only script-owned artifacts:

--
<project>/tmp/launch-smoke-browser/
--<project>/tmp/launch-smoke-runtime/
--<project>/tmp/launch-smoke-owned.json
-+
<project>/dev/workspace/artifacts/tmp/launch-smoke-browser/
-+<project>/dev/workspace/artifacts/tmp/launch-smoke-runtime/
-+<project>/dev/workspace/artifacts/tmp/launch-smoke-owned.json
-

Does not delete:

--
<project>/tmp/node_modules/
-+
<project>/dev/workspace/artifacts/tmp/node_modules/
-
- -
-

Terminal Output At End

-
[launch-smoke ...] summary: PASS=220 FAIL=4 TOTAL=224
--[launch-smoke ...] report: <project>/dev/docs_build/dev/reports/launch_smoke_report.md
--[launch-smoke ...] isolated node_modules: <project>/tmp/node_modules
-+[launch-smoke ...] report: <project>/dev/reports/launch_smoke_report.md
-+[launch-smoke ...] isolated node_modules: <project>/dev/workspace/artifacts/tmp/node_modules
- [launch-smoke ...] failed entries: none
-
- -diff --git a/dev/tests/playwright_installation.txt b/dev/tests/playwright_installation.txt -index 0c6920486..6ba828238 100644 ---- a/dev/tests/playwright_installation.txt -+++ b/dev/tests/playwright_installation.txt -@@ -115,7 +115,7 @@ HTML-JavaScript-Gaming/ - - ✔ Keep node_modules at root - ✔ Do NOT move node_modules to tmp --✔ tmp/test-results is safe for outputs -+✔ dev/workspace/artifacts/tmp/test-results is safe for outputs - ``` - - --- -diff --git a/dev/tests/runtime/GamesIndexWorkspaceManagerOpen.test.mjs b/dev/tests/runtime/GamesIndexWorkspaceManagerOpen.test.mjs -index 9ad3f0c31..583e06835 100644 ---- a/dev/tests/runtime/GamesIndexWorkspaceManagerOpen.test.mjs -+++ b/dev/tests/runtime/GamesIndexWorkspaceManagerOpen.test.mjs -@@ -40,19 +40,19 @@ async function ensureIsolatedWsDependency() { - - const wsWrapperPath = path.join(isolatedNodeModulesRoot, "ws", "wrapper.mjs"); - if (!fs.existsSync(wsWrapperPath)) { -- log("installing isolated dependency: ws -> /tmp/node_modules"); -+ log("installing isolated dependency: ws -> /dev/workspace/artifacts/tmp/node_modules"); - execFileSync("npm", ["install", "--prefix", tmpRoot, "ws"], { - cwd: repoRoot, - stdio: "inherit", - shell: process.platform === "win32" - }); - } else { -- log("isolated dependency present: /tmp/node_modules/ws"); -+ log("isolated dependency present: /dev/workspace/artifacts/tmp/node_modules/ws"); - } - - const wsModule = await import(pathToFileURL(wsWrapperPath).href); - WebSocketCtor = wsModule.WebSocket; -- assert.ok(WebSocketCtor, "Failed to load WebSocket from /tmp/node_modules/ws"); -+ assert.ok(WebSocketCtor, "Failed to load WebSocket from /dev/workspace/artifacts/tmp/node_modules/ws"); - } - - function createStaticServer(rootDir) { -diff --git a/dev/tests/runtime/LaunchSmokeAllEntries.test.mjs b/dev/tests/runtime/LaunchSmokeAllEntries.test.mjs -index 30ad9afc3..629f1c171 100644 ---- a/dev/tests/runtime/LaunchSmokeAllEntries.test.mjs -+++ b/dev/tests/runtime/LaunchSmokeAllEntries.test.mjs -@@ -93,19 +93,19 @@ async function ensureIsolatedWsDependency() { - - const wsWrapperPath = path.join(isolatedNodeModulesRoot, 'ws', 'wrapper.mjs'); - if (!fs.existsSync(wsWrapperPath)) { -- log('installing isolated dependency: ws -> /tmp/node_modules'); -+ log('installing isolated dependency: ws -> /dev/workspace/artifacts/tmp/node_modules'); - execFileSync('npm', ['install', '--prefix', tmpRoot, 'ws'], { - cwd: repoRoot, - stdio: 'inherit', - shell: process.platform === 'win32' - }); - } else { -- log('isolated dependency present: /tmp/node_modules/ws'); -+ log('isolated dependency present: /dev/workspace/artifacts/tmp/node_modules/ws'); - } - - const wsModule = await import(pathToFileURL(wsWrapperPath).href); - WebSocketCtor = wsModule.WebSocket; -- assert.ok(WebSocketCtor, 'Failed to load WebSocket from /tmp/node_modules/ws'); -+ assert.ok(WebSocketCtor, 'Failed to load WebSocket from /dev/workspace/artifacts/tmp/node_modules/ws'); - } - - function parseCliArgs(argv) { -diff --git a/dev/tests/shared/ContractIndexValidation.test.mjs b/dev/tests/shared/ContractIndexValidation.test.mjs -index 5e48f6a99..87991892e 100644 ---- a/dev/tests/shared/ContractIndexValidation.test.mjs -+++ b/dev/tests/shared/ContractIndexValidation.test.mjs -@@ -83,7 +83,7 @@ function entry(name, contractFile, testFile, fixtureFile, specFile, reportFile) - testPath: `tests/shared/${testFile}`, - fixturePath: `tests/fixtures/${fixtureFile}`, - specPath: `dev/docs_build/dev/specs/${specFile}`, -- reportPath: `dev/docs_build/dev/reports/${reportFile}`, -+ reportPath: `dev/reports/${reportFile}`, - }); - } - -diff --git a/dev/tests/shared/ContractReportStandardization.test.mjs b/dev/tests/shared/ContractReportStandardization.test.mjs -index 11c570570..9747cadac 100644 ---- a/dev/tests/shared/ContractReportStandardization.test.mjs -+++ b/dev/tests/shared/ContractReportStandardization.test.mjs -@@ -12,36 +12,36 @@ import { fileURLToPath } from "node:url"; - const repoRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../../.."); - - export const CONTRACT_REPORT_PATHS = Object.freeze([ -- "dev/docs_build/dev/reports/audit_event_contract_tests_validation.md", -- "dev/docs_build/dev/reports/backup_snapshot_contract_tests_validation.md", -- "dev/docs_build/dev/reports/collaboration_role_contract_tests_validation.md", -- "dev/docs_build/dev/reports/contract_chain_validation.md", -- "dev/docs_build/dev/reports/contract_fixture_isolation_validation.md", -- "dev/docs_build/dev/reports/contract_index_validation.md", -- "dev/docs_build/dev/reports/contract_negative_case_coverage.md", -- "dev/docs_build/dev/reports/contract_report_standardization.md", -- "dev/docs_build/dev/reports/creator_profile_contract_tests_validation.md", -- "dev/docs_build/dev/reports/download_grant_contract_tests_validation.md", -- "dev/docs_build/dev/reports/entitlement_contract_tests_validation.md", -- "dev/docs_build/dev/reports/identity_permissions_contract_tests_validation.md", -- "dev/docs_build/dev/reports/install_receipt_contract_tests_validation.md", -- "dev/docs_build/dev/reports/library_item_contract_tests_validation.md", -- "dev/docs_build/dev/reports/manifest_contract_tests_validation.md", -- "dev/docs_build/dev/reports/marketplace_listing_contract_tests_validation.md", -- "dev/docs_build/dev/reports/marketplace_transaction_boundary_contract_tests_validation.md", -- "dev/docs_build/dev/reports/migration_plan_contract_tests_validation.md", -- "dev/docs_build/dev/reports/moderation_queue_contract_tests_validation.md", -- "dev/docs_build/dev/reports/notification_contract_tests_validation.md", -- "dev/docs_build/dev/reports/organization_contract_tests_validation.md", -- "dev/docs_build/dev/reports/project_contract_tests_validation.md", -- "dev/docs_build/dev/reports/project_workspace_contract_rename_validation.md", -- "dev/docs_build/dev/reports/publish_contract_tests_validation.md", -- "dev/docs_build/dev/reports/release_contract_tests_validation.md", -- "dev/docs_build/dev/reports/restore_snapshot_contract_tests_validation.md", -- "dev/docs_build/dev/reports/review_rating_contract_tests_validation.md", -- "dev/docs_build/dev/reports/tool_state_contract_tests_validation.md", -- "dev/docs_build/dev/reports/update_channel_contract_tests_validation.md", -- "dev/docs_build/dev/reports/version_compatibility_contract_tests_validation.md", -+ "dev/reports/audit_event_contract_tests_validation.md", -+ "dev/reports/backup_snapshot_contract_tests_validation.md", -+ "dev/reports/collaboration_role_contract_tests_validation.md", -+ "dev/reports/contract_chain_validation.md", -+ "dev/reports/contract_fixture_isolation_validation.md", -+ "dev/reports/contract_index_validation.md", -+ "dev/reports/contract_negative_case_coverage.md", -+ "dev/reports/contract_report_standardization.md", -+ "dev/reports/creator_profile_contract_tests_validation.md", -+ "dev/reports/download_grant_contract_tests_validation.md", -+ "dev/reports/entitlement_contract_tests_validation.md", -+ "dev/reports/identity_permissions_contract_tests_validation.md", -+ "dev/reports/install_receipt_contract_tests_validation.md", -+ "dev/reports/library_item_contract_tests_validation.md", -+ "dev/reports/manifest_contract_tests_validation.md", -+ "dev/reports/marketplace_listing_contract_tests_validation.md", -+ "dev/reports/marketplace_transaction_boundary_contract_tests_validation.md", -+ "dev/reports/migration_plan_contract_tests_validation.md", -+ "dev/reports/moderation_queue_contract_tests_validation.md", -+ "dev/reports/notification_contract_tests_validation.md", -+ "dev/reports/organization_contract_tests_validation.md", -+ "dev/reports/project_contract_tests_validation.md", -+ "dev/reports/project_workspace_contract_rename_validation.md", -+ "dev/reports/publish_contract_tests_validation.md", -+ "dev/reports/release_contract_tests_validation.md", -+ "dev/reports/restore_snapshot_contract_tests_validation.md", -+ "dev/reports/review_rating_contract_tests_validation.md", -+ "dev/reports/tool_state_contract_tests_validation.md", -+ "dev/reports/update_channel_contract_tests_validation.md", -+ "dev/reports/version_compatibility_contract_tests_validation.md", - ]); - - const REQUIRED_REPORT_ANCHORS = Object.freeze([ -diff --git a/dev/tests/shared/ProjectWorkspaceMigrationGovernanceCloseoutValidation.test.mjs b/dev/tests/shared/ProjectWorkspaceMigrationGovernanceCloseoutValidation.test.mjs -index 55ffc84bd..ef83a7e17 100644 ---- a/dev/tests/shared/ProjectWorkspaceMigrationGovernanceCloseoutValidation.test.mjs -+++ b/dev/tests/shared/ProjectWorkspaceMigrationGovernanceCloseoutValidation.test.mjs -@@ -57,7 +57,7 @@ export function createMigrationGovernanceCloseoutSummary(scenarios) { - } - - function readReport(reportName) { -- const reportPath = fileURLToPath(new URL(`../../docs_build/dev/reports/${reportName}`, import.meta.url)); -+ const reportPath = fileURLToPath(new URL(`../../reports/${reportName}`, import.meta.url)); - return readFileSync(reportPath, "utf8"); - } - -diff --git a/dev/tests/tools/AssetOwnershipStrategyCloseout.test.mjs b/dev/tests/tools/AssetOwnershipStrategyCloseout.test.mjs -index 2cbbbcd08..a80be6065 100644 ---- a/dev/tests/tools/AssetOwnershipStrategyCloseout.test.mjs -+++ b/dev/tests/tools/AssetOwnershipStrategyCloseout.test.mjs -@@ -9,7 +9,7 @@ export async function run() { - `Asset ownership strategy validation failed.\n${result.issues.join("\n")}` - ); - assert.equal( -- result.reportPath.endsWith("dev/docs_build/dev/reports/asset_ownership_strategy_validation.txt"), -+ result.reportPath.endsWith("dev/reports/asset_ownership_strategy_validation.txt"), - true - ); - } -diff --git a/dev/workspace/artifacts/README.md b/dev/workspace/artifacts/README.md -new file mode 100644 -index 000000000..a58988be2 ---- /dev/null -+++ b/dev/workspace/artifacts/README.md -@@ -0,0 +1,7 @@ -+# Development Artifact Workspace -+ -+This folder owns generated non-report development artifacts. -+ -+- `tmp/` is the ignored location for repo-structured ZIPs, Playwright output, local staging, and other temporary generated files. -+- Report files belong in `dev/reports/` instead of this folder. -+- Runtime product data must not be written here. From 6831a2c552c54ffe34d839bc764b0317f6c353aa Mon Sep 17 00:00:00 2001 From: Alfa Team Date: Sat, 27 Jun 2026 16:37:26 -0400 Subject: [PATCH 2/2] Fix platform validation workflow path --- .github/workflows/platform-validation.yml | 2 +- ..._OWNER_008-update-path-governance-final.md | 26 +- ...path-governance-final_branch-validation.md | 4 +- ...overnance-final_manual-validation-notes.md | 10 +- ...-governance-final_requirement-checklist.md | 12 +- ...e-path-governance-final_validation-lane.md | 4 +- dev/reports/codex_changed_files.txt | 16 +- dev/reports/codex_review.diff | 397 ++++++------------ 8 files changed, 151 insertions(+), 320 deletions(-) diff --git a/.github/workflows/platform-validation.yml b/.github/workflows/platform-validation.yml index e618de60b..c08529826 100644 --- a/.github/workflows/platform-validation.yml +++ b/.github/workflows/platform-validation.yml @@ -20,4 +20,4 @@ jobs: node-version: "20" - name: Run Platform Validation Suite - run: node ./scripts/run-platform-validation-suite.mjs + run: node ./dev/scripts/run-platform-validation-suite.mjs diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md index 747697f52..d385f5fc1 100644 --- a/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md @@ -1,33 +1,27 @@ # PR_26179_OWNER_008-update-path-governance-final -Generated: 2026-06-27T19:38:31.874Z +Updated: 2026-06-27T20:36:34.395Z Branch: PR_26179_OWNER_008-update-path-governance-final -Base stack head before PR_008: f3c2e7a02 ZIP: dev/workspace/artifacts/tmp/PR_26179_OWNER_008-update-path-governance-final_delta.zip ## Purpose -Finalize path governance after the dev workspace restructure chain and document the final root, src, and dev workspace standards. +Finalize path governance after the dev workspace restructure chain and correct the PR #243 GitHub Actions platform-validation script path after the root `scripts/` directory moved to `dev/scripts/`. ## Changes -- Updated repository directory governance with final root ownership and legacy path exceptions. -- Added the final `src/web/`, `src/api-runtime/`, and `src/runtime/` layer standard. -- Updated canonical repository structure governance to point new work at final paths. -- Updated README architecture wording to describe target src layers without moving current source directories. +- Updated `.github/workflows/platform-validation.yml` from `node ./scripts/run-platform-validation-suite.mjs` to `node ./dev/scripts/run-platform-validation-suite.mjs`. +- Confirmed no other GitHub Actions workflow references still call moved root `./scripts/` paths. +- Preserved PR_008 governance-only path standard updates. ## Validation Summary | Status | Item | Notes | | --- | --- | --- | -| PASS | Current branch is PR_26179_OWNER_008-update-path-governance-final | confirmed | -| PASS | Documentation/governance-only scope | no protected runtime/product/API/database/test/script/config diffs | -| PASS | Final root directory standard documented | repository_directory_standard.md names product root, src, dev, docs, games, toolbox, and public product roots | -| PASS | Final src layer standard documented | src/web, src/api-runtime, and src/runtime documented with legacy transition buckets | -| PASS | Final dev workspace standard documented | dev/docs_build, dev/reports, dev/tests, dev/scripts, dev/config, dev/archive, and dev/workspace/artifacts documented | -| PASS | Old report root references absent from active target search | (no matches) | -| PASS | Old /tmp ZIP reference absent from active target search | (no matches) | -| PASS | Final src path grep | 15 matching lines | +| PASS | Current branch | PR_26179_OWNER_008-update-path-governance-final | +| PASS | GitHub Actions platform-validation path | .github/workflows/platform-validation.yml uses node ./dev/scripts/run-platform-validation-suite.mjs | +| PASS | Old moved root scripts path grep | No .github workflow references to node ./scripts/, run: ./scripts/, or standalone ./scripts/ remain. | | PASS | npm run validate:canonical-structure | passed | | PASS | git diff --check | passed | -| PASS | Playwright impacted | not impacted; no runtime/test/browser behavior changed | +| PASS | node ./dev/scripts/run-platform-validation-suite.mjs | passed locally: 8/8 deterministic platform scenarios; CI gate green message emitted | +| PASS | Runtime/product scope | No runtime/business logic, production pages, or routes modified. | diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md index 572d86235..9aa2f3847 100644 --- a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md @@ -2,7 +2,7 @@ | Status | Item | Notes | | --- | --- | --- | -| PASS | Current branch is PR_26179_OWNER_008-update-path-governance-final | confirmed | -| PASS | Documentation/governance-only scope | no protected runtime/product/API/database/test/script/config diffs | +| PASS | Current branch | PR_26179_OWNER_008-update-path-governance-final | +| PASS | GitHub Actions platform-validation path | .github/workflows/platform-validation.yml uses node ./dev/scripts/run-platform-validation-suite.mjs | Result: PASS diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md index 5e2ef2c4f..c4b864fe3 100644 --- a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md @@ -1,8 +1,10 @@ # PR_26179_OWNER_008-update-path-governance-final Manual Validation Notes - Confirmed branch: PR_26179_OWNER_008-update-path-governance-final -- Confirmed no product/runtime/API/database/test/script/config files changed in this PR. -- Confirmed final target src layers are documented only; no source folders were moved. -- Confirmed old report root search returned no active matches. -- Playwright was not run beyond impact assessment because this PR is documentation/governance-only. +- Worktree was clean at start before the workflow patch. +- Changed only `.github/workflows/platform-validation.yml` and PR_008 report artifacts for the CI path correction. +- Confirmed no old root `./scripts/` GitHub Actions workflow calls remain. +- Ran `node ./dev/scripts/run-platform-validation-suite.mjs`; local platform validation passed 8/8 scenarios and emitted CI gate green. +- Ran `npm run validate:canonical-structure`; passed. +- Ran `git diff --check`; passed. - Repo-structured ZIP path: `dev/workspace/artifacts/tmp/PR_26179_OWNER_008-update-path-governance-final_delta.zip` diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md index d817114c3..b9d563f5b 100644 --- a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md @@ -2,11 +2,11 @@ | Status | Item | Notes | | --- | --- | --- | -| PASS | Finalize all Project Instructions and governance references to the new paths | Active governance references final dev/report/artifact paths and documents legacy exceptions. | -| PASS | Document final root directory standard | repository_directory_standard.md and README updated. | -| PASS | Document final src/ layer standard | src/web, src/api-runtime, src/runtime documented. Existing top-level src buckets are legacy transition only. | -| PASS | Document final dev/ workspace standard | dev ownership for docs_build, reports, tests, scripts, config, archive, workspace/artifacts documented. | -| PASS | Confirm no old docs_build/, tests/, archive/, or tmp/ path references remain unless documented as legacy exceptions | Old root paths are documented as legacy exceptions; active output/report refs use new paths. | -| PASS | No runtime/product/API/database changes | Protected diff check returned no files. | +| PASS | Find workflow references to node ./scripts/run-platform-validation-suite.mjs | Located one reference in .github/workflows/platform-validation.yml. | +| PASS | Update to node ./dev/scripts/run-platform-validation-suite.mjs | Updated only the moved CI script path. | +| PASS | Check for other GitHub Actions moved root scripts/ references | Targeted grep found no remaining old root ./scripts/ workflow calls. | +| PASS | Do not move files | No files moved. | +| PASS | Do not change runtime behavior | Only GitHub Actions workflow path and reports changed. | +| PASS | Do not change production pages | No production page files changed. | Result: PASS diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md index a0d7ee8e6..c52132f60 100644 --- a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md @@ -2,8 +2,10 @@ | Status | Item | Notes | | --- | --- | --- | +| PASS | Old moved root scripts path grep | No .github workflow references to node ./scripts/, run: ./scripts/, or standalone ./scripts/ remain. | | PASS | npm run validate:canonical-structure | passed | | PASS | git diff --check | passed | -| PASS | Playwright impacted | not impacted; no runtime/test/browser behavior changed | +| PASS | node ./dev/scripts/run-platform-validation-suite.mjs | passed locally: 8/8 deterministic platform scenarios; CI gate green message emitted | +| PASS | Runtime/product scope | No runtime/business logic, production pages, or routes modified. | Scoped validation result: PASS diff --git a/dev/reports/codex_changed_files.txt b/dev/reports/codex_changed_files.txt index 58246d5da..151247629 100644 --- a/dev/reports/codex_changed_files.txt +++ b/dev/reports/codex_changed_files.txt @@ -1,14 +1,10 @@ # git status --short -M README.md -M dev/README.md -M dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md -M dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md -M dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md -A dev/reports/PR_26179_OWNER_008-update-path-governance-final.md -A dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md -A dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md -A dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md -A dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md +M .github/workflows/platform-validation.yml +M dev/reports/PR_26179_OWNER_008-update-path-governance-final.md +M dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md +M dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md +M dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md +M dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md # git ls-files --others --exclude-standard (no output) diff --git a/dev/reports/codex_review.diff b/dev/reports/codex_review.diff index 686e04921..2ad5f8408 100644 --- a/dev/reports/codex_review.diff +++ b/dev/reports/codex_review.diff @@ -1,292 +1,129 @@ -diff --git a/README.md b/README.md -index a1ce33d09..e29c74907 100644 ---- a/README.md -+++ b/README.md -@@ -90,8 +90,10 @@ This repo is designed as a learning system, not just a code dump. - - ## 🏗️ Architecture Overview - --- Engine Layer → [src/engine/](src/engine/) --- Advanced Systems → [src/advanced/](src/advanced/) -+- Web layer target → `src/web/` -+- API runtime target → `src/api-runtime/` -+- Runtime layer target → `src/runtime/` -+- Existing `src/engine/`, `src/advanced/`, `src/shared/`, `src/tools/`, `src/api/`, and `src/dev-runtime/` folders are legacy transition buckets until dedicated migration PRs move them. - - Tools, samples, and games consume public contracts only - - --- -@@ -122,8 +124,8 @@ PLAN_PR → BUILD_PR → APPLY_PR - - ## ⚠️ Runtime Boundary Rules - --- Engine code lives in [src/engine/](src/engine/) --- Advanced systems live in [src/advanced/](src/advanced/) -+- New deployable source belongs under `src/web/`, `src/api-runtime/`, or `src/runtime/`. -+- Existing legacy `src/*` buckets remain transition-only until scoped migration PRs move them. - - Tools, samples, and games must use public contracts only - - Engine boundaries should not be bypassed - -diff --git a/dev/README.md b/dev/README.md -index c5220fc99..38c4687dc 100644 ---- a/dev/README.md -+++ b/dev/README.md -@@ -16,6 +16,9 @@ This folder is the destination shell for non-deployable development workspace ma - - `dev/docs_build/` owns active development governance and PR workflow material. - - `dev/reports/` owns generated reports. - - `dev/workspace/artifacts/` owns generated non-report artifacts and local temporary workspace output. -+- `dev/tests/` owns non-deployable tests. -+- `dev/scripts/` owns development-only scripts and runners. -+- `dev/config/` owns development-only runner and tooling configuration. - - `dev/archive/` owns historical development reference material. - - `dev/project-instructions/` is deprecated reference only; active Project Instructions live under `dev/docs_build/dev/ProjectInstructions/`. - -diff --git a/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md b/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md -index e26df0978..f14002820 100644 ---- a/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md -+++ b/dev/docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md -@@ -66,7 +66,7 @@ When active guidance overlaps, use these canonical owner documents: - - - Workflow and Product Owner testable completion: `dev/docs_build/dev/ProjectInstructions/addendums/pr_workflow.md` - - START / WORK / END lifecycle, branch gates, mandatory hard stops, and EOD main lock: `dev/docs_build/dev/ProjectInstructions/addendums/project_instructions_single_source_eod_lock.md` --- Repository directory ownership and restructure boundaries: `dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md` -+- Repository directory ownership, final root standard, final `src/` layer standard, final `dev/` workspace standard, and restructure boundaries: `dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md` - - Page-level Playwright organization and completion coverage: `dev/docs_build/dev/ProjectInstructions/addendums/test_structure_standardization.md` - - API/environment model and `Browser -> API -> Database` rule: `dev/docs_build/dev/ProjectInstructions/addendums/environment_governance_model.md` - - Environment variable, URL, R2 prefix, and feature flag configuration: `dev/docs_build/dev/ProjectInstructions/addendums/environment_configuration_standards.md` -diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md b/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md -index e26939469..ced3fe354 100644 ---- a/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md -+++ b/dev/docs_build/dev/ProjectInstructions/addendums/canonical_repository_structure.md -@@ -6,6 +6,29 @@ Establish the canonical repository structure for future development and reduce t - - ## Canonical Structure - -+Root product sections: -+- docs/ -+- games/ -+- toolbox/ -+- account/ -+- admin/ -+- legal/ -+- assets/ -+ -+Deployable application source: -+- src/web/{feature-name}/ -+- src/api-runtime/{feature-name}/ -+- src/runtime/{feature-name}/ -+ -+Development workspace: -+- dev/docs_build/ -+- dev/reports/ -+- dev/tests/ -+- dev/scripts/ -+- dev/config/ -+- dev/archive/ -+- dev/workspace/artifacts/ -+ - Tools: - - toolbox/{tool-name}/index.html - -@@ -20,14 +43,15 @@ Themes: - Shared JavaScript: - - assets/js/shared/ - --Engine: --- src/engine/{feature-name}/ -- --API: --- api/{feature-name}/ -+Legacy transition buckets: -+- src/advanced/ -+- src/api/ -+- src/dev-runtime/ -+- src/engine/ -+- src/shared/ -+- src/tools/ - --Serverside: --- serverside/{feature-name}/ -+These legacy transition buckets may remain until explicit migration PRs move them into `src/web/`, `src/api-runtime/`, or `src/runtime/`. - - ## Rules +diff --git a/.github/workflows/platform-validation.yml b/.github/workflows/platform-validation.yml +index e618de60b..c08529826 100644 +--- a/.github/workflows/platform-validation.yml ++++ b/.github/workflows/platform-validation.yml +@@ -20,4 +20,4 @@ jobs: + node-version: "20" + + - name: Run Platform Validation Suite +- run: node ./scripts/run-platform-validation-suite.mjs ++ run: node ./dev/scripts/run-platform-validation-suite.mjs +diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md +index 747697f52..d385f5fc1 100644 +--- a/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md ++++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md +@@ -1,33 +1,27 @@ + # PR_26179_OWNER_008-update-path-governance-final -@@ -37,3 +61,7 @@ Serverside: - - No new scattered JS folders. - - No new scattered CSS folders. - - New development follows the canonical structure. -+- New deployable `src/` work follows `src/web/`, `src/api-runtime/`, or `src/runtime/`. -+- New non-deployable work belongs under `dev/`. -+- Required reports belong under flat `dev/reports/`. -+- Required ZIPs and generated temporary artifacts belong under `dev/workspace/artifacts/tmp/`. -diff --git a/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md b/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md -index 82efbf588..c1ce4d859 100644 ---- a/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md -+++ b/dev/docs_build/dev/ProjectInstructions/addendums/repository_directory_standard.md -@@ -5,25 +5,57 @@ Owner: OWNER +-Generated: 2026-06-27T19:38:31.874Z ++Updated: 2026-06-27T20:36:34.395Z + Branch: PR_26179_OWNER_008-update-path-governance-final +-Base stack head before PR_008: f3c2e7a02 + ZIP: dev/workspace/artifacts/tmp/PR_26179_OWNER_008-update-path-governance-final_delta.zip ## Purpose --Define the target repository directory ownership model before the development workspace restructure chain begins. -+Define the target repository directory ownership model for the post-restructure repository. - - This document is governance only. It does not move runtime, UI, API, tests, or production files by itself. - - ## Directory Ownership - --- Repository root contains production/public product sections and standard repository configuration. -+- Repository root contains production/public product sections and standard repository configuration only. - - `src/` contains deployable application code. - - `dev/` contains non-deployable build, test, bootstrap, governance, report, and local workspace items. - - `docs/` remains at root because it is production Docs & Help. - - `games/` remains at root because it is public game discovery. - - `toolbox/` remains at root because it is the Creator toolbox/workspace. -+- Other public product roots such as `account/`, `admin/`, `legal/`, and `assets/` remain root-level product sections when present. -+ -+## Final Src Layer Standard -+ -+The final `src/` ownership model is: -+ -+- `src/web/` for browser-facing deployable application modules used by public pages, account/admin surfaces, and Creator tools. -+- `src/api-runtime/` for deployable API/runtime service modules that back the shared Browser -> API -> Postgres/R2 contract. -+- `src/runtime/` for deployable game, tool, engine, and shared runtime capabilities. -+ -+Transition rule: -+ -+- Existing top-level `src/advanced/`, `src/api/`, `src/dev-runtime/`, `src/engine/`, `src/shared/`, and `src/tools/` directories are legacy transition buckets until explicit migration PRs move them. -+- Do not add new top-level `src/` layer names outside `src/web/`, `src/api-runtime/`, or `src/runtime/` without OWNER approval. -+- Do not use team names in runtime source filenames. - - ## Development Workspace Paths - --- `dev/docs_build/` owns active development governance, Project Instructions, PR workflow material, validation reports, and generated documentation-workspace artifacts. -+- `dev/docs_build/` owns active development governance, Project Instructions, and PR workflow material. -+- `dev/reports/` owns generated reports using flat filenames. -+- `dev/tests/` owns non-deployable test suites. -+- `dev/scripts/` owns development-only scripts and runners. -+- `dev/config/` owns development-only runner and tooling configuration. -+- `dev/workspace/artifacts/` owns generated non-report artifacts and ignored local temporary workspace output. - - `dev/archive/` owns historical development reference material that is not active governance. - - `dev/project-instructions/` is deprecated reference only when retained; it must point to `dev/docs_build/dev/ProjectInstructions/`. --- Root `docs_build/`, root `archive/`, and root `project-instructions/` are not active workspace locations after the governance workspace move. -+- Root `docs_build/`, root `tests/`, root `archive/`, root `tmp/`, and root `project-instructions/` are not active workspace locations after the restructure. -+- Root `tmp/` may remain ignored as legacy local scratch only; required Codex ZIPs and generated temporary artifacts belong under `dev/workspace/artifacts/tmp/`. -+ -+## Legacy Reference Exceptions -+ -+Path references to old root `docs_build/`, `tests/`, `archive/`, or `tmp/` locations are allowed only when they are: -+ -+- historical/reference content under `dev/archive/` or `dev/docs_build/dev/PR/reference/` -+- explicit legacy exception notes in active governance -+- ignore rules that keep obsolete local scratch from entering commits -+- migration reports documenting the old path and its replacement -+ -+Active commands, templates, and Project Instructions must use the final `dev/`, `dev/reports/`, and `dev/workspace/artifacts/` paths. - - ## Creator Data Boundary - -@@ -42,3 +74,5 @@ This document is governance only. It does not move runtime, UI, API, tests, or p - ## PR Chain Boundary - - The development workspace restructure must proceed through sequential scoped PRs. A PR may only move or update the paths named in its purpose. -+ -+Final path-governance PRs may document target paths and legacy exceptions, but they must not move deployable application code unless explicitly scoped. -diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md -new file mode 100644 -index 000000000..747697f52 ---- /dev/null -+++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final.md -@@ -0,0 +1,33 @@ -+# PR_26179_OWNER_008-update-path-governance-final -+ -+Generated: 2026-06-27T19:38:31.874Z -+Branch: PR_26179_OWNER_008-update-path-governance-final -+Base stack head before PR_008: f3c2e7a02 -+ZIP: dev/workspace/artifacts/tmp/PR_26179_OWNER_008-update-path-governance-final_delta.zip -+ -+## Purpose -+ -+Finalize path governance after the dev workspace restructure chain and document the final root, src, and dev workspace standards. -+ -+## Changes -+ -+- Updated repository directory governance with final root ownership and legacy path exceptions. -+- Added the final `src/web/`, `src/api-runtime/`, and `src/runtime/` layer standard. -+- Updated canonical repository structure governance to point new work at final paths. -+- Updated README architecture wording to describe target src layers without moving current source directories. -+ -+## Validation Summary -+ -+| Status | Item | Notes | -+| --- | --- | --- | -+| PASS | Current branch is PR_26179_OWNER_008-update-path-governance-final | confirmed | -+| PASS | Documentation/governance-only scope | no protected runtime/product/API/database/test/script/config diffs | -+| PASS | Final root directory standard documented | repository_directory_standard.md names product root, src, dev, docs, games, toolbox, and public product roots | -+| PASS | Final src layer standard documented | src/web, src/api-runtime, and src/runtime documented with legacy transition buckets | -+| PASS | Final dev workspace standard documented | dev/docs_build, dev/reports, dev/tests, dev/scripts, dev/config, dev/archive, and dev/workspace/artifacts documented | -+| PASS | Old report root references absent from active target search | (no matches) | -+| PASS | Old /tmp ZIP reference absent from active target search | (no matches) | -+| PASS | Final src path grep | 15 matching lines | -+| PASS | npm run validate:canonical-structure | passed | -+| PASS | git diff --check | passed | -+| PASS | Playwright impacted | not impacted; no runtime/test/browser behavior changed | +-Finalize path governance after the dev workspace restructure chain and document the final root, src, and dev workspace standards. ++Finalize path governance after the dev workspace restructure chain and correct the PR #243 GitHub Actions platform-validation script path after the root `scripts/` directory moved to `dev/scripts/`. + + ## Changes + +-- Updated repository directory governance with final root ownership and legacy path exceptions. +-- Added the final `src/web/`, `src/api-runtime/`, and `src/runtime/` layer standard. +-- Updated canonical repository structure governance to point new work at final paths. +-- Updated README architecture wording to describe target src layers without moving current source directories. ++- Updated `.github/workflows/platform-validation.yml` from `node ./scripts/run-platform-validation-suite.mjs` to `node ./dev/scripts/run-platform-validation-suite.mjs`. ++- Confirmed no other GitHub Actions workflow references still call moved root `./scripts/` paths. ++- Preserved PR_008 governance-only path standard updates. + + ## Validation Summary + + | Status | Item | Notes | + | --- | --- | --- | +-| PASS | Current branch is PR_26179_OWNER_008-update-path-governance-final | confirmed | +-| PASS | Documentation/governance-only scope | no protected runtime/product/API/database/test/script/config diffs | +-| PASS | Final root directory standard documented | repository_directory_standard.md names product root, src, dev, docs, games, toolbox, and public product roots | +-| PASS | Final src layer standard documented | src/web, src/api-runtime, and src/runtime documented with legacy transition buckets | +-| PASS | Final dev workspace standard documented | dev/docs_build, dev/reports, dev/tests, dev/scripts, dev/config, dev/archive, and dev/workspace/artifacts documented | +-| PASS | Old report root references absent from active target search | (no matches) | +-| PASS | Old /tmp ZIP reference absent from active target search | (no matches) | +-| PASS | Final src path grep | 15 matching lines | ++| PASS | Current branch | PR_26179_OWNER_008-update-path-governance-final | ++| PASS | GitHub Actions platform-validation path | .github/workflows/platform-validation.yml uses node ./dev/scripts/run-platform-validation-suite.mjs | ++| PASS | Old moved root scripts path grep | No .github workflow references to node ./scripts/, run: ./scripts/, or standalone ./scripts/ remain. | + | PASS | npm run validate:canonical-structure | passed | + | PASS | git diff --check | passed | +-| PASS | Playwright impacted | not impacted; no runtime/test/browser behavior changed | ++| PASS | node ./dev/scripts/run-platform-validation-suite.mjs | passed locally: 8/8 deterministic platform scenarios; CI gate green message emitted | ++| PASS | Runtime/product scope | No runtime/business logic, production pages, or routes modified. | diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md -new file mode 100644 -index 000000000..572d86235 ---- /dev/null +index 572d86235..9aa2f3847 100644 +--- a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_branch-validation.md -@@ -0,0 +1,8 @@ -+# PR_26179_OWNER_008-update-path-governance-final Branch Validation -+ -+| Status | Item | Notes | -+| --- | --- | --- | -+| PASS | Current branch is PR_26179_OWNER_008-update-path-governance-final | confirmed | -+| PASS | Documentation/governance-only scope | no protected runtime/product/API/database/test/script/config diffs | -+ -+Result: PASS +@@ -2,7 +2,7 @@ + + | Status | Item | Notes | + | --- | --- | --- | +-| PASS | Current branch is PR_26179_OWNER_008-update-path-governance-final | confirmed | +-| PASS | Documentation/governance-only scope | no protected runtime/product/API/database/test/script/config diffs | ++| PASS | Current branch | PR_26179_OWNER_008-update-path-governance-final | ++| PASS | GitHub Actions platform-validation path | .github/workflows/platform-validation.yml uses node ./dev/scripts/run-platform-validation-suite.mjs | + + Result: PASS diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md -new file mode 100644 -index 000000000..5e2ef2c4f ---- /dev/null +index 5e2ef2c4f..c4b864fe3 100644 +--- a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_manual-validation-notes.md -@@ -0,0 +1,8 @@ -+# PR_26179_OWNER_008-update-path-governance-final Manual Validation Notes -+ -+- Confirmed branch: PR_26179_OWNER_008-update-path-governance-final -+- Confirmed no product/runtime/API/database/test/script/config files changed in this PR. -+- Confirmed final target src layers are documented only; no source folders were moved. -+- Confirmed old report root search returned no active matches. -+- Playwright was not run beyond impact assessment because this PR is documentation/governance-only. -+- Repo-structured ZIP path: `dev/workspace/artifacts/tmp/PR_26179_OWNER_008-update-path-governance-final_delta.zip` +@@ -1,8 +1,10 @@ + # PR_26179_OWNER_008-update-path-governance-final Manual Validation Notes + + - Confirmed branch: PR_26179_OWNER_008-update-path-governance-final +-- Confirmed no product/runtime/API/database/test/script/config files changed in this PR. +-- Confirmed final target src layers are documented only; no source folders were moved. +-- Confirmed old report root search returned no active matches. +-- Playwright was not run beyond impact assessment because this PR is documentation/governance-only. ++- Worktree was clean at start before the workflow patch. ++- Changed only `.github/workflows/platform-validation.yml` and PR_008 report artifacts for the CI path correction. ++- Confirmed no old root `./scripts/` GitHub Actions workflow calls remain. ++- Ran `node ./dev/scripts/run-platform-validation-suite.mjs`; local platform validation passed 8/8 scenarios and emitted CI gate green. ++- Ran `npm run validate:canonical-structure`; passed. ++- Ran `git diff --check`; passed. + - Repo-structured ZIP path: `dev/workspace/artifacts/tmp/PR_26179_OWNER_008-update-path-governance-final_delta.zip` diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md -new file mode 100644 -index 000000000..d817114c3 ---- /dev/null +index d817114c3..b9d563f5b 100644 +--- a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_requirement-checklist.md -@@ -0,0 +1,12 @@ -+# PR_26179_OWNER_008-update-path-governance-final Requirement Checklist -+ -+| Status | Item | Notes | -+| --- | --- | --- | -+| PASS | Finalize all Project Instructions and governance references to the new paths | Active governance references final dev/report/artifact paths and documents legacy exceptions. | -+| PASS | Document final root directory standard | repository_directory_standard.md and README updated. | -+| PASS | Document final src/ layer standard | src/web, src/api-runtime, src/runtime documented. Existing top-level src buckets are legacy transition only. | -+| PASS | Document final dev/ workspace standard | dev ownership for docs_build, reports, tests, scripts, config, archive, workspace/artifacts documented. | -+| PASS | Confirm no old docs_build/, tests/, archive/, or tmp/ path references remain unless documented as legacy exceptions | Old root paths are documented as legacy exceptions; active output/report refs use new paths. | -+| PASS | No runtime/product/API/database changes | Protected diff check returned no files. | -+ -+Result: PASS +@@ -2,11 +2,11 @@ + + | Status | Item | Notes | + | --- | --- | --- | +-| PASS | Finalize all Project Instructions and governance references to the new paths | Active governance references final dev/report/artifact paths and documents legacy exceptions. | +-| PASS | Document final root directory standard | repository_directory_standard.md and README updated. | +-| PASS | Document final src/ layer standard | src/web, src/api-runtime, src/runtime documented. Existing top-level src buckets are legacy transition only. | +-| PASS | Document final dev/ workspace standard | dev ownership for docs_build, reports, tests, scripts, config, archive, workspace/artifacts documented. | +-| PASS | Confirm no old docs_build/, tests/, archive/, or tmp/ path references remain unless documented as legacy exceptions | Old root paths are documented as legacy exceptions; active output/report refs use new paths. | +-| PASS | No runtime/product/API/database changes | Protected diff check returned no files. | ++| PASS | Find workflow references to node ./scripts/run-platform-validation-suite.mjs | Located one reference in .github/workflows/platform-validation.yml. | ++| PASS | Update to node ./dev/scripts/run-platform-validation-suite.mjs | Updated only the moved CI script path. | ++| PASS | Check for other GitHub Actions moved root scripts/ references | Targeted grep found no remaining old root ./scripts/ workflow calls. | ++| PASS | Do not move files | No files moved. | ++| PASS | Do not change runtime behavior | Only GitHub Actions workflow path and reports changed. | ++| PASS | Do not change production pages | No production page files changed. | + + Result: PASS diff --git a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md -new file mode 100644 -index 000000000..a0d7ee8e6 ---- /dev/null +index a0d7ee8e6..c52132f60 100644 +--- a/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md +++ b/dev/reports/PR_26179_OWNER_008-update-path-governance-final_validation-lane.md -@@ -0,0 +1,9 @@ -+# PR_26179_OWNER_008-update-path-governance-final Validation Lane -+ -+| Status | Item | Notes | -+| --- | --- | --- | -+| PASS | npm run validate:canonical-structure | passed | -+| PASS | git diff --check | passed | -+| PASS | Playwright impacted | not impacted; no runtime/test/browser behavior changed | -+ -+Scoped validation result: PASS +@@ -2,8 +2,10 @@ + + | Status | Item | Notes | + | --- | --- | --- | ++| PASS | Old moved root scripts path grep | No .github workflow references to node ./scripts/, run: ./scripts/, or standalone ./scripts/ remain. | + | PASS | npm run validate:canonical-structure | passed | + | PASS | git diff --check | passed | +-| PASS | Playwright impacted | not impacted; no runtime/test/browser behavior changed | ++| PASS | node ./dev/scripts/run-platform-validation-suite.mjs | passed locally: 8/8 deterministic platform scenarios; CI gate green message emitted | ++| PASS | Runtime/product scope | No runtime/business logic, production pages, or routes modified. | + + Scoped validation result: PASS