29 lines
856 B
Bash
Executable File
29 lines
856 B
Bash
Executable File
#!/bin/bash
|
|
cd ~/firefrost-work/firefrost-operations-manual
|
|
|
|
echo "=== CURRENT REPOSITORY STRUCTURE ==="
|
|
find . -maxdepth 3 -type f -name "*.md" -o -name "*.txt" | grep -v ".git" | sort
|
|
|
|
echo ""
|
|
echo "=== FILES TO ARCHIVE (outdated/superseded) ==="
|
|
echo "- Any old session summaries in docs/"
|
|
echo "- Any duplicate or old infrastructure manifests"
|
|
echo "- Test files (test-mirror.txt, etc.)"
|
|
|
|
echo ""
|
|
echo "=== RECOMMENDED STRUCTURE ==="
|
|
echo "Root:"
|
|
echo " - README.md (keep)"
|
|
echo " - CHANGELOG.md (keep)"
|
|
echo " - Firefrost_Infrastructure_Manifest_v1.4.md (CURRENT)"
|
|
echo ""
|
|
echo "docs/:"
|
|
echo " - session-handoff.md (CURRENT)"
|
|
echo " - session-migration-feb9-2026.md (archive candidate)"
|
|
echo " - Other planning docs (keep)"
|
|
echo ""
|
|
echo "docs/archive/:"
|
|
echo " - Old session summaries"
|
|
echo " - Superseded planning docs"
|
|
echo " - Test files"
|