From 32ae6d876e976bf13837133032c743a71117646c Mon Sep 17 00:00:00 2001 From: Firefrost Automation Date: Mon, 9 Feb 2026 20:06:23 -0600 Subject: [PATCH] Remove version number from design-bible filename Version tracked inside file (currently v1.1). Keeps filename stable like infrastructure manifest. --- automation/logs/daemon.log | 3 +++ automation/logs/executor.log | 21 +++++++++++++++ automation/queue/organize-repo.sh | 27 ------------------- automation/queue/rename-design-bible.sh | 20 ++++++++++++++ .../results/rename-design-bible_result.txt | 3 +++ .../{design-bible-v1.1.md => design-bible.md} | 0 master | 0 .../{design-bible-v1_1.md => design-bible.md} | 0 8 files changed, 47 insertions(+), 27 deletions(-) delete mode 100755 automation/queue/organize-repo.sh create mode 100755 automation/queue/rename-design-bible.sh create mode 100644 automation/results/rename-design-bible_result.txt rename docs/{design-bible-v1.1.md => design-bible.md} (100%) create mode 100644 master rename project-files/{design-bible-v1_1.md => design-bible.md} (100%) diff --git a/automation/logs/daemon.log b/automation/logs/daemon.log index cbcf384..16f797b 100644 --- a/automation/logs/daemon.log +++ b/automation/logs/daemon.log @@ -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... diff --git a/automation/logs/executor.log b/automation/logs/executor.log index d6e8240..dad3541 100644 --- a/automation/logs/executor.log +++ b/automation/logs/executor.log @@ -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] ========================================== diff --git a/automation/queue/organize-repo.sh b/automation/queue/organize-repo.sh deleted file mode 100755 index 32651c2..0000000 --- a/automation/queue/organize-repo.sh +++ /dev/null @@ -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!" diff --git a/automation/queue/rename-design-bible.sh b/automation/queue/rename-design-bible.sh new file mode 100755 index 0000000..ddd7126 --- /dev/null +++ b/automation/queue/rename-design-bible.sh @@ -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!" diff --git a/automation/results/rename-design-bible_result.txt b/automation/results/rename-design-bible_result.txt new file mode 100644 index 0000000..e9093e8 --- /dev/null +++ b/automation/results/rename-design-bible_result.txt @@ -0,0 +1,3 @@ +Task: rename-design-bible.sh +Started: Mon Feb 9 20:06:23 CST 2026 +========================================== diff --git a/docs/design-bible-v1.1.md b/docs/design-bible.md similarity index 100% rename from docs/design-bible-v1.1.md rename to docs/design-bible.md diff --git a/master b/master new file mode 100644 index 0000000..e69de29 diff --git a/project-files/design-bible-v1_1.md b/project-files/design-bible.md similarity index 100% rename from project-files/design-bible-v1_1.md rename to project-files/design-bible.md