|
1 | | -<img width="526" height="526" alt="logotai" src="https://github.com/user-attachments/assets/c517b26b-b18e-4071-a036-6b22d4b246ae" /> |
| 1 | +# 𓂀 TEOS AI Engine |
| 2 | + |
| 3 | +**Know your post will perform — before you publish.** |
| 4 | + |
| 5 | +TEOS AI Engine generates platform-optimized content across X, LinkedIn, Instagram, TikTok, Threads, Facebook, and Telegram — then scores it with the TEOS Signal Score™ (0–100) so you publish with confidence, not hope. Built in Alexandria, Egypt. Arabic-native. |
| 6 | + |
| 7 | +[](https://teos-ai-engine.vercel.app) |
| 8 | +[](https://anthropic.com) |
| 9 | +[](https://dodo.pe) |
| 10 | +[](https://www.linkedin.com/company/teos-pharaoh-portal) |
| 11 | + |
| 12 | +--- |
| 13 | + |
| 14 | +## What makes TEOS different |
| 15 | + |
| 16 | +Every AI content tool generates posts. TEOS generates posts and tells you if they'll land — before you publish. The TEOS Signal Score™ evaluates 10 signals (hook strength, specificity, platform fit, CTA clarity, hashtag quality, emotional trigger, novelty, length, engagement trigger, value proposition) and returns a score from 55–98 with ±3 variance across repeated prompts. |
| 17 | + |
| 18 | +It also generates native Arabic content — not translated English — with MENA-specific hooks, hashtag pools, and posting times calibrated for GST/EGT. |
| 19 | + |
| 20 | +--- |
| 21 | + |
| 22 | +## Pricing |
| 23 | + |
| 24 | +All prices USD. Payments via Dodo (card) · Pi Network · USDC on Base (`0xd9CA11Dde3810a1BA9B5E1a4b6b76F5a419FAb41`). |
| 25 | + |
| 26 | +| Plan | Price | Posts/day | Platforms | Link | |
| 27 | +|------|-------|-----------|-----------|------| |
| 28 | +| Starter | Free | 5 total | X + Instagram | [Sign up](https://teos-ai-engine.vercel.app/login) | |
| 29 | +| Pro Monthly | $29/mo | 50 | 4 platforms | [Subscribe](https://dodo.pe/ljkagv2ixcr) | |
| 30 | +| Pro Yearly | $290/yr | 50 | 4 platforms | [Subscribe](https://dodo.pe/ep9cgmojbua) | |
| 31 | +| Agency Monthly | $69/mo | 200 | All 7 + 3 seats | [Subscribe](https://dodo.pe/dbvnd9a4pp) | |
| 32 | +| Agency Yearly | $690/yr | 200 | All 7 + 3 seats | [Subscribe](https://dodo.pe/79q4irl1347) | |
| 33 | +| **Pro Lifetime** | **$149 once** | Unlimited | All 7 + all upgrades | [Claim](https://dodo.pe/relh2gradr9) | |
| 34 | +| **Agency Lifetime** | **$349 once** | Unlimited | All 7 + 5 seats + white-label | [Claim](https://dodo.pe/91zcmc4xi27) | |
| 35 | + |
| 36 | +*Lifetime seat count is live on the app. Price rises after TikTok video generation ships.* |
| 37 | + |
| 38 | +--- |
| 39 | + |
| 40 | +## Stack |
| 41 | + |
| 42 | +``` |
| 43 | +Frontend Next.js 14 App Router · React · Tailwind CSS |
| 44 | +AI Anthropic Claude Haiku (fast, cost-efficient) |
| 45 | +Database Prisma ORM · Neon PostgreSQL (serverless) |
| 46 | +Auth NextAuth.js |
| 47 | +Payments Dodo Payments · Pi Network · USDC on Base |
| 48 | +Hosting Vercel (edge + KV for seat counter) |
| 49 | +Analytics Vercel Analytics |
| 50 | +``` |
| 51 | + |
| 52 | +--- |
| 53 | + |
| 54 | +## Repo structure |
| 55 | + |
| 56 | +``` |
| 57 | +app/ |
| 58 | +├── page.tsx Landing page |
| 59 | +├── dashboard/ Generator dashboard |
| 60 | +├── (auth)/ Login + signup flows |
| 61 | +├── pay/pi/ Pi Network checkout |
| 62 | +└── api/ |
| 63 | + ├── generate/route.ts AI generation endpoint |
| 64 | + ├── seats/route.ts KV seat counter |
| 65 | + └── webhooks/dodo/ Payment webhook |
| 66 | +
|
| 67 | +components/ |
| 68 | +├── PostGenerator.tsx Main generator (bilingual) |
| 69 | +├── payments/ PaymentBlock + PricingCards |
| 70 | +├── StickyCTA.tsx Mobile conversion bar |
| 71 | +├── ExitPopup.tsx Exit intent popup |
| 72 | +└── landing/ Landing page sections |
| 73 | +
|
| 74 | +lib/ |
| 75 | +├── ai/platforms.ts Platform configs + signal scoring |
| 76 | +├── arabic-prompts.ts Arabic content system |
| 77 | +├── payments.ts Dodo + Pi payment helpers |
| 78 | +├── auth.ts NextAuth config |
| 79 | +└── limits.ts Usage limits per plan |
| 80 | +``` |
| 81 | + |
| 82 | +--- |
| 83 | + |
| 84 | +## Self-deploy |
| 85 | + |
| 86 | +```bash |
| 87 | +git clone https://github.com/Elmahrosa/Teos-AI-Engine |
| 88 | +cd Teos-AI-Engine |
| 89 | +npm install |
| 90 | +cp .env.example .env.local |
| 91 | +npm run dev |
| 92 | +``` |
| 93 | + |
| 94 | +### Environment variables |
| 95 | + |
| 96 | +```bash |
| 97 | +# AI |
| 98 | +ANTHROPIC_API_KEY=sk-ant-... |
| 99 | + |
| 100 | +# Database (Neon PostgreSQL) |
| 101 | +DATABASE_URL=postgresql://... |
| 102 | +DIRECT_URL=postgresql://... |
| 103 | + |
| 104 | +# Auth |
| 105 | +NEXTAUTH_URL=http://localhost:3000 |
| 106 | +NEXTAUTH_SECRET=your-secret-here |
| 107 | + |
| 108 | +# Payments — Dodo |
| 109 | +DODO_API_KEY=... |
| 110 | +DODO_WEBHOOK_SECRET=... |
| 111 | + |
| 112 | +# Vercel KV (real-time seat counter) |
| 113 | +KV_REST_API_URL=https://... |
| 114 | +KV_REST_API_TOKEN=... |
| 115 | + |
| 116 | +# Internal |
| 117 | +INTERNAL_KEY=your-internal-secret |
| 118 | +NEXT_PUBLIC_APP_URL=https://teos-ai-engine.vercel.app |
| 119 | +``` |
| 120 | + |
| 121 | +--- |
| 122 | + |
| 123 | +## Roadmap |
| 124 | + |
| 125 | +| Feature | Status | |
| 126 | +|---------|--------| |
| 127 | +| 7-platform content generation | ✓ Live | |
| 128 | +| TEOS Signal Score™ | ✓ Live | |
| 129 | +| Arabic / English bilingual mode | ✓ Live | |
| 130 | +| Image prompt generation | ✓ Live | |
| 131 | +| TikTok video scripts | ✓ Live | |
| 132 | +| Real-time lifetime seat counter | ✓ Live | |
| 133 | +| TikTok native video generation | ⟳ In development | |
| 134 | +| AI image generation (native) | ⟳ In development | |
| 135 | +| Social auto-publishing | ◦ Planned | |
| 136 | +| Post scheduling | ◦ Planned | |
| 137 | +| Full Arabic dashboard (RTL) | ◦ Planned | |
| 138 | +| Mobile PWA | ◦ Planned | |
| 139 | + |
| 140 | +*First 500 users get 1 free month when TikTok video generation ships.* |
| 141 | + |
| 142 | +--- |
| 143 | + |
| 144 | +## للمؤسسين العرب 🇪🇬 |
| 145 | + |
| 146 | +محرك TEOS يولّد محتوى عربيًا أصيلًا — ليس ترجمةً من الإنجليزية. خطافات مثل "هل تعرف لماذا يفشل معظم المؤسسين؟" و"رأي غير شائع:" مع هاشتاقات MENA وتوقيت نشر محلي (GST / EGT). |
| 147 | + |
| 148 | +--- |
| 149 | + |
| 150 | +## About |
| 151 | + |
| 152 | +Built and maintained by **Ayman Seif** at [Elmahrosa International](https://www.linkedin.com/company/teos-pharaoh-portal) — Alexandria, Egypt. Established 2007. Software division since 2021. Bootstrapped. No VC. |
| 153 | + |
| 154 | +X: [@KING_TEOS](https://twitter.com/KING_TEOS) · Telegram: [#ElmahrosaPi](https://t.me/elmahrosapi) · LinkedIn: [Teos Pharaoh Portal](https://www.linkedin.com/company/teos-pharaoh-portal) |
| 155 | + |
| 156 | +Licensed under TESL v2.0 · ICBC-v1.0 governance · © 2026 TEOS Network |
0 commit comments