← All work

P-003 · 2025

Elite Mindset Forge — autonomous content platform

A read-only website fed by a separate Agent Portal: scheduled triggers spin up AI agents that generate every quote, image, and video; Firestore fans them out to Instagram, Facebook, push subscribers, and the site. Multilingual (English / Hindi / Marathi). Zero human in the loop.

Role
Founder · solo engineer
Year
2025
Outcome
AI-agent driven · runs itself · @elitemindset.forge
Live
Visit →
Next.js 16Gemini ProImagenVeoFirebaseInstagram APIPWA

The problem

Running a content-driven Instagram brand solo means daily posting becomes the founder's second full-time job — there's no slot in the daily routine to manage multiple pages manually. I wanted the brand to run itself: content generated, expanded, published, and notified without a human in the loop.

Approach

  • Two-system split: elitemindsetforge.com is purely read-only — it doesn't generate anything. All content generation lives in a separate Agent Portal backend that I run.
  • Scheduled Firebase Cloud Functions fire at specific times of day to kick off the Agent Portal's content engine — no human pressing a button.
  • Inside the engine: Gemini Pro + RAG writes the motivational quote in three languages (English / Hindi / Marathi); Google Imagen generates the static visual; Google Veo and Kling AI cover short-form video.
  • Output lands once in a shared Cloud Firestore (doc + metadata) and Cloud Storage (media bytes). Firestore is the single source of truth for every consumer downstream.
  • Fan-out from Firestore happens in parallel: Autogram Poster (my custom auto-publisher) reads the new doc and posts to Instagram + Facebook via their Graph APIs; a Firestore trigger fires a Cloud Function that multicasts FCM push notifications to subscribers; the website renders the same doc as soon as it lands.
  • AI-expansion: short Instagram quotes get expanded into longer-form blog posts by AI and surfaced on the site with categories, SEO, and favourites.
  • Website stack: Firebase Auth (Email + Google OAuth), AdSense + GA4 monetisation, swipe-based quote gallery, PWA (installable + offline), branch-based CI/CD (GitHub Actions → Vercel).

Architecture

The website is a pure read-only consumer — content originates in a separate Agent Portal backend, kicked off by scheduled Firebase triggers at specific times of day. The Engine calls the AI models (Gemini Pro + RAG for trilingual text; Imagen / Veo / Kling for visuals) and writes the result to a shared Firestore. From there it fans out in parallel: Autogram Poster auto-posts to Instagram + Facebook, a Firestore trigger multicasts FCM push notifications to subscribers, and elitemindsetforge.com just renders whatever's already in the database. Nothing is generated on the website itself.

Outcome

  • Live at elitemindsetforge.com — every quote, image, and video on the page is AI-generated.
  • Daily auto-posting to [@elitemindset.forge](https://www.instagram.com/elitemindset.forge/) on Instagram + Facebook via the Autogram Poster pipeline.
  • Three-language reach (English / Hindi / Marathi) on every quote, direct from Gemini.
  • PWA installable and offline-capable; FCM keeps returning users in the loop the moment new content drops.

Lessons learned

  • The real product isn't the website — it's the pipeline. The site is just one of three surfaces where the same AI-generated content lands; Autogram Poster is the connective tissue.
  • Instagram's Graph API rate limits look scary on paper but are easy to respect once you batch and queue. Auto-publishing only needs OAuth wired once.
  • Multi-language AI translation is table-stakes for India now. Gemini handles Indian languages well enough to ship short content without human review.
  • AdSense + GA4 is a 30-minute setup that pays for the VPS forever. No reason to skip it.