From 499de7a46e8cbba616c64768d578873c5918e426 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sun, 9 Nov 2025 23:22:24 +0100 Subject: [PATCH] cleanup: move test_document_extracted directory to history MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move test output directory from md-package extract command to history archive. This was manual test output from packaging functionality testing. What Was Moved: - test_document_extracted/content.md: Sample extracted markdown content - test_document_extracted/package.json: Package metadata for MDZ format - Added README.md documenting the archived test output Rationale: - Test output artifact from manual testing (created 2025-10-14) - No longer referenced by any current code - Packaging functionality properly tested elsewhere - Part of comprehensive root directory cleanup Project Status: - ✅ Root directory now clean of all test output artifacts - ✅ Development files cleanup 100% complete - ✅ All test artifacts properly archived with documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- history/test_document_extracted/README.md | 30 +++++++++++++++++++ .../test_document_extracted}/content.md | 0 .../test_document_extracted}/package.json | 0 3 files changed, 30 insertions(+) create mode 100644 history/test_document_extracted/README.md rename {test_document_extracted => history/test_document_extracted}/content.md (100%) rename {test_document_extracted => history/test_document_extracted}/package.json (100%) diff --git a/history/test_document_extracted/README.md b/history/test_document_extracted/README.md new file mode 100644 index 00000000..6071a9a0 --- /dev/null +++ b/history/test_document_extracted/README.md @@ -0,0 +1,30 @@ +# Test Document Extracted - Archive + +This directory contains test output from the `md-package extract` command functionality. + +## What Was Moved (2025-11-09) + +This was a **test output directory** created during manual testing of the MarkiTect packaging system. + +### Contents: +- `content.md` - Sample extracted markdown content +- `package.json` - Package metadata for MDZ format + +### Original Purpose: +Test output from running: +```bash +markitect md-package extract some-package.mdz --output test_document_extracted/ +``` + +### Why Archived: +- Manual test output artifact (not automated test) +- Created 2025-10-14, no longer referenced by any code +- Packaging functionality is properly tested elsewhere +- Cleanup of root directory development artifacts + +### Related Functionality: +The `md-package` command functionality is implemented in: +- `markitect/plugins/builtin/markdown_commands.py` +- `markitect/packaging/` modules + +*Archived as part of JavaScript/development files cleanup - 2025-11-09* \ No newline at end of file diff --git a/test_document_extracted/content.md b/history/test_document_extracted/content.md similarity index 100% rename from test_document_extracted/content.md rename to history/test_document_extracted/content.md diff --git a/test_document_extracted/package.json b/history/test_document_extracted/package.json similarity index 100% rename from test_document_extracted/package.json rename to history/test_document_extracted/package.json