Add sales automation stack: strategy docs, MCP scripts, PWA refinements

- SALES_STRATEGY.md: $1K/day plan (37 orders @ $27.50 AOV, 1,700 visits)
- TRIPWIRE_FUNNEL.md: 7-email Mautic sequence + lead scoring
- MONETIZATION.md: 9 monetization options for Nūr PWA (no ads, no registration)
- EXECUTABLE_PLAN.md: MCP-executable automation plan
- DAILY_OPS.md: daily KPI checklist (visits, orders, sends, recoveries)
- scripts/: automation.py, mautic_setup.py, gumroad_setup.py, scout_scrape.py, analytics.py, crontab
- quality_leads.json/.csv: 12 enriched Islamic-tech leads for Mautic import
- content_queue.json: 10 SEO blog posts for Ghost
- PWA: icons, sw.js, e2e + vitest coverage, generator scripts
This commit is contained in:
Hermes Bot
2026-08-06 23:33:21 +08:00
parent 05991c893f
commit a440160249
40 changed files with 7195 additions and 173 deletions
+18
View File
@@ -0,0 +1,18 @@
# FalahOS Sales Automation — Crontab
# Install: crontab -e
# Then paste this file's contents
# Every 6 hours: main automation (mautic broadcast, gumroad cart recovery, ghost publish, analytics)
0 */6 * * * cd /Users/wmj24/Desktop/nur-muslim-companion && python scripts/automation.py >> logs/automation.log 2>&1
# Sunday 6 AM: weekly lead scrape
0 6 * * 0 cd /Users/wmj24/Desktop/nur-muslim-companion && python scripts/scout_scrape.py >> logs/scout.log 2>&1
# Daily 7 AM: analytics snapshot
0 7 * * * cd /Users/wmj24/Desktop/nur-muslim-companion && python scripts/analytics.py >> logs/analytics.log 2>&1
# Friday 10 AM: PWA deploy (if needed)
0 10 * * 5 cd /Users/wmj24/Desktop/nur-muslim-companion && npm run build && npm run preview >> logs/deploy.log 2>&1
# Create logs directory
# mkdir -p /Users/wmj24/Desktop/nur-muslim-companion/logs