+++ /dev/null
-#!/usr/bin/env bash
-# final_document_cleanup.sh
-# NOTE: This script deletes ALL non-core files from document/Harmony/
-# and ONLY keeps the three final documents (which must be created next).
-
-set -e
-echo "Starting final document cleanup..."
-
-DOC_HARMONY_DIR="document/Harmony"
-
-# 1. Delete all utility scripts and installer guides
-rm -f "$DOC_HARMONY_DIR/quick_start_developer.sh"
-rm -f "$DOC_HARMONY_DIR/install_IntelliJ_IDEA.txt"
-rm -f "$DOC_HARMONY_DIR/install_Eclipse.txt"
-rm -f "$DOC_HARMONY_DIR/install_jdk-23.txt"
-rm -f "$DOC_HARMONY_DIR/install_Emacs.txt"
-rm -f "$DOC_HARMONY_DIR/emptydirs.md"
-rm -f "$DOC_HARMONY_DIR/python_env.md"
-
-# 2. Delete all retired convention files (integrated into 02_)
-rm -f "$DOC_HARMONY_DIR/bash_name_of_script.txt"
-rm -f "$DOC_HARMONY_DIR/directory_naming.html"
-rm -f "$DOC_HARMONY_DIR/variable_suffix_conventions.txt"
-rm -f "$DOC_HARMONY_DIR/RT_C_control_structure.html"
-rm -f "$DOC_HARMONY_DIR/RT_C_control_structure.org"
-
-# 3. Clean up any remaining files not in the final list
-# This assumes only our three target files remain.
-find "$DOC_HARMONY_DIR" -type f ! -name "00_Project_Structure.org" \
- ! -name "01_Workflow_and_Build_Contract.org" \
- ! -name "02_RT_Code_Format.org" -delete
-
-echo "Cleanup complete. The directory is ready for the new documents."
-