A wiki-first multi-bot system. Each bot handles one job. All bots share the same core: Claude API for intelligence, Make.com for orchestration, Notion for logging, and Telegram for delivery.
Every architecture decision is documented before any code is written.
| # | Bot | Purpose | Status |
|---|---|---|---|
| 1 | Job Bot | Scan job boards, score listings, notify via Telegram | π‘ Week 1 |
| 2 | Content Scout | Find trending topics and news angles for content brands | βͺ Scoped |
| 3 | Interviewer | Generate role-specific interview prep questions | βͺ Scoped |
| 4 | Article Machine | Draft long-form content from outlines | βͺ Scoped |
| 5 | Social Media | Adapt content across platforms and formats | βͺ Scoped |
| 6 | IG Replies | Auto-draft Instagram comment replies | βͺ Scoped |
| 7 | Gmail Sorter | Classify and prioritize inbox | βͺ Scoped |
| 8 | Finance Analyzer | Parse bank data and track spending | βͺ Scoped |
π’ Live π‘ In progress βͺ Scoped
Architecture: wiki-first with shared state. Each bot follows a three-folder model (raw β wiki β outputs). Every bot reads three shared context files before running: voice document, banned words list, and brand rules. This keeps output consistent across all 8 bots without duplicating rules per scenario.
- Define all 8 bot scopes
- Lock architecture decisions in wiki
- Choose stack (Claude API + Make.com + Notion + Telegram)
- Build Job Bot (Week 1 priority)
- Build Content Scout
- Build remaining 6 bots
- Integration testing across all bots
- Full system documentation
bots-master-showcase/ βββ wiki/ # Architecture decisions and bot specs βββ docs/ # Setup guides and API references βββ README.md