From 4eadaf954a08e5f0c0ad0402d6d20e9e1af69a75 Mon Sep 17 00:00:00 2001 From: oib Date: Wed, 11 Feb 2026 21:50:38 +0100 Subject: [PATCH] chore: remove cleanup and security guide documentation files --- CLEANUP_SUMMARY.md | 74 ------------------- .../SECURITY_CLEANUP_GUIDE.md | 0 2 files changed, 74 deletions(-) delete mode 100644 CLEANUP_SUMMARY.md rename SECURITY_CLEANUP_GUIDE.md => docs/SECURITY_CLEANUP_GUIDE.md (100%) diff --git a/CLEANUP_SUMMARY.md b/CLEANUP_SUMMARY.md deleted file mode 100644 index c7892662..00000000 --- a/CLEANUP_SUMMARY.md +++ /dev/null @@ -1,74 +0,0 @@ -# Directory Cleanup Summary - -## Changes Made - -### 1. Created New Directories -- `docs/reports/` - For generated reports and summaries -- `docs/guides/` - For development guides -- `scripts/testing/` - For test scripts and utilities -- `dev-utils/` - For development utilities - -### 2. Moved Files - -#### Documentation Reports → `docs/reports/` -- AITBC_PAYMENT_ARCHITECTURE.md -- BLOCKCHAIN_DEPLOYMENT_SUMMARY.md -- IMPLEMENTATION_COMPLETE_SUMMARY.md -- INTEGRATION_TEST_FIXES.md -- INTEGRATION_TEST_UPDATES.md -- PAYMENT_INTEGRATION_COMPLETE.md -- SKIPPED_TESTS_ROADMAP.md -- TESTING_STATUS_REPORT.md -- TEST_FIXES_COMPLETE.md -- WALLET_COORDINATOR_INTEGRATION.md - -#### Development Guides → `docs/guides/` -- WINDSURF_TESTING_GUIDE.md -- WINDSURF_TEST_SETUP.md - -#### Test Scripts → `scripts/testing/` -- test_block_import.py -- test_block_import_complete.py -- test_minimal.py -- test_model_validation.py -- test_payment_integration.py -- test_payment_local.py -- test_simple_import.py -- test_tx_import.py -- test_tx_model.py -- run_test_suite.py -- run_tests.py -- verify_windsurf_tests.py -- register_test_clients.py - -#### Development Utilities → `dev-utils/` -- aitbc-pythonpath.pth - -#### Database Files → `data/` -- coordinator.db - -### 3. Created Index Files -- `docs/reports/README.md` - Index of all reports -- `docs/guides/README.md` - Index of all guides -- `scripts/testing/README.md` - Test scripts documentation -- `dev-utils/README.md` - Development utilities documentation - -### 4. Updated Documentation -- Updated main `README.md` with new directory structure -- Added testing section to README - -## Result - -The root directory is now cleaner with better organization: -- Essential files remain in root (README.md, LICENSE, pyproject.toml, etc.) -- Documentation is properly categorized -- Test scripts are grouped together -- Development utilities have their own directory -- Database files are in the data directory (already gitignored) - -## Notes - -- All moved files are still accessible through their new locations -- The .gitignore already covers the data directory for database files -- Test scripts can still be run from their new location -- No functional changes were made, only organizational improvements diff --git a/SECURITY_CLEANUP_GUIDE.md b/docs/SECURITY_CLEANUP_GUIDE.md similarity index 100% rename from SECURITY_CLEANUP_GUIDE.md rename to docs/SECURITY_CLEANUP_GUIDE.md