AI-powered community operations platform for SoxAI.
Four autonomous bots that work as your marketing team:
- ScoutBot — monitors Reddit/HN/Twitter/Zhihu for relevant discussions, generates reply drafts
- ContentBot — auto-generates bilingual blog posts, tweets, social media content
- CommunityBot — Discord + WeChat bot with RAG-powered tech support
- AnalyticsBot — weekly ops reports with data-driven action recommendations
All bots use SoxAI's own multi-model API (dogfooding).
Phase 1: ScoutBot (in progress)
sox.bot Dashboard (Next.js)
│
▼
FastAPI Backend ──── Celery Workers
│ │
▼ ▼
PostgreSQL SoxAI API (AI engine)
+ PGVector Reddit/HN/Twitter APIs
# Backend
cd backend
pip install -e ".[dev]"
docker compose up -d # PG + Redis
alembic upgrade head
uvicorn main:app --port 8090
# Console
cd console
bun install
bun run dev