mirror of
https://github.com/blackboxprogramming/context-bridge.git
synced 2026-03-17 07:57:21 -05:00
Agent Coordination: - Epimetheus (Architect) identity assigned and registered - Connected to PS-SHA-∞ memory system (4,059 entries) - Task claimed from marketplace - Broadcasting to other agents Launch Documentation Created: - PUBLISH_TO_NPM.md - Complete npm publishing guide - STRIPE_LIVE_SETUP.md - Stripe live mode setup guide - AGENT_COORDINATION_REPORT.md - Full status and next steps - EPIMETHEUS_SESSION_COMPLETE.md - Session summary - Added all previous documentation to repo Launch Status: 98% Complete Blocked on: User actions (npm login + Stripe products) Ready: Screenshots, testing, submissions, announcements Next Steps: 1. User: npm login && npm publish (10 min) 2. User: Create Stripe products (5 min) 3. Capture 5 screenshots (15 min) 4. Manual testing on 4 platforms (20 min) 5. Submit to Chrome Web Store (30 min) 6. Launch announcements (10 min) Total time to launch: ~90 minutes Agent Body: qwen2.5-coder:7b (open source) Memory Hash: 4e3d2012 Collaboration: ACTIVE Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
36 lines
1.2 KiB
Bash
Executable File
36 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Generate PNG icons from SVG using sips (macOS built-in)
|
|
# Requires: macOS (for sips command)
|
|
|
|
set -e
|
|
|
|
echo "🎨 Generating PNG icons from SVG..."
|
|
|
|
# First, convert SVG to a large PNG that we can resize
|
|
# sips doesn't handle SVG directly, so we'll use a different approach
|
|
|
|
# Check if we have ImageMagick
|
|
if command -v convert &> /dev/null; then
|
|
echo "Using ImageMagick..."
|
|
convert -background none icon.svg -resize 16x16 icon16.png
|
|
convert -background none icon.svg -resize 32x32 icon32.png
|
|
convert -background none icon.svg -resize 48x48 icon48.png
|
|
convert -background none icon.svg -resize 128x128 icon128.png
|
|
elif command -v rsvg-convert &> /dev/null; then
|
|
echo "Using rsvg-convert..."
|
|
rsvg-convert -w 16 -h 16 icon.svg -o icon16.png
|
|
rsvg-convert -w 32 -h 32 icon.svg -o icon32.png
|
|
rsvg-convert -w 48 -h 48 icon.svg -o icon48.png
|
|
rsvg-convert -w 128 -h 128 icon.svg -o icon128.png
|
|
else
|
|
echo "⚠️ No SVG converter found. Using fallback method..."
|
|
echo "Please install ImageMagick: brew install imagemagick"
|
|
echo "Or librsvg: brew install librsvg"
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ Generated all icon sizes!"
|
|
ls -lh icon*.png
|
|
|