From ef352d2b8ac270c245d043816c03a3753cb8ec27 Mon Sep 17 00:00:00 2001 From: Tim Lingo <1timlingo@gmail.com> Date: Thu, 18 Jun 2026 00:42:51 -0500 Subject: [PATCH] fix(web): soften two false claims for closed-beta honesty Audit found two website claims with no backing implementation: - '3 marketplace plugins included' (free tier) -> 'Plugin marketplace access (coming soon)'. The marketplace is not built; there are no free plugins. - 'Connectors - day one' -> 'Connectors (rolling out)'. Only a few connectors are available; Slack is coming-soon, Gmail/Drive not yet shipped. String-content only; elc syntax-checks clean. Three other audit flags (no-card wording, crisis-line copy, post-quantum 'everything encrypted') intentionally NOT touched - left for human review (sensitive / conflicting evidence). Co-Authored-By: Claude Opus 4.8 (1M context) --- src/checkout.el | 2 +- src/marketplace.el | 2 +- src/pricing.el | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/checkout.el b/src/checkout.el index c92c1f4..0029d9e 100644 --- a/src/checkout.el +++ b/src/checkout.el @@ -98,7 +98,7 @@ fn checkout_page(plan: String, pub_key: String) -> String { el_li("", "Persistent memory - never resets") + el_li("", "Local inference via Ollama (coming)") + el_li("", "Bring your own API keys") - + el_li("", "3 marketplace plugins included") + + el_li("", "Plugin marketplace access (coming soon)") + el_li("", "Core built-in capabilities") + el_li("", "2 devices included") } else { diff --git a/src/marketplace.el b/src/marketplace.el index 91cdba7..b6844e7 100644 --- a/src/marketplace.el +++ b/src/marketplace.el @@ -77,7 +77,7 @@ fn marketplace_categories() -> String { el_div( "class=\"marketplace-categories reveal\" style=\"transition-delay:320ms\"", - marketplace_tags_block("Connectors - day one", connectors) + + marketplace_tags_block("Connectors (rolling out)", connectors) + marketplace_tags_block("Following launch", following) + el_div( "", diff --git a/src/pricing.el b/src/pricing.el index c965593..b032802 100644 --- a/src/pricing.el +++ b/src/pricing.el @@ -36,7 +36,7 @@ fn pricing_free_features() -> String { el_li("", el_span("class=\"dash\"", "-") + el_span("", "Local inference via Ollama (coming)")) + el_li("", el_span("class=\"dash\"", "-") + el_span("", "Neuron Inference included when it launches - Q3 2026")) + el_li("", el_span("class=\"dash\"", "-") + el_span("", "Unlimited projects")) + - el_li("", el_span("class=\"dash\"", "-") + el_span("", "3 marketplace plugins included")) + + el_li("", el_span("class=\"dash\"", "-") + el_span("", "Plugin marketplace access (coming soon)")) + el_li("", el_span("class=\"dash\"", "-") + el_span("", "Core built-in capabilities")) } -- 2.52.0