Remove version number from design-bible filename

Version tracked inside file (currently v1.1).
Keeps filename stable like infrastructure manifest.
This commit is contained in:
Firefrost Automation
2026-02-09 20:06:23 -06:00
parent 7dcad7de29
commit 32ae6d876e
8 changed files with 47 additions and 27 deletions

View File

@@ -114,3 +114,6 @@
[2026-02-09 19:40:46] DAEMON: Found 1 task(s) in queue - executing...
[2026-02-09 19:51:26] DAEMON: Found 1 task(s) in queue - executing...
[2026-02-09 19:53:59] DAEMON: Found 1 task(s) in queue - executing...
[2026-02-09 19:57:33] DAEMON: Found 1 task(s) in queue - executing...
[2026-02-09 20:02:49] DAEMON: Found 1 task(s) in queue - executing...
[2026-02-09 20:06:23] DAEMON: Found 1 task(s) in queue - executing...

View File

@@ -495,3 +495,24 @@
[2026-02-09 19:53:59] ==========================================
[2026-02-09 19:53:59] Executing task: organize-repo.sh
[2026-02-09 19:53:59] ==========================================
[2026-02-09 19:53:59] Task organize-repo.sh completed (exit code: 0)
[2026-02-09 19:53:59] Committing results to Git...
[2026-02-09 19:54:00] Executor run complete
[2026-02-09 19:57:33] Pulling latest from Git...
[2026-02-09 19:57:33] ==========================================
[2026-02-09 19:57:33] Executing task: rename-infrastructure-manifest.sh
[2026-02-09 19:57:33] ==========================================
[2026-02-09 19:57:34] Task rename-infrastructure-manifest.sh completed (exit code: 0)
[2026-02-09 19:57:34] Committing results to Git...
[2026-02-09 19:57:34] Executor run complete
[2026-02-09 20:02:49] Pulling latest from Git...
[2026-02-09 20:02:49] ==========================================
[2026-02-09 20:02:49] Executing task: create-project-sync-system.sh
[2026-02-09 20:02:49] ==========================================
[2026-02-09 20:02:49] Task create-project-sync-system.sh completed (exit code: 0)
[2026-02-09 20:02:49] Committing results to Git...
[2026-02-09 20:02:50] Executor run complete
[2026-02-09 20:06:23] Pulling latest from Git...
[2026-02-09 20:06:23] ==========================================
[2026-02-09 20:06:23] Executing task: rename-design-bible.sh
[2026-02-09 20:06:23] ==========================================

View File

@@ -1,27 +0,0 @@
#!/bin/bash
cd ~/firefrost-work/firefrost-operations-manual
# Create archive directory
mkdir -p docs/archive/2026-02-09-session
# Archive session-specific files
mv docs/session-migration-feb9-2026.md docs/archive/2026-02-09-session/
mv docs/session-journal-feb9-2026.md docs/archive/2026-02-09-session/
mv tx1-cleanup-feb9-2026.txt docs/archive/2026-02-09-session/
# Remove test files
rm -f test-mirror.txt
# Archive old automation results (keep directory structure)
mkdir -p automation/archive
mv automation/results/*bookstack* automation/archive/ 2>/dev/null
mv automation/results/*mkdocs* automation/archive/ 2>/dev/null
mv automation/results/*wikijs* automation/archive/ 2>/dev/null
mv automation/results/test-* automation/archive/ 2>/dev/null
# Commit cleanup
git add -A
git commit -m "Repository cleanup: Archive session files, remove test files, organize automation results"
git push
echo "Repository organized and committed!"

View File

@@ -0,0 +1,20 @@
#!/bin/bash
cd ~/firefrost-work/firefrost-operations-manual
# Rename in docs/ (source location)
git mv docs/design-bible-v1.1.md docs/design-bible.md
# Update project-files/ (copy for Claude Project)
rm project-files/design-bible-v1_1.md
cp docs/design-bible.md project-files/design-bible.md
# Commit
git add -A
git commit -m "Remove version number from design-bible filename
Version tracked inside file (currently v1.1).
Keeps filename stable like infrastructure manifest."
git push
echo "Design bible renamed!"

View File

@@ -0,0 +1,3 @@
Task: rename-design-bible.sh
Started: Mon Feb 9 20:06:23 CST 2026
==========================================

0
master Normal file
View File