39 lines
1.3 KiB
Bash
Executable File
39 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
cd ~/firefrost-work/firefrost-operations-manual
|
|
|
|
# Create a project-files directory with stable filenames
|
|
mkdir -p project-files
|
|
|
|
# Copy current versions to stable filenames
|
|
cp Firefrost_Infrastructure_Manifest.md project-files/Firefrost_Vanilla_Manifest.md
|
|
cp docs/session-handoff.md project-files/session-handoff.md
|
|
cp automation/USAGE.md project-files/USAGE.md
|
|
cp docs/design-bible-v1.1.md project-files/design-bible-v1_1.md
|
|
|
|
# Create a README explaining the sync
|
|
cat > project-files/README.md << 'README'
|
|
# Claude Project Files
|
|
|
|
These files are synchronized to the Claude Project for context.
|
|
|
|
**Stable URLs (never change):**
|
|
- Firefrost_Vanilla_Manifest.md: Infrastructure status
|
|
- session-handoff.md: Current session context
|
|
- USAGE.md: Automation system guide
|
|
- design-bible-v1_1.md: Brand guidelines
|
|
|
|
**To update project files:**
|
|
1. Download from GitHub: https://github.com/frostystyle/firefrost-operations-manual/tree/master/project-files
|
|
2. Upload to Claude Project (replace existing)
|
|
|
|
**Auto-sync:** These update automatically when you commit to Gitea.
|
|
README
|
|
|
|
# Commit the new structure
|
|
git add project-files/
|
|
git commit -m "Add project-files directory with stable names for Claude Project sync"
|
|
git push
|
|
|
|
echo "Project files directory created!"
|
|
echo "Files available at: https://github.com/frostystyle/firefrost-operations-manual/tree/master/project-files"
|