chore: cut half-pregnant features before launch#54
Merged
federicodeponte merged 1 commit intomainfrom Apr 18, 2026
Merged
Conversation
Trust-killer cleanup pre-launch. Every item either removes a marketing
claim we can't back up, or removes a dead code path that would 404 on
a fresh browser.
**Authoritative claims removed**
- Drop Google/GitHub OAuth buttons from /login: OAuth apps were never
registered, `GOOGLE_OAUTH_CLIENT_*` / `GITHUB_OAUTH_CLIENT_*` are not
set on preview or prod, Better Auth was booting with
`socialProviders = {}`, so clicks produced a broken auth redirect.
Re-enable with a follow-up PR after creating the OAuth apps.
- Drop "CLI" from hero subheadline (CreatorHeroPage + README). There
is no `@floom/cli` on npm and no working `floom deploy` command.
- Drop the async-job-queue + custom-renderers bullet from README.
- Rewrite README Roadmap section: no longer teases workspaces,
Composio, Stripe Connect, app memory, custom-renderer upload. All
stripped in prior PRs.
- BuildPage "Connect a tool" coming-soon modal: drop "Cloud tier"
and "Composio" mentions.
**FlyFast removed from user-facing surfaces**
- `seed.json`: drop the `flyfast` seed row + its per-app secrets
entry (hosted-mode only, blocked on Federico's AX41 internal
flight-search API).
- `sitemap.xml`: drop `/p/flyfast` to avoid SEO 404s.
- `CreatorHeroPage` fallback stripe trio: swap `flyfast` ->
`opendraft`.
- `ProtocolPage`: hosted manifest example + example-manifests list
no longer feature flyfast.
- `spec/protocol.md` + `apps/web/src/assets/protocol.md` + README
hosted YAML: generic `my-app` name instead of `flyfast`.
- `AppPermalinkPage` GITHUB_REPOS map: drop flyfast entry.
- `test/stress/test-rate-limit.mjs`: swap `flyfast` -> `bouncer`
(slug is arbitrary for middleware tests; 30/30 tests pass).
- `examples/flyfast/` is kept as a protocol sample only.
**"15 apps" claim scrubbed**
- `hub.ts`, `seed.ts`, `docker/.env.example`, `docs/SELF_HOST.md`
(two occurrences): replace "15 bundled docker apps" with
"bundled docker demo apps". Honest count, no broken hub.
- `FLOOM_SEED_APPS=true` opt-in remains as-is (default = empty hub).
**Dead husk deleted**
- `packages/cli/` removed. Only ever contained pre-compiled
`dist/index.js` (not tracked in git) + `node_modules`. No source,
no package.json. Fresh checkouts were unaffected.
**Kept (per "grey-out OK" rule)**
- `/me` ComingSoon tabs (Folders, Saved results, Schedules, My
tickets, Shared with me) render a proper card, not a broken page.
Will be removed when /me Claude-shape rebuild lands.
- Async job queue **backend** (cron worker, JobProgress component
when an app explicitly opts into `is_async=true`). Only the
marketing of async as a hero feature is gone.
- Four MCP admin tools at `/mcp` root are real; the claim stays.
Typecheck + build pass. Rate-limit stress test 30/30 green.
Made-with: Cursor
federicodeponte
pushed a commit
that referenced
this pull request
Apr 18, 2026
Follow-up to #54. PR #54 cleaned the React components but missed the pre-hydration SSR shell at apps/web/index.html. Until React boots, crawlers and curl see the <meta name="description">, OG + Twitter cards, schema.org blob, and the data-spa-fallback / noscript hero copy — all of which still claimed "Deploy as MCP, API, web, or CLI". Rewrites all six occurrences to "Deploy as an MCP server, HTTP API, and shareable web form". Matches the live hero in CreatorHeroPage (PR #54). Made-with: Cursor
3 tasks
federicodeponte
added a commit
that referenced
this pull request
Apr 18, 2026
Follow-up to #54. PR #54 cleaned the React components but missed the pre-hydration SSR shell at apps/web/index.html. Until React boots, crawlers and curl see the <meta name="description">, OG + Twitter cards, schema.org blob, and the data-spa-fallback / noscript hero copy — all of which still claimed "Deploy as MCP, API, web, or CLI". Rewrites all six occurrences to "Deploy as an MCP server, HTTP API, and shareable web form". Matches the live hero in CreatorHeroPage (PR #54). Made-with: Cursor Co-authored-by: Federico De Ponte <federicodeponte@federicos-air-4.local.meter>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Trust-killer cleanup pre-launch. "Don't be half-pregnant" — every item either kills a marketing claim we can't back up or removes a dead code path that would 404 on a fresh browser.
Authoritative claims removed
/login—GOOGLE_OAUTH_CLIENT_*/GITHUB_OAUTH_CLIENT_*are not set on preview or prod, Better Auth was booting withsocialProviders = {}, clicks produced broken redirects. Re-enable with a follow-up PR once the OAuth apps exist.@floom/clion npm, no workingfloom deploy.FlyFast removed from user-facing surfaces
seed.json: dropflyfastrow + per-app secrets entry (internal-only, AX41-infra-gated).sitemap.xml: drop/p/flyfastto avoid SEO 404s.CreatorHeroPagefallback trio: swapflyfast→opendraft.ProtocolPage,spec/protocol.md,README.md: hosted manifest example uses genericmy-app.AppPermalinkPageGitHub map: dropflyfastentry.flyfast→bouncer(30/30 tests pass).examples/flyfast/kept as a protocol sample only, per user guidance."15 apps" claim scrubbed
hub.ts,seed.ts,docker/.env.example,docs/SELF_HOST.md(×2): "15 bundled docker apps" → "bundled docker demo apps".FLOOM_SEED_APPS=trueopt-in gating remains (default = empty hub).Dead husk deleted
packages/cli/removed. Only ever contained compileddist/index.js(not tracked) +node_modules. Fresh checkouts unaffected.Kept intentionally
/meComingSoon tabs — render a proper card, not a broken page (per "grey-out OK" rule). Will go when/meClaude-shape lands./mcproot — real and working, claim stays.Test plan
pnpm -w typecheck— 3/3 packages greenpnpm -w build— server + web build clean; LoginPage bundle shrank from 6.5kB → 5.16kBnode test/stress/test-rate-limit.mjs— 30/30 pass after slug swapseed.jsonstill valid JSON/loginhas no Google/GitHub buttons,/hero no CLI,/p/flyfast→ 404,/protocolhosted example showsmy-app, sitemap cleanMade with Cursor