From 746a3f9df126c44367d5b46964d389d5c3160b57 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sun, 9 Nov 2025 23:26:48 +0100 Subject: [PATCH] docs: reorganize markdown documentation into proper directory structure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move technical documentation from root directory to organized locations for better project structure and discoverability. Documentation Moved to docs/development/: - UserInterfaceFramework.md: UI component framework specification and architecture - LOST_FUNCTIONALITY_ANALYSIS.md: Technical analysis of recovered JavaScript functionality - TDD_COMPLIANCE_REPORT.md: Test-Driven Development methodology validation report Obsolete Documentation Archived: - TEST_ENVIRONMENT.md → history/javascript-dev-tests/ Manual testing environment docs (replaced by automated testing) Files Remaining in Root: - CHANGELOG.md: Project changelog (standard location) - TODO.md: Active project tasks (operational file) Benefits: - ✅ Clean root directory with only operational files - ✅ Technical documentation properly organized in docs/development/ - ✅ Obsolete docs archived with historical context - ✅ Improved project navigation and documentation discoverability - ✅ Follows standard project organization conventions Project Structure: - Root: Operational files (CHANGELOG, TODO) - docs/development/: Technical documentation and reports - history/: Archived development artifacts and obsolete documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .../development/LOST_FUNCTIONALITY_ANALYSIS.md | 0 .../development/TDD_COMPLIANCE_REPORT.md | 0 .../development/UserInterfaceFramework.md | 0 history/javascript-dev-tests/README.md | 3 +++ .../javascript-dev-tests/TEST_ENVIRONMENT.md | 0 5 files changed, 3 insertions(+) rename LOST_FUNCTIONALITY_ANALYSIS.md => docs/development/LOST_FUNCTIONALITY_ANALYSIS.md (100%) rename TDD_COMPLIANCE_REPORT.md => docs/development/TDD_COMPLIANCE_REPORT.md (100%) rename UserInterfaceFramework.md => docs/development/UserInterfaceFramework.md (100%) rename TEST_ENVIRONMENT.md => history/javascript-dev-tests/TEST_ENVIRONMENT.md (100%) diff --git a/LOST_FUNCTIONALITY_ANALYSIS.md b/docs/development/LOST_FUNCTIONALITY_ANALYSIS.md similarity index 100% rename from LOST_FUNCTIONALITY_ANALYSIS.md rename to docs/development/LOST_FUNCTIONALITY_ANALYSIS.md diff --git a/TDD_COMPLIANCE_REPORT.md b/docs/development/TDD_COMPLIANCE_REPORT.md similarity index 100% rename from TDD_COMPLIANCE_REPORT.md rename to docs/development/TDD_COMPLIANCE_REPORT.md diff --git a/UserInterfaceFramework.md b/docs/development/UserInterfaceFramework.md similarity index 100% rename from UserInterfaceFramework.md rename to docs/development/UserInterfaceFramework.md diff --git a/history/javascript-dev-tests/README.md b/history/javascript-dev-tests/README.md index 85a0906d..525a113b 100644 --- a/history/javascript-dev-tests/README.md +++ b/history/javascript-dev-tests/README.md @@ -64,6 +64,9 @@ These files were **development artifacts** from the JavaScript UI framework deve - `demo_clean_editor.html` - Clean section editor demonstration - `test_dom_integration.html` - DOM integration testing page +#### **Obsolete Documentation (1 file)** +- `TEST_ENVIRONMENT.md` - Manual testing environment documentation (replaced by automated testing) + ## 🔄 **Replacement with Automated Tests** These manual development files have been **replaced** with proper automated Jest test cases in the **testdrive-jsui capability**: diff --git a/TEST_ENVIRONMENT.md b/history/javascript-dev-tests/TEST_ENVIRONMENT.md similarity index 100% rename from TEST_ENVIRONMENT.md rename to history/javascript-dev-tests/TEST_ENVIRONMENT.md