mirror of
https://github.com/blackboxprogramming/context-bridge.git
synced 2026-03-17 05:57:15 -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>
72 lines
1.9 KiB
Bash
Executable File
72 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "🦊 Context Bridge - Firefox Test"
|
|
echo "=================================="
|
|
echo ""
|
|
|
|
# Check if Firefox is installed
|
|
if [ ! -d "/Applications/Firefox.app" ]; then
|
|
echo "❌ Firefox not found at /Applications/Firefox.app"
|
|
echo ""
|
|
echo "Install Firefox from: https://www.mozilla.org/firefox/"
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ Firefox found"
|
|
echo ""
|
|
|
|
# Extension path
|
|
EXT_PATH="/Users/alexa/context-bridge/extension-firefox"
|
|
|
|
if [ ! -d "$EXT_PATH" ]; then
|
|
echo "❌ Firefox extension not found at: $EXT_PATH"
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ Firefox extension found"
|
|
echo ""
|
|
|
|
# Check manifest
|
|
if [ -f "$EXT_PATH/manifest.json" ]; then
|
|
VERSION=$(cat "$EXT_PATH/manifest.json" | grep manifest_version | awk '{print $2}' | tr -d ',')
|
|
echo "✅ Manifest version: $VERSION (should be 2 for Firefox)"
|
|
else
|
|
echo "❌ manifest.json missing!"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
|
echo ""
|
|
echo "🎯 Quick Start:"
|
|
echo ""
|
|
echo "1. Opening Firefox debugging page..."
|
|
|
|
# Open Firefox to debugging page
|
|
open -a Firefox "about:debugging#/runtime/this-firefox"
|
|
|
|
sleep 2
|
|
|
|
echo ""
|
|
echo "2. Click 'Load Temporary Add-on...'"
|
|
echo ""
|
|
echo "3. Navigate to and select:"
|
|
echo " $EXT_PATH/manifest.json"
|
|
echo ""
|
|
echo "4. Extension should load!"
|
|
echo ""
|
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
|
echo ""
|
|
echo "Then test on ChatGPT:"
|
|
echo " https://chatgpt.com"
|
|
echo ""
|
|
echo "Look for:"
|
|
echo " 🟣 Purple 'Insert Context' button"
|
|
echo ""
|
|
echo "Check Console (F12):"
|
|
echo " ✅ 'Context Bridge: Loaded on ChatGPT'"
|
|
echo " ✅ 'Context Bridge: Button injected'"
|
|
echo ""
|
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
|
echo ""
|