EgoBoson is a decision system, not a dashboard. It ingests spend, revenue and pacing every minute, evaluates against a journaled rules engine, and mutates Meta + Google state through native APIs. No screen-scraping. No human in the hot loop. Manual override always wins.
The platform is intentionally thin. Data from four authoritative sources, policy in a journaled rules engine, mutations through native APIs — never UI scraping. The operator sees one hierarchy.
Every 60 seconds the platform re-reads the portfolio. Every 15 minutes it checks for bumps and bid dial moves. Every decision has 5 stages — and every one is journaled.
Five inputs, one policy layer, two mutation channels. Every signal carries provenance and a refresh timestamp. Nothing is cached beyond what policy allows.
Every signal we ingest and every mutation we apply is on the public side of Meta and Google. Below: the actual queries and shapes the platform uses.
// Meta Marketing API — pause an ad set. Idempotent + journaled. POST https://graph.facebook.com/{version}/{adset_id} Content-Type: application/x-www-form-urlencoded status=PAUSED&access_token={token} // Response { "success": true } // Token routing — per-account, never hardcoded const tok = tokenFor(accountId); // → routes to the right system-user automatically
// Google Ads API v18 · GAQL · search_term_view · last 7d SELECT search_term_view.search_term, metrics.cost_micros, metrics.conversions, metrics.cost_per_conversion FROM search_term_view WHERE segments.date DURING LAST_7_DAYS AND metrics.cost_micros > 10000000 ORDER BY metrics.conversions DESC // Enhanced Conversions for Leads — push hashed offline conversions { "conversion_action": "customers/123/conversionActions/456", "user_identifiers": [{ "hashed_email": "sha256(...)" }], "conversion_value": 42.50 }
// Every mutation produces a journal entry. Append-only JSONL. { "ts": "2026-05-03T17:36:44.965Z", "adset_id": "{adset_id}", "action": "park", "from_bid": 1400, "to_bid": 1080, "reason": "park-as-halve: consecutive lowers", "confidence": 0.85, "rule_version": "bid-autopick-v2", "t0": { "roi": -58, "spend": 66.4, "leads": 1 }, "t60_due": 1714756004965 } // Effectiveness tracking — T+0 / T+60 delta per decision // Health endpoint exposes 4h / 24h aggregate
Last-30-day operating numbers from the production deployment. Updated nightly.
Trained on real decisions — not the open web. Runs on dedicated GPU inside your perimeter. Zero data egress to external LLM providers. Cross-reviewed by an external model only on critical cases — and only on the evidence, never raw account data.
EgoBoson composes best-in-class third-party systems with a proprietary decision layer. Our partners carry the infrastructure we'd never build in-house.
Onboarding is invite-only. Tell us what you run, and we'll reach out when the next cohort opens.