diff --git a/projects/salon-social-media-system/.gitignore b/projects/salon-social-media-system/.gitignore deleted file mode 100644 index e693a4b..0000000 --- a/projects/salon-social-media-system/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -*.mp4 -*.mov -*.avi -raw_footage/ -*.tmp -.DS_Store \ No newline at end of file diff --git a/projects/salon-social-media-system/README.md b/projects/salon-social-media-system/README.md deleted file mode 100644 index b32f89b..0000000 --- a/projects/salon-social-media-system/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# Salon Social Media Production & Management System - -**Hermes Agent Powered Pipeline for Phoenix Salon & Spa** - -## Structure -- agents/: Role prompts and subagent configs -- docs/: Brand guidelines, calendar -- prompts/: Reusable prompts -- video/: Hyperframes + FFMPEG templates, clips -- assets/: Images and approved media - -## Full Pipeline -1. Research (trends, local events) -2. Drafting (brand voice) -3. Video (clip, subtitle with Hyperframes, edit) -4. Review/QA -5. Postiz scheduling -6. Analytics feedback loop - -Cron-ready. Human approval via Telegram. - -See hermes-automation for execution scripts. \ No newline at end of file diff --git a/projects/salon-social-media-system/agents/README.md b/projects/salon-social-media-system/agents/README.md deleted file mode 100644 index 363654e..0000000 --- a/projects/salon-social-media-system/agents/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Agents & Subagents - -Hermes role prompts for research, writer, video editor, QA, etc. \ No newline at end of file diff --git a/projects/salon-social-media-system/docs/README.md b/projects/salon-social-media-system/docs/README.md deleted file mode 100644 index 6fff5ee..0000000 --- a/projects/salon-social-media-system/docs/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Docs & Guidelines - -Brand voice, content calendar, posting schedule for Phoenix Salon. \ No newline at end of file diff --git a/projects/salon-social-media-system/docs/phoenix-salon-brand-voice.md b/projects/salon-social-media-system/docs/phoenix-salon-brand-voice.md deleted file mode 100644 index 92eb6cd..0000000 --- a/projects/salon-social-media-system/docs/phoenix-salon-brand-voice.md +++ /dev/null @@ -1,16 +0,0 @@ -# Phoenix Salon & Spa Brand Voice Skill - -## When to Use -Use this skill for any content generation, drafting, or review in the Phoenix Salon social media pipeline. - -## Procedure -1. Warm, professional, empowering tone. -2. Focus on client education, local community (Cameron Park/Placerville), ethical visuals. -3. Content Pillars: Tips (60%), Social Proof (20%), Promotions (15%), Community (5%). -4. Always include soft CTA for bookings. - -## Examples -See examples in video/ and social media/ folders. - -## Verification -Review for warmth and local relevance. \ No newline at end of file diff --git a/projects/salon-social-media-system/video/README.md b/projects/salon-social-media-system/video/README.md deleted file mode 100644 index 785e088..0000000 --- a/projects/salon-social-media-system/video/README.md +++ /dev/null @@ -1,42 +0,0 @@ -# Phoenix Salon Video Production - -Simple, high-quality tools for making professional Reels. - -## Goal -Produce clean, on-brand 15–30 second vertical videos quickly without overcomplicating the process. - -## Files in This Folder - -| File | Purpose | -|------|--------| -| `hyperframes-reel-template.html` | Clean, production-ready HyperFrames template with good typography, logo placement, and timing structure | -| `ffmpeg-helpers.sh` | Simple, reliable commands for clipping, subtitles, vertical formatting, and exporting | - -## Recommended Workflow (Minimal) - -1. **Clip** the best 15–20 seconds from raw footage -2. **Add subtitles** (burn clean, readable captions) -3. **Make vertical** (1080x1920) -4. **Add logo** (optional but recommended) -5. **Export** optimized for Instagram / TikTok - -## Quick Start - -```bash -# Make sure ffmpeg-helpers.sh is executable -chmod +x ffmpeg-helpers.sh - -# Example full flow -./ffmpeg-helpers.sh clip raw.mp4 00:00:08 00:00:18 part1.mp4 -./ffmpeg-helpers.sh burn_subtitles part1.mp4 captions.srt part1_subs.mp4 -./ffmpeg-helpers.sh make_vertical part1_subs.mp4 reel.mp4 -./ffmpeg-helpers.sh add_logo reel.mp4 logo.png final.mp4 -./ffmpeg-helpers.sh export_reel final.mp4 phoenix-reel.mp4 -``` - -## Notes -- Keep raw footage outside of Git (use .gitignore) -- For best results, record in good lighting with clear audio -- Use the HyperFrames template when you want more animated captions or polished motion graphics - -Ready to make great content for Phoenix Salon & Spa. \ No newline at end of file diff --git a/projects/salon-social-media-system/video/ffmpeg-helpers.sh b/projects/salon-social-media-system/video/ffmpeg-helpers.sh deleted file mode 100644 index 3cb175a..0000000 --- a/projects/salon-social-media-system/video/ffmpeg-helpers.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash -# ============================================ -# Phoenix Salon - Simple FFmpeg Helper Commands -# Production-ready, no over-engineering -# ============================================ - -# 1. Quick clip from raw footage (start time + duration) -clip() { - ffmpeg -i "$1" -ss "$2" -t "$3" -c:v libx264 -preset fast -crf 18 -c:a aac -b:a 128k "${4:-clip.mp4}" - echo "✅ Clipped: ${4:-clip.mp4}" -} - -# 2. Burn clean subtitles (SRT file) -burn_subtitles() { - ffmpeg -i "$1" -vf "subtitles=$2:force_style='FontSize=48,PrimaryColour=&HFFFFFF&,OutlineColour=&H000000&,BorderStyle=3,Outline=2,Shadow=0'" -c:v libx264 -preset fast -crf 18 -c:a copy "${3:-with_subs.mp4}" - echo "✅ Subtitles burned: ${3:-with_subs.mp4}" -} - -# 3. Resize to perfect vertical 9:16 for Reels/TikTok -make_vertical() { - ffmpeg -i "$1" -vf "scale=1080:1920:force_original_aspect_ratio=decrease,pad=1080:1920:(ow-iw)/2:(oh-ih)/2" -c:v libx264 -preset fast -crf 18 -c:a aac -b:a 128k "${2:-vertical.mp4}" - echo "✅ Made vertical 9:16: ${2:-vertical.mp4}" -} - -# 4. Add logo (bottom center, with padding) -add_logo() { - ffmpeg -i "$1" -i "$2" -filter_complex "[1]scale=280:-1[logo];[0][logo]overlay=(W-w)/2:H-h-120" -c:v libx264 -preset fast -crf 18 -c:a copy "${3:-with_logo.mp4}" - echo "✅ Logo added: ${3:-with_logo.mp4}" -} - -# 5. Full simple export (optimized for Instagram/TikTok) -export_reel() { - ffmpeg -i "$1" -c:v libx264 -preset slow -crf 19 -c:a aac -b:a 128k -movflags +faststart "${2:-final_reel.mp4}" - echo "✅ Exported optimized reel: ${2:-final_reel.mp4}" -} - -# Quick usage examples: -# clip raw.mp4 00:00:12 00:00:18 best_part.mp4 -# burn_subtitles clip.mp4 captions.srt final.mp4 -# make_vertical final.mp4 reel.mp4 -# add_logo reel.mp4 logo.png branded.mp4 -# export_reel branded.mp4 phoenix-reel.mp4 \ No newline at end of file diff --git a/projects/salon-social-media-system/video/hyperframes-reel-template.html b/projects/salon-social-media-system/video/hyperframes-reel-template.html deleted file mode 100644 index 5d2e537..0000000 --- a/projects/salon-social-media-system/video/hyperframes-reel-template.html +++ /dev/null @@ -1,142 +0,0 @@ - - -
- - -