Abstract
Nexus is iSimplifyMe's AI intelligence platform, available at $399/month with onboarding handled directly through sales. Eight AI modules — Terminal, Content Engine, Strategist, AI Scanner, Aura, SEO Engine, SMM, and Synapse — share a credit-gated access layer with per-tenant Cognito isolation and Google OAuth for GBP and GSC data.
Problem
Small and mid-size businesses need AI-assisted content, reputation management, SEO analysis, and social media tools but can't justify enterprise AI contracts or the overhead of stitching together separate tools. A unified platform at a predictable monthly price solves the budget problem; per-module credit gating lets usage-heavy tenants pay more without requiring per-seat pricing.
Approach
Gate stack
The gate stack flows AuthGate → SubscriptionGate → OnboardingGate → Dashboard. Every module route checks credits before executing via a shared checkCredits / deductCredits pair backed by atomic DynamoDB decrements.
Usage logs and monthly summaries persist in the same table.
Tenant and billing
Tenant isolation runs through a custom:tenant Cognito claim validated in every API route. Google OAuth (GBP + GSC) is per-tenant with tokens stored in DynamoDB and auto-refreshed by the Python Lambda.
Onboarding is sales-driven: prospects contact iSimplifyMe, plans are provisioned manually, and subscription status is tracked in DynamoDB.
Model routing
AI modules call Claude via Bedrock (Sonnet 4.6 for most tasks, Opus 4.6 for scan analysis). Document parsing (PDF, DOCX, TXT, MD, CSV) runs in a separate Python Lambda.
Status
- Live at app.isimplifyme.com.
- Subscription: $399/mo, 1,200 credits, all 8 modules.
- Audit tier at $1,450 one-time for full AEO + site analysis.
- Credit reset and data purge crons active.
- Google OAuth connect for GBP and GSC auto-discovers locations and verified sites on connection.