generatesaas 3.7.0 → 3.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,18 +1,18 @@
1
1
  #!/usr/bin/env node
2
- import{Command as Cp}from"commander";import*as Ns from"@clack/prompts";import{existsSync as ql,readdirSync as Jl,rmSync as Xl}from"fs";import{join as Zl,resolve as Ql}from"path";import{Option as ne}from"commander";import*as k from"@clack/prompts";import*as Nt from"@clack/prompts";import ur from"picocolors";function rn(e){let t=e?` GenerateSaaS v${e} `:" GenerateSaaS ";Nt.intro(ur.bgYellow(ur.black(t)))}function nn(){Nt.outro(ur.yellow("Happy building!"))}import*as h from"@clack/prompts";import g from"picocolors";var gt={fullstack:{label:"Fullstack",hint:"Frontend hosts the API - works on serverless or long-running"},separate:{label:"Separate",hint:"Standalone Hono backend - long-running runtimes only (Docker, Render, Fly.io, Railway, Coolify, Dokploy)"}},Ct={stripe:{label:"Stripe"},polar:{label:"Polar"},none:{label:"None",hint:"disable payments"}},Lt={smtp:{label:"SMTP",hint:"Mailpit for local dev"},ses:{label:"Amazon SES"},resend:{label:"Resend"}},$t={sentry:{label:"Sentry",hint:"web, server and desktop - release health, tracing, alerting"},posthog:{label:"PostHog",hint:"web and server, plus LLM analytics - no Electron SDK, so a desktop build reports nothing"}},sn={postgres:{label:"PostgreSQL",hint:"port 5432",port:5432},redis:{label:"Redis",hint:"port 6379",port:6379},inngest:{label:"Inngest",hint:"port 8288",port:8288},mailpit:{label:"Mailpit",hint:"port 1025",port:1025}};var Ce={USD:{symbol:"$",name:"US Dollar",place:"left",space:!1},EUR:{symbol:"\u20AC",name:"Euro",place:"right",space:!1},GBP:{symbol:"\xA3",name:"British Pound",place:"left",space:!1},CAD:{symbol:"CA$",name:"Canadian Dollar",place:"left",space:!1},AUD:{symbol:"A$",name:"Australian Dollar",place:"left",space:!1},BRL:{symbol:"R$",name:"Brazilian Real",place:"left",space:!1},JPY:{symbol:"\xA5",name:"Japanese Yen",place:"left",space:!1}};var Z={node:{label:"Node.js / Docker",hint:"long-running runtime - Render, Fly.io, Railway, Coolify, Dokploy, VPS",edgeRuntime:!1},vercel:{label:"Vercel",hint:"serverless functions",edgeRuntime:!0}},Le={postgres:{label:"PostgreSQL (self-hosted)",hint:"local Docker, drizzle-orm/node-postgres",managed:!1,envVars:[{key:"DATABASE_URL",defaultValue:"postgres://postgres:postgres@localhost:5432/saas"}]},neon:{label:"Neon",hint:"serverless Postgres",managed:!0,envVars:[{key:"DATABASE_URL",comment:"# TODO: Add your Neon connection string"}]},supabase:{label:"Supabase",hint:"managed Postgres",managed:!0,envVars:[{key:"DATABASE_URL",comment:"# TODO: Add your Supabase connection string"}]}},$e={redis:{label:"Redis (self-hosted)",hint:"local Docker, ioredis",managed:!1,envVars:[{key:"REDIS_URL",defaultValue:"redis://localhost:6379"}]},upstash:{label:"Upstash",hint:"serverless Redis",managed:!0,envVars:[{key:"UPSTASH_REDIS_REST_URL",comment:"# TODO: Add your Upstash REST URL"},{key:"UPSTASH_REDIS_REST_TOKEN",comment:"# TODO: Add your Upstash REST token"}]}},Xe=[{target:"vercel",provider:"redis",reason:"Vercel serverless cannot maintain persistent Redis connections. Consider Upstash."},{target:"vercel",provider:"postgres",reason:"Vercel serverless cannot pool connections to a self-hosted Postgres. Use Neon or Supabase - both are managed, connection-pooled Postgres."}],Ze=[{architecture:"separate",target:"vercel",reason:"Standalone backends need a long-running runtime. Vercel's per-function TypeScript check conflicts with pnpm's isolated install. Use --architecture fullstack for serverless, or deploy the standalone backend to a long-running runtime (Render, Fly.io, Railway, Coolify, Dokploy, or your own VPS via Docker)."}],Ls=[{feature:"runner",target:"vercel",reason:"Serverless (Vercel) cannot hold a connection open, and the runner holds one open per paired device. Deploy to a long-running runtime instead (Node.js / Docker on Render, Fly.io, Railway, Coolify, Dokploy, or your own VPS)."}];function me(e){return Ls.find(t=>e[t.feature]===!0&&e.deploymentTarget===t.target)}var he={serverless:{label:"Serverless",hint:"Vercel + Neon + Upstash",values:{deploymentTarget:"vercel",databaseProvider:"neon",cacheProvider:"upstash"}},selfhost:{label:"Self-host",hint:"Docker or Node + Postgres + Redis",values:{deploymentTarget:"node",databaseProvider:"postgres",cacheProvider:"redis"}}},je=Object.keys(he);function mr(e){let t=[];for(let r of Xe)if(e.deploymentTarget===r.target&&(e.databaseProvider===r.provider||e.cacheProvider===r.provider)){let n=e.databaseProvider===r.provider?"databaseProvider":"cacheProvider";t.push(`\`${n}: "${r.provider}"\` with \`deploymentTarget: "${r.target}"\` - ${r.reason}`)}for(let r of Ze)e.deploymentTarget===r.target&&e.architecture===r.architecture&&t.push(`\`architecture: "${r.architecture}"\` with \`deploymentTarget: "${r.target}"\` - ${r.reason}`);return t}var on=["Local file storage (sharp, geoip-lite)","SMTP email (use Resend or SES instead)","Content API git integration"];function Qe(e){let t=[];return e.databaseProvider==="postgres"&&t.push("postgres"),e.cacheProvider==="redis"&&t.push("redis"),e.emailProvider==="smtp"&&t.push("mailpit"),t.push("inngest"),t}var et=["fullstack","separate"],tt=["stripe","polar","none"],rt=["smtp","ses","resend"];var an=["claude-code","cursor","codex","gemini-cli","windsurf"],fe=["USD","EUR","GBP","CAD","AUD","BRL","JPY"],ge=["node","vercel"],ye=["postgres","neon","supabase"],be=["redis","upstash"],K=["sentry","posthog"],Me=["revenuecat","none"];function oe(e){return e.paymentProvider!==void 0&&e.paymentProvider!=="none"}var hr=[{key:"architecture",label:"Architecture",hint:"Fullstack (frontend hosts the API) or a standalone Hono backend.",category:"Infrastructure",kind:"enum",default:"fullstack",choices:et,adoptable:!1,impact:"structural",shapesTree:!0},{key:"deploymentTarget",label:"Deployment target",hint:"Node.js / Docker or Vercel serverless.",category:"Infrastructure",kind:"enum",default:"node",choices:ge,adoptable:!1,impact:"config",shapesTree:!0},{key:"databaseProvider",label:"Database provider",hint:"Self-hosted PostgreSQL, Neon, or Supabase.",category:"Infrastructure",kind:"enum",default:"postgres",choices:ye,adoptable:!1,impact:"config",shapesTree:!0},{key:"cacheProvider",label:"Cache provider",hint:"Self-hosted Redis or Upstash.",category:"Infrastructure",kind:"enum",default:"redis",choices:be,adoptable:!1,impact:"config",shapesTree:!0},{key:"paymentProvider",label:"Payment provider",hint:"Stripe, Polar, or none.",category:"Features",kind:"enum",default:"none",choices:tt,adoptable:!1,impact:"structural",shapesTree:!0},{key:"defaultCurrency",label:"Default currency",hint:"Billing and pricing currency.",category:"Features",kind:"enum",default:"USD",choices:fe,adoptable:!1,impact:"config",shapesTree:!1},{key:"emailProvider",label:"Email provider",hint:"SMTP, Amazon SES, or Resend.",category:"Features",kind:"enum",default:"smtp",choices:rt,adoptable:!1,impact:"config",shapesTree:!1},{key:"observability",label:"Observability",hint:"Which services receive your app's errors, and on PostHog its LLM analytics. Pick any combination - anything you do not pick costs nothing, since its SDK and its adapter are never generated.",category:"Features",kind:"multiselect",default:[],choices:K,adoptable:!0,impact:"config",shapesTree:!0},{key:"multiTenancy",label:"Multi-tenancy (organizations)",hint:"Adds organizations - teams, members, and shared resources.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!1},{key:"projects",label:"Projects",hint:"Adds projects - a switcher that scopes a user's work inside their account or organization.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"config",shapesTree:!1},{key:"docs",label:"Docs app",hint:"Adds the self-hosted Fumadocs documentation site (apps/docs).",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!0},{key:"desktop",label:"Desktop app",hint:"Adds the cross-platform desktop app (apps/desktop, built with Electron).",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!0},{key:"mobile",label:"Mobile app",hint:"Adds the cross-platform mobile app (apps/mobile, built with Expo).",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!0},{key:"mobilePurchases",label:"Mobile store purchases",hint:"In-app purchases in the mobile app, through RevenueCat. Store purchases sit ON TOP of your web payment provider - a subscriber who buys in the app is the same account, billed by Apple or Google instead of by you. Off keeps the app on web billing, where the plan card says the subscription is managed on your website.",category:"Features",kind:"enum",default:()=>"none",choices:Me,adoptable:!0,impact:"structural",shapesTree:!0,requires:e=>e.mobile===!0&&oe(e),requiresLabel:"requires the mobile app and a web payment provider - store purchases are additive to the web lane, never a replacement"},{key:"ai",label:"AI features",hint:"Adds the AI surface (chat, models, automations, integrations) and unlocks the runner option. A desktop project ALWAYS ships the app's local AI stack: this option sets config.desktop.agents.enabled (the runtime gate on those screens). Off keeps config.ai.enabled false so the AI nav stays hidden - the AI packages still ship, because packages/translate depends on @repo/ai for the i18n pipeline every project uses.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!0},{key:"webAi",label:"AI in the web app",hint:"Whether the WEB app shows the AI surfaces - chat, automations, model and integration settings, and their nav entries. Off is the app-first shape: your desktop or mobile app is where your AI product lives and the website keeps account, billing and licensing only. The AI SERVICE is untouched either way (config.ai.enabled, the /api/ai routes and the desktop agents all stay exactly as your AI option set them), so both apps keep talking to the same backend. Only meaningful with AI features and at least one app - the desktop app or the mobile app - and never with the runner: its pairing and device screens are part of the web AI surface.",category:"Features",kind:"boolean",default:!0,adoptable:!0,impact:"config",shapesTree:!1,requires:e=>e.ai===!0&&(e.desktop===!0||e.mobile===!0)&&e.runner!==!0,requiresLabel:"requires AI features and an app to host them (the desktop app or the mobile app), and is unavailable with the runner (its pairing and device screens live in the web AI surface)"},{key:"runner",label:"Runner daemon",hint:"Lets your users connect a machine that runs their own AI subscriptions (and any device-side work you add) on their hardware. They install AgentRunner, the daemon we publish and keep updated - your project ships the pairing, dispatch and Runners surface, never the daemon. Needs an always-on backend: the transport holds one connection open per paired device, which serverless (Vercel) cannot do.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!0,requires:e=>e.ai===!0&&e.webAi!==!1&&me({...e,runner:!0})===void 0,requiresLabel:"requires AI features, the web AI surface, and an always-on deployment target (not Vercel)"},{key:"credits",label:"Metered credits",hint:"Adds metered usage credits on top of subscription plans.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"config",shapesTree:!1,requires:e=>oe(e),requiresLabel:"requires a payment provider"},{key:"revenueSharing",label:"Revenue sharing",hint:"Opt-in MRR leaderboard with dofollow backlinks.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"config",shapesTree:!1}];function $s(e,t){return e[t]!==void 0}function cn(e){return hr.filter(t=>t.adoptable&&!$s(e,t.key)&&(t.requires?t.requires(e):!0)).map(t=>({key:t.key,label:t.label,hint:t.hint,kind:t.kind,default:typeof t.default=="function"?t.default(e):t.default,...t.choices?{choices:t.choices}:{},impact:t.impact,...t.requiresLabel?{requiresLabel:t.requiresLabel}:{}}))}function js(e,t){switch(e.kind){case"boolean":return typeof t=="boolean";case"enum":return typeof t=="string"&&(e.choices??[]).includes(t);case"multiselect":return Array.isArray(t)&&t.every(r=>typeof r=="string"&&(e.choices??[]).includes(r))}}function Ms(e){let t=(e.choices??[]).map(r=>JSON.stringify(r)).join(", ");switch(e.kind){case"boolean":return"true or false";case"enum":return`one of ${t}`;case"multiselect":return`an array of ${t}`}}function ln(e){let t=[];for(let r of hr){let n=e[r.key];n!==void 0&&(js(r,n)||t.push(`\`${r.key}\` is ${JSON.stringify(n)}, but it must be ${Ms(r)}.`))}return t}function pn(e){let t={};for(let r of hr)if(typeof r.default=="function"){if(r.requires&&!r.requires(e))continue;t[r.key]=r.default(e)}else t[r.key]=Array.isArray(r.default)?[...r.default]:r.default;return{...t,...e}}function fr(e,t){return e.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,"")||t}function jt(e){return e.split("-").map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join(" ")}function Mt(e){return/^[a-z][a-z0-9-]*$/.test(e)}function j(e){return e instanceof Error?e.message:String(e)}var dn=["runner"];function gr(e){if(!dn.some(r=>e[r]===!0))return e;if(e.ai===!1)throw new Error("--runner requires AI features; remove --no-ai.");return e.ai===void 0&&(e.ai=!0),e}function yt(e){if(e.mobilePurchases!=="revenuecat")return e;if(e.mobile===!1)throw new Error("--mobile-purchases revenuecat requires the mobile app; remove --no-mobile.");if(e.paymentProvider==="none")throw new Error("--mobile-purchases revenuecat requires a payment provider (got --payment none): store purchases are additive to your web billing, never a replacement.");return e.mobile===void 0&&(e.mobile=!0),e}function bt(e){if(e.webAi!==!1)return e;if(e.ai===!1)throw new Error("--no-web-ai requires --ai (the desktop and mobile apps are where AI lives when the web surface is off).");if(e.desktop===!1&&e.mobile===!1)throw new Error("--no-web-ai requires --desktop or --mobile - with the web AI surface off, the desktop and mobile apps are the only places your AI features exist.");if(e.runner===!0)throw new Error("--runner needs the web AI surface; drop --runner or keep web AI.");return e}function un(e){return dn.some(r=>e[r]===!0)&&(e.ai=!0),e}function mn(e){if(e.webAi!==!1)return[];let t=[];return e.desktop!==!0&&e.mobile!==!0&&t.push("neither `desktop` nor `mobile` is true, so this project has no desktop or mobile app - and with the web AI surface off, those apps are the only places its AI features would exist."),e.runner===!0&&t.push("`runner` is true, and the runner's pairing, install and Runners screens are part of the web AI surface."),t}function hn(e){if(e.mobilePurchases!=="revenuecat")return[];let t=[];return e.mobile!==!0&&t.push("`mobile` is not true, so this project has no app to sell in - the store lane's paywall, purchase and restore surfaces all live in `apps/mobile`."),oe(e)||t.push('`paymentProvider` is absent or `"none"`, and store purchases are additive to your web billing - there is nothing here for them to sit on top of.'),t}function fn(e){let t=Us(e,e.desktopAi);return delete e.desktopAi,t}function Us(e,t){return e.desktop!==!0?{kind:"none"}:t===!0&&e.ai!==!0?{kind:"legacy-desktop-ai"}:t===!1&&e.ai===!0?{kind:"desktop-gains-ai"}:{kind:"none"}}function gn(e){let t={};if(e.name!==void 0){if(!Mt(e.name))throw new Error(`Invalid project name "${e.name}". Use lowercase letters, numbers, and hyphens only. Must start with a letter.`);t.projectName=e.name}if(e.appName!==void 0){if(!e.appName.trim())throw new Error("App name cannot be empty.");t.appName=e.appName}if(e.location!==void 0?t.projectDir=e.location==="."?process.cwd():e.location:t.projectName!==void 0&&(t.projectDir=`./${t.projectName}`),e.architecture!==void 0&&(t.architecture=e.architecture),e.payment!==void 0&&(t.paymentProvider=e.payment),e.email!==void 0&&(t.emailProvider=e.email),e.org!==void 0&&(t.multiTenancy=e.org),e.projects!==void 0&&(t.projects=e.projects),e.docs!==void 0&&(t.docs=e.docs),e.desktop!==void 0&&(t.desktop=e.desktop),e.mobile!==void 0&&(t.mobile=e.mobile),e.mobilePurchases!==void 0){if(!Me.includes(e.mobilePurchases))throw new Error(`Invalid mobile purchases "${e.mobilePurchases}". Valid values: ${Me.join(", ")}`);t.mobilePurchases=e.mobilePurchases}if(e.ai!==void 0&&(t.ai=e.ai),e.webAi!==void 0&&(t.webAi=e.webAi),e.runner!==void 0&&(t.runner=e.runner),gr(t),yt(t),bt(t),e.revenueSharing!==void 0&&(t.revenueSharing=e.revenueSharing),e.credits!==void 0){if(e.credits===!0&&e.payment==="none")throw new Error("--credits requires a payment provider (got --payment none).");t.credits=e.credits}if(e.currency!==void 0){if(!fe.includes(e.currency))throw new Error(`Invalid currency "${e.currency}". Valid values: ${fe.join(", ")}`);t.defaultCurrency=e.currency}if(e.deploy!==void 0){if(!ge.includes(e.deploy))throw new Error(`Invalid deployment target "${e.deploy}". Valid values: ${ge.join(", ")}`);t.deploymentTarget=e.deploy}if(e.database!==void 0){if(!ye.includes(e.database))throw new Error(`Invalid database provider "${e.database}". Valid values: ${ye.join(", ")}`);t.databaseProvider=e.database}if(e.cache!==void 0){if(!be.includes(e.cache))throw new Error(`Invalid cache provider "${e.cache}". Valid values: ${be.join(", ")}`);t.cacheProvider=e.cache}if(e.observability!==void 0){let r=e.observability.split(",").map(i=>i.trim()).filter(Boolean),n=r.filter(i=>!K.includes(i));if(n.length>0)throw new Error(`Invalid observability provider ${JSON.stringify(n.join(", "))}. Valid values: ${K.join(", ")}`);t.observability=r}if(e.preset!==void 0){if(!je.includes(e.preset))throw new Error(`Invalid preset "${e.preset}". Valid values: ${je.join(", ")}`);let r=he[e.preset].values;t.deploymentTarget??=r.deploymentTarget,t.databaseProvider??=r.databaseProvider,t.cacheProvider??=r.cacheProvider}if(e.demo===!0&&(t.demo=!0),e.baseUrl!==void 0){let r=e.baseUrl.trim();if(r==="")throw new Error("--base-url cannot be empty. Provide an absolute URL like https://example.com.");let n;try{n=new URL(r)}catch{throw new Error(`Invalid --base-url "${e.baseUrl}". Must be an absolute URL like https://example.com.`)}if(n.protocol!=="http:"&&n.protocol!=="https:")throw new Error(`Invalid --base-url "${e.baseUrl}". Must use http or https.`);t.baseUrl=`${n.protocol}//${n.host}`}return t}var nt={projectName:"my-saas",architecture:"fullstack",paymentProvider:"stripe",emailProvider:"smtp",multiTenancy:!1,projects:!1,docs:!1,desktop:!1,mobile:!1,mobilePurchases:"none",ai:!1,webAi:!0,runner:!1,revenueSharing:!1,credits:!0,defaultCurrency:"USD",deploymentTarget:"node",databaseProvider:"postgres",cacheProvider:"redis",observability:[]};function yn(e){let t=e.projectName??nt.projectName,r=e.projectDir??`./${t}`,n=e.appName??jt(t),i=e.deploymentTarget??nt.deploymentTarget,o=Z[i]?.edgeRuntime??!1,s=e.databaseProvider??(o?"neon":nt.databaseProvider),a=e.cacheProvider??(o?"upstash":nt.cacheProvider),d=e.emailProvider??(o?"resend":nt.emailProvider),u={...nt,...e,projectName:t,appName:n,projectDir:r,deploymentTarget:i,databaseProvider:s,cacheProvider:a,emailProvider:d};u.paymentProvider==="none"&&(u.credits=!1),(!u.mobile||u.paymentProvider==="none")&&(u.mobilePurchases="none"),yt(u);for(let y of Xe){if(u.deploymentTarget!==y.target)continue;let P=u.databaseProvider===y.provider?"database":"cache";if(u.databaseProvider===y.provider||u.cacheProvider===y.provider)throw new Error(`Incompatible: --deploy ${y.target} + --${P} ${y.provider}. ${y.reason}`)}for(let y of Ze)if(u.architecture===y.architecture&&u.deploymentTarget===y.target)throw new Error(`Incompatible: --architecture ${y.architecture} + --deploy ${y.target}. ${y.reason}`);let w=me(u);if(w)throw new Error(`Incompatible: --${w.feature} + --deploy ${w.target}. ${w.reason}`);return bt(u),u}function T(e){h.isCancel(e)&&(h.cancel("Setup cancelled."),process.exit(0))}function yr(e){let t=[];return e.databaseProvider==="neon"&&t.push({key:"DATABASE_URL",message:"Neon connection string (optional):",placeholder:"postgres://...",secret:!0}),e.databaseProvider==="supabase"&&t.push({key:"DATABASE_URL",message:"Supabase connection string (optional):",placeholder:"postgres://...",secret:!0}),e.cacheProvider==="upstash"&&(t.push({key:"UPSTASH_REDIS_REST_URL",message:"Upstash REST URL (optional):",placeholder:"https://...",secret:!1}),t.push({key:"UPSTASH_REDIS_REST_TOKEN",message:"Upstash REST token (optional):",secret:!0})),e.paymentProvider==="stripe"&&(t.push({key:"STRIPE_SECRET_KEY",message:"Stripe secret key (optional):",placeholder:"sk_test_...",secret:!0}),t.push({key:"STRIPE_WEBHOOK_SECRET",message:"Stripe webhook secret (optional):",placeholder:"whsec_...",secret:!0})),e.paymentProvider==="polar"&&(t.push({key:"POLAR_ACCESS_TOKEN",message:"Polar access token (optional):",secret:!0}),t.push({key:"POLAR_WEBHOOK_SECRET",message:"Polar webhook secret (optional):",secret:!0})),e.emailProvider==="resend"&&t.push({key:"RESEND_API_KEY",message:"Resend API key (optional):",placeholder:"re_...",secret:!0}),e.emailProvider==="ses"&&(t.push({key:"AMAZON_SES_REGION",message:"Amazon SES region (optional):",placeholder:"us-east-1",secret:!1}),t.push({key:"AMAZON_SES_KEY",message:"Amazon SES access key (optional):",secret:!0}),t.push({key:"AMAZON_SES_SECRET",message:"Amazon SES secret (optional):",secret:!0})),e.demo&&t.push({key:"TURNSTILE_SECRET_KEY",message:"Cloudflare Turnstile secret key (optional):",secret:!0}),t}async function bn(e,t){let r=!1;e&&gr(e),e&&yt(e),e&&bt(e),h.log.info(g.bold("Project"));let n=e?.projectName??await(async()=>{r=!0;let l=await h.text({message:"Project name:",placeholder:"my-saas",validate:m=>{if(!m?.trim())return"Project name is required.";if(!Mt(m))return"Use lowercase letters, numbers, and hyphens only. Must start with a letter."}});return T(l),l})(),i=e?.appName??await(async()=>{r=!0;let l=await h.text({message:"App name:",initialValue:jt(n),validate:m=>{if(!m?.trim())return"App name is required."}});return T(l),l})(),o=e?.projectDir??await(async()=>{r=!0;let l=await h.text({message:"Project location:",initialValue:`./${n}`});return T(l),l==="."?process.cwd():l})();h.log.info(g.bold("Infrastructure"));let s={};if(e?.deploymentTarget===void 0&&e?.databaseProvider===void 0&&e?.cacheProvider===void 0){r=!0;let l=await h.select({message:"Infrastructure:",options:[...je.map(m=>({value:m,label:he[m].label,hint:he[m].hint})),{value:"custom",label:"Customize",hint:"choose each piece yourself"}]});if(T(l),l!=="custom"){let m=he[l].values;s.deploymentTarget=m.deploymentTarget,s.databaseProvider=m.databaseProvider,s.cacheProvider=m.cacheProvider,h.log.info(`${he[l].label}: ${he[l].hint}.`)}}let a=e?.deploymentTarget??s.deploymentTarget??"node";if(e?.deploymentTarget===void 0&&s.deploymentTarget===void 0){r=!0;let l=await h.select({message:"Deployment target:",options:ge.map(m=>({value:m,label:Z[m].label,hint:Z[m].hint}))});T(l),a=l}let d=e?.architecture?Ze.find(l=>l.architecture===e.architecture&&l.target===a):void 0;if(d)throw new Error(`Incompatible: --architecture ${d.architecture} + --deploy ${d.target}. ${d.reason}`);let u=me({...e,deploymentTarget:a});if(u)throw new Error(`Incompatible: --${u.feature} + --deploy ${u.target}. ${u.reason}`);let w=me({runner:!0,deploymentTarget:a})!==void 0,y=new Set(Ze.filter(l=>l.target===a).map(l=>l.architecture)),P=et.filter(l=>!y.has(l)),I=e?.architecture??await(async()=>{if(P.length===1){let m=P[0];return h.log.info(`Auto-selected ${gt[m].label} architecture (only compatible option for ${Z[a].label}).`),m}r=!0;let l=await h.select({message:"Architecture:",options:P.map(m=>({value:m,label:gt[m].label,hint:gt[m].hint}))});return T(l),l})(),R=e?.databaseProvider??s.databaseProvider??await(async()=>{r=!0;let l=ye.filter(x=>!Xe.some(Pe=>Pe.target===a&&Pe.provider===x));if(l.length===1){let x=l[0];return h.log.info(`Auto-selected ${Le[x].label} (only compatible option for ${Z[a].label}).`),x}let m=await h.select({message:"Database provider:",options:l.map(x=>({value:x,label:Le[x].label,hint:Le[x].hint}))});return T(m),m})(),f=e?.cacheProvider??s.cacheProvider??await(async()=>{r=!0;let l=be.filter(x=>!Xe.some(Pe=>Pe.target===a&&Pe.provider===x));if(l.length===1){let x=l[0];return h.log.info(`Auto-selected ${$e[x].label} (only compatible option for ${Z[a].label}).`),x}let m=await h.select({message:"Cache provider:",options:l.map(x=>({value:x,label:$e[x].label,hint:$e[x].hint}))});return T(m),m})();if(Z[a]?.edgeRuntime){let l=on.map(m=>` - ${m}`).join(`
3
- `);h.note(l,"Unavailable on edge runtime")}h.log.info(g.bold("Features"));let O=e?.paymentProvider??await(async()=>{r=!0;let l=await h.select({message:"Payment provider:",options:tt.map(m=>({value:m,label:Ct[m].label,hint:Ct[m].hint}))});return T(l),l})(),_e=e?.defaultCurrency??await(async()=>{if(O==="none")return"USD";r=!0;let l=await h.select({message:"Default currency:",options:fe.map(m=>({value:m,label:m,hint:Ce[m].name}))});return T(l),l})(),q=e?.emailProvider??await(async()=>{r=!0;let l=await h.select({message:"Email provider:",options:rt.map(m=>({value:m,label:Lt[m].label,hint:Lt[m].hint}))});return T(l),l})(),J=e?.observability??await(async()=>{r=!0;let l=await h.multiselect({message:"Observability (space to select, enter to confirm):",required:!1,initialValues:[],options:K.map(m=>({value:m,label:$t[m].label,hint:$t[m].hint}))});return T(l),l})(),Oe=e?.multiTenancy??await(async()=>{r=!0;let l=await h.confirm({message:"Enable multi-tenancy (organizations)?",initialValue:!1});return T(l),l})(),xe=e?.projects??await(async()=>{r=!0;let l=await h.confirm({message:"Enable projects (a switcher that scopes a user's work)?",initialValue:!1});return T(l),l})(),De=e?.docs??await(async()=>{r=!0;let l=await h.confirm({message:"Include docs app? (self-hosted Fumadocs documentation site)",initialValue:!1});return T(l),l})(),Je=t?.desktopAllowed!==!1,v=e?.desktop??(Je?await(async()=>{r=!0;let l=await h.confirm({message:"Include the desktop app? (apps/desktop - cross-platform, built with Electron, device-auth). With AI on, it also runs a local AI stack.",initialValue:!1});return T(l),l})():(h.log.info(g.dim("Desktop app: available on the Pro plan and up - skipped.")),!1)),U=t?.mobileAllowed!==!1,G=e?.mobile??(U?await(async()=>{r=!0;let l=await h.confirm({message:"Include the mobile app? (apps/mobile - iOS and Android, built with Expo, with push notifications and universal links)",initialValue:!1});return T(l),l})():(h.log.info(g.dim("Mobile app: available on the Pro plan and up - skipped.")),!1)),se=!G||O==="none"?"none":e?.mobilePurchases??await(async()=>{r=!0;let x=await h.select({message:"Mobile in-app purchases?",options:[{value:"revenuecat",label:"RevenueCat",hint:"store billing on top of your web provider - Apple and Google charge, your app grants"},{value:"none",label:"None",hint:"web billing only; the app shows the plan, never a paywall"}],initialValue:"none"});return T(x),x})();yt({mobile:G,mobilePurchases:se,paymentProvider:O});let C=e?.ai??await(async()=>{r=!0;let l=await h.confirm({message:"Add AI features? (chat, models, automations, integrations - and unlocks the runner)",initialValue:!1});return T(l),l})(),de=t?.runnerAllowed!==!1,X=e?.webAi===!1,ue=!C||w||X?!1:e?.runner??(de?await(async()=>{r=!0;let l=await h.confirm({message:"Add the runner daemon for your WEB users? A small program they install on their own machine or VPS to run their Claude Code / Codex subscription for this app 24/7 - the AI runs on their hardware, not yours. Off means no install UI and no pairing endpoint on your site; you can adopt it later.",initialValue:!1});return T(l),l})():(h.log.info(g.dim("Runner: available on the Pro plan and up - skipped.")),!1));C&&w?h.log.info(g.dim(`Runner: ${Z[a].label} cannot hold a connection open - skipped.`)):C&&X&&h.log.info(g.dim("Runner: its pairing and device screens live in the web AI surface, which is off - skipped."));let Ne=e?.webAi??((v||G)&&C&&!ue?await(async()=>{r=!0;let l=await h.confirm({message:"Show the AI surfaces in the web app? (No: app-first - your desktop or mobile app is where your AI product lives, and the web keeps account, billing, and licensing only)",initialValue:!0});return T(l),l})():!0);bt({webAi:Ne,ai:C,desktop:v,mobile:G,runner:ue});let N=e?.revenueSharing??await(async()=>{r=!0;let l=await h.confirm({message:"Enable revenue sharing? (opt-in MRR leaderboard with dofollow backlinks)",initialValue:!1});return T(l),l})(),ht=O==="none"?!1:e?.credits??await(async()=>{r=!0;let l=await h.confirm({message:"Enable credits? (metered usage on top of subscription plans)",initialValue:!0});return T(l),l})(),pr=e?.demo,Dt=yr({databaseProvider:R,cacheProvider:f,paymentProvider:O,emailProvider:q,demo:pr}),ft={};if(Dt.length>0&&r){h.log.info(g.bold("Credentials")+g.dim(" all optional - press Enter to skip, fill in .env later"));for(let l of Dt)if(r=!0,l.secret){let m=await h.password({message:l.message,mask:"*"});T(m),typeof m=="string"&&m.trim()&&(ft[l.key]=m.trim())}else{let m=await h.text({message:l.message,placeholder:l.placeholder});T(m),typeof m=="string"&&m.trim()&&(ft[l.key]=m.trim())}}if(r){let l=[` Name: ${g.cyan(n)}`,` App name: ${g.cyan(i)}`,` Location: ${g.cyan(o)}`,` Architecture: ${g.cyan(gt[I].label)}`].join(`
4
- `),m=[` Deploy target: ${g.cyan(Z[a]?.label??"Node.js / Docker")}`,` Database: ${g.cyan(Le[R].label)}`,` Cache: ${g.cyan($e[f].label)}`].filter(Boolean).join(`
5
- `),x=[O!=="none"?` Payment: ${g.cyan(Ct[O].label)} (${_e})`:` Payment: ${g.dim("none")}`,` Credits: ${ht?g.cyan("Yes"):g.dim("No")}`,` AI features: ${C?g.cyan("Yes"):g.dim("No")}`,...C?[` Runner: ${ue?g.cyan("Yes"):g.dim("No")}`]:[],...Ne?[]:[` Web AI: ${g.dim("No")} (app-first)`],` Email: ${g.cyan(Lt[q].label)}`,` Observability: ${J.length===0?g.dim("none"):g.cyan(J.map(dr=>$t[dr].label).join(", "))}`,` Multi-tenancy: ${Oe?g.cyan("Yes"):g.dim("No")}`,` Projects: ${xe?g.cyan("Yes"):g.dim("No")}`,` Docs app: ${De?g.cyan("Yes"):g.dim("No")}`,` Desktop app: ${v?g.cyan("Yes"):g.dim("No")}`,` Mobile app: ${G?g.cyan("Yes"):g.dim("No")}`,...se==="none"?[]:[` In-app purch.: ${g.cyan("RevenueCat")}`],` Rev. sharing: ${N?g.cyan("Yes"):g.dim("No")}`].join(`
6
- `),Pe=[g.bold("Project"),l,"",g.bold("Infrastructure"),m,"",g.bold("Features"),x];if(Dt.length>0){let dr=Dt.map(tn=>{let Cs=ft[tn.key]?g.green("provided"):g.dim("skipped");return` ${tn.key}: ${Cs}`}).join(`
7
- `);Pe.push("",g.bold("Credentials"),dr)}h.note(Pe.join(`
8
- `),"Summary");let en=await h.confirm({message:"Proceed with these settings?"});(h.isCancel(en)||!en)&&(h.cancel("Setup cancelled."),process.exit(0))}return{projectName:n,appName:i,projectDir:o,architecture:I,deploymentTarget:a,databaseProvider:R,cacheProvider:f,paymentProvider:O,emailProvider:q,observability:J,multiTenancy:Oe,projects:xe,docs:De,desktop:v,mobile:G,mobilePurchases:se,ai:C,webAi:Ne,runner:ue,revenueSharing:N,credits:ht,defaultCurrency:_e,...Object.keys(ft).length>0?{credentials:ft}:{},...e?.baseUrl!==void 0?{baseUrl:e.baseUrl}:{},...pr!==void 0?{demo:pr}:{}}}import{createReadStream as _n,existsSync as qs}from"fs";import{mkdir as Js}from"fs/promises";import{join as Xs}from"path";import{Readable as Zs}from"stream";import{pipeline as Ir}from"stream/promises";import{extract as Qs}from"tar";import{join as Ue}from"path";import{homedir as Fs}from"os";var wt=process.env.GENERATESAAS_API_URL??"https://cli.generatesaas.com",Q=".generatesaas",Ae=Ue(Q,"manifest.json"),wn="nextjs",br="nuxt",wr="2.4.1",vn=Ue(Q,"hashes.json"),Ut=Ue(Q,"template-hashes.json"),Ft=Ue(Q,"template"),kn=Ue(Q,"staging"),En=Ue(Q,"staging.json"),we=Ue(Fs(),".generatesaas");var F=class extends Error{constructor(r,n,i){super(n);this.status=r;this.body=i}status;body;name="ApiError"};function ve(e){return{apiKey:e,baseUrl:wt}}async function Ie(e,t,r){let n=`${e.baseUrl}${t}`,i=await fetch(n,{...r,headers:{...r?.headers,Authorization:`Bearer ${e.apiKey}`,"User-Agent":"generatesaas-cli/3.7.0"}});if(!i.ok){let o,s;try{s=await i.json(),o=s.error??`API ${i.status}: ${t}`}catch{o=`API ${i.status}: ${t}`}throw new F(i.status,o,s)}return i}import{existsSync as Vs,readFileSync as Bs,writeFileSync as Gs,mkdirSync as Ks}from"fs";import{dirname as Hs}from"path";import*as Re from"@clack/prompts";function vt(){if(!Vs(we))return null;try{let e=JSON.parse(Bs(we,"utf-8"));return e.apiKey?e.apiKey:(e.token&&!e.apiKey&&Re.log.warning(`Found old GitHub token in ${we}. Run 'generatesaas init' to set up your API key.`),null)}catch{return null}}function Fe(e){Ks(Hs(we),{recursive:!0}),Gs(we,JSON.stringify({apiKey:e},null," ")+`
9
- `,{mode:384})}async function it(e){if(e?.apiKey)return e.apiKey;let t=process.env.GENERATESAAS_API_KEY;if(t)return t;let r=vt();if(r)return r;if(!e?.prompt)throw new Error("API key not found. Set GENERATESAAS_API_KEY or run 'generatesaas init' to configure.");return kt()}async function kt(){let e=await Re.text({message:"Enter your GenerateSaaS API key:",placeholder:"gs_live_...",validate:t=>{if(!t?.trim())return"API key is required."}});return Re.isCancel(e)&&(Re.cancel("Setup cancelled."),process.exit(0)),e.trim()}import{readFile as Ys}from"fs/promises";async function Te(e){let t=process.env.GENERATESAAS_VERSION_INDEX;return t?JSON.parse(await Ys(t,"utf-8")):process.env.GENERATESAAS_OFFLINE_LICENSE==="1"?{latest:"0.0.0-ci",versions:[{version:"0.0.0-ci",date:new Date().toISOString(),breaking:!1}],entitlements:null}:await(await Ie(e,"/versions")).json()}async function Sn(e,t){if(process.env.GENERATESAAS_OFFLINE_LICENSE==="1")return null;try{return await(await Ie(e,`/changelog/${encodeURIComponent(t)}`)).text()}catch(r){if(r instanceof F&&r.status===404)return null;throw r}}async function Pn(e,t){return process.env.GENERATESAAS_OFFLINE_LICENSE==="1"?{skills:{"generatesaas-update":{skillMd:`# Offline skill stub
10
- `,scripts:{},references:{}}}}:await(await Ie(e,`/skills/${encodeURIComponent(t)}`)).json()}function Vt(e){if(!(e instanceof F)||e.status!==403)return null;let t=e.body;return!t||t.code!=="update_window_expired"?null:{message:e.message,lastAllowedVersion:t.lastAllowedVersion??null}}var vr="nextjs";function An(e){return{frontend:vr,architecture:e.architecture,deployTarget:e.deploymentTarget,database:e.databaseProvider,cache:e.cacheProvider,payment:e.paymentProvider,email:e.emailProvider,multiTenancy:e.multiTenancy,blog:!0,docs:e.docs,desktop:e.desktop,mobile:e.mobile,runner:e.runner,credits:e.credits,revenueSharing:e.revenueSharing,currency:e.defaultCurrency}}async function kr(e,t){return process.env.GENERATESAAS_OFFLINE_LICENSE==="1"?{token:"offline-test-token",licenseId:"offline-test-license-id",installId:t.installId}:await(await Ie(e,"/license/sign",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)})).json()}async function In(e,t){return process.env.GENERATESAAS_OFFLINE_LICENSE==="1"?{token:t.currentToken}:await(await Ie(e,"/license/refresh",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)})).json()}async function Er(e,t){let r=await fetch(`${e}/license/verify`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});if(!r.ok)throw new Error(`Verification service returned ${r.status}`);return await r.json()}async function Rn(e,t,r){let n=await fetch(`${e}/license/inspect`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${t}`},body:JSON.stringify(r)});if(!n.ok){let i=await n.json().catch(()=>null);throw new Error(i?.error??`Inspect endpoint returned ${n.status}`)}return await n.json()}var Sr=new Set([".git","node_modules",".pnpm-store",".env",".env.test",".turbo",".data","dist",".next",".next-e2e-web",".next-e2e-desktop",".svelte-kit",".wrangler",".devcontainer","playwright-report","test-results",".drive-out",".mastra"]),Pr=new Set(["pnpm-lock.yaml"]);function st(e){if(Ar(e))return!0;for(let t of e.split("/"))if(Pr.has(t))return!0;return!1}var Ws=new Set(["data","mksaas","references","scripts",".cursor",".agents",".codex",".generatesaas",".vscode",".mcp.json","vitest.config.ts","README.md","TODO.md","OVERVIEW.md","HANDOFF.md"]),Tn=["scripts/docs-lint.ts"],zs=["docs/superpowers","packages/cli","packages/cli-api","packages/config/tests/runner-brand-lockstep.test.ts","packages/database/tests/no-migration-history.test.ts","apps/web/tests/content/competitor-claims.test.ts","apps/runner","docs/agentrunner","infra/docker-compose.yml",".claude/commands",".claude/skills/web-port",".claude/skills/web-port-workspace",".claude/settings.local.json",".claude/worktrees"];function Ar(e){let t=e.split("/");for(let r of t)if(Sr.has(r))return!0;if(Tn.includes(e)||Tn.some(r=>r.startsWith(e+"/")))return!1;if(Ws.has(t[0]))return!0;for(let r of zs)if(e===r||e.startsWith(r+"/"))return!0;return!1}async function Bt(e,t,r){await Js(r,{recursive:!0});let n=process.env.GENERATESAAS_TEMPLATE_TARBALL_DIR;if(n){let a=Xs(n,`v${t}.tar.gz`);if(!qs(a))throw new Error(`GENERATESAAS_TEMPLATE_TARBALL_DIR is set but ${a} does not exist.`);await Ir(_n(a),Rr(r));return}let i=process.env.GENERATESAAS_TEMPLATE_TARBALL;if(i){await Ir(_n(i),Rr(r));return}let o=await Ie(e,`/template/${encodeURIComponent(t)}`);if(!o.body)throw new Error("Empty response body");let s=Zs.fromWeb(o.body);await Ir(s,Rr(r))}function Rr(e){return Qs({cwd:e,strip:1,filter:t=>{let r=t.replace(/^[^/]+\//,"");return r?!Ar(r):!0},sync:!1})}import{readdir as Gt,readFile as ot,rm as xn,rmdir as eo,writeFile as Et}from"fs/promises";import{join as H}from"path";async function Dn(e){let t;try{t=await Gt(e,{withFileTypes:!0})}catch{return!1}let r=!1;for(let n of t){let i=H(e,n.name);if(n.isDirectory()){await Dn(i)&&(r=!0);continue}if(n.name.startsWith("_")){r=!0;continue}await xn(i,{force:!0})}return r||await eo(e).catch(()=>{}),r}async function Nn(e){let t=H(e,"packages/content"),r=[];try{r=(await Gt(t,{withFileTypes:!0})).filter(s=>s.isDirectory()).map(s=>s.name)}catch{return}let n=new Set;for(let s of r){let a=H(t,s),d;try{d=(await Gt(a,{withFileTypes:!0})).filter(u=>u.isDirectory())}catch{continue}for(let u of d)n.add(u.name),await Dn(H(a,u.name))}let i=await io(e),o=new Set([...n].filter(s=>i===void 0||i.has(s)));await Promise.all([...o].map(s=>xn(H(e,"apps/web/public/images",s),{recursive:!0,force:!0}))),await oo(e,o)}var to="packages/config/src/index.ts",ro=/\bcontent:\s*\{[\s\S]*?\bsections:\s*\[([\s\S]*?)\]/,no=/\bslug:\s*"([^"]+)"/g;async function io(e){let t;try{t=await ot(H(e,to),"utf-8")}catch{return}let r=ro.exec(t)?.[1];if(r===void 0)return;let n=[...r.matchAll(no)].map(i=>i[1]).filter(i=>i!==void 0);return n.length>0?new Set(n):void 0}var so="packages/translate/.meta/mdx-translation-meta.json";async function oo(e,t){if(t.size===0)return;let r=H(e,so),n;try{n=JSON.parse(await ot(r,"utf-8"))}catch{return}if(typeof n!="object"||n===null)return;let i=n;if(typeof i.files!="object"||i.files===null)return;let o=i.files,s={};for(let[a,d]of Object.entries(o)){let u=a.split("/"),w=u.length>1?u[0]:void 0,y=u[u.length-1]?.startsWith("_")===!0;w!==void 0&&t.has(w)&&!y||(s[a]=d)}await Et(r,JSON.stringify({...i,files:s},null," ")+`
11
- `)}var ao="packages/config/src/blog.ts";async function Cn(e){let t=H(e,ao),r=await ot(t,"utf-8"),n=On(On(r,"blogCategories",t),"blogAuthors",t);await Et(t,n)}function On(e,t,r){let n=new RegExp(`(export const ${t}\\b[^=]*=\\s*)\\[[\\s\\S]*?\\];`);if(!n.test(e))throw new Error(`emptyBlogConfig: could not find the \`export const ${t} = [...]\` declaration in ${r}. The boilerplate blog config may have been renamed or restructured; update the CLI strip in cleanup.ts.`);return e.replace(n,"$1[];")}async function Ln(e){let t=H(e,"packages/i18n/translations"),r;try{r=await Gt(t)}catch{return}for(let n of r){let i=H(t,n,"web.json"),o;try{o=await ot(i,"utf-8")}catch{continue}let s=JSON.parse(o);!s.content?.categories||s.content.categories.blog===void 0||(s.content.categories.blog={},await Et(i,JSON.stringify(s,null," ")+`
12
- `))}}var co="packages/config/src/ai/tasks.ts",lo="The array carries a SINGLE INERT DEMO task: the CLI strips it for buyer builds (leaving an empty\n * `aiTasks`, which hides the Tasks tab) and keeps it for `--demo` builds.",po="The array starts EMPTY, which hides the Tasks tab until you declare your first task.";async function $n(e){let t=H(e,co),r=await ot(t,"utf-8"),n=r.replace(/\n?[\t ]*\/\/ gsaas:demo-ai-task-start[\s\S]*?\/\/ gsaas:demo-ai-task-end/,"");if(n===r)throw new Error(`removeDemoAiTasks: could not find the \`gsaas:demo-ai-task\` markers in ${t}. The boilerplate AI tasks config may have been renamed or restructured; update the CLI strip in cleanup.ts.`);let i=n.replace(lo,po);if(i===n)throw new Error(`removeDemoAiTasks: the demo-task paragraph in ${t} did not match, so the shipped file would describe a demo task it no longer carries (boilerplate drift).`);await Et(t,i)}async function jn(e){let t=H(e,".claude","settings.json"),r;try{r=await ot(t,"utf8")}catch{return}let n=JSON.parse(r);delete n.alwaysThinkingEnabled,delete n.enableAllProjectMcpServers,n.env&&(delete n.env.CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS,Object.keys(n.env).length===0&&delete n.env),n.permissions?.allow&&(n.permissions.allow=n.permissions.allow.filter(uo)),await Et(t,JSON.stringify(n,null," ")+`
13
- `)}function uo(e){return!(e.startsWith("mcp__")||e.includes("nuxt"))}import{readFileSync as Eo}from"fs";import{dirname as So,join as _r}from"path";import{fileURLToPath as Po}from"url";import{existsSync as mo}from"fs";import{join as Mn}from"path";function Kt(e,t,r){let n=Mn(e,...t);return mo(n)?n:Mn(e,r)}import{mkdir as ho,readdir as fo,rm as go,rmdir as yo,writeFile as bo}from"fs/promises";import{dirname as Ht,join as wo,relative as vo,sep as ko}from"path";function Ve(e){return e.split(ko).join("/")}async function Yt(e){await ho(e,{recursive:!0})}async function c(e,t){await Yt(Ht(e)),await bo(e,t,"utf-8")}async function at(e,t){await go(e,{force:!0});let r=Ht(e);for(;r!==t&&r!==Ht(r);){try{await yo(r)}catch{return}r=Ht(r)}}async function ke(e,t,r,n){let i=[],o=await fo(e,{withFileTypes:!0});for(let s of o){let a=wo(e,s.name),d=Ve(vo(t,a));r(d)||(s.isDirectory()?i.push(...await ke(a,t,r,n)):s.isFile()&&(n===void 0||n(d))&&i.push(a))}return i}var Ao={postgres:"Postgres",neon:"Neon (managed Postgres)",supabase:"Supabase (managed Postgres)"},Io={resend:"Resend",ses:"Amazon SES",smtp:"SMTP"},Ro={redis:"Redis",upstash:"Upstash Redis"},To={node:"Node.js / Docker",vercel:"Vercel"},Tr="apps/web",_o="Next.js 16",Oo="`app/` routes, `components/`, `lib/`",xo={stripe:"Stripe",polar:"Polar"};function Do(e){let t=e.architecture==="fullstack",r=t?"(fullstack - Hono API mounted inside the app)":"(separate - standalone Hono backend)",n=t?`Mounted inside \`${Tr}\`. A standalone \`apps/backend\` is also kept (inert) so you can switch to separate later.`:"Runs from `apps/backend`; the frontend reaches it over HTTP.",i=Ro[e.cacheProvider],o=To[e.deploymentTarget],s=e.paymentProvider==="none"?"":`
14
- - **Payments:** ${xo[e.paymentProvider]}`,a=e.desktop?e.mobile?", the desktop app (built with Electron) under `docs/desktop/` and the mobile app (built with Expo) under `docs/mobile/`":", and the desktop app (built with Electron) under `docs/desktop/`":e.mobile?", and the mobile app (built with Expo) under `docs/mobile/`":"",d=e.runner?"\n- **Runner daemon** - your users install AgentRunner on a machine they control and pair it with their account. Everything you own lives in this repo: the `/runner/*` routes, the relay, the Runners page, and the capability layer runs get. The daemon itself is published separately and auto-updates - there is nothing to build or release here.":"",u=`\`useTranslations()\` from \`next-intl\` in components; messages are loaded in \`${Tr}/i18n/request.ts\`.`;return Co({archSuffix:r,apiLocation:n,databaseName:Ao[e.databaseProvider],cacheName:i,paymentLine:s,emailName:Io[e.emailProvider],deployName:o,runnerBullet:d,appDocsRef:a,i18nRule:u,webAppDir:Tr,webAppName:_o,webAppLayout:Oo})}function No(){return Kt(So(Po(import.meta.url)),["generators","content"],"content")}function Co(e){let t=Eo(_r(No(),"AGENTS.template.md"),"utf-8"),r=new Map(Object.entries(e)),n=t.replace(/\{\{(\w+)\}\}/g,(o,s)=>{let a=r.get(s);if(a===void 0)throw new Error(`AGENTS.template.md uses unknown token {{${s}}}`);return a}),i=/\{\{[^}]*\}\}/.exec(n);if(i)throw new Error(`AGENTS.template.md carries an unrendered token: ${i[0]}`);return n}async function Un(e){await c(_r(e.projectDir,"AGENTS.md"),Do(e)),await c(_r(e.projectDir,"CLAUDE.md"),`@AGENTS.md
15
- `)}import{join as Lo}from"path";var Fn="apps/web",Or="Next.js 16",$o={postgres:"Postgres (self-hosted)",neon:"Neon (managed Postgres)",supabase:"Supabase (managed Postgres)"};function jo(e){let t=e.appName.trim()||e.projectName,r=$o[e.databaseProvider],n=e.architecture==="fullstack"?`${Or} app at \`${Fn}/\` with the Hono API mounted inside it. A standalone \`apps/backend/\` is also included (inert in this fullstack setup) so you can split the API into a separate service later without re-scaffolding.`:`${Or} app at \`${Fn}/\` and a separate Hono backend at \`apps/backend/\`.`,i=e.architecture==="fullstack"?`- App + API: http://localhost:3000
2
+ import{Command as qp}from"commander";import*as Us from"@clack/prompts";import{existsSync as cp,readdirSync as lp,rmSync as pp}from"fs";import{join as dp,resolve as up}from"path";import{Option as ne}from"commander";import*as k from"@clack/prompts";import*as Nt from"@clack/prompts";import ur from"picocolors";function rn(e){let t=e?` GenerateSaaS v${e} `:" GenerateSaaS ";Nt.intro(ur.bgYellow(ur.black(t)))}function nn(){Nt.outro(ur.yellow("Happy building!"))}import*as h from"@clack/prompts";import g from"picocolors";var gt={fullstack:{label:"Fullstack",hint:"Frontend hosts the API - works on serverless or long-running"},separate:{label:"Separate",hint:"Standalone Hono backend - long-running runtimes only (Docker, Render, Fly.io, Railway, Coolify, Dokploy)"}},Ct={stripe:{label:"Stripe"},polar:{label:"Polar"},none:{label:"None",hint:"disable payments"}},Lt={smtp:{label:"SMTP",hint:"Mailpit for local dev"},ses:{label:"Amazon SES"},resend:{label:"Resend"}},$t={sentry:{label:"Sentry",hint:"web, server and desktop - release health, tracing, alerting"},posthog:{label:"PostHog",hint:"web and server, plus LLM analytics - no Electron SDK, so a desktop build reports nothing"}},sn={postgres:{label:"PostgreSQL",hint:"port 5432",port:5432},redis:{label:"Redis",hint:"port 6379",port:6379},inngest:{label:"Inngest",hint:"port 8288",port:8288},mailpit:{label:"Mailpit",hint:"port 1025",port:1025}};var Le={USD:{symbol:"$",name:"US Dollar",place:"left",space:!1},EUR:{symbol:"\u20AC",name:"Euro",place:"right",space:!1},GBP:{symbol:"\xA3",name:"British Pound",place:"left",space:!1},CAD:{symbol:"CA$",name:"Canadian Dollar",place:"left",space:!1},AUD:{symbol:"A$",name:"Australian Dollar",place:"left",space:!1},BRL:{symbol:"R$",name:"Brazilian Real",place:"left",space:!1},JPY:{symbol:"\xA5",name:"Japanese Yen",place:"left",space:!1}};var Z={node:{label:"Node.js / Docker",hint:"long-running runtime - Render, Fly.io, Railway, Coolify, Dokploy, VPS",edgeRuntime:!1},vercel:{label:"Vercel",hint:"serverless functions",edgeRuntime:!0}},$e={postgres:{label:"PostgreSQL (self-hosted)",hint:"local Docker, drizzle-orm/node-postgres",managed:!1,envVars:[{key:"DATABASE_URL",defaultValue:"postgres://postgres:postgres@localhost:5432/saas"}]},neon:{label:"Neon",hint:"serverless Postgres",managed:!0,envVars:[{key:"DATABASE_URL",comment:"# TODO: Add your Neon connection string"}]},supabase:{label:"Supabase",hint:"managed Postgres",managed:!0,envVars:[{key:"DATABASE_URL",comment:"# TODO: Add your Supabase connection string"}]}},je={redis:{label:"Redis (self-hosted)",hint:"local Docker, ioredis",managed:!1,envVars:[{key:"REDIS_URL",defaultValue:"redis://localhost:6379"}]},upstash:{label:"Upstash",hint:"serverless Redis",managed:!0,envVars:[{key:"UPSTASH_REDIS_REST_URL",comment:"# TODO: Add your Upstash REST URL"},{key:"UPSTASH_REDIS_REST_TOKEN",comment:"# TODO: Add your Upstash REST token"}]}},Xe=[{target:"vercel",provider:"redis",reason:"Vercel serverless cannot maintain persistent Redis connections. Consider Upstash."},{target:"vercel",provider:"postgres",reason:"Vercel serverless cannot pool connections to a self-hosted Postgres. Use Neon or Supabase - both are managed, connection-pooled Postgres."}],Ze=[{architecture:"separate",target:"vercel",reason:"Standalone backends need a long-running runtime. Vercel's per-function TypeScript check conflicts with pnpm's isolated install. Use --architecture fullstack for serverless, or deploy the standalone backend to a long-running runtime (Render, Fly.io, Railway, Coolify, Dokploy, or your own VPS via Docker)."}],Fs=[{feature:"runner",target:"vercel",reason:"Serverless (Vercel) cannot hold a connection open, and the runner holds one open per paired device. Deploy to a long-running runtime instead (Node.js / Docker on Render, Fly.io, Railway, Coolify, Dokploy, or your own VPS)."}];function me(e){return Fs.find(t=>e[t.feature]===!0&&e.deploymentTarget===t.target)}var he={serverless:{label:"Serverless",hint:"Vercel + Neon + Upstash",values:{deploymentTarget:"vercel",databaseProvider:"neon",cacheProvider:"upstash"}},selfhost:{label:"Self-host",hint:"Docker or Node + Postgres + Redis",values:{deploymentTarget:"node",databaseProvider:"postgres",cacheProvider:"redis"}}},Ue=Object.keys(he);function mr(e){let t=[];for(let r of Xe)if(e.deploymentTarget===r.target&&(e.databaseProvider===r.provider||e.cacheProvider===r.provider)){let n=e.databaseProvider===r.provider?"databaseProvider":"cacheProvider";t.push(`\`${n}: "${r.provider}"\` with \`deploymentTarget: "${r.target}"\` - ${r.reason}`)}for(let r of Ze)e.deploymentTarget===r.target&&e.architecture===r.architecture&&t.push(`\`architecture: "${r.architecture}"\` with \`deploymentTarget: "${r.target}"\` - ${r.reason}`);return t}var on=["Local file storage (sharp, geoip-lite)","SMTP email (use Resend or SES instead)","Content API git integration"];function Qe(e){let t=[];return e.databaseProvider==="postgres"&&t.push("postgres"),e.cacheProvider==="redis"&&t.push("redis"),e.emailProvider==="smtp"&&t.push("mailpit"),t.push("inngest"),t}var et=["fullstack","separate"],tt=["stripe","polar","none"],rt=["smtp","ses","resend"];var an=["claude-code","cursor","codex","gemini-cli","windsurf"],fe=["USD","EUR","GBP","CAD","AUD","BRL","JPY"],ge=["node","vercel"],ye=["postgres","neon","supabase"],be=["redis","upstash"],K=["sentry","posthog"],Me=["revenuecat","none"];function oe(e){return e.paymentProvider!==void 0&&e.paymentProvider!=="none"}var hr=[{key:"architecture",label:"Architecture",hint:"Fullstack (frontend hosts the API) or a standalone Hono backend.",category:"Infrastructure",kind:"enum",default:"fullstack",choices:et,adoptable:!1,impact:"structural",shapesTree:!0},{key:"deploymentTarget",label:"Deployment target",hint:"Node.js / Docker or Vercel serverless.",category:"Infrastructure",kind:"enum",default:"node",choices:ge,adoptable:!1,impact:"config",shapesTree:!0},{key:"databaseProvider",label:"Database provider",hint:"Self-hosted PostgreSQL, Neon, or Supabase.",category:"Infrastructure",kind:"enum",default:"postgres",choices:ye,adoptable:!1,impact:"config",shapesTree:!0},{key:"cacheProvider",label:"Cache provider",hint:"Self-hosted Redis or Upstash.",category:"Infrastructure",kind:"enum",default:"redis",choices:be,adoptable:!1,impact:"config",shapesTree:!0},{key:"paymentProvider",label:"Payment provider",hint:"Stripe, Polar, or none.",category:"Features",kind:"enum",default:"none",choices:tt,adoptable:!1,impact:"structural",shapesTree:!0},{key:"defaultCurrency",label:"Default currency",hint:"Billing and pricing currency.",category:"Features",kind:"enum",default:"USD",choices:fe,adoptable:!1,impact:"config",shapesTree:!1},{key:"emailProvider",label:"Email provider",hint:"SMTP, Amazon SES, or Resend.",category:"Features",kind:"enum",default:"smtp",choices:rt,adoptable:!1,impact:"config",shapesTree:!1},{key:"observability",label:"Observability",hint:"Which services receive your app's errors, and on PostHog its LLM analytics. Pick any combination - anything you do not pick costs nothing, since its SDK and its adapter are never generated.",category:"Features",kind:"multiselect",default:[],choices:K,adoptable:!0,impact:"config",shapesTree:!0},{key:"multiTenancy",label:"Multi-tenancy (organizations)",hint:"Adds organizations - teams, members, and shared resources.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!1},{key:"projects",label:"Projects",hint:"Adds projects - a switcher that scopes a user's work inside their account or organization.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"config",shapesTree:!1},{key:"docs",label:"Docs app",hint:"Adds the self-hosted Fumadocs documentation site (apps/docs).",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!0},{key:"desktop",label:"Desktop app",hint:"Adds the cross-platform desktop app (apps/desktop, built with Electron).",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!0},{key:"mobile",label:"Mobile app",hint:"Adds the cross-platform mobile app (apps/mobile, built with Expo).",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!0},{key:"mobilePurchases",label:"Mobile store purchases",hint:"In-app purchases in the mobile app, through RevenueCat. Store purchases sit ON TOP of your web payment provider - a subscriber who buys in the app is the same account, billed by Apple or Google instead of by you. Off keeps the app on web billing, where the plan card says the subscription is managed on your website.",category:"Features",kind:"enum",default:()=>"none",choices:Me,adoptable:!0,impact:"structural",shapesTree:!0,requires:e=>e.mobile===!0&&oe(e),requiresLabel:"requires the mobile app and a web payment provider - store purchases are additive to the web lane, never a replacement"},{key:"ai",label:"AI features",hint:"Adds the AI surface (chat, models, automations, integrations) and unlocks the runner option. A desktop project ALWAYS ships the app's local AI stack: this option sets config.desktop.agents.enabled (the runtime gate on those screens). Off keeps config.ai.enabled false so the AI nav stays hidden - the AI packages still ship, because packages/translate depends on @repo/ai for the i18n pipeline every project uses.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!0},{key:"webAi",label:"AI in the web app",hint:"Whether the WEB app shows the AI surfaces - chat, automations, model and integration settings, and their nav entries. Off is the app-first shape: your desktop or mobile app is where your AI product lives and the website keeps account, billing and licensing only. The AI SERVICE is untouched either way (config.ai.enabled, the /api/ai routes and the desktop agents all stay exactly as your AI option set them), so both apps keep talking to the same backend. Only meaningful with AI features and at least one app - the desktop app or the mobile app - and never with the runner: its pairing and device screens are part of the web AI surface.",category:"Features",kind:"boolean",default:!0,adoptable:!0,impact:"config",shapesTree:!1,requires:e=>e.ai===!0&&(e.desktop===!0||e.mobile===!0)&&e.runner!==!0,requiresLabel:"requires AI features and an app to host them (the desktop app or the mobile app), and is unavailable with the runner (its pairing and device screens live in the web AI surface)"},{key:"runner",label:"Runner daemon",hint:"Lets your users connect a machine that runs their own AI subscriptions (and any device-side work you add) on their hardware. They install AgentRunner, the daemon we publish and keep updated - your project ships the pairing, dispatch and Runners surface, never the daemon. Needs an always-on backend: the transport holds one connection open per paired device, which serverless (Vercel) cannot do.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"structural",shapesTree:!0,requires:e=>e.ai===!0&&e.webAi!==!1&&me({...e,runner:!0})===void 0,requiresLabel:"requires AI features, the web AI surface, and an always-on deployment target (not Vercel)"},{key:"credits",label:"Metered credits",hint:"Adds metered usage credits on top of subscription plans.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"config",shapesTree:!1,requires:e=>oe(e),requiresLabel:"requires a payment provider"},{key:"revenueSharing",label:"Revenue sharing",hint:"Opt-in MRR leaderboard with dofollow backlinks.",category:"Features",kind:"boolean",default:!1,adoptable:!0,impact:"config",shapesTree:!1}];function Vs(e,t){return e[t]!==void 0}function cn(e){return hr.filter(t=>t.adoptable&&!Vs(e,t.key)&&(t.requires?t.requires(e):!0)).map(t=>({key:t.key,label:t.label,hint:t.hint,kind:t.kind,default:typeof t.default=="function"?t.default(e):t.default,...t.choices?{choices:t.choices}:{},impact:t.impact,...t.requiresLabel?{requiresLabel:t.requiresLabel}:{}}))}function Bs(e,t){switch(e.kind){case"boolean":return typeof t=="boolean";case"enum":return typeof t=="string"&&(e.choices??[]).includes(t);case"multiselect":return Array.isArray(t)&&t.every(r=>typeof r=="string"&&(e.choices??[]).includes(r))}}function Gs(e){let t=(e.choices??[]).map(r=>JSON.stringify(r)).join(", ");switch(e.kind){case"boolean":return"true or false";case"enum":return`one of ${t}`;case"multiselect":return`an array of ${t}`}}function ln(e){let t=[];for(let r of hr){let n=e[r.key];n!==void 0&&(Bs(r,n)||t.push(`\`${r.key}\` is ${JSON.stringify(n)}, but it must be ${Gs(r)}.`))}return t}function pn(e){let t={};for(let r of hr)if(typeof r.default=="function"){if(r.requires&&!r.requires(e))continue;t[r.key]=r.default(e)}else t[r.key]=Array.isArray(r.default)?[...r.default]:r.default;return{...t,...e}}function fr(e,t){return e.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,"")||t}function jt(e){return e.split("-").map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join(" ")}function Ut(e){return/^[a-z][a-z0-9-]*$/.test(e)}function j(e){return e instanceof Error?e.message:String(e)}var dn=["runner"];function gr(e){if(!dn.some(r=>e[r]===!0))return e;if(e.ai===!1)throw new Error("--runner requires AI features; remove --no-ai.");return e.ai===void 0&&(e.ai=!0),e}function yt(e){if(e.mobilePurchases!=="revenuecat")return e;if(e.mobile===!1)throw new Error("--mobile-purchases revenuecat requires the mobile app; remove --no-mobile.");if(e.paymentProvider==="none")throw new Error("--mobile-purchases revenuecat requires a payment provider (got --payment none): store purchases are additive to your web billing, never a replacement.");return e.mobile===void 0&&(e.mobile=!0),e}function bt(e){if(e.webAi!==!1)return e;if(e.ai===!1)throw new Error("--no-web-ai requires --ai (the desktop and mobile apps are where AI lives when the web surface is off).");if(e.desktop===!1&&e.mobile===!1)throw new Error("--no-web-ai requires --desktop or --mobile - with the web AI surface off, the desktop and mobile apps are the only places your AI features exist.");if(e.runner===!0)throw new Error("--runner needs the web AI surface; drop --runner or keep web AI.");return e}function un(e){return dn.some(r=>e[r]===!0)&&(e.ai=!0),e}function mn(e){if(e.webAi!==!1)return[];let t=[];return e.desktop!==!0&&e.mobile!==!0&&t.push("neither `desktop` nor `mobile` is true, so this project has no desktop or mobile app - and with the web AI surface off, those apps are the only places its AI features would exist."),e.runner===!0&&t.push("`runner` is true, and the runner's pairing, install and Runners screens are part of the web AI surface."),t}function hn(e){if(e.mobilePurchases!=="revenuecat")return[];let t=[];return e.mobile!==!0&&t.push("`mobile` is not true, so this project has no app to sell in - the store lane's paywall, purchase and restore surfaces all live in `apps/mobile`."),oe(e)||t.push('`paymentProvider` is absent or `"none"`, and store purchases are additive to your web billing - there is nothing here for them to sit on top of.'),t}function fn(e){let t=Ks(e,e.desktopAi);return delete e.desktopAi,t}function Ks(e,t){return e.desktop!==!0?{kind:"none"}:t===!0&&e.ai!==!0?{kind:"legacy-desktop-ai"}:t===!1&&e.ai===!0?{kind:"desktop-gains-ai"}:{kind:"none"}}function gn(e){let t={};if(e.name!==void 0){if(!Ut(e.name))throw new Error(`Invalid project name "${e.name}". Use lowercase letters, numbers, and hyphens only. Must start with a letter.`);t.projectName=e.name}if(e.appName!==void 0){if(!e.appName.trim())throw new Error("App name cannot be empty.");t.appName=e.appName}if(e.location!==void 0?t.projectDir=e.location==="."?process.cwd():e.location:t.projectName!==void 0&&(t.projectDir=`./${t.projectName}`),e.architecture!==void 0&&(t.architecture=e.architecture),e.payment!==void 0&&(t.paymentProvider=e.payment),e.email!==void 0&&(t.emailProvider=e.email),e.org!==void 0&&(t.multiTenancy=e.org),e.projects!==void 0&&(t.projects=e.projects),e.docs!==void 0&&(t.docs=e.docs),e.desktop!==void 0&&(t.desktop=e.desktop),e.mobile!==void 0&&(t.mobile=e.mobile),e.mobilePurchases!==void 0){if(!Me.includes(e.mobilePurchases))throw new Error(`Invalid mobile purchases "${e.mobilePurchases}". Valid values: ${Me.join(", ")}`);t.mobilePurchases=e.mobilePurchases}if(e.ai!==void 0&&(t.ai=e.ai),e.webAi!==void 0&&(t.webAi=e.webAi),e.runner!==void 0&&(t.runner=e.runner),gr(t),yt(t),bt(t),e.revenueSharing!==void 0&&(t.revenueSharing=e.revenueSharing),e.credits!==void 0){if(e.credits===!0&&e.payment==="none")throw new Error("--credits requires a payment provider (got --payment none).");t.credits=e.credits}if(e.currency!==void 0){if(!fe.includes(e.currency))throw new Error(`Invalid currency "${e.currency}". Valid values: ${fe.join(", ")}`);t.defaultCurrency=e.currency}if(e.deploy!==void 0){if(!ge.includes(e.deploy))throw new Error(`Invalid deployment target "${e.deploy}". Valid values: ${ge.join(", ")}`);t.deploymentTarget=e.deploy}if(e.database!==void 0){if(!ye.includes(e.database))throw new Error(`Invalid database provider "${e.database}". Valid values: ${ye.join(", ")}`);t.databaseProvider=e.database}if(e.cache!==void 0){if(!be.includes(e.cache))throw new Error(`Invalid cache provider "${e.cache}". Valid values: ${be.join(", ")}`);t.cacheProvider=e.cache}if(e.observability!==void 0){let r=e.observability.split(",").map(i=>i.trim()).filter(Boolean),n=r.filter(i=>!K.includes(i));if(n.length>0)throw new Error(`Invalid observability provider ${JSON.stringify(n.join(", "))}. Valid values: ${K.join(", ")}`);t.observability=r}if(e.preset!==void 0){if(!Ue.includes(e.preset))throw new Error(`Invalid preset "${e.preset}". Valid values: ${Ue.join(", ")}`);let r=he[e.preset].values;t.deploymentTarget??=r.deploymentTarget,t.databaseProvider??=r.databaseProvider,t.cacheProvider??=r.cacheProvider}if(e.demo===!0&&(t.demo=!0),e.baseUrl!==void 0){let r=e.baseUrl.trim();if(r==="")throw new Error("--base-url cannot be empty. Provide an absolute URL like https://example.com.");let n;try{n=new URL(r)}catch{throw new Error(`Invalid --base-url "${e.baseUrl}". Must be an absolute URL like https://example.com.`)}if(n.protocol!=="http:"&&n.protocol!=="https:")throw new Error(`Invalid --base-url "${e.baseUrl}". Must use http or https.`);t.baseUrl=`${n.protocol}//${n.host}`}return t}var nt={projectName:"my-saas",architecture:"fullstack",paymentProvider:"stripe",emailProvider:"smtp",multiTenancy:!1,projects:!1,docs:!1,desktop:!1,mobile:!1,mobilePurchases:"none",ai:!1,webAi:!0,runner:!1,revenueSharing:!1,credits:!0,defaultCurrency:"USD",deploymentTarget:"node",databaseProvider:"postgres",cacheProvider:"redis",observability:[]};function yn(e){let t=e.projectName??nt.projectName,r=e.projectDir??`./${t}`,n=e.appName??jt(t),i=e.deploymentTarget??nt.deploymentTarget,o=Z[i]?.edgeRuntime??!1,s=e.databaseProvider??(o?"neon":nt.databaseProvider),a=e.cacheProvider??(o?"upstash":nt.cacheProvider),d=e.emailProvider??(o?"resend":nt.emailProvider),m={...nt,...e,projectName:t,appName:n,projectDir:r,deploymentTarget:i,databaseProvider:s,cacheProvider:a,emailProvider:d};m.paymentProvider==="none"&&(m.credits=!1),(!m.mobile||m.paymentProvider==="none")&&(m.mobilePurchases="none"),yt(m);for(let b of Xe){if(m.deploymentTarget!==b.target)continue;let P=m.databaseProvider===b.provider?"database":"cache";if(m.databaseProvider===b.provider||m.cacheProvider===b.provider)throw new Error(`Incompatible: --deploy ${b.target} + --${P} ${b.provider}. ${b.reason}`)}for(let b of Ze)if(m.architecture===b.architecture&&m.deploymentTarget===b.target)throw new Error(`Incompatible: --architecture ${b.architecture} + --deploy ${b.target}. ${b.reason}`);let w=me(m);if(w)throw new Error(`Incompatible: --${w.feature} + --deploy ${w.target}. ${w.reason}`);return bt(m),m}function R(e){h.isCancel(e)&&(h.cancel("Setup cancelled."),process.exit(0))}function yr(e){let t=[];return e.databaseProvider==="neon"&&t.push({key:"DATABASE_URL",message:"Neon connection string (optional):",placeholder:"postgres://...",secret:!0}),e.databaseProvider==="supabase"&&t.push({key:"DATABASE_URL",message:"Supabase connection string (optional):",placeholder:"postgres://...",secret:!0}),e.cacheProvider==="upstash"&&(t.push({key:"UPSTASH_REDIS_REST_URL",message:"Upstash REST URL (optional):",placeholder:"https://...",secret:!1}),t.push({key:"UPSTASH_REDIS_REST_TOKEN",message:"Upstash REST token (optional):",secret:!0})),e.paymentProvider==="stripe"&&(t.push({key:"STRIPE_SECRET_KEY",message:"Stripe secret key (optional):",placeholder:"sk_test_...",secret:!0}),t.push({key:"STRIPE_WEBHOOK_SECRET",message:"Stripe webhook secret (optional):",placeholder:"whsec_...",secret:!0})),e.paymentProvider==="polar"&&(t.push({key:"POLAR_ACCESS_TOKEN",message:"Polar access token (optional):",secret:!0}),t.push({key:"POLAR_WEBHOOK_SECRET",message:"Polar webhook secret (optional):",secret:!0})),e.emailProvider==="resend"&&t.push({key:"RESEND_API_KEY",message:"Resend API key (optional):",placeholder:"re_...",secret:!0}),e.emailProvider==="ses"&&(t.push({key:"AMAZON_SES_REGION",message:"Amazon SES region (optional):",placeholder:"us-east-1",secret:!1}),t.push({key:"AMAZON_SES_KEY",message:"Amazon SES access key (optional):",secret:!0}),t.push({key:"AMAZON_SES_SECRET",message:"Amazon SES secret (optional):",secret:!0})),e.demo&&t.push({key:"TURNSTILE_SECRET_KEY",message:"Cloudflare Turnstile secret key (optional):",secret:!0}),t}async function bn(e,t){let r=!1;e&&gr(e),e&&yt(e),e&&bt(e),h.log.info(g.bold("Project"));let n=e?.projectName??await(async()=>{r=!0;let l=await h.text({message:"Project name:",placeholder:"my-saas",validate:u=>{if(!u?.trim())return"Project name is required.";if(!Ut(u))return"Use lowercase letters, numbers, and hyphens only. Must start with a letter."}});return R(l),l})(),i=e?.appName??await(async()=>{r=!0;let l=await h.text({message:"App name:",initialValue:jt(n),validate:u=>{if(!u?.trim())return"App name is required."}});return R(l),l})(),o=e?.projectDir??await(async()=>{r=!0;let l=await h.text({message:"Project location:",initialValue:`./${n}`});return R(l),l==="."?process.cwd():l})();h.log.info(g.bold("Infrastructure"));let s={};if(e?.deploymentTarget===void 0&&e?.databaseProvider===void 0&&e?.cacheProvider===void 0){r=!0;let l=await h.select({message:"Infrastructure:",options:[...Ue.map(u=>({value:u,label:he[u].label,hint:he[u].hint})),{value:"custom",label:"Customize",hint:"choose each piece yourself"}]});if(R(l),l!=="custom"){let u=he[l].values;s.deploymentTarget=u.deploymentTarget,s.databaseProvider=u.databaseProvider,s.cacheProvider=u.cacheProvider,h.log.info(`${he[l].label}: ${he[l].hint}.`)}}let a=e?.deploymentTarget??s.deploymentTarget??"node";if(e?.deploymentTarget===void 0&&s.deploymentTarget===void 0){r=!0;let l=await h.select({message:"Deployment target:",options:ge.map(u=>({value:u,label:Z[u].label,hint:Z[u].hint}))});R(l),a=l}let d=e?.architecture?Ze.find(l=>l.architecture===e.architecture&&l.target===a):void 0;if(d)throw new Error(`Incompatible: --architecture ${d.architecture} + --deploy ${d.target}. ${d.reason}`);let m=me({...e,deploymentTarget:a});if(m)throw new Error(`Incompatible: --${m.feature} + --deploy ${m.target}. ${m.reason}`);let w=me({runner:!0,deploymentTarget:a})!==void 0,b=new Set(Ze.filter(l=>l.target===a).map(l=>l.architecture)),P=et.filter(l=>!b.has(l)),I=e?.architecture??await(async()=>{if(P.length===1){let u=P[0];return h.log.info(`Auto-selected ${gt[u].label} architecture (only compatible option for ${Z[a].label}).`),u}r=!0;let l=await h.select({message:"Architecture:",options:P.map(u=>({value:u,label:gt[u].label,hint:gt[u].hint}))});return R(l),l})(),_=e?.databaseProvider??s.databaseProvider??await(async()=>{r=!0;let l=ye.filter(x=>!Xe.some(Ae=>Ae.target===a&&Ae.provider===x));if(l.length===1){let x=l[0];return h.log.info(`Auto-selected ${$e[x].label} (only compatible option for ${Z[a].label}).`),x}let u=await h.select({message:"Database provider:",options:l.map(x=>({value:x,label:$e[x].label,hint:$e[x].hint}))});return R(u),u})(),f=e?.cacheProvider??s.cacheProvider??await(async()=>{r=!0;let l=be.filter(x=>!Xe.some(Ae=>Ae.target===a&&Ae.provider===x));if(l.length===1){let x=l[0];return h.log.info(`Auto-selected ${je[x].label} (only compatible option for ${Z[a].label}).`),x}let u=await h.select({message:"Cache provider:",options:l.map(x=>({value:x,label:je[x].label,hint:je[x].hint}))});return R(u),u})();if(Z[a]?.edgeRuntime){let l=on.map(u=>` - ${u}`).join(`
3
+ `);h.note(l,"Unavailable on edge runtime")}h.log.info(g.bold("Features"));let O=e?.paymentProvider??await(async()=>{r=!0;let l=await h.select({message:"Payment provider:",options:tt.map(u=>({value:u,label:Ct[u].label,hint:Ct[u].hint}))});return R(l),l})(),Oe=e?.defaultCurrency??await(async()=>{if(O==="none")return"USD";r=!0;let l=await h.select({message:"Default currency:",options:fe.map(u=>({value:u,label:u,hint:Le[u].name}))});return R(l),l})(),q=e?.emailProvider??await(async()=>{r=!0;let l=await h.select({message:"Email provider:",options:rt.map(u=>({value:u,label:Lt[u].label,hint:Lt[u].hint}))});return R(l),l})(),J=e?.observability??await(async()=>{r=!0;let l=await h.multiselect({message:"Observability (space to select, enter to confirm):",required:!1,initialValues:[],options:K.map(u=>({value:u,label:$t[u].label,hint:$t[u].hint}))});return R(l),l})(),xe=e?.multiTenancy??await(async()=>{r=!0;let l=await h.confirm({message:"Enable multi-tenancy (organizations)?",initialValue:!1});return R(l),l})(),De=e?.projects??await(async()=>{r=!0;let l=await h.confirm({message:"Enable projects (a switcher that scopes a user's work)?",initialValue:!1});return R(l),l})(),Ne=e?.docs??await(async()=>{r=!0;let l=await h.confirm({message:"Include docs app? (self-hosted Fumadocs documentation site)",initialValue:!1});return R(l),l})(),Je=t?.desktopAllowed!==!1,v=e?.desktop??(Je?await(async()=>{r=!0;let l=await h.confirm({message:"Include the desktop app? (apps/desktop - cross-platform, built with Electron, device-auth). With AI on, it also runs a local AI stack.",initialValue:!1});return R(l),l})():(h.log.info(g.dim("Desktop app: available on the Pro plan and up - skipped.")),!1)),M=t?.mobileAllowed!==!1,G=e?.mobile??(M?await(async()=>{r=!0;let l=await h.confirm({message:"Include the mobile app? (apps/mobile - iOS and Android, built with Expo, with push notifications and universal links)",initialValue:!1});return R(l),l})():(h.log.info(g.dim("Mobile app: available on the Pro plan and up - skipped.")),!1)),se=!G||O==="none"?"none":e?.mobilePurchases??await(async()=>{r=!0;let x=await h.select({message:"Mobile in-app purchases?",options:[{value:"revenuecat",label:"RevenueCat",hint:"store billing on top of your web provider - Apple and Google charge, your app grants"},{value:"none",label:"None",hint:"web billing only; the app shows the plan, never a paywall"}],initialValue:"none"});return R(x),x})();yt({mobile:G,mobilePurchases:se,paymentProvider:O});let N=e?.ai??await(async()=>{r=!0;let l=await h.confirm({message:"Add AI features? (chat, models, automations, integrations - and unlocks the runner)",initialValue:!1});return R(l),l})(),de=t?.runnerAllowed!==!1,X=e?.webAi===!1,ue=!N||w||X?!1:e?.runner??(de?await(async()=>{r=!0;let l=await h.confirm({message:"Add the runner daemon for your WEB users? A small program they install on their own machine or VPS to run their Claude Code / Codex subscription for this app 24/7 - the AI runs on their hardware, not yours. Off means no install UI and no pairing endpoint on your site; you can adopt it later.",initialValue:!1});return R(l),l})():(h.log.info(g.dim("Runner: available on the Pro plan and up - skipped.")),!1));N&&w?h.log.info(g.dim(`Runner: ${Z[a].label} cannot hold a connection open - skipped.`)):N&&X&&h.log.info(g.dim("Runner: its pairing and device screens live in the web AI surface, which is off - skipped."));let Ce=e?.webAi??((v||G)&&N&&!ue?await(async()=>{r=!0;let l=await h.confirm({message:"Show the AI surfaces in the web app? (No: app-first - your desktop or mobile app is where your AI product lives, and the web keeps account, billing, and licensing only)",initialValue:!0});return R(l),l})():!0);bt({webAi:Ce,ai:N,desktop:v,mobile:G,runner:ue});let D=e?.revenueSharing??await(async()=>{r=!0;let l=await h.confirm({message:"Enable revenue sharing? (opt-in MRR leaderboard with dofollow backlinks)",initialValue:!1});return R(l),l})(),ht=O==="none"?!1:e?.credits??await(async()=>{r=!0;let l=await h.confirm({message:"Enable credits? (metered usage on top of subscription plans)",initialValue:!0});return R(l),l})(),pr=e?.demo,Dt=yr({databaseProvider:_,cacheProvider:f,paymentProvider:O,emailProvider:q,demo:pr}),ft={};if(Dt.length>0&&r){h.log.info(g.bold("Credentials")+g.dim(" all optional - press Enter to skip, fill in .env later"));for(let l of Dt)if(r=!0,l.secret){let u=await h.password({message:l.message,mask:"*"});R(u),typeof u=="string"&&u.trim()&&(ft[l.key]=u.trim())}else{let u=await h.text({message:l.message,placeholder:l.placeholder});R(u),typeof u=="string"&&u.trim()&&(ft[l.key]=u.trim())}}if(r){let l=[` Name: ${g.cyan(n)}`,` App name: ${g.cyan(i)}`,` Location: ${g.cyan(o)}`,` Architecture: ${g.cyan(gt[I].label)}`].join(`
4
+ `),u=[` Deploy target: ${g.cyan(Z[a]?.label??"Node.js / Docker")}`,` Database: ${g.cyan($e[_].label)}`,` Cache: ${g.cyan(je[f].label)}`].filter(Boolean).join(`
5
+ `),x=[O!=="none"?` Payment: ${g.cyan(Ct[O].label)} (${Oe})`:` Payment: ${g.dim("none")}`,` Credits: ${ht?g.cyan("Yes"):g.dim("No")}`,` AI features: ${N?g.cyan("Yes"):g.dim("No")}`,...N?[` Runner: ${ue?g.cyan("Yes"):g.dim("No")}`]:[],...Ce?[]:[` Web AI: ${g.dim("No")} (app-first)`],` Email: ${g.cyan(Lt[q].label)}`,` Observability: ${J.length===0?g.dim("none"):g.cyan(J.map(dr=>$t[dr].label).join(", "))}`,` Multi-tenancy: ${xe?g.cyan("Yes"):g.dim("No")}`,` Projects: ${De?g.cyan("Yes"):g.dim("No")}`,` Docs app: ${Ne?g.cyan("Yes"):g.dim("No")}`,` Desktop app: ${v?g.cyan("Yes"):g.dim("No")}`,` Mobile app: ${G?g.cyan("Yes"):g.dim("No")}`,...se==="none"?[]:[` In-app purch.: ${g.cyan("RevenueCat")}`],` Rev. sharing: ${D?g.cyan("Yes"):g.dim("No")}`].join(`
6
+ `),Ae=[g.bold("Project"),l,"",g.bold("Infrastructure"),u,"",g.bold("Features"),x];if(Dt.length>0){let dr=Dt.map(tn=>{let Ms=ft[tn.key]?g.green("provided"):g.dim("skipped");return` ${tn.key}: ${Ms}`}).join(`
7
+ `);Ae.push("",g.bold("Credentials"),dr)}h.note(Ae.join(`
8
+ `),"Summary");let en=await h.confirm({message:"Proceed with these settings?"});(h.isCancel(en)||!en)&&(h.cancel("Setup cancelled."),process.exit(0))}return{projectName:n,appName:i,projectDir:o,architecture:I,deploymentTarget:a,databaseProvider:_,cacheProvider:f,paymentProvider:O,emailProvider:q,observability:J,multiTenancy:xe,projects:De,docs:Ne,desktop:v,mobile:G,mobilePurchases:se,ai:N,webAi:Ce,runner:ue,revenueSharing:D,credits:ht,defaultCurrency:Oe,...Object.keys(ft).length>0?{credentials:ft}:{},...e?.baseUrl!==void 0?{baseUrl:e.baseUrl}:{},...pr!==void 0?{demo:pr}:{}}}import{createReadStream as _n,existsSync as eo}from"fs";import{mkdir as to}from"fs/promises";import{join as ro}from"path";import{Readable as no}from"stream";import{pipeline as Ir}from"stream/promises";import{extract as io}from"tar";import{join as Fe}from"path";import{homedir as Hs}from"os";var wt=process.env.GENERATESAAS_API_URL??"https://cli.generatesaas.com",Q=".generatesaas",we=Fe(Q,"manifest.json"),wn="nextjs",br="nuxt",wr="2.4.1",vn=Fe(Q,"hashes.json"),Mt=Fe(Q,"template-hashes.json"),Ft=Fe(Q,"template"),kn=Fe(Q,"staging"),En=Fe(Q,"staging.json"),ve=Fe(Hs(),".generatesaas");var F=class extends Error{constructor(r,n,i){super(n);this.status=r;this.body=i}status;body;name="ApiError"};function ke(e){return{apiKey:e,baseUrl:wt}}async function Ie(e,t,r){let n=`${e.baseUrl}${t}`,i=await fetch(n,{...r,headers:{...r?.headers,Authorization:`Bearer ${e.apiKey}`,"User-Agent":"generatesaas-cli/3.9.0"}});if(!i.ok){let o,s;try{s=await i.json(),o=s.error??`API ${i.status}: ${t}`}catch{o=`API ${i.status}: ${t}`}throw new F(i.status,o,s)}return i}import{existsSync as Ys,mkdirSync as Ws,readFileSync as zs,writeFileSync as qs}from"fs";import{dirname as Js}from"path";import*as Re from"@clack/prompts";function vt(){if(!Ys(ve))return null;try{let e=JSON.parse(zs(ve,"utf-8"));return e.apiKey?e.apiKey:(e.token&&!e.apiKey&&Re.log.warning(`Found old GitHub token in ${ve}. Run 'generatesaas init' to set up your API key.`),null)}catch{return null}}function Ve(e){Ws(Js(ve),{recursive:!0}),qs(ve,`${JSON.stringify({apiKey:e},null," ")}
9
+ `,{mode:384})}async function it(e){if(e?.apiKey)return e.apiKey;let t=process.env.GENERATESAAS_API_KEY;if(t)return t;let r=vt();if(r)return r;if(!e?.prompt)throw new Error("API key not found. Set GENERATESAAS_API_KEY or run 'generatesaas init' to configure.");return kt()}async function kt(){let e=await Re.text({message:"Enter your GenerateSaaS API key:",placeholder:"gs_live_...",validate:t=>{if(!t?.trim())return"API key is required."}});return Re.isCancel(e)&&(Re.cancel("Setup cancelled."),process.exit(0)),e.trim()}import{readFile as Xs}from"fs/promises";async function Te(e){let t=process.env.GENERATESAAS_VERSION_INDEX;return t?JSON.parse(await Xs(t,"utf-8")):process.env.GENERATESAAS_OFFLINE_LICENSE==="1"?{latest:"0.0.0-ci",versions:[{version:"0.0.0-ci",date:new Date().toISOString(),breaking:!1}],entitlements:null}:await(await Ie(e,"/versions")).json()}async function Sn(e,t){if(process.env.GENERATESAAS_OFFLINE_LICENSE==="1")return null;try{return await(await Ie(e,`/changelog/${encodeURIComponent(t)}`)).text()}catch(r){if(r instanceof F&&r.status===404)return null;throw r}}async function Pn(e,t){return process.env.GENERATESAAS_OFFLINE_LICENSE==="1"?{skills:{"generatesaas-update":{skillMd:`# Offline skill stub
10
+ `,scripts:{},references:{}}}}:await(await Ie(e,`/skills/${encodeURIComponent(t)}`)).json()}function Vt(e){if(!(e instanceof F)||e.status!==403)return null;let t=e.body;return!t||t.code!=="update_window_expired"?null:{message:e.message,lastAllowedVersion:t.lastAllowedVersion??null}}var vr="nextjs";function An(e){return{frontend:vr,architecture:e.architecture,deployTarget:e.deploymentTarget,database:e.databaseProvider,cache:e.cacheProvider,payment:e.paymentProvider,email:e.emailProvider,multiTenancy:e.multiTenancy,blog:!0,docs:e.docs,desktop:e.desktop,mobile:e.mobile,runner:e.runner,credits:e.credits,revenueSharing:e.revenueSharing,currency:e.defaultCurrency}}async function kr(e,t){return process.env.GENERATESAAS_OFFLINE_LICENSE==="1"?{token:"offline-test-token",licenseId:"offline-test-license-id",installId:t.installId}:await(await Ie(e,"/license/sign",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)})).json()}async function In(e,t){return process.env.GENERATESAAS_OFFLINE_LICENSE==="1"?{token:t.currentToken}:await(await Ie(e,"/license/refresh",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)})).json()}async function Er(e,t){let r=await fetch(`${e}/license/verify`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});if(!r.ok)throw new Error(`Verification service returned ${r.status}`);return await r.json()}async function Rn(e,t,r){let n=await fetch(`${e}/license/inspect`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${t}`},body:JSON.stringify(r)});if(!n.ok){let i=await n.json().catch(()=>null);throw new Error(i?.error??`Inspect endpoint returned ${n.status}`)}return await n.json()}var Sr=new Set([".git","node_modules",".pnpm-store",".env",".env.test",".turbo",".data","dist",".next",".next-e2e-web",".next-e2e-desktop",".svelte-kit",".wrangler",".devcontainer","playwright-report","test-results",".drive-out",".mastra"]),Pr=new Set(["pnpm-lock.yaml"]);function st(e){if(Ar(e))return!0;for(let t of e.split("/"))if(Pr.has(t))return!0;return!1}var Zs=new Set(["data","mksaas","references","scripts",".cursor",".agents",".codex",".generatesaas",".vscode",".mcp.json","vitest.config.ts","README.md","TODO.md","OVERVIEW.md","HANDOFF.md"]),Tn=["scripts/docs-lint.ts"],Qs=["docs/superpowers","packages/cli","packages/cli-api","packages/config/tests/runner-brand-lockstep.test.ts","packages/database/tests/no-migration-history.test.ts","apps/runner","docs/agentrunner","infra/docker-compose.yml",".claude/commands",".claude/skills/web-port",".claude/skills/web-port-workspace",".claude/settings.local.json",".claude/worktrees"];function Ar(e){let t=e.split("/");for(let r of t)if(Sr.has(r))return!0;if(Tn.includes(e)||Tn.some(r=>r.startsWith(`${e}/`)))return!1;if(Zs.has(t[0]))return!0;for(let r of Qs)if(e===r||e.startsWith(`${r}/`))return!0;return!1}async function Bt(e,t,r){await to(r,{recursive:!0});let n=process.env.GENERATESAAS_TEMPLATE_TARBALL_DIR;if(n){let a=ro(n,`v${t}.tar.gz`);if(!eo(a))throw new Error(`GENERATESAAS_TEMPLATE_TARBALL_DIR is set but ${a} does not exist.`);await Ir(_n(a),Rr(r));return}let i=process.env.GENERATESAAS_TEMPLATE_TARBALL;if(i){await Ir(_n(i),Rr(r));return}let o=await Ie(e,`/template/${encodeURIComponent(t)}`);if(!o.body)throw new Error("Empty response body");let s=no.fromWeb(o.body);await Ir(s,Rr(r))}function Rr(e){return io({cwd:e,strip:1,filter:t=>{let r=t.replace(/^[^/]+\//,"");return r?!Ar(r):!0},sync:!1})}import{readdir as Gt,readFile as ot,rm as xn,rmdir as so,writeFile as Et}from"fs/promises";import{join as H}from"path";async function Dn(e){let t;try{t=await Gt(e,{withFileTypes:!0})}catch{return!1}let r=!1;for(let n of t){let i=H(e,n.name);if(n.isDirectory()){await Dn(i)&&(r=!0);continue}if(n.name.startsWith("_")){r=!0;continue}await xn(i,{force:!0})}return r||await so(e).catch(()=>{}),r}async function Nn(e){let t=H(e,"packages/content"),r=[];try{r=(await Gt(t,{withFileTypes:!0})).filter(s=>s.isDirectory()).map(s=>s.name)}catch{return}let n=new Set;for(let s of r){let a=H(t,s),d;try{d=(await Gt(a,{withFileTypes:!0})).filter(m=>m.isDirectory())}catch{continue}for(let m of d)n.add(m.name),await Dn(H(a,m.name))}let i=await lo(e),o=new Set([...n].filter(s=>i===void 0||i.has(s)));await Promise.all([...o].map(s=>xn(H(e,"apps/web/public/images",s),{recursive:!0,force:!0}))),await uo(e,o)}var oo="packages/config/src/index.ts",ao=/\bcontent:\s*\{[\s\S]*?\bsections:\s*\[([\s\S]*?)\]/,co=/\bslug:\s*"([^"]+)"/g;async function lo(e){let t;try{t=await ot(H(e,oo),"utf-8")}catch{return}let r=ao.exec(t)?.[1];if(r===void 0)return;let n=[...r.matchAll(co)].map(i=>i[1]).filter(i=>i!==void 0);return n.length>0?new Set(n):void 0}var po="packages/translate/.meta/mdx-translation-meta.json";async function uo(e,t){if(t.size===0)return;let r=H(e,po),n;try{n=JSON.parse(await ot(r,"utf-8"))}catch{return}if(typeof n!="object"||n===null)return;let i=n;if(typeof i.files!="object"||i.files===null)return;let o=i.files,s={};for(let[a,d]of Object.entries(o)){let m=a.split("/"),w=m.length>1?m[0]:void 0,b=m[m.length-1]?.startsWith("_")===!0;w!==void 0&&t.has(w)&&!b||(s[a]=d)}await Et(r,`${JSON.stringify({...i,files:s},null," ")}
11
+ `)}var mo="packages/config/src/blog.ts";async function Cn(e){let t=H(e,mo),r=await ot(t,"utf-8"),n=On(On(r,"blogCategories",t),"blogAuthors",t);await Et(t,n)}function On(e,t,r){let n=new RegExp(`(export const ${t}\\b[^=]*=\\s*)\\[[\\s\\S]*?\\];`);if(!n.test(e))throw new Error(`emptyBlogConfig: could not find the \`export const ${t} = [...]\` declaration in ${r}. The boilerplate blog config may have been renamed or restructured; update the CLI strip in cleanup.ts.`);return e.replace(n,"$1[];")}async function Ln(e){let t=H(e,"packages/i18n/translations"),r;try{r=await Gt(t)}catch{return}for(let n of r){let i=H(t,n,"web.json"),o;try{o=await ot(i,"utf-8")}catch{continue}let s=JSON.parse(o);!s.content?.categories||s.content.categories.blog===void 0||(s.content.categories.blog={},await Et(i,`${JSON.stringify(s,null," ")}
12
+ `))}}var ho="packages/config/src/ai/tasks.ts",fo="The array carries a SINGLE INERT DEMO task: the CLI strips it for buyer builds (leaving an empty\n * `aiTasks`, which hides the Tasks tab) and keeps it for `--demo` builds.",go="The array starts EMPTY, which hides the Tasks tab until you declare your first task.";async function $n(e){let t=H(e,ho),r=await ot(t,"utf-8"),n=r.replace(/\n?[\t ]*\/\/ gsaas:demo-ai-task-start[\s\S]*?\/\/ gsaas:demo-ai-task-end/,"");if(n===r)throw new Error(`removeDemoAiTasks: could not find the \`gsaas:demo-ai-task\` markers in ${t}. The boilerplate AI tasks config may have been renamed or restructured; update the CLI strip in cleanup.ts.`);let i=n.replace(fo,go);if(i===n)throw new Error(`removeDemoAiTasks: the demo-task paragraph in ${t} did not match, so the shipped file would describe a demo task it no longer carries (boilerplate drift).`);await Et(t,i)}async function jn(e){let t=H(e,".claude","settings.json"),r;try{r=await ot(t,"utf8")}catch{return}let n=JSON.parse(r);delete n.alwaysThinkingEnabled,delete n.enableAllProjectMcpServers,n.env&&(delete n.env.CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS,Object.keys(n.env).length===0&&delete n.env),n.permissions?.allow&&(n.permissions.allow=n.permissions.allow.filter(yo)),await Et(t,`${JSON.stringify(n,null," ")}
13
+ `)}function yo(e){return!(e.startsWith("mcp__")||e.includes("nuxt"))}import{readFileSync as Ro}from"fs";import{dirname as To,join as _r}from"path";import{fileURLToPath as _o}from"url";import{existsSync as bo}from"fs";import{join as Un}from"path";function Kt(e,t,r){let n=Un(e,...t);return bo(n)?n:Un(e,r)}import{mkdir as wo,writeFile as vo,readdir as ko,rm as Eo,rmdir as So}from"fs/promises";import{dirname as Ht,join as Po,relative as Ao,sep as Io}from"path";function Be(e){return e.split(Io).join("/")}async function Yt(e){await wo(e,{recursive:!0})}async function c(e,t){await Yt(Ht(e)),await vo(e,t,"utf-8")}async function at(e,t){await Eo(e,{force:!0});let r=Ht(e);for(;r!==t&&r!==Ht(r);){try{await So(r)}catch{return}r=Ht(r)}}async function Ee(e,t,r,n){let i=[],o=await ko(e,{withFileTypes:!0});for(let s of o){let a=Po(e,s.name),d=Be(Ao(t,a));r(d)||(s.isDirectory()?i.push(...await Ee(a,t,r,n)):s.isFile()&&(n===void 0||n(d))&&i.push(a))}return i}var Oo={postgres:"Postgres",neon:"Neon (managed Postgres)",supabase:"Supabase (managed Postgres)"},xo={resend:"Resend",ses:"Amazon SES",smtp:"SMTP"},Do={redis:"Redis",upstash:"Upstash Redis"},No={node:"Node.js / Docker",vercel:"Vercel"},Tr="apps/web",Co="Next.js 16",Lo="`app/` routes, `components/`, `lib/`",$o={stripe:"Stripe",polar:"Polar"};function jo(e){let t=e.architecture==="fullstack",r=t?"(fullstack - Hono API mounted inside the app)":"(separate - standalone Hono backend)",n=t?`Mounted inside \`${Tr}\`. A standalone \`apps/backend\` is also kept (inert) so you can switch to separate later.`:"Runs from `apps/backend`; the frontend reaches it over HTTP.",i=Do[e.cacheProvider],o=No[e.deploymentTarget],s=e.paymentProvider==="none"?"":`
14
+ - **Payments:** ${$o[e.paymentProvider]}`,a=e.desktop?e.mobile?", the desktop app (built with Electron) under `docs/desktop/` and the mobile app (built with Expo) under `docs/mobile/`":", and the desktop app (built with Electron) under `docs/desktop/`":e.mobile?", and the mobile app (built with Expo) under `docs/mobile/`":"",d=e.runner?"\n- **Runner daemon** - your users install AgentRunner on a machine they control and pair it with their account. Everything you own lives in this repo: the `/runner/*` routes, the relay, the Runners page, and the capability layer runs get. The daemon itself is published separately and auto-updates - there is nothing to build or release here.":"",m=`\`useTranslations()\` from \`next-intl\` in components; messages are loaded in \`${Tr}/i18n/request.ts\`.`;return Mo({archSuffix:r,apiLocation:n,databaseName:Oo[e.databaseProvider],cacheName:i,paymentLine:s,emailName:xo[e.emailProvider],deployName:o,runnerBullet:d,appDocsRef:a,i18nRule:m,webAppDir:Tr,webAppName:Co,webAppLayout:Lo})}function Uo(){return Kt(To(_o(import.meta.url)),["generators","content"],"content")}function Mo(e){let t=Ro(_r(Uo(),"AGENTS.template.md"),"utf-8"),r=new Map(Object.entries(e)),n=t.replace(/\{\{(\w+)\}\}/g,(o,s)=>{let a=r.get(s);if(a===void 0)throw new Error(`AGENTS.template.md uses unknown token {{${s}}}`);return a}),i=/\{\{[^}]*\}\}/.exec(n);if(i)throw new Error(`AGENTS.template.md carries an unrendered token: ${i[0]}`);return n}async function Mn(e){await c(_r(e.projectDir,"AGENTS.md"),jo(e)),await c(_r(e.projectDir,"CLAUDE.md"),`@AGENTS.md
15
+ `)}import{join as Fo}from"path";var Fn="apps/web",Or="Next.js 16",Vo={postgres:"Postgres (self-hosted)",neon:"Neon (managed Postgres)",supabase:"Supabase (managed Postgres)"};function Bo(e){let t=e.appName.trim()||e.projectName,r=Vo[e.databaseProvider],n=e.architecture==="fullstack"?`${Or} app at \`${Fn}/\` with the Hono API mounted inside it. A standalone \`apps/backend/\` is also included (inert in this fullstack setup) so you can split the API into a separate service later without re-scaffolding.`:`${Or} app at \`${Fn}/\` and a separate Hono backend at \`apps/backend/\`.`,i=e.architecture==="fullstack"?`- App + API: http://localhost:3000
16
16
  - Inngest dev server: http://127.0.0.1:8288`:`- App: http://localhost:3000
17
17
  - API: http://localhost:3010
18
18
  - Inngest dev server: http://127.0.0.1:8288`,o=e.ai?`pnpm mastra:studio # optional: inspect the AI assistant and its memory (localhost:4111)
@@ -75,28 +75,28 @@ pnpm dlx generatesaas eject
75
75
  ## Updates
76
76
 
77
77
  To pull the latest boilerplate changes into this project, open it in your AI coding agent and ask: \`update my GenerateSaaS project\`.
78
- `}async function Vn(e){await c(Lo(e.projectDir,"README.md"),jo(e))}import{access as Mo}from"fs/promises";import{join as St}from"path";async function Uo(e,t,r){let n=St(e,"apps/desktop/dev-app-update.yml");try{await Mo(n)}catch{throw new Error(`Cannot neutralize the desktop dev update feed: ${n} is missing (boilerplate drift).`)}await c(n,`provider: generic
78
+ `}async function Vn(e){await c(Fo(e.projectDir,"README.md"),Bo(e))}import{access as Go}from"fs/promises";import{join as St}from"path";async function Ko(e,t,r){let n=St(e,"apps/desktop/dev-app-update.yml");try{await Go(n)}catch{throw new Error(`Cannot neutralize the desktop dev update feed: ${n} is missing (boilerplate drift).`)}await c(n,`provider: generic
79
79
  url: ${t}
80
80
  updaterCacheDirName: ${r}
81
- `)}function Fo(e){let t=e.split(".");return t.length>=3?t.slice(1).join("."):e}function Vo(e,t){let r=fr(e,"app");return{appId:`${t.split(".").reverse().join(".")}.${r.replace(/-/g,"")}`,productName:e,protocol:r}}function Bo(e){let t=e.toLowerCase().replace(/[^a-z0-9_]/g,"");return/^[a-z]/.test(t)?t:`app${t}`}function Go(e,t){let r=fr(e,"app");return{appName:e,slug:r,bundleId:[...t.split(".").reverse(),r.replace(/-/g,"")].map(Bo).join("."),scheme:/^[a-z]/.test(r)?r:`app-${r}`}}var ct={name:"AgentRunner",binary:"agentrunner",envPrefix:"AGENTRUNNER",repoUrl:"https://github.com/AlexChelan/AgentRunner",installBase:"https://github.com/AlexChelan/AgentRunner/releases/latest/download",image:"ghcr.io/alexchelan/agentrunner"};function Ko(e){return e.runner?["{"," enabled: true,",' clientId: "runner",'," daemon: {",` name: ${JSON.stringify(ct.name)},`,` binary: ${JSON.stringify(ct.binary)},`,` envPrefix: ${JSON.stringify(ct.envPrefix)},`,` repoUrl: ${JSON.stringify(ct.repoUrl)},`,` installBase: ${JSON.stringify(ct.installBase)},`,` image: ${JSON.stringify(ct.image)}`," }"," }"].join(`
82
- `):'{ enabled: false, clientId: "runner" }'}function Ho(e){let t=[" // PRESENCE IS THE SWITCH: reporting runs as soon as the credential below is non-empty. There"," // is no separate `enabled` flag to remember - pasting the key IS turning it on, and clearing it"," // is turning it off. These are PUBLISHABLE credentials: they only authorize SENDING events,"," // never reading them, which is why they live here rather than in env and why a packaged desktop"," // app can carry them. Server-side, SENTRY_DSN and POSTHOG_API_KEY override them."].join(`
81
+ `)}function Ho(e){let t=e.split(".");return t.length>=3?t.slice(1).join("."):e}function Yo(e,t){let r=fr(e,"app");return{appId:`${t.split(".").reverse().join(".")}.${r.replace(/-/g,"")}`,productName:e,protocol:r}}function Wo(e){let t=e.toLowerCase().replace(/[^a-z0-9_]/g,"");return/^[a-z]/.test(t)?t:`app${t}`}function zo(e,t){let r=fr(e,"app");return{appName:e,slug:r,bundleId:[...t.split(".").reverse(),r.replace(/-/g,"")].map(Wo).join("."),scheme:/^[a-z]/.test(r)?r:`app-${r}`}}var ct={name:"AgentRunner",binary:"agentrunner",envPrefix:"AGENTRUNNER",repoUrl:"https://github.com/AlexChelan/AgentRunner",installBase:"https://github.com/AlexChelan/AgentRunner/releases/latest/download",image:"ghcr.io/alexchelan/agentrunner"};function qo(e){return e.runner?["{"," enabled: true,",' clientId: "runner",'," daemon: {",` name: ${JSON.stringify(ct.name)},`,` binary: ${JSON.stringify(ct.binary)},`,` envPrefix: ${JSON.stringify(ct.envPrefix)},`,` repoUrl: ${JSON.stringify(ct.repoUrl)},`,` installBase: ${JSON.stringify(ct.installBase)},`,` image: ${JSON.stringify(ct.image)}`," }"," }"].join(`
82
+ `):'{ enabled: false, clientId: "runner" }'}function Jo(e){let t=[" // PRESENCE IS THE SWITCH: reporting runs as soon as the credential below is non-empty. There"," // is no separate `enabled` flag to remember - pasting the key IS turning it on, and clearing it"," // is turning it off. These are PUBLISHABLE credentials: they only authorize SENDING events,"," // never reading them, which is why they live here rather than in env and why a packaged desktop"," // app can carry them. Server-side, SENTRY_DSN and POSTHOG_API_KEY override them."].join(`
83
83
  `),r=[];return e.includes("sentry")&&r.push(' sentry: { dsn: "" }'),e.includes("posthog")&&r.push([" // llmContent sends your users' prompts and completions to PostHog. Every number (tokens,"," // cost, latency, errors) is captured either way - turn it on only if your privacy policy"," // covers sending their message text to a third party.",' posthog: { publicKey: "", host: "https://us.i.posthog.com", llmContent: false }'].join(`
84
84
  `)),r.length===0?[" // Error and product reporting is OFF: no provider was selected at init, so neither adapter",' // nor SDK was generated. To turn one on, add `"sentry"`, `"posthog"` or both to the'," // `observability` array in `.generatesaas/manifest.json`, then run `generatesaas update` -"," // which re-shapes the project and installs what it needs. Note that update stages nothing"," // while you are already on the latest version, so take the upgrade first if it reports no"," // changes."," observability: {},"].join(`
85
85
  `):`${t}
86
86
  observability: {
87
87
  ${r.join(`,
88
88
  `)}
89
- },`}async function Bn(e){let t=e.appName.replace(/\\/g,"\\\\").replace(/"/g,'\\"'),r=e.paymentProvider!=="none",n=e.baseUrl??"http://localhost:3000",i=e.baseUrl?new URL(e.baseUrl).hostname:"example.com",o=Fo(i),s=e.demo?"false":"true",a=e.multiTenancy?`{
89
+ },`}async function Bn(e){let t=e.appName.replace(/\\/g,"\\\\").replace(/"/g,'\\"'),r=e.paymentProvider!=="none",n=e.baseUrl??"http://localhost:3000",i=e.baseUrl?new URL(e.baseUrl).hostname:"example.com",o=Ho(i),s=e.demo?"false":"true",a=e.multiTenancy?`{
90
90
  multiTenant: true,
91
91
  organizationLimit: 5,
92
92
  defaultOrganizationName: "Personal"
93
- }`:"{ multiTenant: false }",d=e.projects?"{ enabled: true }":"{ enabled: false }",u=Ho(e.observability),w=e.demo?`{
93
+ }`:"{ multiTenant: false }",d=e.projects?"{ enabled: true }":"{ enabled: false }",m=Jo(e.observability),w=e.demo?`{
94
94
  enableInDev: true,
95
95
  chatwoot: {
96
96
  baseUrl: "https://support.alexchelan.com",
97
97
  websiteToken: "1uWvJLHkhWLihkK2bxLaj2Fg"
98
98
  }
99
- }`:"{}",y=e.architecture==="fullstack"?"false":"true",P=Vo(t,o),I=`https://cdn.${o}/desktop`,R=Go(t,o),f=Ko(e),O=` // Store purchases (RevenueCat) for the mobile app - ADDITIVE to the web provider, never a
99
+ }`:"{}",b=e.architecture==="fullstack"?"false":"true",P=Yo(t,o),I=`https://cdn.${o}/desktop`,_=zo(t,o),f=qo(e),O=` // Store purchases (RevenueCat) for the mobile app - ADDITIVE to the web provider, never a
100
100
  // replacement: store rules require digital goods to be sold through in-app purchase.
101
101
  mobile: {
102
102
  enabled: ${e.mobilePurchases==="revenuecat"},
@@ -105,7 +105,7 @@ ${r.join(`,
105
105
  grantCreditsToFamilyShare: false,
106
106
  externalPurchaseLinks: "off",
107
107
  customerCenter: true
108
- }`,_e=`import type { AgentsConfig, AppConfig } from "@repo/config/types";
108
+ }`,Oe=`import type { AgentsConfig, AppConfig } from "@repo/config/types";
109
109
  import { resolveAgentsConfig } from "./agents";
110
110
  import { desktopConfig } from "./desktop.mjs";
111
111
  import { mobileConfig } from "./mobile.mjs";
@@ -201,8 +201,8 @@ ${O}
201
201
  prefix: "key_"
202
202
  },
203
203
  apiDocs: true,
204
- performanceMonitor: { enabled: ${y} },
205
- ${u}
204
+ performanceMonitor: { enabled: ${b} },
205
+ ${m}
206
206
  notifications: {
207
207
  enabled: NOTIFICATIONS_ENABLED,
208
208
  maxPerUser: 100,
@@ -246,7 +246,7 @@ ${u}
246
246
  }`:`{
247
247
  base: "${e.defaultCurrency}",
248
248
  list: [
249
- { symbol: "${Ce[e.defaultCurrency].symbol}", name: "${Ce[e.defaultCurrency].name}", code: "${e.defaultCurrency}", place: "${Ce[e.defaultCurrency].place}", space: ${Ce[e.defaultCurrency].space} }
249
+ { symbol: "${Le[e.defaultCurrency].symbol}", name: "${Le[e.defaultCurrency].name}", code: "${e.defaultCurrency}", place: "${Le[e.defaultCurrency].place}", space: ${Le[e.defaultCurrency].space} }
250
250
  ],
251
251
  countryMap: {
252
252
  default: "${e.defaultCurrency}"
@@ -453,7 +453,7 @@ export * from "./robots";
453
453
  export * from "./roles";
454
454
  export * from "./section-tabs";
455
455
  export * from "./tenancy";
456
- `,q=St(e.projectDir,"packages/config/src/index.ts");await c(q,_e),await c(St(e.projectDir,"packages/config/src/support.ts"),`import type { SupportConfig } from "@repo/config/types";
456
+ `,q=St(e.projectDir,"packages/config/src/index.ts");await c(q,Oe),await c(St(e.projectDir,"packages/config/src/support.ts"),`import type { SupportConfig } from "@repo/config/types";
457
457
 
458
458
  /**
459
459
  * Live-chat (support widget) configuration, re-exported by the config index as
@@ -530,14 +530,14 @@ import { NOTIFICATIONS_ENABLED } from "./notifications-flag.mjs";
530
530
  export const mobileConfig = {
531
531
  enabled: ${e.mobile},
532
532
  // Home-screen and store display name.
533
- appName: "${R.appName}",
533
+ appName: "${_.appName}",
534
534
  // Expo slug, EAS project name, and the prefix the auth client namespaces its
535
535
  // stored session under.
536
- slug: "${R.slug}",
536
+ slug: "${_.slug}",
537
537
  // iOS bundle id and Android application id.
538
- bundleId: "${R.bundleId}",
538
+ bundleId: "${_.bundleId}",
539
539
  // Deep-link scheme, with NO \`://\` - the code appends the separator it needs.
540
- scheme: "${R.scheme}",
540
+ scheme: "${_.scheme}",
541
541
  // The web host whose /.well-known files claim this app's universal links. Your
542
542
  // PROJECT domain, subdomain included: it must match the host your links carry.
543
543
  universalLinks: { host: "${i}" },
@@ -630,9 +630,9 @@ export const SETTINGS_PRIVACY_PATH = "/settings/privacy";
630
630
  export const SETTINGS_APP_LOCK_PATH = "/settings/app-lock";
631
631
  /** app/(app)/settings/about.tsx - version, legal links and support. */
632
632
  export const SETTINGS_ABOUT_PATH = "/settings/about";
633
- `),e.desktop&&await Uo(e.projectDir,I,`${P.protocol}-updater`)}import{join as Yo}from"path";function Wo(e,t){let r=[e==="stripe"?' stripePriceId: "",':' polarProductId: "",'];return t&&r.push(' appleProductId: "",',' googleProductId: "",'," storeAmounts: {},"),r.join(`
634
- `)}function xr(e){let t=[];return e.withCredits&&(t.push(` credits: ${e.credits},`),t.push(" creditInterval: 30,")),e.maxConcurrentRuns!==void 0?(t.push(` apiRateLimit: { maxRequests: ${e.rateLimit} },`),t.push(` maxConcurrentRuns: ${e.maxConcurrentRuns}`)):t.push(` apiRateLimit: { maxRequests: ${e.rateLimit} }`),t.join(`
635
- `)}async function Gn(e){let t=Yo(e.projectDir,"packages/config/src/pricing.ts"),r=e.defaultCurrency;if(e.paymentProvider==="none"){let I=`import type { PricingConfig } from "@repo/config/types";
633
+ `),e.desktop&&await Ko(e.projectDir,I,`${P.protocol}-updater`)}import{join as Xo}from"path";function Zo(e,t){let r=[e==="stripe"?' stripePriceId: "",':' polarProductId: "",'];return t&&r.push(' appleProductId: "",',' googleProductId: "",'," storeAmounts: {},"),r.join(`
634
+ `)}function xr(e){let t=[];return e.withCredits&&(t.push(` credits: ${e.credits},`),e.recurring!==!1&&t.push(" creditInterval: 30,")),e.maxConcurrentRuns!==void 0?(t.push(` apiRateLimit: { maxRequests: ${e.rateLimit} },`),t.push(` maxConcurrentRuns: ${e.maxConcurrentRuns}`)):t.push(` apiRateLimit: { maxRequests: ${e.rateLimit} }`),t.join(`
635
+ `)}async function Gn(e){let t=Xo(e.projectDir,"packages/config/src/pricing.ts"),r=e.defaultCurrency;if(e.paymentProvider==="none"){let I=`import type { PricingConfig } from "@repo/config/types";
636
636
 
637
637
  export const pricingConfig: PricingConfig = {
638
638
  defaultPlan: "free",
@@ -661,7 +661,7 @@ export const pricingConfig: PricingConfig = {
661
661
  credits: { enabled: false },
662
662
  products: { enabled: false, items: [] }
663
663
  };
664
- `;await c(t,I);return}let n=e.paymentProvider,i=Wo(n,e.mobilePurchases==="revenuecat"),o=e.credits,s=!!e.ai,a=xr({credits:5,rateLimit:100,withCredits:o,...s&&{maxConcurrentRuns:2}}),d=xr({credits:10,rateLimit:1e3,withCredits:o,...s&&{maxConcurrentRuns:5}}),u=xr({credits:40,rateLimit:5e3,withCredits:o,...s&&{maxConcurrentRuns:10}}),w=r==="USD"?"":` // !! ${r} pricing WARNING: creditsPerUsd anchors credit cost to USD (AI providers bill in
664
+ `;await c(t,I);return}let n=e.paymentProvider,i=Zo(n,e.mobilePurchases==="revenuecat"),o=e.credits,s=!!e.ai,a=xr({credits:5,rateLimit:100,withCredits:o,recurring:!1,...s&&{maxConcurrentRuns:2}}),d=xr({credits:10,rateLimit:1e3,withCredits:o,...s&&{maxConcurrentRuns:5}}),m=xr({credits:40,rateLimit:5e3,withCredits:o,...s&&{maxConcurrentRuns:10}}),w=r==="USD"?"":` // !! ${r} pricing WARNING: creditsPerUsd anchors credit cost to USD (AI providers bill in
665
665
  // !! USD), but your plan prices and credit purchases are denominated in ${r}. Verify that the
666
666
  // !! ${r} amounts above cover the USD cost per credit (~0.50 USD at creditsPerUsd 1 with the
667
667
  // !! 100% markup) - and raise prices or creditsPerUsd if they do not.
@@ -670,7 +670,7 @@ export const pricingConfig: PricingConfig = {
670
670
  !! plan prices and credit purchases are denominated in ${r}. At the shipped economics 1 credit
671
671
  !! carries ~0.50 USD of AI cost - verify every ${r} price still covers it (see the comment on the
672
672
  !! credits block in packages/config/src/pricing.ts), or raise prices / creditsPerUsd.
673
- `);let y=o?` // creditsPerUsd scales USD cost -> credits (1 = 1 credit carries ~0.50 USD of cost after the
673
+ `);let b=o?` // creditsPerUsd scales USD cost -> credits (1 = 1 credit carries ~0.50 USD of cost after the
674
674
  // 100% markup); markupPercent is the DEFAULT margin for everything that debits credits (AI,
675
675
  // external APIs, your own features), and credits.markupByCategory overrides it per metered
676
676
  // service ("ai", "webSearch", "webExtract"). Two optional knobs shape each debit's size:
@@ -762,21 +762,21 @@ ${i}
762
762
  anchorAmounts: { ${r}: 349 }
763
763
  }
764
764
  ],
765
- ${u}
765
+ ${m}
766
766
  }
767
767
  ],
768
- ${y},
768
+ ${b},
769
769
  products: {
770
770
  enabled: false,
771
771
  items: []
772
772
  }
773
773
  };
774
- `;await c(t,P)}var zo={smtp:[{key:"SMTP_HOST",defaultValue:"localhost"},{key:"SMTP_PORT",defaultValue:"1025"},{key:"SMTP_USER"},{key:"SMTP_PASSWORD"}],ses:[{key:"AMAZON_SES_REGION",comment:"# TODO: Configure Amazon SES credentials (e.g. us-east-1)"},{key:"AMAZON_SES_KEY"},{key:"AMAZON_SES_SECRET"}],resend:[{key:"RESEND_API_KEY",comment:"# TODO: Add your Resend API key"}]},qo={stripe:[{key:"STRIPE_SECRET_KEY",comment:"# TODO: Add your Stripe keys"},{key:"STRIPE_WEBHOOK_SECRET"},{key:"STRIPE_API_BASE",comment:"# Point the Stripe SDK at another host - a local mock, or a proxy of your own. Unset means api.stripe.com."}],polar:[{key:"POLAR_ACCESS_TOKEN",comment:"# TODO: Add your Polar keys"},{key:"POLAR_WEBHOOK_SECRET"}]};function Wt(e,t){return t?e.map(r=>{let n=t[r.key];return n?{...r,defaultValue:n,comment:void 0}:r}):e}function Pt(e,t){for(let r of e)r.comment&&t.push(r.comment),r.defaultValue!==void 0?t.push(`${r.key}=${r.defaultValue}`):t.push(`#${r.key}=`)}function Dr(e){return Array.from(crypto.getRandomValues(new Uint8Array(e))).map(t=>t.toString(16).padStart(2,"0")).join("")}function Nr(e){return e.architecture==="fullstack"?{apiUrl:"http://localhost:3000/api",baseUrl:"http://localhost:3000"}:{apiUrl:"http://localhost:3010",baseUrl:"http://localhost:3000"}}var Jo="https://your-app.example.com/api";function zt(e,t,r,n){e.push(n==="example"?`${t}=`:`${t}=${r}`)}function Kn(e,t){let r=t==="example"?void 0:e.credentials,{apiUrl:n,baseUrl:i}=Nr(e),o=[];e.architecture==="separate"?o.push("# API Configuration","# Standalone backend's own URL (the frontend reaches it via the public var above).",`API_URL=${n}`,`BASE_URL=${i}`):o.push("# App","# (API_URL is derived from the frontend's *_PUBLIC_API_URL by the runtime env schema.)",`BASE_URL=${i}`),o.push("","# Client IP (production)","# The backend rate-limits by client IP and stamps it on audit entries. YOU ALMOST","# CERTAINLY DO NOT NEED THIS: it detects Vercel, Fly.io, Render, Railway, Netlify and","# Coolify from their own env vars, and treats a private connection peer (Docker, compose,","# Kubernetes, Dokploy, an nginx/Traefik/Caddy on the same host) as proof that something is","# forwarding to it. A forwarded header is trusted only in those cases, never on a server","# exposed directly - there, a caller could have sent it themselves."),e.architecture==="fullstack"?o.push("# This build runs the API in the frontend's route handler, which has no connection","# address, so on a host the backend does not recognise there is nothing to fall back on","# and every caller shares ONE rate-limit bucket: the 10/min sign-in limit applies to","# your whole app rather than per person, and audit entries record no address."):o.push("# This build reads the connection peer, so a server exposed directly identifies its","# callers correctly with nothing set here."),o.push("# SET IT when nothing above can see your topology - the common case is a CDN in front of a","# directly exposed server, where connections arrive from a public CDN address:","# Cloudflare -> TRUSTED_PROXY=cf-connecting-ip","# another proxy in front -> TRUSTED_PROXY=1 (the number of proxies)","# Whatever you set wins over detection; `false` turns detection off and trusts nothing.","# TRUSTED_PROXY=1"),o.push("","# Auth rate limits","# Raises every Better Auth rate limit by a whole number (1-50). Unset = 1 = the","# shipped limits. No value disables them: 0, empty or unparseable fails at boot.","# You almost certainly want the default. The reason to raise it is an automated suite,","# which drives ONE address and so shares one bucket - and the e2e config already sets","# its own value, so it needs nothing here.","# AUTH_RATE_LIMIT_MULTIPLIER=1"),o.push("","# Database"),Pt(Wt(Le[e.databaseProvider].envVars,r),o),o.push("","# Cache"),Pt(Wt($e[e.cacheProvider].envVars,r),o),e.cacheProvider==="redis"&&o.push("# Optional prefix on every Redis key the app writes. Set it when several deployments share","# one Redis instance, or to keep a load test out of the live keyspace.","# Set it once, before first boot. Changing it on a running deployment orphans in-flight","# auto-top-up claims and distributed locks (autotopup:pending:*, withMutex) - drain or use","# a maintenance window first.","#REDIS_KEY_PREFIX="),o.push("","# Authentication"),t==="example"&&o.push("# Generate a strong secret, e.g. `openssl rand -hex 32`"),zt(o,"BETTER_AUTH_SECRET",crypto.randomUUID(),t),o.push("","# Content API (random secret; required when contentApi feature is enabled in @repo/config)"),zt(o,"CONTENT_API_KEY",Dr(32),t),o.push("","# Job Queue - Inngest","INNGEST_APP_ID=api"),zt(o,"INNGEST_EVENT_KEY",Dr(32),t),zt(o,"INNGEST_SIGNING_KEY",Dr(32),t),o.push("INNGEST_BASE_URL=http://127.0.0.1:8288"),e.architecture==="separate"&&(o.push("","# API Port (standalone backend)","API_PORT=3010"),o.push("","# CORS + cross-subdomain cookies (production only - leave unset for local dev)","# TRUSTED_ORIGINS=https://your-app.example.com","# AUTH_COOKIE_DOMAIN=.example.com"));let s=zo[e.emailProvider];if(s&&(o.push("","# Email"),Pt(Wt(s,r),o)),e.paymentProvider!=="none"){let d=qo[e.paymentProvider];d&&(o.push("","# Payment"),Pt(Wt(d,r),o))}o.push("","# Storage - S3 Compatible (required for uploads: avatars, files)","# Works with AWS S3, Cloudflare R2, MinIO, and other S3-compatible services.","# Uploads fail until these are set - storage is enabled in @repo/config by default.","#STORAGE_REGION=us-east-1","#STORAGE_ENDPOINT=https://your-account.r2.cloudflarestorage.com","#STORAGE_ACCESS_KEY_ID=","#STORAGE_SECRET_ACCESS_KEY=","# Two buckets: one publicly readable (avatars, assets), one credentials-only (private","# uploads served through the app). The bucket boundary is the privacy guarantee.","#STORAGE_PUBLIC_BUCKET=","#STORAGE_PRIVATE_BUCKET=",'# Public base URL for the public bucket. Public file URLs are STORAGE_PUBLIC_URL + "/" + key.',"#STORAGE_PUBLIC_URL=https://cdn.example.com","","# Storage - Local Filesystem (optional overrides)","# Defaults work out of the box; override for Docker volume mounts.","#STORAGE_LOCAL_PATH=/data","#STORAGE_LOCAL_PUBLIC_URL=https://cdn.example.com/files"),o.push("","# Admin Notifications (optional)","# Real-time notifications when business events occur (signups, purchases, etc.).","# Each provider is auto-enabled when its env vars are set.","#DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/...","#SLACK_WEBHOOK_URL=https://hooks.slack.com/services/...","#TELEGRAM_BOT_TOKEN=123456789:ABCdefGHIjklMNOpqrsTUVwxyz","#TELEGRAM_CHAT_ID=-1001234567890","#TELEGRAM_TOPIC_ID=123"),o.push("","# Social sign-in (optional)","# Enable the matching provider in @repo/config, then set its pair here.","#GOOGLE_CLIENT_ID=","#GOOGLE_CLIENT_SECRET=","#GITHUB_CLIENT_ID=","#GITHUB_CLIENT_SECRET=","# Apple needs four values rather than a pair, and they also back the mobile app's native","# Sign in with Apple - the same client is what the backend accepts a native token from.","#APPLE_CLIENT_ID=","#APPLE_TEAM_ID=","#APPLE_KEY_ID=","#APPLE_PRIVATE_KEY="),o.push("","# SMS - Twilio (optional)","#TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","#TWILIO_AUTH_TOKEN=","#TWILIO_PHONE_NUMBER=+1234567890"),o.push("","# Newsletter (optional)","#RESEND_AUDIENCE_ID=","#LISTMONK_URL=https://listmonk.yourdomain.com","#LISTMONK_API_USER=admin","#LISTMONK_API_TOKEN=","#LISTMONK_LIST_ID=1"),o.push("","# Translations - OpenRouter (optional)","# Set to auto-translate en/* into your other locales with `pnpm translate`.","# The pre-commit hook runs it on commit; without a key it skips and untranslated","# locales fall back to the default locale. Get a key: https://openrouter.ai/keys","#OPENROUTER_API_KEY=");let a=[];return e.observability.includes("sentry")&&a.push({key:"SENTRY_DSN",comment:"# Overrides config.observability.sentry.dsn for the server only."}),e.observability.includes("posthog")&&a.push({key:"POSTHOG_API_KEY",comment:"# Overrides config.observability.posthog.publicKey for the server only (host stays in config)."}),a.length>0&&(o.push("","# Error and product reporting (optional)"),Pt(a,o)),o.push("","# AI base (optional)","# Enable config.ai in packages/config. Built-in AI resolves through OpenRouter only,","# so OPENROUTER_API_KEY above is the only MODEL provider key the backend reads.","# BYOK is per-user and never an env var: users paste their own key in the app and it","# is stored encrypted in the database.","# Override the OpenRouter API base - a gateway or a proxy of your own. It must carry the","# /api/v1 suffix. Unset uses the hosted API.","#OPENROUTER_BASE_URL=https://openrouter.ai/api/v1","","# AI web tools (optional)","# Give the assistant its own web access. A key's presence is the whole switch: set one","# and the model gets its tools, set neither and chat is unchanged. Users still opt in","# per chat with the composer's web-search toggle, and config.ai.webSearch: false","# disables both. Calls bill to user credits - set the price and engine in","# config.ai.webTools.","# ANY one key alone covers both capabilities. Firecrawl is the recommended one, so a","# single signup is the whole setup, and with several keys set Firecrawl serves search","# and extract.","# Firecrawl (recommended) - `web_search` AND `web_extract` (reads one page).","# https://firecrawl.dev/","#FIRECRAWL_API_KEY=","# Parallel (optional) - both tools, cheaper on each, at high quality; extract is slower","# on a page it has not already indexed. Note its customer terms include a license to","# train on submitted queries. Set config.ai.webTools.searchEngine or .extractEngine to",'# "parallel" to use it alongside a Firecrawl key.',"# https://platform.parallel.ai/","#PARALLEL_API_KEY=","# TinyFish (optional) - both tools at a $0 list price, rate-limited instead (30 searches","# and 150 pages a minute per API key by default, shared by every user), so a call bills","# the user nothing unless you set a price in config.ai.webTools. Note its terms include","# a license to train on submitted content. Set config.ai.webTools.searchEngine or",'# .extractEngine to "tinyfish" to use it alongside another key.',"# https://agent.tinyfish.ai/","#TINYFISH_API_KEY="),e.desktop&&o.push("","# Desktop app (optional)","# Base URL the marketing download page reads the release feed from.","# Unset uses config.desktop.autoUpdate.url.","#DESKTOP_FEED_BASE_URL="),e.mobile&&(o.push("","# Mobile app","# The bundle identifier the native Sign in with Apple token is issued to - it joins","# APPLE_CLIENT_ID in the audience the backend accepts.","#APPLE_APP_BUNDLE_IDENTIFIER=","# Comma-separated Android signing certificate SHA-256 fingerprints. They feed","# .well-known/assetlinks.json (which verifies your universal links) and the passkey","# Android origins.","#MOBILE_ANDROID_SHA256_FINGERPRINTS=","# Optional. An Expo access token turns on enhanced security for push sends.","#EXPO_ACCESS_TOKEN="),e.mobilePurchases==="revenuecat"&&o.push("","# Mobile store purchases - RevenueCat (server)","# The first two verify incoming webhooks; the third is read by the sync route and the","# nightly reconcile pass.","#REVENUECAT_WEBHOOK_SECRET=","#REVENUECAT_AUTH_HEADER=","#REVENUECAT_API_KEY=")),o.push("","# Build output (optional)","# Next's distDir for apps/web. Unset uses .next; the e2e harness sets its own so a test","# build never overwrites a dev server's.","#NEXT_DIST_DIR="),o.push(""),o.join(`
775
- `)}var Hn="NEXT_PUBLIC_API_URL";function Xo(e){let{apiUrl:t}=Nr(e),r=["# API Configuration",`${Hn}=${t}`];return e.architecture==="separate"&&r.push("","# Production (uncomment and replace with your deployed hostnames):",`# ${Hn}=${Jo}`),r.push(""),r.join(`
776
- `)}function Zo(e){let{apiUrl:t,baseUrl:r}=Nr(e),n=["# Expo reads env from THIS directory, never the monorepo root.","# Every EXPO_PUBLIC_* value is inlined into the app bundle - never put a secret here.","# Android emulator: replace localhost with 10.0.2.2; a physical device needs your machine's LAN IP","# EXPO_PUBLIC_API_URL is the value to fill first - without it the app throws at launch and names it.",`EXPO_PUBLIC_API_URL=${t}`,`EXPO_PUBLIC_WEB_URL=${r}`,"","# Native Google sign-in (optional)","#EXPO_PUBLIC_GOOGLE_WEB_CLIENT_ID=","#EXPO_PUBLIC_GOOGLE_IOS_CLIENT_ID="];e.mobilePurchases==="revenuecat"&&n.push("","# RevenueCat public SDK keys (optional until you create your products)","#EXPO_PUBLIC_REVENUECAT_IOS_KEY=","#EXPO_PUBLIC_REVENUECAT_ANDROID_KEY=");let i=[];return e.observability.includes("sentry")&&i.push("#EXPO_PUBLIC_SENTRY_DSN="),e.observability.includes("posthog")&&i.push("#EXPO_PUBLIC_POSTHOG_KEY="),i.length>0&&n.push("","# Observability (optional)",...i),n.push(""),n.join(`
777
- `)}async function Yn(e){let t=Xo(e);if(await c(`${e.projectDir}/.env`,t+`
778
- `+Kn(e,"env")),await c(`${e.projectDir}/.env.example`,t+`
779
- `+Kn(e,"example")),e.mobile){let r=Zo(e);await c(`${e.projectDir}/apps/mobile/.env`,r),await c(`${e.projectDir}/apps/mobile/.env.example`,r)}}import{join as Qo}from"path";async function Wn(e){let t=Qe(e),r=[],n=[];if(t.includes("postgres")&&(r.push(` postgres:
774
+ `;await c(t,P)}var Qo={smtp:[{key:"SMTP_HOST",defaultValue:"localhost"},{key:"SMTP_PORT",defaultValue:"1025"},{key:"SMTP_USER"},{key:"SMTP_PASSWORD"}],ses:[{key:"AMAZON_SES_REGION",comment:"# TODO: Configure Amazon SES credentials (e.g. us-east-1)"},{key:"AMAZON_SES_KEY"},{key:"AMAZON_SES_SECRET"}],resend:[{key:"RESEND_API_KEY",comment:"# TODO: Add your Resend API key"}]},ea={stripe:[{key:"STRIPE_SECRET_KEY",comment:"# TODO: Add your Stripe keys"},{key:"STRIPE_WEBHOOK_SECRET"},{key:"STRIPE_API_BASE",comment:"# Point the Stripe SDK at another host - a local mock, or a proxy of your own. Unset means api.stripe.com."}],polar:[{key:"POLAR_ACCESS_TOKEN",comment:"# TODO: Add your Polar keys"},{key:"POLAR_WEBHOOK_SECRET"}]};function Wt(e,t){return t?e.map(r=>{let n=t[r.key];return n?{...r,defaultValue:n,comment:void 0}:r}):e}function Pt(e,t){for(let r of e)r.comment&&t.push(r.comment),r.defaultValue!==void 0?t.push(`${r.key}=${r.defaultValue}`):t.push(`#${r.key}=`)}function Dr(e){return Array.from(crypto.getRandomValues(new Uint8Array(e))).map(t=>t.toString(16).padStart(2,"0")).join("")}function Nr(e){return e.architecture==="fullstack"?{apiUrl:"http://localhost:3000/api",baseUrl:"http://localhost:3000"}:{apiUrl:"http://localhost:3010",baseUrl:"http://localhost:3000"}}var ta="https://your-app.example.com/api";function zt(e,t,r,n){e.push(n==="example"?`${t}=`:`${t}=${r}`)}function Kn(e,t){let r=t==="example"?void 0:e.credentials,{apiUrl:n,baseUrl:i}=Nr(e),o=[];e.architecture==="separate"?o.push("# API Configuration","# Standalone backend's own URL (the frontend reaches it via the public var above).",`API_URL=${n}`,`BASE_URL=${i}`):o.push("# App","# (API_URL is derived from the frontend's *_PUBLIC_API_URL by the runtime env schema.)",`BASE_URL=${i}`),o.push("","# Client IP (production)","# The backend rate-limits by client IP and stamps it on audit entries. YOU ALMOST","# CERTAINLY DO NOT NEED THIS: it detects Vercel, Fly.io, Render, Railway, Netlify and","# Coolify from their own env vars, and treats a private connection peer (Docker, compose,","# Kubernetes, Dokploy, an nginx/Traefik/Caddy on the same host) as proof that something is","# forwarding to it. A forwarded header is trusted only in those cases, never on a server","# exposed directly - there, a caller could have sent it themselves."),e.architecture==="fullstack"?o.push("# This build runs the API in the frontend's route handler, which has no connection","# address, so on a host the backend does not recognise there is nothing to fall back on","# and every caller shares ONE rate-limit bucket: the 10/min sign-in limit applies to","# your whole app rather than per person, and audit entries record no address."):o.push("# This build reads the connection peer, so a server exposed directly identifies its","# callers correctly with nothing set here."),o.push("# SET IT when nothing above can see your topology - the common case is a CDN in front of a","# directly exposed server, where connections arrive from a public CDN address:","# Cloudflare -> TRUSTED_PROXY=cf-connecting-ip","# another proxy in front -> TRUSTED_PROXY=1 (the number of proxies)","# Whatever you set wins over detection; `false` turns detection off and trusts nothing.","# TRUSTED_PROXY=1"),o.push("","# Auth rate limits","# Raises every Better Auth rate limit by a whole number (1-50). Unset = 1 = the","# shipped limits. No value disables them: 0, empty or unparseable fails at boot.","# You almost certainly want the default. The reason to raise it is an automated suite,","# which drives ONE address and so shares one bucket - and the e2e config already sets","# its own value, so it needs nothing here.","# AUTH_RATE_LIMIT_MULTIPLIER=1"),o.push("","# Database"),Pt(Wt($e[e.databaseProvider].envVars,r),o),o.push("","# Cache"),Pt(Wt(je[e.cacheProvider].envVars,r),o),e.cacheProvider==="redis"&&o.push("# Optional prefix on every Redis key the app writes. Set it when several deployments share","# one Redis instance, or to keep a load test out of the live keyspace.","# Set it once, before first boot. Changing it on a running deployment orphans in-flight","# auto-top-up claims and distributed locks (autotopup:pending:*, withMutex) - drain or use","# a maintenance window first.","#REDIS_KEY_PREFIX="),o.push("","# Authentication"),t==="example"&&o.push("# Generate a strong secret, e.g. `openssl rand -hex 32`"),zt(o,"BETTER_AUTH_SECRET",crypto.randomUUID(),t),o.push("","# Content API (random secret; required when contentApi feature is enabled in @repo/config)"),zt(o,"CONTENT_API_KEY",Dr(32),t),o.push("","# Job Queue - Inngest","INNGEST_APP_ID=api"),zt(o,"INNGEST_EVENT_KEY",Dr(32),t),o.push("# REQUIRED in production: it is how the /inngest endpoint tells Inngest from anyone else who","# finds the URL. The app refuses to boot without it unless INNGEST_DEV is set (local dev server).","# Take the real value from the Inngest dashboard."),zt(o,"INNGEST_SIGNING_KEY",Dr(32),t),o.push("INNGEST_BASE_URL=http://127.0.0.1:8288"),e.architecture==="separate"&&(o.push("","# API Port (standalone backend)","API_PORT=3010"),o.push("","# CORS + cross-subdomain cookies (production only - leave unset for local dev)","# TRUSTED_ORIGINS=https://your-app.example.com","# AUTH_COOKIE_DOMAIN=.example.com"));let s=Qo[e.emailProvider];if(s&&(o.push("","# Email"),Pt(Wt(s,r),o)),e.paymentProvider!=="none"){let d=ea[e.paymentProvider];d&&(o.push("","# Payment"),Pt(Wt(d,r),o))}o.push("","# Storage - S3 Compatible (required for uploads: avatars, files)","# Works with AWS S3, Cloudflare R2, MinIO, and other S3-compatible services.","# Uploads fail until these are set - storage is enabled in @repo/config by default.","#STORAGE_REGION=us-east-1","#STORAGE_ENDPOINT=https://your-account.r2.cloudflarestorage.com","#STORAGE_ACCESS_KEY_ID=","#STORAGE_SECRET_ACCESS_KEY=","# Two buckets: one publicly readable (avatars, assets), one credentials-only (private","# uploads served through the app). The bucket boundary is the privacy guarantee.","#STORAGE_PUBLIC_BUCKET=","#STORAGE_PRIVATE_BUCKET=",'# Public base URL for the public bucket. Public file URLs are STORAGE_PUBLIC_URL + "/" + key.',"#STORAGE_PUBLIC_URL=https://cdn.example.com","","# Storage - Local Filesystem (optional overrides)","# Defaults work out of the box; override for Docker volume mounts.","#STORAGE_LOCAL_PATH=/data","#STORAGE_LOCAL_PUBLIC_URL=https://cdn.example.com/files"),o.push("","# Admin Notifications (optional)","# Real-time notifications when business events occur (signups, purchases, etc.).","# Each provider is auto-enabled when its env vars are set.","#DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/...","#SLACK_WEBHOOK_URL=https://hooks.slack.com/services/...","#TELEGRAM_BOT_TOKEN=123456789:ABCdefGHIjklMNOpqrsTUVwxyz","#TELEGRAM_CHAT_ID=-1001234567890","#TELEGRAM_TOPIC_ID=123"),o.push("","# Social sign-in (optional)","# Enable the matching provider in @repo/config, then set its pair here.","#GOOGLE_CLIENT_ID=","#GOOGLE_CLIENT_SECRET=","#GITHUB_CLIENT_ID=","#GITHUB_CLIENT_SECRET=","# Apple needs four values rather than a pair, and they also back the mobile app's native","# Sign in with Apple - the same client is what the backend accepts a native token from.","#APPLE_CLIENT_ID=","#APPLE_TEAM_ID=","#APPLE_KEY_ID=","#APPLE_PRIVATE_KEY="),o.push("","# SMS - Twilio (optional)","#TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","#TWILIO_AUTH_TOKEN=","#TWILIO_PHONE_NUMBER=+1234567890"),o.push("","# Newsletter (optional)","#RESEND_AUDIENCE_ID=","#LISTMONK_URL=https://listmonk.yourdomain.com","#LISTMONK_API_USER=admin","#LISTMONK_API_TOKEN=","#LISTMONK_LIST_ID=1"),o.push("","# Translations - OpenRouter (optional)","# Set to auto-translate en/* into your other locales with `pnpm translate`.","# The pre-commit hook runs it on commit; without a key it skips and untranslated","# locales fall back to the default locale. Get a key: https://openrouter.ai/keys","#OPENROUTER_API_KEY=");let a=[];return e.observability.includes("sentry")&&a.push({key:"SENTRY_DSN",comment:"# Overrides config.observability.sentry.dsn for the server only."}),e.observability.includes("posthog")&&a.push({key:"POSTHOG_API_KEY",comment:"# Overrides config.observability.posthog.publicKey for the server only (host stays in config)."}),a.length>0&&(o.push("","# Error and product reporting (optional)"),Pt(a,o)),o.push("","# AI base (optional)","# Enable config.ai in packages/config. Built-in AI resolves through OpenRouter only,","# so OPENROUTER_API_KEY above is the only MODEL provider key the backend reads.","# BYOK is per-user and never an env var: users paste their own key in the app and it","# is stored encrypted in the database.","# Override the OpenRouter API base - a gateway or a proxy of your own. It must carry the","# /api/v1 suffix. Unset uses the hosted API.","#OPENROUTER_BASE_URL=https://openrouter.ai/api/v1","","# AI web tools (optional)","# Give the assistant its own web access. A key's presence is the whole switch: set one","# and the model gets its tools, set neither and chat is unchanged. Users still opt in","# per chat with the composer's web-search toggle, and config.ai.webSearch: false","# disables both. Calls bill to user credits - set the price and engine in","# config.ai.webTools.","# ANY one key alone covers both capabilities. Firecrawl is the recommended one, so a","# single signup is the whole setup, and with several keys set Firecrawl serves search","# and extract.","# Firecrawl (recommended) - `web_search` AND `web_extract` (reads one page).","# https://firecrawl.dev/","#FIRECRAWL_API_KEY=","# Parallel (optional) - both tools, cheaper on each, at high quality; extract is slower","# on a page it has not already indexed. Note its customer terms include a license to","# train on submitted queries. Set config.ai.webTools.searchEngine or .extractEngine to",'# "parallel" to use it alongside a Firecrawl key.',"# https://platform.parallel.ai/","#PARALLEL_API_KEY=","# TinyFish (optional) - both tools at a $0 list price, rate-limited instead (30 searches","# and 150 pages a minute per API key by default, shared by every user), so a call bills","# the user nothing unless you set a price in config.ai.webTools. Note its terms include","# a license to train on submitted content. Set config.ai.webTools.searchEngine or",'# .extractEngine to "tinyfish" to use it alongside another key.',"# https://agent.tinyfish.ai/","#TINYFISH_API_KEY="),e.desktop&&o.push("","# Desktop app (optional)","# Base URL the marketing download page reads the release feed from.","# Unset uses config.desktop.autoUpdate.url.","#DESKTOP_FEED_BASE_URL="),e.mobile&&(o.push("","# Mobile app","# The bundle identifier the native Sign in with Apple token is issued to - it joins","# APPLE_CLIENT_ID in the audience the backend accepts.","#APPLE_APP_BUNDLE_IDENTIFIER=","# Comma-separated Android signing certificate SHA-256 fingerprints. They feed","# .well-known/assetlinks.json (which verifies your universal links) and the passkey","# Android origins.","#MOBILE_ANDROID_SHA256_FINGERPRINTS=","# Optional. An Expo access token turns on enhanced security for push sends.","#EXPO_ACCESS_TOKEN="),e.mobilePurchases==="revenuecat"&&o.push("","# Mobile store purchases - RevenueCat (server)","# The first two verify incoming webhooks; the third is read by the sync route and the","# nightly reconcile pass.","#REVENUECAT_WEBHOOK_SECRET=","#REVENUECAT_AUTH_HEADER=","#REVENUECAT_API_KEY=")),o.push("","# Build output (optional)","# Next's distDir for apps/web. Unset uses .next; the e2e harness sets its own so a test","# build never overwrites a dev server's.","#NEXT_DIST_DIR="),o.push(""),o.join(`
775
+ `)}var Hn="NEXT_PUBLIC_API_URL";function ra(e){let{apiUrl:t}=Nr(e),r=["# API Configuration",`${Hn}=${t}`];return e.architecture==="separate"&&r.push("","# Production (uncomment and replace with your deployed hostnames):",`# ${Hn}=${ta}`),r.push(""),r.join(`
776
+ `)}function na(e){let{apiUrl:t,baseUrl:r}=Nr(e),n=["# Expo reads env from THIS directory, never the monorepo root.","# Every EXPO_PUBLIC_* value is inlined into the app bundle - never put a secret here.","# Android emulator: replace localhost with 10.0.2.2; a physical device needs your machine's LAN IP","# EXPO_PUBLIC_API_URL is the value to fill first - without it the app throws at launch and names it.",`EXPO_PUBLIC_API_URL=${t}`,`EXPO_PUBLIC_WEB_URL=${r}`,"","# Native Google sign-in (optional)","#EXPO_PUBLIC_GOOGLE_WEB_CLIENT_ID=","#EXPO_PUBLIC_GOOGLE_IOS_CLIENT_ID="];e.mobilePurchases==="revenuecat"&&n.push("","# RevenueCat public SDK keys (optional until you create your products)","#EXPO_PUBLIC_REVENUECAT_IOS_KEY=","#EXPO_PUBLIC_REVENUECAT_ANDROID_KEY=");let i=[];return e.observability.includes("sentry")&&i.push("#EXPO_PUBLIC_SENTRY_DSN="),e.observability.includes("posthog")&&i.push("#EXPO_PUBLIC_POSTHOG_KEY="),i.length>0&&n.push("","# Observability (optional)",...i),n.push(""),n.join(`
777
+ `)}async function Yn(e){let t=ra(e);if(await c(`${e.projectDir}/.env`,`${t}
778
+ ${Kn(e,"env")}`),await c(`${e.projectDir}/.env.example`,`${t}
779
+ ${Kn(e,"example")}`),e.mobile){let r=na(e);await c(`${e.projectDir}/apps/mobile/.env`,r),await c(`${e.projectDir}/apps/mobile/.env.example`,r)}}import{join as ia}from"path";async function Wn(e){let t=Qe(e),r=[],n=[];if(t.includes("postgres")&&(r.push(` postgres:
780
780
  image: postgres:18-alpine
781
781
  restart: unless-stopped
782
782
  ports:
@@ -838,22 +838,22 @@ ${r.join(`
838
838
  volumes:
839
839
  ${n.join(`
840
840
  `)}
841
- `),await c(Qo(e.projectDir,"infra/docker-compose.yml"),o)}import{join as ea}from"path";var At="Next.js";function ta(e){let t=[];if(t.push({type:"node-terminal",request:"launch",name:"Dev",command:"pnpm dev",cwd:"${workspaceFolder}",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),e.architecture==="separate"&&t.push({type:"node-terminal",request:"launch",name:"Backend",command:"pnpm dev",cwd:"${workspaceFolder}/apps/backend",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),t.push({type:"node-terminal",request:"launch",name:At,command:"pnpm dev",cwd:"${workspaceFolder}/apps/web",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),e.docs&&t.push({type:"node-terminal",request:"launch",name:"Docs",command:"pnpm dev",cwd:"${workspaceFolder}/apps/docs",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),e.desktop){let r=e.architecture==="separate"?"http://localhost:3010":"http://localhost:3000/api";t.push({type:"node-terminal",request:"launch",name:"Desktop",command:"pnpm dev",cwd:"${workspaceFolder}/apps/desktop",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development",BASE_URL:"http://localhost:3000",PUBLIC_API_URL:r}})}if(t.push({type:"node-terminal",request:"launch",name:"Inngest",command:"pnpm dev:inngest",cwd:"${workspaceFolder}",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),t.push({type:"node-terminal",request:"launch",name:"Mail",command:"pnpm dev:mail",cwd:"${workspaceFolder}",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),e.paymentProvider==="stripe"){let r=e.architecture==="separate"?"localhost:3010/auth/stripe/webhook":"localhost:3000/api/auth/stripe/webhook";t.push({type:"node-terminal",request:"launch",name:"Stripe",command:`stripe listen --forward-to ${r}`,cwd:"${workspaceFolder}",skipFiles:["<node_internals>/**"]})}return t}function ra(e){let t=[];return e.architecture==="separate"?t.push({name:`Dev (${At} + Backend + Inngest)`,configurations:["Backend",At,"Inngest"]}):t.push({name:`Dev (${At} + Inngest)`,configurations:[At,"Inngest"]}),t}async function zn(e){let t={version:"0.2.0",configurations:ta(e),compounds:ra(e)};await c(ea(e.projectDir,".vscode/launch.json"),JSON.stringify(t,null," ")+`
841
+ `),await c(ia(e.projectDir,"infra/docker-compose.yml"),o)}import{join as sa}from"path";var At="Next.js";function oa(e){let t=[];if(t.push({type:"node-terminal",request:"launch",name:"Dev",command:"pnpm dev",cwd:"${workspaceFolder}",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),e.architecture==="separate"&&t.push({type:"node-terminal",request:"launch",name:"Backend",command:"pnpm dev",cwd:"${workspaceFolder}/apps/backend",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),t.push({type:"node-terminal",request:"launch",name:At,command:"pnpm dev",cwd:"${workspaceFolder}/apps/web",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),e.docs&&t.push({type:"node-terminal",request:"launch",name:"Docs",command:"pnpm dev",cwd:"${workspaceFolder}/apps/docs",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),e.desktop){let r=e.architecture==="separate"?"http://localhost:3010":"http://localhost:3000/api";t.push({type:"node-terminal",request:"launch",name:"Desktop",command:"pnpm dev",cwd:"${workspaceFolder}/apps/desktop",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development",BASE_URL:"http://localhost:3000",PUBLIC_API_URL:r}})}if(t.push({type:"node-terminal",request:"launch",name:"Inngest",command:"pnpm dev:inngest",cwd:"${workspaceFolder}",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),t.push({type:"node-terminal",request:"launch",name:"Mail",command:"pnpm dev:mail",cwd:"${workspaceFolder}",skipFiles:["<node_internals>/**"],env:{NODE_ENV:"development"}}),e.paymentProvider==="stripe"){let r=e.architecture==="separate"?"localhost:3010/auth/stripe/webhook":"localhost:3000/api/auth/stripe/webhook";t.push({type:"node-terminal",request:"launch",name:"Stripe",command:`stripe listen --forward-to ${r}`,cwd:"${workspaceFolder}",skipFiles:["<node_internals>/**"]})}return t}function aa(e){let t=[];return e.architecture==="separate"?t.push({name:`Dev (${At} + Backend + Inngest)`,configurations:["Backend",At,"Inngest"]}):t.push({name:`Dev (${At} + Inngest)`,configurations:[At,"Inngest"]}),t}async function zn(e){let t={version:"0.2.0",configurations:oa(e),compounds:aa(e)};await c(sa(e.projectDir,".vscode/launch.json"),`${JSON.stringify(t,null," ")}
842
842
  `)}import{readFile as Jn}from"fs/promises";import{join as Xn}from"path";var Cr='import { drizzle } from "drizzle-orm/node-postgres";',Lr=`export const db = drizzle(parsed.data.DATABASE_URL, { schema });
843
- export const pool = db.$client;`,na={postgres:{importLine:Cr,instantiation:Lr},neon:{importLine:`import { Pool } from "@neondatabase/serverless";
843
+ export const pool = db.$client;`,ca={postgres:{importLine:Cr,instantiation:Lr},neon:{importLine:`import { Pool } from "@neondatabase/serverless";
844
844
  import { drizzle } from "drizzle-orm/neon-serverless";`,instantiation:`const pool = new Pool({ connectionString: parsed.data.DATABASE_URL });
845
845
  export const db = drizzle(pool, { schema });`},supabase:{importLine:`import { drizzle } from "drizzle-orm/postgres-js";
846
846
  import postgres from "postgres";`,instantiation:`const client = postgres(parsed.data.DATABASE_URL);
847
- export const db = drizzle(client, { schema });`}};async function Zn(e){let t=Xn(e.projectDir,"packages/database/src/index.ts"),r=await Jn(t,"utf-8");if(!r.includes(Cr)||!r.includes(Lr))throw new Error("generateDbDriver: boilerplate packages/database/src/index.ts is missing the node-postgres driver anchors (the import line or the `db` instantiation block); the boilerplate drifted.");let n=na[e.databaseProvider],i=r.replace(Cr,n.importLine).replace(Lr,n.instantiation);await c(t,i),await sa(e)}var qn='import { Client } from "pg";',$r=` const client = new Client({ connectionString });
847
+ export const db = drizzle(client, { schema });`}};async function Zn(e){let t=Xn(e.projectDir,"packages/database/src/index.ts"),r=await Jn(t,"utf-8");if(!r.includes(Cr)||!r.includes(Lr))throw new Error("generateDbDriver: boilerplate packages/database/src/index.ts is missing the node-postgres driver anchors (the import line or the `db` instantiation block); the boilerplate drifted.");let n=ca[e.databaseProvider],i=r.replace(Cr,n.importLine).replace(Lr,n.instantiation);await c(t,i),await pa(e)}var qn='import { Client } from "pg";',$r=` const client = new Client({ connectionString });
848
848
  await client.connect();
849
849
  return {
850
850
  query: async (text) => ({ rows: (await client.query<LiveColumnRow>(text)).rows }),
851
851
  end: () => client.end()
852
- };`,ia={postgres:null,neon:{importLine:'import { Client } from "@neondatabase/serverless";',open:$r},supabase:{importLine:'import postgres from "postgres";',open:` const sql = postgres(connectionString, { prepare: false });
852
+ };`,la={postgres:null,neon:{importLine:'import { Client } from "@neondatabase/serverless";',open:$r},supabase:{importLine:'import postgres from "postgres";',open:` const sql = postgres(connectionString, { prepare: false });
853
853
  return {
854
854
  query: async (text) => ({ rows: await sql.unsafe(text) }),
855
855
  end: () => sql.end()
856
- };`}};async function sa(e){let t=ia[e.databaseProvider];if(!t)return;let r=Xn(e.projectDir,"packages/database/src/db-verify.ts"),n=await Jn(r,"utf-8");if(!n.includes(qn)||!n.includes($r))throw new Error("generateDbDriver: boilerplate packages/database/src/db-verify.ts is missing the node-postgres verifier anchors (the import line or the openVerifyClient body); the boilerplate drifted.");await c(r,n.replace(qn,t.importLine).replace($r,t.open))}import{join as Qn}from"path";async function ei(e){e.cacheProvider==="upstash"&&(await oa(e),await aa(e))}async function oa(e){await c(Qn(e.projectDir,"packages/runtime/src/redis.ts"),`import { Redis } from "@upstash/redis";
856
+ };`}};async function pa(e){let t=la[e.databaseProvider];if(!t)return;let r=Xn(e.projectDir,"packages/database/src/db-verify.ts"),n=await Jn(r,"utf-8");if(!n.includes(qn)||!n.includes($r))throw new Error("generateDbDriver: boilerplate packages/database/src/db-verify.ts is missing the node-postgres verifier anchors (the import line or the openVerifyClient body); the boilerplate drifted.");await c(r,n.replace(qn,t.importLine).replace($r,t.open))}import{join as Qn}from"path";async function ei(e){e.cacheProvider==="upstash"&&(await da(e),await ua(e))}async function da(e){await c(Qn(e.projectDir,"packages/runtime/src/redis.ts"),`import { Redis } from "@upstash/redis";
857
857
  import type { Store } from "hono-rate-limiter";
858
858
  import { env } from "./env";
859
859
 
@@ -1023,7 +1023,7 @@ export function createLimiterStore(): Store {
1023
1023
 
1024
1024
  /** No persistent connection to close with Upstash REST. */
1025
1025
  export async function closeRedis(): Promise<void> {}
1026
- `)}async function aa(e){await c(Qn(e.projectDir,"packages/runtime/src/mutex.ts"),`import { Lock } from "@upstash/lock";
1026
+ `)}async function ua(e){await c(Qn(e.projectDir,"packages/runtime/src/mutex.ts"),`import { Lock } from "@upstash/lock";
1027
1027
  import { redis } from "./redis";
1028
1028
 
1029
1029
  export class MutexTimeoutError extends Error {
@@ -1101,23 +1101,23 @@ export async function withMutex<T>(
1101
1101
  });
1102
1102
  }
1103
1103
  }
1104
- `)}import{readFile as ca}from"fs/promises";import{join as la}from"path";var ti=" REDIS_URL: z.string(),",pa=` UPSTASH_REDIS_REST_URL: z.string(),
1105
- UPSTASH_REDIS_REST_TOKEN: z.string(),`;async function ri(e){let t=la(e.projectDir,"packages/runtime/src/env.ts"),r=await ca(t,"utf-8");if(!r.includes(ti))throw new Error("generateEnvSchema: boilerplate packages/runtime/src/env.ts is missing the REDIS_URL cache binding anchor; the boilerplate drifted.");let n=e.cacheProvider==="upstash"?r.replace(ti,pa):r;await c(t,n)}import{readFile as ci}from"fs/promises";import{join as V}from"path";import{readFile as ii,rm as ga}from"fs/promises";import{join as lt}from"path";import{readFile as Rt,rm as da}from"fs/promises";import{join as It}from"path";function ua(e){return new RegExp(`^[ \\t]*(?:\\/\\/|\\{\\/\\*|\\*) gsaas:${e}-start(?: \\*\\/\\})?[ \\t]*\\r?\\n[\\s\\S]*?^[ \\t]*(?:\\/\\/|\\{\\/\\*|\\*) gsaas:${e}-end(?: \\*\\/\\})?[ \\t]*\\r?\\n`,"gm")}function Y(e,t,r,n){let i=ua(r);if(e.match(i)===null)throw new Error(`${n}: expected gsaas ${r} markers in ${t}, but found none (boilerplate drift).`);let o=e.replace(i,"");if(o.includes(`gsaas:${r}-start`)||o.includes(`gsaas:${r}-end`))throw new Error(`${n}: an unbalanced gsaas ${r} marker is left in ${t} (boilerplate drift).`);return o.replace(/\n{3,}/g,`
1104
+ `)}import{readFile as ma}from"fs/promises";import{join as ha}from"path";var ti=" REDIS_URL: z.string(),",fa=` UPSTASH_REDIS_REST_URL: z.string(),
1105
+ UPSTASH_REDIS_REST_TOKEN: z.string(),`;async function ri(e){let t=ha(e.projectDir,"packages/runtime/src/env.ts"),r=await ma(t,"utf-8");if(!r.includes(ti))throw new Error("generateEnvSchema: boilerplate packages/runtime/src/env.ts is missing the REDIS_URL cache binding anchor; the boilerplate drifted.");let n=e.cacheProvider==="upstash"?r.replace(ti,fa):r;await c(t,n)}import{readFile as ci}from"fs/promises";import{join as V}from"path";import{readFile as ii,rm as ka}from"fs/promises";import{join as lt}from"path";import{readFile as Rt,rm as ga}from"fs/promises";import{join as It}from"path";function ya(e){return new RegExp(`^[ \\t]*(?:\\/\\/|\\{\\/\\*|\\*) gsaas:${e}-start(?: \\*\\/\\})?[ \\t]*\\r?\\n[\\s\\S]*?^[ \\t]*(?:\\/\\/|\\{\\/\\*|\\*) gsaas:${e}-end(?: \\*\\/\\})?[ \\t]*\\r?\\n`,"gm")}function Y(e,t,r,n){let i=ya(r);if(e.match(i)===null)throw new Error(`${n}: expected gsaas ${r} markers in ${t}, but found none (boilerplate drift).`);let o=e.replace(i,"");if(o.includes(`gsaas:${r}-start`)||o.includes(`gsaas:${r}-end`))throw new Error(`${n}: an unbalanced gsaas ${r} marker is left in ${t} (boilerplate drift).`);return o.replace(/\n{3,}/g,`
1106
1106
 
1107
- `).replace(/,(\r?\n[ \t]*[\]})])/g,"$1")}async function E(e,t,r,n,i){let o=await Rt(e,"utf-8"),s=o.indexOf(t);if(s===-1)throw new Error(`${i}: expected to find the ${n} seam, but it was missing (boilerplate drift).`);if(o.indexOf(t,s+t.length)!==-1)throw new Error(`${i}: the ${n} seam appears more than once (boilerplate drift).`);await c(e,o.slice(0,s)+r+o.slice(s+t.length))}async function Ee(e,t,r,n){let i=/\n([\t ]+)"/.exec(await Rt(e,"utf-8"))?.[1];if(i!==r){let o=s=>s===" "?"tab":`${s.length}-space`;throw new Error(`${n}: expected ${e} to be ${o(r)}-indented, but it is ${i===void 0?"not indented":o(i)}-indented (boilerplate drift). Re-serializing it with the wrong indent would reformat the whole file.`)}await c(e,`${JSON.stringify(t,null,r)}
1108
- `)}async function ma(e,t,r){let n=It(e,"ai.mdx"),o=(await Rt(n,"utf-8")).split(`
1107
+ `).replace(/,(\r?\n[ \t]*[\]})])/g,"$1")}async function E(e,t,r,n,i){let o=await Rt(e,"utf-8"),s=o.indexOf(t);if(s===-1)throw new Error(`${i}: expected to find the ${n} seam, but it was missing (boilerplate drift).`);if(o.includes(t,s+t.length))throw new Error(`${i}: the ${n} seam appears more than once (boilerplate drift).`);await c(e,o.slice(0,s)+r+o.slice(s+t.length))}async function Se(e,t,r,n){let i=/\n([\t ]+)"/.exec(await Rt(e,"utf-8"))?.[1];if(i!==r){let o=s=>s===" "?"tab":`${s.length}-space`;throw new Error(`${n}: expected ${e} to be ${o(r)}-indented, but it is ${i===void 0?"not indented":o(i)}-indented (boilerplate drift). Re-serializing it with the wrong indent would reformat the whole file.`)}await c(e,`${JSON.stringify(t,null,r)}
1108
+ `)}async function ba(e,t,r){let n=It(e,"ai.mdx"),o=(await Rt(n,"utf-8")).split(`
1109
1109
  `).find(s=>s.includes(`href="${t}"`));if(o===void 0)throw new Error(`${r}: expected the ai.mdx card linking to ${t} (boilerplate drift).`);await E(n,`${o}
1110
- `,"",`ai.mdx ${t} card`,r)}async function ha(e,t,r){let n=It(e,"ai.mdx"),i=`| **${t}** |`,s=(await Rt(n,"utf-8")).split(`
1110
+ `,"",`ai.mdx ${t} card`,r)}async function wa(e,t,r){let n=It(e,"ai.mdx"),i=`| **${t}** |`,s=(await Rt(n,"utf-8")).split(`
1111
1111
  `).find(a=>a.startsWith(i));if(s===void 0)throw new Error(`${r}: expected the ai.mdx "${t}" hub-table row (boilerplate drift).`);await E(n,`${s}
1112
- `,"",`ai.mdx ${t} hub-table row`,r)}async function ni(e,t,r,n,i){let o=It(e,"docs/(platform)");await da(It(o,t),{recursive:!0}),await E(It(o,"meta.json"),` "${t}",
1113
- `,"",`docs meta.json ${t} nav entry`,n);for(let s of r)await ma(o,s,n);i!==void 0&&await ha(o,i,n)}function fa(e){let t="",r=0;for(;r<e.length;){let n=e[r],i=e[r+1];if(n==="/"&&i==="/"){for(;r<e.length&&e[r]!==`
1112
+ `,"",`ai.mdx ${t} hub-table row`,r)}async function ni(e,t,r,n,i){let o=It(e,"docs/(platform)");await ga(It(o,t),{recursive:!0}),await E(It(o,"meta.json"),` "${t}",
1113
+ `,"",`docs meta.json ${t} nav entry`,n);for(let s of r)await ba(o,s,n);i!==void 0&&await wa(o,i,n)}function va(e){let t="",r=0;for(;r<e.length;){let n=e[r],i=e[r+1];if(n==="/"&&i==="/"){for(;r<e.length&&e[r]!==`
1114
1114
  `;)r++;continue}if(n==="/"&&i==="*"){for(r+=2;r<e.length&&!(e[r]==="*"&&e[r+1]==="/");)e[r]===`
1115
1115
  `&&(t+=`
1116
1116
  `),r++;r+=2;continue}if(n==='"'||n==="'"||n==="`"){let o=n;for(r++;r<e.length&&e[r]!==o;)e[r]==="\\"?r++:e[r]===`
1117
1117
  `&&(t+=`
1118
1118
  `),r++;r++;continue}t+=n,r++}return t}async function qt(e){let t=`import { config } from "@repo/config";
1119
- `,r=await Rt(e,"utf-8");if(!r.includes(t))return;let n=r.replace(t,""),i=fa(n);/\bconfig\b/.test(i)||await c(e,n)}var pt="stripMobileObservability",si=["apps/mobile/lib/observability.ts","apps/mobile/types/env.d.ts","apps/mobile/tests/settings-privacy-screen.test.tsx"],oi="apps/mobile/tests/observability.test.ts",ya="mobile-obs-any",ba=["apps/mobile/tests/settings-privacy-screen.test.tsx"],Jt={sentry:["@sentry/react-native"],posthog:["posthog-react-native"]},wa=`,
1120
- "@sentry/react-native/expo"`,va="|@sentry/react-native",ka=` * DUAL-PROVIDER, the way \`packages/observability\` is. This repo carries the Sentry and the PostHog
1119
+ `,r=await Rt(e,"utf-8");if(!r.includes(t))return;let n=r.replace(t,""),i=va(n);/\bconfig\b/.test(i)||await c(e,n)}var pt="stripMobileObservability",si=["apps/mobile/lib/observability.ts","apps/mobile/types/env.d.ts","apps/mobile/tests/settings-privacy-screen.test.tsx"],oi="apps/mobile/tests/observability.test.ts",Ea="mobile-obs-any",Sa=["apps/mobile/tests/settings-privacy-screen.test.tsx"],Jt={sentry:["@sentry/react-native"],posthog:["posthog-react-native"]},Pa=`,
1120
+ "@sentry/react-native/expo"`,Aa="|@sentry/react-native",Ia=` * DUAL-PROVIDER, the way \`packages/observability\` is. This repo carries the Sentry and the PostHog
1121
1121
  * halves at once so dev and the test suite exercise both. A generated project carries only the
1122
1122
  * providers its \`observability\` manifest option names: the CLI removes the other one's marked region
1123
1123
  * from this file, its SDK from \`apps/mobile/package.json\` and, for Sentry, its Expo config plugin
@@ -1128,7 +1128,7 @@ export async function withMutex<T>(
1128
1128
  * cross-provider \`{@link}\` and every paragraph about one provider's credentials sits INSIDE that
1129
1129
  * provider's own region, and what is left between them is provider-neutral - the {@link PROVIDERS}
1130
1130
  * list and the two exported entry points that walk it, which is what a project generated with
1131
- * \`observability: []\` keeps and starts nothing with.`,Ea='import { readPrivacySettings, type PrivacySettings } from "@/lib/privacy";',Sa='import type { PrivacySettings } from "@/lib/privacy";';function Pa(e){let t=e.map(n=>n==="sentry"?"Sentry":"PostHog").join(" and ");return`${e.length===0?` * Your project was generated with observability OFF, so this app received no reporting adapter
1131
+ * \`observability: []\` keeps and starts nothing with.`,Ra='import { readPrivacySettings, type PrivacySettings } from "@/lib/privacy";',Ta='import type { PrivacySettings } from "@/lib/privacy";';function _a(e){let t=e.map(n=>n==="sentry"?"Sentry":"PostHog").join(" and ");return`${e.length===0?` * Your project was generated with observability OFF, so this app received no reporting adapter
1132
1132
  * and no reporting SDK: {@link PROVIDERS} is empty, and both functions below are no-ops that load
1133
1133
  * nothing and send nothing.`:` * This app reports to ${t}. No other provider's start, SDK or Expo config plugin was
1134
1134
  * generated, so there is nothing here for Metro to fold away and nothing for pnpm to install.`}
@@ -1136,9 +1136,9 @@ export async function withMutex<T>(
1136
1136
  * To change providers, edit \`observability\` in .generatesaas/manifest.json and run
1137
1137
  * \`generatesaas update\`: re-shaping brings that provider's half of this file, its SDK and its env
1138
1138
  * key back. Pasting the other provider's credential into \`config.observability\` on its own cannot -
1139
- * the start it would need is not here.`}async function ai(e){if(!e.mobile)return;let t=e.projectDir,r=["sentry","posthog"].filter(o=>!e.observability.includes(o));e.observability.length===0&&await ga(lt(t,oi),{force:!0});let n=e.observability.length===0?si:[...si,oi];for(let o of r)for(let s of n){let a=lt(t,s);await c(a,Y(await ii(a,"utf-8"),s,`mobile-obs-${o}`,pt))}if(e.observability.length===0)for(let o of ba){let s=lt(t,o);await c(s,Y(await ii(s,"utf-8"),o,ya,pt))}r.includes("sentry")&&(await E(lt(t,"apps/mobile/app.config.ts"),wa,"","app.config.ts Sentry Expo plugin",pt),await E(lt(t,"apps/mobile/jest.config.js"),va,"","jest.config.js Sentry transform allowance",pt));let i=lt(t,"apps/mobile/lib/observability.ts");await E(i,ka,Pa(e.observability),"lib/observability.ts dual-provider note",pt),e.observability.length===0&&(await E(i,Ea,Sa,"lib/observability.ts privacy import",pt),await qt(i))}var Xt={"@upstash/redis":"^1.37.0","@upstash/lock":"^0.2.1","@neondatabase/serverless":"^1.0.1",postgres:"^3.4.7"};async function ae(e){let t=await ci(e,"utf-8");return JSON.parse(t)}async function ce(e,t){let r=/\n([\t ]+)"/.exec(await ci(e,"utf-8"))?.[1]??" ";await c(e,JSON.stringify(t,null,r)+`
1140
- `)}function ee(e,t){for(let r of t)delete e.dependencies?.[r],delete e.devDependencies?.[r]}function Aa(e){e.dependencies&&Object.keys(e.dependencies).length===0&&delete e.dependencies,e.devDependencies&&Object.keys(e.devDependencies).length===0&&delete e.devDependencies}function Tt(e,t,r,n=!1){let i=n?"devDependencies":"dependencies";e[i]||(e[i]={}),e[i][t]=r}async function li(e){await Ra(e),await Ta(e),await _a(e),await Na(e),await Ca(e),await Ma(e),await Ia(e)}async function Ia(e){if(!e.mobile){let t=V(e.projectDir,"packages/auth/package.json"),r=await ae(t);ee(r,["@better-auth/expo"]),await ce(t,r);let n=V(e.projectDir,"tooling/styles/package.json"),i=await ae(n);ee(i,["tsx"]),Aa(i),await ce(n,i)}if(e.mobile&&e.mobilePurchases!=="revenuecat"){let t=V(e.projectDir,"apps/mobile/package.json"),r=await ae(t);ee(r,["react-native-purchases","react-native-purchases-ui"]),await ce(t,r)}}async function Ra(e){let t=V(e.projectDir,"packages/api/package.json"),r=await ae(t);ee(r,["sharp","@types/sharp"]),e.cacheProvider==="upstash"&&ee(r,["ioredis"]),await ce(t,r)}async function Ta(e){let t=V(e.projectDir,"apps/web/package.json"),r=await ae(t);ee(r,["@upstash/ratelimit","@upstash/redis"]),await ce(t,r)}async function _a(e){let t=V(e.projectDir,"packages/runtime/package.json"),r=await ae(t);e.cacheProvider==="upstash"&&(ee(r,["ioredis","rate-limit-redis","redis-semaphore"]),Tt(r,"@upstash/redis",Xt["@upstash/redis"]),Tt(r,"@upstash/lock",Xt["@upstash/lock"])),await ce(t,r)}var jr={sentry:["@sentry/node","@sentry/browser","@sentry/electron"],posthog:["posthog-node","posthog-js"]},Oa=["@sentry/electron"],xa=[...jr.sentry,...jr.posthog],Da=[...Jt.sentry,...Jt.posthog];async function Na(e){let t=V(e.projectDir,"packages/observability/package.json"),r=await ae(t),n=new Set(e.observability.flatMap(a=>jr[a]));if(!e.desktop)for(let a of Oa)n.delete(a);if(ee(r,xa.filter(a=>!n.has(a))),await ce(t,r),!e.mobile)return;let i=V(e.projectDir,"apps/mobile/package.json"),o=await ae(i),s=new Set(e.observability.flatMap(a=>Jt[a]));ee(o,Da.filter(a=>!s.has(a))),await ce(i,o)}async function Ca(e){let t=V(e.projectDir,"packages/database/package.json"),r=await ae(t);e.databaseProvider==="neon"?(ee(r,["pg","@types/pg"]),Tt(r,"@neondatabase/serverless",Xt["@neondatabase/serverless"])):e.databaseProvider==="supabase"&&(ee(r,["pg","@types/pg"]),Tt(r,"postgres",Xt.postgres)),await ce(t,r)}var La=["app/.well-known/oauth-authorization-server/[[...path]]/route.ts","app/.well-known/oauth-protected-resource/[[...path]]/route.ts"];async function $a(e){let t=await ae(e),r=t.dependencies?.["@repo/api"];r&&(delete t.dependencies?.["@repo/api"],Tt(t,"@repo/api",r,!0),await ce(e,t))}var ja=["instrumentation.ts","tests/instrumentation.test.ts"];async function Ma(e){if(e.architecture!=="separate")return;let t=V(e.projectDir,"apps/web");await at(V(t,"app/api/[[...rest]]/route.ts"),t);for(let r of La)await at(V(t,r),t);for(let r of ja)await at(V(t,r),t);await $a(V(t,"package.json"))}import{readFile as Ua}from"fs/promises";import{join as Fa}from"path";var Va=["base.json","node.json","next.json"],pi="GenerateSaaS ";async function di(e){if(!e.demo)for(let t of Va){let r=Fa(e.projectDir,"tooling/typescript",t),n;try{n=await Ua(r,"utf-8")}catch{continue}let i=JSON.parse(n);typeof i.display!="string"||!i.display.startsWith(pi)||(i.display=i.display.slice(pi.length),await c(r,JSON.stringify(i,null," ")+`
1141
- `))}}import{readFile as mi,rm as Ba}from"fs/promises";import{join as _t}from"path";async function hi(e){e.cacheProvider==="upstash"&&(await Promise.all([ui(_t(e.projectDir,"packages/runtime/tests/setup.ts")),ui(_t(e.projectDir,"packages/mail/tests/setup.ts")),Ka(e.projectDir),Ba(_t(e.projectDir,"packages/runtime/tests/redis.test.ts"),{force:!0})]),await Ga(e.projectDir))}async function Ga(e){await c(_t(e,"packages/runtime/tests/redis.test.ts"),`import { beforeEach, describe, expect, it, vi } from "vitest";
1139
+ * the start it would need is not here.`}async function ai(e){if(!e.mobile)return;let t=e.projectDir,r=["sentry","posthog"].filter(o=>!e.observability.includes(o));e.observability.length===0&&await ka(lt(t,oi),{force:!0});let n=e.observability.length===0?si:[...si,oi];for(let o of r)for(let s of n){let a=lt(t,s);await c(a,Y(await ii(a,"utf-8"),s,`mobile-obs-${o}`,pt))}if(e.observability.length===0)for(let o of Sa){let s=lt(t,o);await c(s,Y(await ii(s,"utf-8"),o,Ea,pt))}r.includes("sentry")&&(await E(lt(t,"apps/mobile/app.config.ts"),Pa,"","app.config.ts Sentry Expo plugin",pt),await E(lt(t,"apps/mobile/jest.config.js"),Aa,"","jest.config.js Sentry transform allowance",pt));let i=lt(t,"apps/mobile/lib/observability.ts");await E(i,Ia,_a(e.observability),"lib/observability.ts dual-provider note",pt),e.observability.length===0&&(await E(i,Ra,Ta,"lib/observability.ts privacy import",pt),await qt(i))}var Xt={"@upstash/redis":"^1.37.0","@upstash/lock":"^0.2.1","@neondatabase/serverless":"^1.0.1",postgres:"^3.4.7"};async function ae(e){let t=await ci(e,"utf-8");return JSON.parse(t)}async function ce(e,t){let r=/\n([\t ]+)"/.exec(await ci(e,"utf-8"))?.[1]??" ";await c(e,`${JSON.stringify(t,null,r)}
1140
+ `)}function ee(e,t){for(let r of t)delete e.dependencies?.[r],delete e.devDependencies?.[r]}function Oa(e){e.dependencies&&Object.keys(e.dependencies).length===0&&delete e.dependencies,e.devDependencies&&Object.keys(e.devDependencies).length===0&&delete e.devDependencies}function Tt(e,t,r,n=!1){let i=n?"devDependencies":"dependencies";e[i]||(e[i]={}),e[i][t]=r}async function li(e){await Da(e),await Na(e),await Ca(e),await Ua(e),await Ma(e),await Ga(e),await xa(e)}async function xa(e){if(!e.mobile){let t=V(e.projectDir,"packages/auth/package.json"),r=await ae(t);ee(r,["@better-auth/expo"]),await ce(t,r);let n=V(e.projectDir,"tooling/styles/package.json"),i=await ae(n);ee(i,["tsx"]),Oa(i),await ce(n,i)}if(e.mobile&&e.mobilePurchases!=="revenuecat"){let t=V(e.projectDir,"apps/mobile/package.json"),r=await ae(t);ee(r,["react-native-purchases","react-native-purchases-ui"]),await ce(t,r)}}async function Da(e){let t=V(e.projectDir,"packages/api/package.json"),r=await ae(t);ee(r,["sharp","@types/sharp"]),e.cacheProvider==="upstash"&&ee(r,["ioredis"]),await ce(t,r)}async function Na(e){let t=V(e.projectDir,"apps/web/package.json"),r=await ae(t);ee(r,["@upstash/ratelimit","@upstash/redis"]),await ce(t,r)}async function Ca(e){let t=V(e.projectDir,"packages/runtime/package.json"),r=await ae(t);e.cacheProvider==="upstash"&&(ee(r,["ioredis","rate-limit-redis","redis-semaphore"]),Tt(r,"@upstash/redis",Xt["@upstash/redis"]),Tt(r,"@upstash/lock",Xt["@upstash/lock"])),await ce(t,r)}var jr={sentry:["@sentry/node","@sentry/browser","@sentry/electron"],posthog:["posthog-node","posthog-js"]},La=["@sentry/electron"],$a=[...jr.sentry,...jr.posthog],ja=[...Jt.sentry,...Jt.posthog];async function Ua(e){let t=V(e.projectDir,"packages/observability/package.json"),r=await ae(t),n=new Set(e.observability.flatMap(a=>jr[a]));if(!e.desktop)for(let a of La)n.delete(a);if(ee(r,$a.filter(a=>!n.has(a))),await ce(t,r),!e.mobile)return;let i=V(e.projectDir,"apps/mobile/package.json"),o=await ae(i),s=new Set(e.observability.flatMap(a=>Jt[a]));ee(o,ja.filter(a=>!s.has(a))),await ce(i,o)}async function Ma(e){let t=V(e.projectDir,"packages/database/package.json"),r=await ae(t);e.databaseProvider==="neon"?(ee(r,["pg","@types/pg"]),Tt(r,"@neondatabase/serverless",Xt["@neondatabase/serverless"])):e.databaseProvider==="supabase"&&(ee(r,["pg","@types/pg"]),Tt(r,"postgres",Xt.postgres)),await ce(t,r)}var Fa=["app/.well-known/oauth-authorization-server/[[...path]]/route.ts","app/.well-known/oauth-protected-resource/[[...path]]/route.ts"];async function Va(e){let t=await ae(e),r=t.dependencies?.["@repo/api"];r&&(delete t.dependencies?.["@repo/api"],Tt(t,"@repo/api",r,!0),await ce(e,t))}var Ba=["instrumentation.ts","tests/instrumentation.test.ts"];async function Ga(e){if(e.architecture!=="separate")return;let t=V(e.projectDir,"apps/web");await at(V(t,"app/api/[[...rest]]/route.ts"),t);for(let r of Fa)await at(V(t,r),t);for(let r of Ba)await at(V(t,r),t);await Va(V(t,"package.json"))}import{readFile as Ka}from"fs/promises";import{join as Ha}from"path";var Ya=["base.json","node.json","next.json"],pi="GenerateSaaS ";async function di(e){if(!e.demo)for(let t of Ya){let r=Ha(e.projectDir,"tooling/typescript",t),n;try{n=await Ka(r,"utf-8")}catch{continue}let i=JSON.parse(n);typeof i.display!="string"||!i.display.startsWith(pi)||(i.display=i.display.slice(pi.length),await c(r,`${JSON.stringify(i,null," ")}
1141
+ `))}}import{readFile as mi,rm as Wa}from"fs/promises";import{join as _t}from"path";async function hi(e){e.cacheProvider==="upstash"&&(await Promise.all([ui(_t(e.projectDir,"packages/runtime/tests/setup.ts")),ui(_t(e.projectDir,"packages/mail/tests/setup.ts")),qa(e.projectDir),Wa(_t(e.projectDir,"packages/runtime/tests/redis.test.ts"),{force:!0})]),await za(e.projectDir))}async function za(e){await c(_t(e,"packages/runtime/tests/redis.test.ts"),`import { beforeEach, describe, expect, it, vi } from "vitest";
1142
1142
 
1143
1143
  /**
1144
1144
  * Regression guards for the Upstash-backed cache layer in src/redis.ts.
@@ -1262,7 +1262,7 @@ describe("cacheScan", () => {
1262
1262
  });
1263
1263
  `)}async function ui(e){let t;try{t=await mi(e,"utf-8")}catch{throw new Error(`pruneCacheTests: expected ${e} for the Upstash cache swap (boilerplate drift).`)}let r=t.replace(/\tREDIS_URL:\s*"[^"]*",?\n/,` UPSTASH_REDIS_REST_URL: "https://test.upstash.io",
1264
1264
  UPSTASH_REDIS_REST_TOKEN: "test-token",
1265
- `);if(r===t){if(t.includes("UPSTASH_REDIS_REST_URL"))return;throw new Error(`pruneCacheTests: found no REDIS_URL default to swap in ${e} (boilerplate drift).`)}await c(e,r)}async function Ka(e){let t=_t(e,"packages/api/tests/setup.ts"),r;try{r=await mi(t,"utf-8")}catch{throw new Error(`pruneCacheTests: expected ${t} for the Upstash cache swap (boilerplate drift).`)}let n=r;if(n=n.replace(/\tREDIS_URL:\s*"[^"]*",?\n/g,` UPSTASH_REDIS_REST_URL: "https://test.upstash.io",
1265
+ `);if(r===t){if(t.includes("UPSTASH_REDIS_REST_URL"))return;throw new Error(`pruneCacheTests: found no REDIS_URL default to swap in ${e} (boilerplate drift).`)}await c(e,r)}async function qa(e){let t=_t(e,"packages/api/tests/setup.ts"),r;try{r=await mi(t,"utf-8")}catch{throw new Error(`pruneCacheTests: expected ${t} for the Upstash cache swap (boilerplate drift).`)}let n=r;if(n=n.replace(/\tREDIS_URL:\s*"[^"]*",?\n/g,` UPSTASH_REDIS_REST_URL: "https://test.upstash.io",
1266
1266
  UPSTASH_REDIS_REST_TOKEN: "test-token",
1267
1267
  `),n=n.replace(/vi\.mock\("ioredis"[\s\S]*?\n\}\);\n\n?/,""),n=n.replace(/vi\.mock\("rate-limit-redis"[\s\S]*?\n\}\);\n\n?/,""),n=n.replace(/\t\t\tREDIS_URL:\s*"[^"]*",?\n/,` UPSTASH_REDIS_REST_URL: "https://test.upstash.io",
1268
1268
  UPSTASH_REDIS_REST_TOKEN: "test-token",
@@ -1291,34 +1291,34 @@ vi.mock("@upstash/lock", () => {
1291
1291
  return { Lock };
1292
1292
  });
1293
1293
 
1294
- $1`),n===r){if(r.includes("UPSTASH_REDIS_REST_URL"))return;throw new Error(`pruneCacheTests: nothing to rewrite in ${t} for the Upstash swap (boilerplate drift).`)}for(let o of['vi.mock("ioredis"','vi.mock("rate-limit-redis"',"REDIS_URL:"])if(n.includes(o))throw new Error(`pruneCacheTests: ${t} still contains ${o} after the Upstash swap (boilerplate drift).`);await c(t,n)}import{readFile as Ha}from"fs/promises";var Ya=/^[ \t]*(?:\/\/|\{\/\*|\*) gsaas:[a-z0-9-]+-(?:start|end)(?: \*\/\})?[ \t]*\r?\n/gm,Wa=new Set([".ts",".tsx",".vue",".mjs",".js",".jsx",".md",".mdx"]),fi=32;function za(e){let t=e.lastIndexOf(".");return t>=0&&Wa.has(e.slice(t))}async function qa(e){let t=await Ha(e,"utf-8");if(!t.includes("gsaas:"))return;let r=t.replace(Ya,"");r!==t&&await c(e,r)}async function gi(e){let t=await ke(e.projectDir,e.projectDir,r=>r==="node_modules"||r.startsWith("node_modules/")||r===".git"||r.startsWith(".git/"),za);for(let r=0;r<t.length;r+=fi)await Promise.all(t.slice(r,r+fi).map(qa))}import{readdir as Qt,readFile as le,rm as S}from"fs/promises";import{join as p}from"path";import{readFile as bi,rm as _}from"fs/promises";import{join as A}from"path";import{readFile as Ot}from"fs/promises";import{join as xt}from"path";async function yi(e,t){let r=xt(e,"packages/api/src/routes/internal/index.ts");await c(r,Y(await Ot(r,"utf-8"),"internal router","runner",t)),await qt(r);let n=xt(e,"packages/api/src/ai/automation-runner.ts");await c(n,Y(await Ot(n,"utf-8"),"automation-runner.ts","runner",t));for(let s of["packages/api/src/index.ts","packages/api/src/routes/internal/ai/chat-router.ts","packages/api/src/routes/internal/ai/automations-router.ts","packages/api/src/ai/byok.ts","packages/api/tests/ai/automations.test.ts","packages/api/tests/ai/automations-runs-route.test.ts","packages/api/tests/routes/ai.test.ts","packages/api/tests/ai/summarize-cap.test.ts"]){let a=xt(e,s);await c(a,Y(await Ot(a,"utf-8"),s,"runner",t))}let i=xt(e,"packages/api/src/ai/settings-store.ts");await c(i,Y(await Ot(i,"utf-8"),"settings-store.ts","runner",t));let o=xt(e,"packages/api/tests/ai/settings-store.test.ts");await c(o,Y(await Ot(o,"utf-8"),"settings-store.test.ts","runner",t))}async function Mr(e){if(e.runner)return;let t=e.projectDir,r="stripRunner";await _(A(t,"packages/api/src/relay"),{recursive:!0}),await _(A(t,"packages/api/src/runner"),{recursive:!0}),await _(A(t,"packages/api/src/ai/runner-model.ts")),await _(A(t,"packages/api/src/ai/runner-routing.ts")),await _(A(t,"packages/api/tests/relay"),{recursive:!0}),await _(A(t,"packages/api/tests/runner"),{recursive:!0}),await _(A(t,"packages/api/src/routes/internal/runner.ts")),await _(A(t,"packages/api/src/routes/internal/runner-transport.ts")),await _(A(t,"packages/api/src/routes/internal/runner-limits.ts")),await _(A(t,"packages/api/tests/routes/runner.test.ts")),await _(A(t,"packages/api/tests/routes/runner-transport-harness.ts")),await _(A(t,"packages/api/tests/routes/runner-transport-connect.test.ts")),await _(A(t,"packages/api/tests/routes/runner-transport-events.test.ts")),await _(A(t,"packages/api/tests/ai/automation-coalesce.test.ts")),await _(A(t,"packages/api/tests/ai/automations-lazy-expiry.test.ts")),await _(A(t,"packages/api/tests/ai/runner-model.test.ts")),await _(A(t,"packages/api/tests/unit/runner-offline-routing.test.ts")),await _(A(t,"packages/api/tests/unit/runner-offline-interactive.test.ts")),await _(A(t,"packages/api/tests/unit/runner-unavailable-routing.test.ts")),await _(A(t,"packages/api/tests/unit/runner-unavailable-interactive.test.ts")),await _(A(t,"packages/api/tests/unit/runner-arm-harness.ts")),await _(A(t,"packages/api/tests/ai/runner-chat.test.ts")),await _(A(t,"packages/api/tests/helpers/runner-protocol.ts")),await _(A(t,"packages/api/tests/helpers/runner-frames.ts")),await _(A(t,"packages/api/tests/helpers/relay-runtime-mock.ts"));let n=A(t,"packages/api/package.json"),i=JSON.parse(await bi(n,"utf-8"));if(!i.exports?.["./runner"])throw new Error(`${r}: expected packages/api/package.json to carry the ./runner export`);delete i.exports["./runner"],await Ee(n,i," ",r),await yi(t,r),await ni(t,"runner",["/runner"],r,"Runners"),await E(A(t,"docs/(platform)/ai.mdx"),"Runs on a paired [runner](/runner) CLI are never metered either - the user's own subscription executes them. ","","ai.mdx runner metering sentence",r),await E(A(t,"docs/(platform)/caching.mdx")," - see [per-runner request budgets](/runner/install#per-runner-request-budgets)","","caching.mdx runner budgets link",r);let o=A(t,"docs/(platform)/configuration.mdx"),s="| `runner.enabled` |",a=(await bi(o,"utf-8")).split(`
1294
+ $1`),n===r){if(r.includes("UPSTASH_REDIS_REST_URL"))return;throw new Error(`pruneCacheTests: nothing to rewrite in ${t} for the Upstash swap (boilerplate drift).`)}for(let o of['vi.mock("ioredis"','vi.mock("rate-limit-redis"',"REDIS_URL:"])if(n.includes(o))throw new Error(`pruneCacheTests: ${t} still contains ${o} after the Upstash swap (boilerplate drift).`);await c(t,n)}import{readFile as Ja}from"fs/promises";var Xa=/^[ \t]*(?:\/\/|\{\/\*|\*) gsaas:[a-z0-9-]+-(?:start|end)(?: \*\/\})?[ \t]*\r?\n/gm,Za=new Set([".ts",".tsx",".vue",".mjs",".js",".jsx",".md",".mdx"]),fi=32;function Qa(e){let t=e.lastIndexOf(".");return t>=0&&Za.has(e.slice(t))}async function ec(e){let t=await Ja(e,"utf-8");if(!t.includes("gsaas:"))return;let r=t.replace(Xa,"");r!==t&&await c(e,r)}async function gi(e){let t=await Ee(e.projectDir,e.projectDir,r=>r==="node_modules"||r.startsWith("node_modules/")||r===".git"||r.startsWith(".git/"),Qa);for(let r=0;r<t.length;r+=fi)await Promise.all(t.slice(r,r+fi).map(ec))}import{readdir as Qt,readFile as le,rm as S}from"fs/promises";import{join as p}from"path";import{readFile as bi,rm as T}from"fs/promises";import{join as A}from"path";import{readFile as Ot}from"fs/promises";import{join as xt}from"path";async function yi(e,t){let r=xt(e,"packages/api/src/routes/internal/index.ts");await c(r,Y(await Ot(r,"utf-8"),"internal router","runner",t)),await qt(r);let n=xt(e,"packages/api/src/ai/automation-runner.ts");await c(n,Y(await Ot(n,"utf-8"),"automation-runner.ts","runner",t));for(let s of["packages/api/src/index.ts","packages/api/src/routes/internal/ai/chat-router.ts","packages/api/src/routes/internal/ai/automations-router.ts","packages/api/src/ai/byok.ts","packages/api/tests/ai/automations.test.ts","packages/api/tests/ai/automations-runs-route.test.ts","packages/api/tests/routes/ai.test.ts","packages/api/tests/ai/summarize-cap.test.ts"]){let a=xt(e,s);await c(a,Y(await Ot(a,"utf-8"),s,"runner",t))}let i=xt(e,"packages/api/src/ai/settings-store.ts");await c(i,Y(await Ot(i,"utf-8"),"settings-store.ts","runner",t));let o=xt(e,"packages/api/tests/ai/settings-store.test.ts");await c(o,Y(await Ot(o,"utf-8"),"settings-store.test.ts","runner",t))}async function Ur(e){if(e.runner)return;let t=e.projectDir,r="stripRunner";await T(A(t,"packages/api/src/relay"),{recursive:!0}),await T(A(t,"packages/api/src/runner"),{recursive:!0}),await T(A(t,"packages/api/src/ai/runner-model.ts")),await T(A(t,"packages/api/src/ai/runner-routing.ts")),await T(A(t,"packages/api/tests/relay"),{recursive:!0}),await T(A(t,"packages/api/tests/runner"),{recursive:!0}),await T(A(t,"packages/api/src/routes/internal/runner.ts")),await T(A(t,"packages/api/src/routes/internal/runner-transport.ts")),await T(A(t,"packages/api/src/routes/internal/runner-limits.ts")),await T(A(t,"packages/api/tests/routes/runner.test.ts")),await T(A(t,"packages/api/tests/routes/runner-transport-harness.ts")),await T(A(t,"packages/api/tests/routes/runner-transport-connect.test.ts")),await T(A(t,"packages/api/tests/routes/runner-transport-events.test.ts")),await T(A(t,"packages/api/tests/ai/automation-coalesce.test.ts")),await T(A(t,"packages/api/tests/ai/automations-lazy-expiry.test.ts")),await T(A(t,"packages/api/tests/ai/runner-model.test.ts")),await T(A(t,"packages/api/tests/unit/runner-offline-routing.test.ts")),await T(A(t,"packages/api/tests/unit/runner-offline-interactive.test.ts")),await T(A(t,"packages/api/tests/unit/runner-unavailable-routing.test.ts")),await T(A(t,"packages/api/tests/unit/runner-unavailable-interactive.test.ts")),await T(A(t,"packages/api/tests/unit/runner-arm-harness.ts")),await T(A(t,"packages/api/tests/ai/runner-chat.test.ts")),await T(A(t,"packages/api/tests/helpers/runner-protocol.ts")),await T(A(t,"packages/api/tests/helpers/runner-frames.ts")),await T(A(t,"packages/api/tests/helpers/relay-runtime-mock.ts"));let n=A(t,"packages/api/package.json"),i=JSON.parse(await bi(n,"utf-8"));if(!i.exports?.["./runner"])throw new Error(`${r}: expected packages/api/package.json to carry the ./runner export`);delete i.exports["./runner"],await Se(n,i," ",r),await yi(t,r),await ni(t,"runner",["/runner"],r,"Runners"),await E(A(t,"docs/(platform)/ai.mdx"),"Runs on a paired [runner](/runner) CLI are never metered either - the user's own subscription executes them. ","","ai.mdx runner metering sentence",r),await E(A(t,"docs/(platform)/caching.mdx")," - see [per-runner request budgets](/runner/install#per-runner-request-budgets)","","caching.mdx runner budgets link",r);let o=A(t,"docs/(platform)/configuration.mdx"),s="| `runner.enabled` |",a=(await bi(o,"utf-8")).split(`
1295
1295
  `).find(d=>d.startsWith(s));if(a===void 0)throw new Error(`${r}: expected the configuration.mdx \`runner.enabled\` row (boilerplate drift).`);await E(o,`${a}
1296
- `,"","configuration.mdx runner config-table row",r)}var Ja=new Set(["ci.yml","desktop-release.yml","mobile-release.yml"]),Xa=["apps/web/app/.well-known/apple-app-site-association/route.ts","apps/web/app/.well-known/assetlinks.json/route.ts","apps/web/tests/routes/apple-app-site-association.test.ts","apps/web/tests/routes/assetlinks.test.ts"],Za=["packages/auth/src/config.ts","packages/api/src/routes/internal/index.ts","packages/api/src/index.ts"],Qa=["packages/api/src/routes/internal/index.ts","packages/api/src/routes/inngest.ts","packages/notifications/src/index.ts","packages/config/src/cache.ts"],ec=["packages/notifications/src/push","packages/notifications/tests/push","packages/api/src/routes/internal/push.ts","packages/api/tests/routes/push.test.ts","packages/api/src/functions/notifications/push-dispatch.ts","packages/api/src/functions/notifications/push-receipts.ts","packages/api/src/functions/notifications/push-sink.ts","packages/api/tests/functions/push-dispatch.test.ts","packages/api/tests/functions/push-receipts.test.ts","packages/api/tests/functions/push-sink.test.ts","packages/api/tests/unit/push-store.test.ts","packages/api/tests/routes/push-registry.test.ts","packages/config/tests/push-cache-keys.test.ts"],tc=["packages/payments/src/store","packages/payments/tests/store","packages/payments/tests/helpers/clock.ts","packages/payments/tests/lib/store-claim-ids.test.ts","packages/api/src/routes/internal/webhooks/revenuecat.ts","packages/api/tests/routes/revenuecat-webhook.test.ts","packages/api/tests/routes/revenuecat-webhook-limiter.test.ts","packages/api/tests/routes/revenuecat-interleavings.test.ts","packages/api/src/routes/internal/billing-mobile.ts","packages/api/tests/routes/billing-mobile-sync.test.ts","packages/api/tests/routes/billing-mobile-mount.test.ts","packages/api/src/functions/billing/revenuecat-reconcile.ts","packages/api/src/functions/billing/revenuecat-reconcile-entity.ts","packages/api/tests/functions/revenuecat-reconcile.test.ts"],rc=["packages/api/src/routes/internal/index.ts","packages/api/src/routes/inngest.ts","packages/api/src/index.ts","packages/payments/src/index.ts","packages/config/src/cache.ts"],nc=["apps/mobile/lib/purchases","apps/mobile/app/(app)/settings/billing/paywall.tsx","apps/mobile/e2e/flows/billing-paywall.yaml","apps/mobile/e2e/flows/billing-purchase.yaml","apps/mobile/e2e/flows/billing-restore.yaml"],ic=[{dir:"apps/mobile/components/billing",prefixes:["paywall","credit-packs","store-"]},{dir:"apps/mobile/tests",prefixes:["purchases-"]}],sc=["apps/mobile/app.config.ts","apps/mobile/app/_layout.tsx","apps/mobile/app/delete-account.tsx","apps/mobile/app/(app)/settings/billing/index.tsx","apps/mobile/components/home/plan-cards.tsx","apps/mobile/lib/api-client.ts","apps/mobile/lib/auth/sign-out.ts","apps/mobile/types/env.d.ts","apps/mobile/tests/api-client.test.ts","apps/mobile/tests/feature-seams.test.ts","apps/mobile/tests/root-layout.test.tsx","apps/mobile/tests/route-manifest.test.ts","apps/mobile/tests/sign-out.test.ts"],oc=[","," {",' file: "billing-paywall.yaml",',' tags: ["purchases"],',' title: "The paywall renders sandbox offerings"'," },"," {",' file: "billing-purchase.yaml",',' tags: ["purchases"],',' title: "A sandbox purchase updates the plan card through the sync route"'," },",' { file: "billing-restore.yaml", tags: ["purchases"], title: "Restore purchases" }',""].join(`
1297
- `),ac=[["## Billing (store purchases)","","#### Paywall (`billing-paywall.yaml`)","","| `testID` | Element | Flow |","| --- | --- | --- |","| `settings-paywall-screen` | The paywall route's screen root | `billing-paywall.yaml` |","| `billing-paywall-loading` | The offering read's skeleton | `billing-paywall.yaml` |","| `billing-paywall-status-error` | The offering read failed | `billing-paywall.yaml` |","| `billing-paywall-status-retry` | Retry the offering read | `billing-paywall.yaml` |","| `billing-paywall-list` | The list of purchasable packages | `billing-paywall.yaml` |","| `billing-paywall-row-<productId>` | One package row, keyed by store product id | `billing-paywall.yaml` |","| `billing-paywall-row-<productId>-action` | That row's buy control | `billing-purchase.yaml` |","| `billing-paywall-restore` | Restore purchases, from the paywall | `billing-restore.yaml` |","",""].join(`
1296
+ `,"","configuration.mdx runner config-table row",r)}var tc=new Set(["ci.yml","desktop-release.yml","mobile-release.yml"]),rc=["apps/web/app/.well-known/apple-app-site-association/route.ts","apps/web/app/.well-known/assetlinks.json/route.ts","apps/web/tests/routes/apple-app-site-association.test.ts","apps/web/tests/routes/assetlinks.test.ts"],nc=["packages/auth/src/config.ts","packages/api/src/routes/internal/index.ts","packages/api/src/index.ts"],ic=["packages/api/src/routes/internal/index.ts","packages/api/src/routes/inngest.ts","packages/notifications/src/index.ts","packages/config/src/cache.ts"],sc=["packages/notifications/src/push","packages/notifications/tests/push","packages/api/src/routes/internal/push.ts","packages/api/tests/routes/push.test.ts","packages/api/src/functions/notifications/push-dispatch.ts","packages/api/src/functions/notifications/push-receipts.ts","packages/api/src/functions/notifications/push-sink.ts","packages/api/tests/functions/push-dispatch.test.ts","packages/api/tests/functions/push-receipts.test.ts","packages/api/tests/functions/push-sink.test.ts","packages/api/tests/unit/push-store.test.ts","packages/api/tests/routes/push-registry.test.ts","packages/config/tests/push-cache-keys.test.ts"],oc=["packages/payments/src/store","packages/payments/tests/store","packages/payments/tests/helpers/clock.ts","packages/payments/tests/lib/store-claim-ids.test.ts","packages/api/src/routes/internal/webhooks/revenuecat.ts","packages/api/tests/routes/revenuecat-webhook.test.ts","packages/api/tests/routes/revenuecat-webhook-limiter.test.ts","packages/api/tests/routes/revenuecat-interleavings.test.ts","packages/api/src/routes/internal/billing-mobile.ts","packages/api/tests/routes/billing-mobile-sync.test.ts","packages/api/tests/routes/billing-mobile-mount.test.ts","packages/api/src/functions/billing/revenuecat-reconcile.ts","packages/api/src/functions/billing/revenuecat-reconcile-entity.ts","packages/api/tests/functions/revenuecat-reconcile.test.ts"],ac=["packages/api/src/routes/internal/index.ts","packages/api/src/routes/inngest.ts","packages/api/src/index.ts","packages/payments/src/index.ts","packages/config/src/cache.ts"],cc=["apps/mobile/lib/purchases","apps/mobile/app/(app)/settings/billing/paywall.tsx","apps/mobile/e2e/flows/billing-paywall.yaml","apps/mobile/e2e/flows/billing-purchase.yaml","apps/mobile/e2e/flows/billing-restore.yaml"],lc=[{dir:"apps/mobile/components/billing",prefixes:["paywall","credit-packs","store-"]},{dir:"apps/mobile/tests",prefixes:["purchases-"]}],pc=["apps/mobile/app.config.ts","apps/mobile/app/_layout.tsx","apps/mobile/app/delete-account.tsx","apps/mobile/app/(app)/settings/billing/index.tsx","apps/mobile/components/home/plan-cards.tsx","apps/mobile/lib/api-client.ts","apps/mobile/lib/auth/sign-out.ts","apps/mobile/types/env.d.ts","apps/mobile/tests/api-client.test.ts","apps/mobile/tests/feature-seams.test.ts","apps/mobile/tests/root-layout.test.tsx","apps/mobile/tests/route-manifest.test.ts","apps/mobile/tests/sign-out.test.ts"],dc=[","," {",' file: "billing-paywall.yaml",',' tags: ["purchases"],',' title: "The paywall renders sandbox offerings"'," },"," {",' file: "billing-purchase.yaml",',' tags: ["purchases"],',' title: "A sandbox purchase updates the plan card through the sync route"'," },",' { file: "billing-restore.yaml", tags: ["purchases"], title: "Restore purchases" }',""].join(`
1297
+ `),uc=[["## Billing (store purchases)","","#### Paywall (`billing-paywall.yaml`)","","| `testID` | Element | Flow |","| --- | --- | --- |","| `settings-paywall-screen` | The paywall route's screen root | `billing-paywall.yaml` |","| `billing-paywall-loading` | The offering read's skeleton | `billing-paywall.yaml` |","| `billing-paywall-status-error` | The offering read failed | `billing-paywall.yaml` |","| `billing-paywall-status-retry` | Retry the offering read | `billing-paywall.yaml` |","| `billing-paywall-list` | The list of purchasable packages | `billing-paywall.yaml` |","| `billing-paywall-row-<productId>` | One package row, keyed by store product id | `billing-paywall.yaml` |","| `billing-paywall-row-<productId>-action` | That row's buy control | `billing-purchase.yaml` |","| `billing-paywall-restore` | Restore purchases, from the paywall | `billing-restore.yaml` |","",""].join(`
1298
1298
  `),["#### Purchase and restore controls (`billing-purchase.yaml`, `billing-restore.yaml`)","","| `testID` | Element | Flow |","| --- | --- | --- |",'| `billing-upgrade` | The plan card\'s "See plans" link into the paywall | `billing-purchase.yaml` |',"| `billing-restore` | Restore purchases, on the billing page | `billing-restore.yaml` |",'| `billing-restore-lead` | The "Already subscribed?" lead beside it | `billing-restore.yaml` |',"| `billing-manage` | Manage subscription (Customer Center or the store page) | `billing-purchase.yaml` |","| `billing-external-link` | The external purchase link, when the disclosure sheet ships | `billing-purchase.yaml` |","| `billing-external-link-disclosure` | That link's disclosure sheet | `billing-purchase.yaml` |","",""].join(`
1299
1299
  `),["#### Credit packs (`billing-purchase.yaml`)","","| `testID` | Element | Flow |","| --- | --- | --- |","| `billing-credit-packs` | The credit packs card | `billing-purchase.yaml` |","| `billing-credit-packs-list` | The pack list | `billing-purchase.yaml` |","| `billing-credit-packs-row-<storeProductId>` | One pack row | `billing-purchase.yaml` |","| `billing-credit-packs-row-<storeProductId>-action` | That pack's buy control | `billing-purchase.yaml` |","| `billing-credit-packs-empty` | No pack is available on this plan | `billing-purchase.yaml` |","| `billing-credit-packs-unavailable` | The store listed none of the configured ids | `billing-purchase.yaml` |","",""].join(`
1300
- `)],cc=["apps/web/app/[locale]/(marketing)/download","apps/web/tests/routes/download-page.test.tsx"],lc=["cli","cli:clean","demo:bench","playground:regen","playground:test","playground:test:repo","playground:test:audit","playground:test:units","playground:test:e2e","playground:test:build","playground:test:mobile","check-types:scripts","ai:parity","runner:export","runner:verify","runner:publish"];async function wi(e){let t=p(e.projectDir,".github/workflows"),r=await Qt(t).catch(()=>[]);for(let n of r)Ja.has(n)||await S(p(t,n),{recursive:!0,force:!0})}async function pc(e,t){let r=p(e,"package.json"),n=JSON.parse(await le(r,"utf-8"));if(!n.scripts)return;let i=!1;for(let s of t)s in n.scripts&&(delete n.scripts[s],i=!0);if(!i)return;let o=/\n([\t ]+)"/.exec(await le(r,"utf-8"))?.[1]??" ";await c(r,JSON.stringify(n,null,o)+`
1301
- `)}async function vi(e){await pc(e.projectDir,[...lc])}async function ki(e){let t=p(e.projectDir,"package.json"),r=await le(t,"utf-8"),n=JSON.parse(r);!n.scripts||!("dev"in n.scripts)||(n.scripts.dev=e.architecture==="separate"?"turbo run dev --continue":"turbo run dev --continue --filter=!backend",await c(t,JSON.stringify(n,null," ")+`
1302
- `))}async function Ei(e){let t=p(e.projectDir,"package.json"),r=JSON.parse(await le(t,"utf-8")),n=r.scripts?.test;if(n!=="turbo run test --concurrency=4 && vitest run")throw new Error(`rewriteRootTestScript: expected the root test script to be "turbo run test --concurrency=4 && vitest run", got ${JSON.stringify(n)} (boilerplate drift).`);r.scripts.test="turbo run test --concurrency=4",await c(t,JSON.stringify(r,null," ")+`
1303
- `)}async function Si(e){e.docs||await S(p(e.projectDir,"apps/docs"),{recursive:!0})}async function Pi(e){let t=p(e.projectDir,"docs/(platform)/meta.json"),r=JSON.parse(await le(t,"utf-8"));if(r.title!=="GenerateSaaS")throw new Error(`stripUnusedDocsSilo: expected the feature-page group to be titled "GenerateSaaS", found ${JSON.stringify(r.title)} (boilerplate drift).`);r.title=e.appName,await Ee(t,r," ","stripUnusedDocsSilo"),e.desktop||await S(p(e.projectDir,"docs/desktop"),{recursive:!0,force:!0}),e.mobile||await S(p(e.projectDir,"docs/mobile"),{recursive:!0,force:!0}),await dc(e),await hc(e)}async function W(e,t,r,n){await c(e,Y(await le(e,"utf-8"),t,r,n))}async function dc(e){let t=e.projectDir,r="stripUnusedDocsSilo",n=p(t,"docs/(platform)/configuration.mdx"),i=e.desktop,o=e.desktop&&e.ai;e.desktop||(await E(n,"| Desktop app + device sign-in - see [desktop app](/desktop) |","| Desktop app + device sign-in |","configuration.mdx desktop config-table link",r),await W(n,"configuration.mdx desktop TRUSTED_ORIGINS callout","desktop-origins-docs",r),await E(p(t,"docs/cli/init.mdx"),"the [desktop app](/desktop), AI features","the desktop app, AI features","cli init.mdx desktop app link",r),await W(p(t,"docs/(platform)/payments/organizations.mdx"),"payments organizations.mdx desktop tenancy callout","desktop-tenancy-docs",r),await W(p(t,"docs/(platform)/projects.mdx"),"projects.mdx desktop scoping callout","desktop-projects-docs",r),await W(p(t,"docs/(platform)/client-architecture.mdx"),"client-architecture.mdx desktop card","desktop-architecture-docs",r),await W(p(t,"docs/(platform)/testing/e2e.mdx"),"testing/e2e.mdx desktop e2e callout","desktop-testing-docs",r),await E(p(t,"docs/(platform)/index.mdx"),` <Card href="/desktop" title="Desktop app" description="Cross-platform desktop app with device sign-in and AI agents." />
1304
- `,"","index.mdx desktop app card",r),await W(p(t,"docs/(platform)/ai.mdx"),"ai.mdx automation lanes row + section","desktop-lanes-docs",r)),i||(await W(n,"configuration.mdx desktop-AI paragraph","desktop-ai-docs",r),await E(p(t,"docs/(platform)/navigation.mdx"),"gates the desktop app's Chat and Automations, see [desktop AI](/desktop/ai) |","gates the desktop app's Chat and Automations |","navigation.mdx sidebar-flag agents-row link",r)),!o&&e.runner&&(await W(p(t,"docs/(platform)/runner/index.mdx"),"runner index.mdx desktop-setup section","desktop-setup-docs",r),await W(p(t,"docs/(platform)/runner/terminal.mdx"),"runner terminal.mdx desktop-panel section","desktop-terminal-docs",r))}async function Ai(e){if(e.desktop)return;await S(p(e.projectDir,"apps/desktop"),{recursive:!0});let t=p(e.projectDir,"packages/i18n/translations");for(let i of await Qt(t,{withFileTypes:!0}))i.isDirectory()&&await S(p(t,i.name,"desktop.json"),{force:!0});await S(p(e.projectDir,".github/workflows/desktop-release.yml"));for(let i of cc)await S(p(e.projectDir,i),{recursive:!0});await S(p(e.projectDir,"packages/utils/src/desktop-download.ts")),await S(p(e.projectDir,"packages/utils/tests/desktop-download.test.ts"));let r=p(e.projectDir,"packages/utils/package.json"),n=JSON.parse(await le(r,"utf-8"));if(!n.exports?.["./desktop-download"])throw new Error("stripDesktopApp: expected packages/utils/package.json to carry the ./desktop-download export");delete n.exports["./desktop-download"],await Ee(r,n," ","stripDesktopApp")}function uc(e){return e.desktop}async function Ii(e){uc(e)||await S(p(e.projectDir,"packages/agent-core"),{recursive:!0})}async function mc(e,t,r,n){let i=await Qt(e);for(let o of t){let s=i.filter(a=>a.startsWith(o));if(s.length===0)throw new Error(`${n}: expected ${r} to hold at least one ${o}* entry`);for(let a of s)await S(p(e,a),{recursive:!0})}}async function Zt(e,t,r,n){await c(e,Y(await le(e,"utf-8"),t,r,n))}async function hc(e){let t=e.projectDir,r="stripUnusedDocsSilo",n=e.mobile&&e.mobilePurchases==="revenuecat";e.mobile||(await E(p(t,"docs/(platform)/index.mdx"),` <Card href="/mobile" title="Mobile app" description="Cross-platform iOS and Android app with push, universal links, and store billing." />
1300
+ `)],mc=["apps/web/app/[locale]/(marketing)/download","apps/web/tests/routes/download-page.test.tsx"],hc=["cli","cli:clean","demo:bench","playground:regen","playground:test","playground:test:repo","playground:test:audit","playground:test:units","playground:test:e2e","playground:test:build","playground:test:mobile","check-types:scripts","ai:parity","runner:export","runner:verify","runner:publish"];async function wi(e){let t=p(e.projectDir,".github/workflows"),r=await Qt(t).catch(()=>[]);for(let n of r)tc.has(n)||await S(p(t,n),{recursive:!0,force:!0})}async function fc(e,t){let r=p(e,"package.json"),n=JSON.parse(await le(r,"utf-8"));if(!n.scripts)return;let i=!1;for(let s of t)s in n.scripts&&(delete n.scripts[s],i=!0);if(!i)return;let o=/\n([\t ]+)"/.exec(await le(r,"utf-8"))?.[1]??" ";await c(r,`${JSON.stringify(n,null,o)}
1301
+ `)}async function vi(e){await fc(e.projectDir,[...hc])}async function ki(e){let t=p(e.projectDir,"package.json"),r=await le(t,"utf-8"),n=JSON.parse(r);!n.scripts||!("dev"in n.scripts)||(n.scripts.dev=e.architecture==="separate"?"turbo run dev --continue":"turbo run dev --continue --filter=!backend",await c(t,`${JSON.stringify(n,null," ")}
1302
+ `))}async function Ei(e){let t=p(e.projectDir,"package.json"),r=JSON.parse(await le(t,"utf-8")),n=r.scripts?.test;if(n!=="turbo run test --concurrency=4 && vitest run")throw new Error(`rewriteRootTestScript: expected the root test script to be "turbo run test --concurrency=4 && vitest run", got ${JSON.stringify(n)} (boilerplate drift).`);r.scripts.test="turbo run test --concurrency=4",await c(t,`${JSON.stringify(r,null," ")}
1303
+ `)}async function Si(e){e.docs||await S(p(e.projectDir,"apps/docs"),{recursive:!0})}async function Pi(e){let t=p(e.projectDir,"docs/(platform)/meta.json"),r=JSON.parse(await le(t,"utf-8"));if(r.title!=="GenerateSaaS")throw new Error(`stripUnusedDocsSilo: expected the feature-page group to be titled "GenerateSaaS", found ${JSON.stringify(r.title)} (boilerplate drift).`);r.title=e.appName,await Se(t,r," ","stripUnusedDocsSilo"),e.desktop||await S(p(e.projectDir,"docs/desktop"),{recursive:!0,force:!0}),e.mobile||await S(p(e.projectDir,"docs/mobile"),{recursive:!0,force:!0}),await gc(e),await wc(e)}async function W(e,t,r,n){await c(e,Y(await le(e,"utf-8"),t,r,n))}async function gc(e){let t=e.projectDir,r="stripUnusedDocsSilo",n=p(t,"docs/(platform)/configuration.mdx"),i=e.desktop,o=e.desktop&&e.ai;e.desktop||(await E(n,"| Desktop app + device sign-in - see [desktop app](/desktop) |","| Desktop app + device sign-in |","configuration.mdx desktop config-table link",r),await W(n,"configuration.mdx desktop TRUSTED_ORIGINS callout","desktop-origins-docs",r),await E(p(t,"docs/cli/init.mdx"),"the [desktop app](/desktop), AI features","the desktop app, AI features","cli init.mdx desktop app link",r),await W(p(t,"docs/(platform)/payments/organizations.mdx"),"payments organizations.mdx desktop tenancy callout","desktop-tenancy-docs",r),await W(p(t,"docs/(platform)/projects.mdx"),"projects.mdx desktop scoping callout","desktop-projects-docs",r),await W(p(t,"docs/(platform)/client-architecture.mdx"),"client-architecture.mdx desktop card","desktop-architecture-docs",r),await W(p(t,"docs/(platform)/testing/e2e.mdx"),"testing/e2e.mdx desktop e2e callout","desktop-testing-docs",r),await E(p(t,"docs/(platform)/index.mdx"),` <Card href="/desktop" title="Desktop app" description="Cross-platform desktop app with device sign-in and AI agents." />
1304
+ `,"","index.mdx desktop app card",r),await W(p(t,"docs/(platform)/ai.mdx"),"ai.mdx automation lanes row + section","desktop-lanes-docs",r)),i||(await W(n,"configuration.mdx desktop-AI paragraph","desktop-ai-docs",r),await E(p(t,"docs/(platform)/navigation.mdx"),"gates the desktop app's Chat and Automations, see [desktop AI](/desktop/ai) |","gates the desktop app's Chat and Automations |","navigation.mdx sidebar-flag agents-row link",r)),!o&&e.runner&&(await W(p(t,"docs/(platform)/runner/index.mdx"),"runner index.mdx desktop-setup section","desktop-setup-docs",r),await W(p(t,"docs/(platform)/runner/terminal.mdx"),"runner terminal.mdx desktop-panel section","desktop-terminal-docs",r))}async function Ai(e){if(e.desktop)return;await S(p(e.projectDir,"apps/desktop"),{recursive:!0});let t=p(e.projectDir,"packages/i18n/translations");for(let i of await Qt(t,{withFileTypes:!0}))i.isDirectory()&&await S(p(t,i.name,"desktop.json"),{force:!0});await S(p(e.projectDir,".github/workflows/desktop-release.yml"));for(let i of mc)await S(p(e.projectDir,i),{recursive:!0});await S(p(e.projectDir,"packages/utils/src/desktop-download.ts")),await S(p(e.projectDir,"packages/utils/tests/desktop-download.test.ts"));let r=p(e.projectDir,"packages/utils/package.json"),n=JSON.parse(await le(r,"utf-8"));if(!n.exports?.["./desktop-download"])throw new Error("stripDesktopApp: expected packages/utils/package.json to carry the ./desktop-download export");delete n.exports["./desktop-download"],await Se(r,n," ","stripDesktopApp")}function yc(e){return e.desktop}async function Ii(e){yc(e)||await S(p(e.projectDir,"packages/agent-core"),{recursive:!0})}async function bc(e,t,r,n){let i=await Qt(e);for(let o of t){let s=i.filter(a=>a.startsWith(o));if(s.length===0)throw new Error(`${n}: expected ${r} to hold at least one ${o}* entry`);for(let a of s)await S(p(e,a),{recursive:!0})}}async function Zt(e,t,r,n){await c(e,Y(await le(e,"utf-8"),t,r,n))}async function wc(e){let t=e.projectDir,r="stripUnusedDocsSilo",n=e.mobile&&e.mobilePurchases==="revenuecat";e.mobile||(await E(p(t,"docs/(platform)/index.mdx"),` <Card href="/mobile" title="Mobile app" description="Cross-platform iOS and Android app with push, universal links, and store billing." />
1305
1305
  `,"","index.mdx mobile app card",r),await E(p(t,"docs/(platform)/configuration.mdx")," - see [mobile app](/mobile)","","configuration.mdx mobile config-table link",r),await E(p(t,"docs/(platform)/client-architecture.mdx"),` <Card href="/mobile" title="Mobile app">The Expo app - the third surface this client core serves.</Card>
1306
1306
  `,"","client-architecture.mdx mobile app card",r),await E(p(t,"docs/cli/init.mdx"),"The [mobile app](/mobile) (`apps/mobile`, built with Expo)","The mobile app (`apps/mobile`, built with Expo)","cli init.mdx mobile app link",r),await E(p(t,"docs/(platform)/notifications.mdx"),"- **On a phone too.** With the [mobile app](/mobile) shipped and `config.mobile.push.enabled` on, the same notification is delivered to the user's registered devices as a push - see [mobile notifications](/mobile/notifications).\n\n","","notifications.mdx mobile push bullet",r),await E(p(t,"docs/(platform)/authentication/social-oauth.mdx")," - the native flow adds `APPLE_APP_BUNDLE_IDENTIFIER`, see [mobile auth](/mobile/auth) |"," |","social-oauth.mdx Apple native-flow tail",r),await E(p(t,"docs/(platform)/authentication/two-factor-and-passkeys.mdx"),"- **On the [mobile app](/mobile/auth)**, passkeys use the platform's own biometrics and are claimed by the same `.well-known` association files. The app's biometric **App lock** is a separate device gate, never a second factor.\n\n","","two-factor-and-passkeys.mdx mobile passkeys bullet",r),await E(p(t,"docs/(platform)/project-structure.mdx"),"the web, desktop and mobile apps","the web and desktop apps","project-structure.mdx surface list",r),await W(p(t,"docs/(platform)/testing/e2e.mdx"),"testing e2e.mdx mobile Maestro section","mobile-testing-docs",r),await W(p(t,"docs/(platform)/environment-variables/index.mdx"),"environment-variables mobile section","mobile-env-docs",r)),n||(await E(p(t,"docs/(platform)/payments/meta.json"),', "mobile-billing"',"","payments meta.json mobile-billing entry",r),await E(p(t,"docs/(platform)/payments/index.mdx"),` <Card href="/payments/mobile-billing" title="Mobile store billing" description="In-app purchases through RevenueCat, additive to your web provider." />
1307
1307
  `,"","payments index.mdx mobile store billing card",r),await S(p(t,"docs/(platform)/payments/mobile-billing.mdx"))),e.mobile&&!n&&(await E(p(t,"docs/mobile/meta.json"),', "billing"',"","mobile meta.json billing entry",r),await E(p(t,"docs/mobile/index.mdx"),` <Card href="/mobile/billing" title="Billing" description="Store purchases through RevenueCat, and the web-billing shape." />
1308
- `,"","mobile index.mdx billing card",r),await W(p(t,"docs/mobile/index.mdx"),"mobile index.mdx store-purchases block","mobile-purchases-docs",r),await S(p(t,"docs/mobile/billing"),{recursive:!0,force:!0}))}async function Ri(e){if(e.mobile)return;await S(p(e.projectDir,"apps/mobile"),{recursive:!0});let t=p(e.projectDir,"packages/i18n/translations");for(let i of await Qt(t,{withFileTypes:!0}))i.isDirectory()&&await S(p(t,i.name,"mobile.json"),{force:!0});await S(p(e.projectDir,"packages/i18n/tests/mobile-notification-labels.test.ts")),await S(p(e.projectDir,"packages/i18n/tests/mobile-brand-literals.test.ts")),await S(p(e.projectDir,"packages/auth/tests/expo-plugin.test.ts")),await S(p(e.projectDir,"packages/auth/tests/expo-authorization-allowlist.test.ts")),await S(p(e.projectDir,"packages/auth/src/expo-authorization-allowlist.ts")),await S(p(e.projectDir,".github/workflows/mobile-release.yml")),await S(p(e.projectDir,"tooling/styles/scripts/build-mobile-css.ts"));let r=p(e.projectDir,"tooling/styles/package.json"),n=JSON.parse(await le(r,"utf-8"));if(!n.scripts?.["mobile-css"])throw new Error("stripMobileApp: expected tooling/styles/package.json to carry the mobile-css script");delete n.scripts["mobile-css"],Object.keys(n.scripts).length===0&&delete n.scripts,await Ee(r,n," ","stripMobileApp");for(let i of Xa)await at(p(e.projectDir,i),p(e.projectDir,"apps/web"));await S(p(e.projectDir,"packages/api/src/routes/internal/well-known.ts")),await S(p(e.projectDir,"packages/api/tests/routes/well-known-mobile.test.ts")),await S(p(e.projectDir,"packages/api/src/routes/internal/mobile-auth.ts")),await S(p(e.projectDir,"packages/api/tests/routes/mobile-auth.test.ts")),await S(p(e.projectDir,"apps/web/public/images/stores"),{recursive:!0});for(let i of Za)await Zt(p(e.projectDir,i),i,"mobile-auth","stripMobileApp");for(let i of Qa)await Zt(p(e.projectDir,i),i,"mobile-push","stripMobileApp");for(let i of ec)await S(p(e.projectDir,i),{recursive:!0})}async function Ti(e){if(e.mobile&&e.mobilePurchases==="revenuecat")return;for(let n of tc)await S(p(e.projectDir,n),{recursive:!0});let t=p(e.projectDir,"packages/payments/package.json"),r=JSON.parse(await le(t,"utf-8"));if(!r.sideEffects?.includes("./src/store/revenuecat/index.ts"))throw new Error("stripMobilePurchases: expected packages/payments/package.json to list the store lane in sideEffects");r.sideEffects=r.sideEffects.filter(n=>n!=="./src/store/revenuecat/index.ts"),await Ee(t,r," ","stripMobilePurchases");for(let n of rc)await Zt(p(e.projectDir,n),n,"mobile-purchases","stripMobilePurchases");if(e.mobile){for(let n of nc)await S(p(e.projectDir,n),{recursive:!0});for(let{dir:n,prefixes:i}of ic)await mc(p(e.projectDir,n),i,n,"stripMobilePurchases");for(let n of sc)await Zt(p(e.projectDir,n),n,"mobile-purchases","stripMobilePurchases");for(let n of ac)await E(p(e.projectDir,"apps/mobile/e2e/README.md"),n,"","e2e README purchases row block","stripMobilePurchases");await E(p(e.projectDir,"apps/mobile/e2e/tags.ts"),oc,`
1309
- `,"e2e tags.ts purchases inventory entries","stripMobilePurchases")}}import{readFile as fc}from"fs/promises";import{join as gc}from"path";var _i=`on:
1308
+ `,"","mobile index.mdx billing card",r),await W(p(t,"docs/mobile/index.mdx"),"mobile index.mdx store-purchases block","mobile-purchases-docs",r),await S(p(t,"docs/mobile/billing"),{recursive:!0,force:!0}))}async function Ri(e){if(e.mobile)return;await S(p(e.projectDir,"apps/mobile"),{recursive:!0});let t=p(e.projectDir,"packages/i18n/translations");for(let i of await Qt(t,{withFileTypes:!0}))i.isDirectory()&&await S(p(t,i.name,"mobile.json"),{force:!0});await S(p(e.projectDir,"packages/i18n/tests/mobile-notification-labels.test.ts")),await S(p(e.projectDir,"packages/i18n/tests/mobile-brand-literals.test.ts")),await S(p(e.projectDir,"packages/auth/tests/expo-plugin.test.ts")),await S(p(e.projectDir,"packages/auth/tests/expo-authorization-allowlist.test.ts")),await S(p(e.projectDir,"packages/auth/src/expo-authorization-allowlist.ts")),await S(p(e.projectDir,".github/workflows/mobile-release.yml")),await S(p(e.projectDir,"tooling/styles/scripts/build-mobile-css.ts"));let r=p(e.projectDir,"tooling/styles/package.json"),n=JSON.parse(await le(r,"utf-8"));if(!n.scripts?.["mobile-css"])throw new Error("stripMobileApp: expected tooling/styles/package.json to carry the mobile-css script");delete n.scripts["mobile-css"],Object.keys(n.scripts).length===0&&delete n.scripts,await Se(r,n," ","stripMobileApp");for(let i of rc)await at(p(e.projectDir,i),p(e.projectDir,"apps/web"));await S(p(e.projectDir,"packages/api/src/routes/internal/well-known.ts")),await S(p(e.projectDir,"packages/api/tests/routes/well-known-mobile.test.ts")),await S(p(e.projectDir,"packages/api/src/routes/internal/mobile-auth.ts")),await S(p(e.projectDir,"packages/api/tests/routes/mobile-auth.test.ts")),await S(p(e.projectDir,"apps/web/public/images/stores"),{recursive:!0});for(let i of nc)await Zt(p(e.projectDir,i),i,"mobile-auth","stripMobileApp");for(let i of ic)await Zt(p(e.projectDir,i),i,"mobile-push","stripMobileApp");for(let i of sc)await S(p(e.projectDir,i),{recursive:!0})}async function Ti(e){if(e.mobile&&e.mobilePurchases==="revenuecat")return;for(let n of oc)await S(p(e.projectDir,n),{recursive:!0});let t=p(e.projectDir,"packages/payments/package.json"),r=JSON.parse(await le(t,"utf-8"));if(!r.sideEffects?.includes("./src/store/revenuecat/index.ts"))throw new Error("stripMobilePurchases: expected packages/payments/package.json to list the store lane in sideEffects");r.sideEffects=r.sideEffects.filter(n=>n!=="./src/store/revenuecat/index.ts"),await Se(t,r," ","stripMobilePurchases");for(let n of ac)await Zt(p(e.projectDir,n),n,"mobile-purchases","stripMobilePurchases");if(e.mobile){for(let n of cc)await S(p(e.projectDir,n),{recursive:!0});for(let{dir:n,prefixes:i}of lc)await bc(p(e.projectDir,n),i,n,"stripMobilePurchases");for(let n of pc)await Zt(p(e.projectDir,n),n,"mobile-purchases","stripMobilePurchases");for(let n of uc)await E(p(e.projectDir,"apps/mobile/e2e/README.md"),n,"","e2e README purchases row block","stripMobilePurchases");await E(p(e.projectDir,"apps/mobile/e2e/tags.ts"),dc,`
1309
+ `,"e2e tags.ts purchases inventory entries","stripMobilePurchases")}}import{readFile as vc}from"fs/promises";import{join as kc}from"path";var _i=`on:
1310
1310
  workflow_run:
1311
1311
  workflows: ["Tag Release"]
1312
1312
  branches: [main]
1313
1313
  types: [completed]
1314
- workflow_dispatch:`,yc=`on:
1315
- workflow_dispatch:`;async function Oi(e){if(!e.desktop)return;let t=gc(e.projectDir,".github/workflows/desktop-release.yml"),r=await fc(t,"utf8");if(!r.includes(_i))throw new Error(`Cannot configure the desktop release trigger: the expected workflow_run block was not found in ${t}. The boilerplate workflow may have drifted.`);await c(t,r.replace(_i,yc))}import{readFile as bc}from"fs/promises";import{join as wc}from"path";var xi=`on:
1314
+ workflow_dispatch:`,Ec=`on:
1315
+ workflow_dispatch:`;async function Oi(e){if(!e.desktop)return;let t=kc(e.projectDir,".github/workflows/desktop-release.yml"),r=await vc(t,"utf8");if(!r.includes(_i))throw new Error(`Cannot configure the desktop release trigger: the expected workflow_run block was not found in ${t}. The boilerplate workflow may have drifted.`);await c(t,r.replace(_i,Ec))}import{readFile as Sc}from"fs/promises";import{join as Pc}from"path";var xi=`on:
1316
1316
  workflow_run:
1317
1317
  workflows: ["Tag Release"]
1318
1318
  branches: [main]
1319
1319
  types: [completed]
1320
- workflow_dispatch:`,vc=`on:
1321
- workflow_dispatch:`;async function Di(e){if(!e.mobile)return;let t=wc(e.projectDir,".github/workflows/mobile-release.yml"),r=await bc(t,"utf8");if(!r.includes(xi))throw new Error(`Cannot configure the mobile release trigger: the expected workflow_run block was not found in ${t}. The boilerplate workflow may have drifted.`);await c(t,r.replace(xi,vc))}import{join as kc}from"path";async function Li(e){let t=Ec(e);await c(kc(e.projectDir,".github/workflows/ci.yml"),t)}function Ni(e){return e.databaseProvider!=="neon"&&e.cacheProvider!=="upstash"}function Ci(e,t,r){return` - uses: actions/upload-artifact@v4
1320
+ workflow_dispatch:`,Ac=`on:
1321
+ workflow_dispatch:`;async function Di(e){if(!e.mobile)return;let t=Pc(e.projectDir,".github/workflows/mobile-release.yml"),r=await Sc(t,"utf8");if(!r.includes(xi))throw new Error(`Cannot configure the mobile release trigger: the expected workflow_run block was not found in ${t}. The boilerplate workflow may have drifted.`);await c(t,r.replace(xi,Ac))}import{join as Ic}from"path";async function Li(e){let t=Rc(e);await c(Ic(e.projectDir,".github/workflows/ci.yml"),t)}function Ni(e){return e.databaseProvider!=="neon"&&e.cacheProvider!=="upstash"}function Ci(e,t,r){return` - uses: actions/upload-artifact@v4
1322
1322
  if: \${{ ${r} }}
1323
1323
  with:
1324
1324
  name: playwright-report-${e}
@@ -1327,7 +1327,7 @@ $1`),n===r){if(r.includes("UPSTASH_REDIS_REST_URL"))return;throw new Error(`prun
1327
1327
  ${t}/test-results
1328
1328
  if-no-files-found: ignore
1329
1329
  retention-days: 7
1330
- `}function Ec(e){let t=e.cacheProvider==="upstash",r=t?"":` redis:
1330
+ `}function Rc(e){let t=e.cacheProvider==="upstash",r=t?"":` redis:
1331
1331
  image: redis:8-alpine
1332
1332
  ports:
1333
1333
  - 6379:6379
@@ -1365,18 +1365,21 @@ ${r} mailpit:
1365
1365
  run: |
1366
1366
  docker run -d --name minio --network host \\
1367
1367
  -e MINIO_ROOT_USER=minioadmin -e MINIO_ROOT_PASSWORD=minioadmin \\
1368
- minio/minio:RELEASE.2025-09-07T16-13-09Z server /data
1368
+ quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z server /data
1369
1369
 
1370
1370
  # No \`-u\`: the harness registers the app by PUTting its own /api/inngest endpoint, and the
1371
1371
  # suite's port is derived per checkout - a baked URL would name a port nothing serves.
1372
1372
  - name: Start Inngest
1373
1373
  run: docker run -d --name inngest --network host inngest/inngest:v1.17.4 inngest dev
1374
1374
  `,d=Ni(e)?`
1375
- # The end-to-end suite, on every push and PR. It needs no keys and no internet: the harness
1376
- # preflights the services below, builds and starts the app itself, provisions a throwaway database,
1377
- # and answers every vendor from a local fake. Any other outbound host fails the spec by name.
1375
+ # The end-to-end suite, on a manual "Run workflow" dispatch only - it builds the app in production
1376
+ # mode and drives it with Playwright, too slow to pay for on every PR. It needs no keys and no
1377
+ # internet: the harness preflights the services below, builds and starts the app itself, provisions
1378
+ # a throwaway database, and answers every vendor from a local fake. Any other outbound host fails
1379
+ # the spec by name.
1378
1380
  e2e:
1379
1381
  name: E2E
1382
+ if: \${{ github.event_name == 'workflow_dispatch' }}
1380
1383
  runs-on: ubuntu-latest
1381
1384
  timeout-minutes: 30
1382
1385
  services:
@@ -1403,7 +1406,7 @@ ${a}
1403
1406
  env:
1404
1407
  NODE_OPTIONS: --max-old-space-size=6144
1405
1408
 
1406
- ${Ci("web","apps/web","!cancelled()")}`:"\n # No end-to-end job: this project's stack cannot run one in CI without credentials.\n # - a `neon` database talks over a serverless websocket that only reaches a managed endpoint,\n # so a Postgres service container is unreachable from the app;\n # - an `upstash` cache is a hosted REST endpoint, and this file carries no secrets.\n # The suite itself works locally: `pnpm infra` for a project on self-hosted Postgres and Redis,\n # then `pnpm e2e:ci`. To run it here, add a job with those services plus your own credentials as\n # repository secrets, or point a second CI environment at a disposable managed instance.\n",u=e.desktop&&Ni(e),w=u?`
1409
+ ${Ci("web","apps/web","!cancelled()")}`:"\n # No end-to-end job: this project's stack cannot run one in CI without credentials.\n # - a `neon` database talks over a serverless websocket that only reaches a managed endpoint,\n # so a Postgres service container is unreachable from the app;\n # - an `upstash` cache is a hosted REST endpoint, and this file carries no secrets.\n # The suite itself works locally: `pnpm infra` for a project on self-hosted Postgres and Redis,\n # then `pnpm e2e:ci`. To run it here, add a job with those services plus your own credentials as\n # repository secrets, or point a second CI environment at a disposable managed instance.\n",w=e.desktop&&Ni(e)?`
1407
1410
  # The DESKTOP end-to-end suite, on a manual "Run workflow" dispatch only: it builds the Electron
1408
1411
  # bundles AND a Next production build, which is too slow to pay for on every push. It has its own
1409
1412
  # port and its own build directory, so it can never collide with the web job above.
@@ -1437,32 +1440,37 @@ ${a}
1437
1440
  env:
1438
1441
  NODE_OPTIONS: --max-old-space-size=6144
1439
1442
 
1440
- ${Ci("desktop","apps/desktop","failure()")}`:"",y=u?"\n # Manual trigger for the opt-in desktop E2E job (see its `if:` below).\n workflow_dispatch:":"",P=e.databaseProvider==="neon"?`
1443
+ ${Ci("desktop","apps/desktop","failure()")}`:"",b=e.databaseProvider==="neon"?`
1441
1444
  # Required for neon: the api suite's embedded Postgres is TCP-only and the neon
1442
1445
  # websocket driver cannot reach it. Add this repository secret (any Postgres this
1443
1446
  # suite may CREATE DATABASE on - a Neon branch works).
1444
- GENERATESAAS_TEST_DATABASE_ADMIN_URL: \${{ secrets.GENERATESAAS_TEST_DATABASE_ADMIN_URL }}`:"",I=t?`
1447
+ GENERATESAAS_TEST_DATABASE_ADMIN_URL: \${{ secrets.GENERATESAAS_TEST_DATABASE_ADMIN_URL }}`:"",P=t?`
1445
1448
  UPSTASH_REDIS_REST_URL: https://test.upstash.io
1446
1449
  UPSTASH_REDIS_REST_TOKEN: test-token`:`
1447
- REDIS_URL: redis://localhost:6379`,R=(()=>{switch(e.paymentProvider){case"stripe":return`
1450
+ REDIS_URL: redis://localhost:6379`,I=(()=>{switch(e.paymentProvider){case"stripe":return`
1448
1451
  STRIPE_SECRET_KEY: test
1449
1452
  STRIPE_WEBHOOK_SECRET: test`;case"polar":return`
1450
1453
  POLAR_ACCESS_TOKEN: test
1451
- POLAR_WEBHOOK_SECRET: test`;case"none":return"";default:{let O=e.paymentProvider;throw new Error(`buildCiYaml: unhandled payment provider "${String(O)}"`)}}})();return`# Deployment is handled by the hosting platform (Vercel, Coolify, etc.)
1452
- # which auto-deploys on push. CI runs in parallel as a quality gate.
1453
- # For PR-based workflows, enable GitHub branch protection to require CI before merging.
1454
+ POLAR_WEBHOOK_SECRET: test`;case"none":return"";default:{let f=e.paymentProvider;throw new Error(`buildCiYaml: unhandled payment provider "${String(f)}"`)}}})();return`# CI policy - a push runs NOTHING here. Your host (Vercel, Coolify, etc.) auto-deploys the push;
1455
+ # CI is a quality gate, not on a deploy's critical path. A pull request runs the Checks job (lint,
1456
+ # type-check, unit tests). The FULL set - Checks plus the end-to-end jobs - runs only on a manual
1457
+ # dispatch: open the Actions tab, pick "CI", and press "Run workflow". Run that full set and confirm
1458
+ # it is green before you merge to main or cut a release. Enable branch protection to require Checks.
1454
1459
 
1455
1460
  name: CI
1456
1461
 
1457
1462
  on:
1458
- push:
1459
- branches: [main]
1460
1463
  pull_request:
1461
- branches: [main]${y}
1464
+ branches: [main]
1465
+ paths-ignore:
1466
+ - "docs/**"
1467
+ - "**/*.md"
1468
+ - "**/*.mdx"
1469
+ workflow_dispatch:
1462
1470
 
1463
1471
  concurrency:
1464
1472
  group: ci-\${{ github.ref }}
1465
- cancel-in-progress: \${{ github.event_name == 'pull_request' }}
1473
+ cancel-in-progress: true
1466
1474
 
1467
1475
  jobs:
1468
1476
  # lint, typecheck, and test run as sequential steps in one job so the
@@ -1477,7 +1485,7 @@ jobs:
1477
1485
  # "cancelled", which reads as a mystery rather than as a timeout. 40 is roughly double that.
1478
1486
  timeout-minutes: 40
1479
1487
  ${n} env:
1480
- CONTENT_API_KEY: test-contentapi-key-16chars${P}${I}${R}
1488
+ CONTENT_API_KEY: test-contentapi-key-16chars${b}${P}${I}
1481
1489
  STORAGE_REGION: test
1482
1490
  STORAGE_ENDPOINT: http://test
1483
1491
  STORAGE_ACCESS_KEY_ID: test
@@ -1493,21 +1501,22 @@ ${n} env:
1493
1501
  - run: pnpm check-types
1494
1502
 
1495
1503
  - run: pnpm test
1496
- ${d}${w}`}import{readFile as $i}from"fs/promises";import{existsSync as Sc}from"fs";import{join as Ur}from"path";var ji="@repo/database";function Pc(e){return e?"pnpm -F @repo/database reset && pnpm -F @repo/database run deploy -- --push":"pnpm -F @repo/database run deploy"}function Ac(e){switch(e){case"fullstack":return"web";case"separate":return"backend";default:{let t=e;throw new Error(`schemaOwnerApp: unhandled architecture "${String(t)}"`)}}}async function Ic(e,t,r){let n=await $i(e,"utf-8"),i=JSON.parse(n),o=i.scripts?.[t];if(!o)throw new Error(`Cannot prepend to missing script "${t}" in ${e}`);o.includes(ji)||(i.scripts={...i.scripts,[t]:`${r} && ${o}`},await c(e,JSON.stringify(i,null," ")+`
1497
- `))}async function Rc(e,t){let r=Sc(e)?JSON.parse(await $i(e,"utf-8")):{$schema:"https://openapi.vercel.sh/vercel.json"},n=r.buildCommand?.trim()||"pnpm build";n.includes(ji)||(r.buildCommand=`${t} && ${n}`,await c(e,JSON.stringify(r,null," ")+`
1498
- `))}async function Mi(e){let t=Pc(e.demo===!0),r=Ac(e.architecture),n=Ur(e.projectDir,"apps",r);switch(e.deploymentTarget){case"node":await Ic(Ur(n,"package.json"),"start",t);return;case"vercel":await Rc(Ur(n,"vercel.json"),t);return;default:{let i=e.deploymentTarget;throw new Error(`generateDeployScripts: unhandled deployment target "${String(i)}"`)}}}import{readFile as Tc}from"fs/promises";import{existsSync as _c}from"fs";import{join as er}from"path";var Ui=["stripe","polar"],Oc=[...Ui,"none"];async function Fi(e){let t=er(e.projectDir,"packages/payments/src"),r=e.paymentProvider,i=`// Active payment provider. To switch, change the path below to
1499
- // ${Oc.filter(o=>o!==r).map(o=>`"./${o}/index"`).join(" or ")} (other folders are kept in place).
1504
+ ${d}${w}`}import{readFile as $i}from"fs/promises";import{existsSync as Tc}from"fs";import{join as Mr}from"path";var ji="@repo/database";function _c(e){return e?"pnpm -F @repo/database reset && pnpm -F @repo/database run deploy -- --push":"pnpm -F @repo/database run deploy"}function Oc(e){switch(e){case"fullstack":return"web";case"separate":return"backend";default:{let t=e;throw new Error(`schemaOwnerApp: unhandled architecture "${String(t)}"`)}}}async function xc(e,t,r){let n=await $i(e,"utf-8"),i=JSON.parse(n),o=i.scripts?.[t];if(!o)throw new Error(`Cannot prepend to missing script "${t}" in ${e}`);o.includes(ji)||(i.scripts={...i.scripts,[t]:`${r} && ${o}`},await c(e,`${JSON.stringify(i,null," ")}
1505
+ `))}async function Dc(e,t){let r=Tc(e)?JSON.parse(await $i(e,"utf-8")):{$schema:"https://openapi.vercel.sh/vercel.json"},n=r.buildCommand?.trim()||"pnpm build";n.includes(ji)||(r.buildCommand=`${t} && ${n}`,await c(e,`${JSON.stringify(r,null," ")}
1506
+ `))}async function Ui(e){let t=_c(e.demo===!0),r=Oc(e.architecture),n=Mr(e.projectDir,"apps",r);switch(e.deploymentTarget){case"node":await xc(Mr(n,"package.json"),"start",t);return;case"vercel":await Dc(Mr(n,"vercel.json"),t);return;default:{let i=e.deploymentTarget;throw new Error(`generateDeployScripts: unhandled deployment target "${String(i)}"`)}}}import{readFile as Nc}from"fs/promises";import{existsSync as Cc}from"fs";import{join as er}from"path";var Mi=["stripe","polar"],Lc=[...Mi,"none"];async function Fi(e){let t=er(e.projectDir,"packages/payments/src"),r=e.paymentProvider,i=`// Active payment provider. To switch, change the path below to
1507
+ // ${Lc.filter(o=>o!==r).map(o=>`"./${o}/index"`).join(" or ")} (other folders are kept in place).
1500
1508
  export { ops } from "./${r}/index";
1501
- `;await c(er(t,"providers/index.ts"),i),await c(er(t,"index.ts"),await xc(t,r))}async function xc(e,t){let r=er(e,"index.ts");if(!_c(r))throw new Error(`generatePaymentBarrel: expected ${r} to exist - did packages/payments move?`);let n=await Tc(r,"utf-8"),i=Ui.filter(s=>s!==t);return n.split(`
1509
+ `;await c(er(t,"providers/index.ts"),i),await c(er(t,"index.ts"),await $c(t,r))}async function $c(e,t){let r=er(e,"index.ts");if(!Cc(r))throw new Error(`generatePaymentBarrel: expected ${r} to exist - did packages/payments move?`);let n=await Nc(r,"utf-8"),i=Mi.filter(s=>s!==t);return n.split(`
1502
1510
  `).filter(s=>!i.some(a=>s.includes(`./providers/${a}/`))).join(`
1503
- `)}import{access as Dc,readFile as nr,rm as tr}from"fs/promises";import{join as te}from"path";var Hi=["sentry","posthog"],Fr={sentry:"src/providers/sentry",posthog:"src/providers/posthog"},rr={sentry:["tests/sentry-load-guard.test.ts"],posthog:["tests/posthog-load-guard.test.ts","tests/llm-analytics.test.ts"]},Nc=["tests/resolution.test.ts","tests/export-isolation.test.ts"],Cc=["src/providers/sentry/desktop-main.ts","src/providers/sentry/desktop-renderer.ts","src/resolve-desktop-main.ts","src/resolve-desktop-renderer.ts"],Lc=["./desktop-main","./desktop-renderer"],$c=[`vi.mock("@sentry/electron/main", sdk.factories["@sentry/electron/main"]);
1511
+ `)}import{access as jc,readFile as nr,rm as tr}from"fs/promises";import{join as te}from"path";var Hi=["sentry","posthog"],Fr={sentry:"src/providers/sentry",posthog:"src/providers/posthog"},rr={sentry:["tests/sentry-load-guard.test.ts"],posthog:["tests/posthog-load-guard.test.ts","tests/llm-analytics.test.ts"]},Uc=["tests/resolution.test.ts","tests/export-isolation.test.ts"],Mc=["src/providers/sentry/desktop-main.ts","src/providers/sentry/desktop-renderer.ts","src/resolve-desktop-main.ts","src/resolve-desktop-renderer.ts"],Fc=["./desktop-main","./desktop-renderer"],Vc=[`vi.mock("@sentry/electron/main", sdk.factories["@sentry/electron/main"]);
1504
1512
  `,`vi.mock("@sentry/electron/renderer", sdk.factories["@sentry/electron/renderer"]);
1505
- `],jc=[' describeGate("desktop main", "electronMain", async () => {',' describeGate("desktop renderer", "electronRenderer", async () => {',' describe("the desktop main init options", () => {',' describe("the desktop renderer init", () => {'],Vi=`
1513
+ `],Bc=[' describeGate("desktop main", "electronMain", async () => {',' describeGate("desktop renderer", "electronRenderer", async () => {',' describe("the desktop main init options", () => {',' describe("the desktop renderer init", () => {'],Vi=`
1506
1514
  });
1507
- `,Mc=" ";async function Yi(e){let t=te(e.projectDir,"packages/observability");await Bi(t,"packages/observability");let r=e.observability,n=r.filter(s=>!K.includes(s));if(n.length>0)throw new Error(`observability names ${JSON.stringify(n)}, which is not a reporting provider. Every entry must be one of: ${K.join(", ")}. Shaping stops here so the project is not left half-stripped.`);for(let s of r)await Bi(te(t,Fr[s]),`packages/observability/${Fr[s]}`);let i=e.desktop?[...Ki,...El]:Ki,o=new Map;for(let s of i)o.set(s.file,await nr(te(t,s.file),"utf-8"));for(let s of zc(r,e.desktop))await qc(t,s);for(let s of Hi)if(!r.includes(s)){await tr(te(t,Fr[s]),{recursive:!0,force:!0});for(let a of rr[s])await tr(te(t,a),{force:!0})}for(let s of Nc)await tr(te(t,s),{force:!0});e.desktop||await Uc(t,r);for(let s of i){let a=o.get(s.file);a!==void 0&&await c(te(t,s.file),Bc(a,s,r))}}async function Bi(e,t){try{await Dc(e)}catch{throw new Error(`generateObservabilityProvider: expected ${t} to exist - did the observability package move?`)}}async function Uc(e,t){for(let i of Cc)await tr(te(e,i),{force:!0});t.includes("sentry")&&await Fc(e);let r=te(e,"package.json"),n=JSON.parse(await nr(r,"utf-8"));for(let i of Lc){if(!n.exports?.[i])throw new Error(`generateObservabilityProvider: expected packages/observability/package.json to carry the ${i} export`);delete n.exports[i]}await Ee(r,n," ","generateObservabilityProvider")}async function Fc(e){let t=te(e,rr.sentry[0]),r=await nr(t,"utf-8");r=Vr(r,$c.map(n=>({find:n,replace:""})),rr.sentry[0]);for(let n of jc)r=Vc(r,n,rr.sentry[0]);await c(t,r)}function Vc(e,t,r){let n=e.indexOf(t),i=n===-1?-1:e.indexOf(Vi,n);if(n===-1||i===-1)throw new Error(`generateObservabilityProvider: ${r} no longer contains the block this strip removes - re-point the anchor. Missing: ${t.trim()}`);if(e.indexOf(t,n+t.length)!==-1)throw new Error(`generateObservabilityProvider: ${r} now opens more than one block with the same line, so this strip cannot tell which one to remove - re-point the anchor. Block: ${t.trim()}`);let o=e.slice(n+t.length,i).split(`
1508
- `).find(a=>a.trim().length>0&&!a.startsWith(`${Mc} `));if(o!==void 0)throw new Error(`generateObservabilityProvider: ${r} no longer closes the block this strip removes at its own indent - re-point the anchor. Block: ${t.trim()}; first line inside it that is not part of its body: ${o.trim()}`);let s=i+Vi.length;return e[s]===`
1509
- `&&(s+=1),e.slice(0,n)+e.slice(s)}function Bc(e,t,r){let n=Hi.filter(s=>!r.includes(s)),i=e,o=[];for(let s of n){let a=Gc(i,s);i=a.source,o.push(...a.bindings)}t.dualMode!==!1&&(i=Vr(i,[{find:Hc,replace:Yc(r)}],t.file)),i=Vr(i,t.edits(r),t.file);for(let s of n)if(i.includes(`./providers/${s}`))throw new Error(`generateObservabilityProvider: ${t.file} still reaches providers/${s} after the strip - the boilerplate grew an import shape the drop does not know.`);for(let s of o)if(new RegExp(String.raw`\b${s}\b`).test(i))throw new Error(`generateObservabilityProvider: ${t.file} still names ${s}, whose import the strip removed - the boilerplate grew a use the pinned rewrites do not cover.`);return i}function Vr(e,t,r){let n=e;for(let i of t){if(!n.includes(i.find))throw new Error(`generateObservabilityProvider: ${r} no longer contains the text this strip rewrites - re-point the anchor. Missing: ${i.find.split(`
1510
- `)[0]}`);n=n.replace(i.find,i.replace)}return n}function Gc(e,t){let r=new RegExp(String.raw`^import[^;]*?from "\./providers/${t}/[^"]*";\n`,"gm"),n=[];return{source:e.replace(r,o=>(n.push(...Kc(o)),"")),bindings:n}}function Kc(e){let t=/^import\s+(?:type\s+)?([\s\S]*?)\s+from\s/.exec(e)?.[1]??"",r=[],n=/\{([\s\S]*?)\}/.exec(t);n?.[1]&&r.push(...n[1].split(",").map(s=>s.trim().replace(/^type\s+/,"")).map(s=>s.split(/\s+as\s+/).at(-1)??"").filter(s=>s.length>0));let i=t.replace(/\{[\s\S]*?\}/,"").replace(/,/g," ").trim(),o=/^\*\s+as\s+([A-Za-z_$][\w$]*)$/.exec(i);return o?.[1]?r.push(o[1]):/^[A-Za-z_$][\w$]*$/.test(i)&&r.push(i),r}var Hc=" * DUAL-MODE, exactly as `packages/payments/src/providers/index.ts` does it. This repo resolves the\n * provider at RUNTIME so dev and the test suite exercise every one of them. A generated project has\n * exactly one provider, so the CLI overwrites this file with a direct re-export of it and the rest\n * become unreachable and are pruned; the generator is the observability twin of\n * `packages/cli/src/generators/payment-barrel.ts` and lands with the manifest option.";function Yc(e){let t=e.map(n=>n==="sentry"?"Sentry":"PostHog").join(" and ");return`${e.length===0?` * Your project was generated with observability OFF, so no provider adapter and no reporting
1515
+ `,Gc=" ";async function Yi(e){let t=te(e.projectDir,"packages/observability");await Bi(t,"packages/observability");let r=e.observability,n=r.filter(s=>!K.includes(s));if(n.length>0)throw new Error(`observability names ${JSON.stringify(n)}, which is not a reporting provider. Every entry must be one of: ${K.join(", ")}. Shaping stops here so the project is not left half-stripped.`);for(let s of r)await Bi(te(t,Fr[s]),`packages/observability/${Fr[s]}`);let i=e.desktop?[...Ki,...Ll]:Ki,o=new Map;for(let s of i)o.set(s.file,await nr(te(t,s.file),"utf-8"));for(let s of Qc(r,e.desktop))await el(t,s);for(let s of Hi)if(!r.includes(s)){await tr(te(t,Fr[s]),{recursive:!0,force:!0});for(let a of rr[s])await tr(te(t,a),{force:!0})}for(let s of Uc)await tr(te(t,s),{force:!0});e.desktop||await Kc(t,r);for(let s of i){let a=o.get(s.file);a!==void 0&&await c(te(t,s.file),Wc(a,s,r))}}async function Bi(e,t){try{await jc(e)}catch{throw new Error(`generateObservabilityProvider: expected ${t} to exist - did the observability package move?`)}}async function Kc(e,t){for(let i of Mc)await tr(te(e,i),{force:!0});t.includes("sentry")&&await Hc(e);let r=te(e,"package.json"),n=JSON.parse(await nr(r,"utf-8"));for(let i of Fc){if(!n.exports?.[i])throw new Error(`generateObservabilityProvider: expected packages/observability/package.json to carry the ${i} export`);delete n.exports[i]}await Se(r,n," ","generateObservabilityProvider")}async function Hc(e){let t=te(e,rr.sentry[0]),r=await nr(t,"utf-8");r=Vr(r,Vc.map(n=>({find:n,replace:""})),rr.sentry[0]);for(let n of Bc)r=Yc(r,n,rr.sentry[0]);await c(t,r)}function Yc(e,t,r){let n=e.indexOf(t),i=n===-1?-1:e.indexOf(Vi,n);if(n===-1||i===-1)throw new Error(`generateObservabilityProvider: ${r} no longer contains the block this strip removes - re-point the anchor. Missing: ${t.trim()}`);if(e.includes(t,n+t.length))throw new Error(`generateObservabilityProvider: ${r} now opens more than one block with the same line, so this strip cannot tell which one to remove - re-point the anchor. Block: ${t.trim()}`);let o=e.slice(n+t.length,i).split(`
1516
+ `).find(a=>a.trim().length>0&&!a.startsWith(`${Gc} `));if(o!==void 0)throw new Error(`generateObservabilityProvider: ${r} no longer closes the block this strip removes at its own indent - re-point the anchor. Block: ${t.trim()}; first line inside it that is not part of its body: ${o.trim()}`);let s=i+Vi.length;return e[s]===`
1517
+ `&&(s+=1),e.slice(0,n)+e.slice(s)}function Wc(e,t,r){let n=Hi.filter(s=>!r.includes(s)),i=e,o=[];for(let s of n){let a=zc(i,s);i=a.source,o.push(...a.bindings)}t.dualMode!==!1&&(i=Vr(i,[{find:Jc,replace:Xc(r)}],t.file)),i=Vr(i,t.edits(r),t.file);for(let s of n)if(i.includes(`./providers/${s}`))throw new Error(`generateObservabilityProvider: ${t.file} still reaches providers/${s} after the strip - the boilerplate grew an import shape the drop does not know.`);for(let s of o)if(new RegExp(String.raw`\b${s}\b`).test(i))throw new Error(`generateObservabilityProvider: ${t.file} still names ${s}, whose import the strip removed - the boilerplate grew a use the pinned rewrites do not cover.`);return i}function Vr(e,t,r){let n=e;for(let i of t){let o=n.indexOf(i.find);if(o===-1)throw new Error(`generateObservabilityProvider: ${r} no longer contains the text this strip rewrites - re-point the anchor. Missing: ${i.find.split(`
1518
+ `)[0]}`);if(i.all!==!0&&n.includes(i.find,o+i.find.length))throw new Error(`generateObservabilityProvider: ${r} now contains the text this strip rewrites more than once, so rewriting the first would leave the rest in the buyer's copy - make the anchor unique or mark the edit \`all\`. Ambiguous: ${i.find.split(`
1519
+ `)[0]}`);n=i.all===!0?n.replaceAll(i.find,i.replace):n.replace(i.find,i.replace)}return n}function zc(e,t){let r=new RegExp(String.raw`^import[^;]*?from "\./providers/${t}/[^"]*";\n`,"gm"),n=[];return{source:e.replace(r,o=>(n.push(...qc(o)),"")),bindings:n}}function qc(e){let t=/^import\s+(?:type\s+)?(\S(?:[\s\S]*?\S)?)\s+from\s/.exec(e)?.[1]??"",r=[],n=/\{([\s\S]*?)\}/.exec(t);n?.[1]&&r.push(...n[1].split(",").map(s=>s.trim().replace(/^type\s+/,"")).map(s=>s.split(/\s+as\s+/).at(-1)??"").filter(s=>s.length>0));let i=t.replace(/\{[\s\S]*?\}/,"").replace(/,/g," ").trim(),o=/^\*\s+as\s+([A-Za-z_$][\w$]*)$/.exec(i);return o?.[1]?r.push(o[1]):/^[A-Z_$][\w$]*$/i.test(i)&&r.push(i),r}var Jc=" * DUAL-MODE, exactly as `packages/payments/src/providers/index.ts` does it. This repo resolves the\n * provider at RUNTIME so dev and the test suite exercise every one of them. A generated project has\n * exactly one provider, so the CLI overwrites this file with a direct re-export of it and the rest\n * become unreachable and are pruned; the generator is the observability twin of\n * `packages/cli/src/generators/payment-barrel.ts` and lands with the manifest option.";function Xc(e){let t=e.map(n=>n==="sentry"?"Sentry":"PostHog").join(" and ");return`${e.length===0?` * Your project was generated with observability OFF, so no provider adapter and no reporting
1511
1520
  * SDK were shipped: this file is the whole layer, and every call is a no-op that loads nothing.`:` * Your project reports to ${t}. No other provider's adapter or SDK was generated, so
1512
1521
  * there is nothing here for a bundler to fold away and nothing for pnpm to install.`}
1513
1522
  *
@@ -1515,128 +1524,171 @@ export { ops } from "./${r}/index";
1515
1524
  * run \`generatesaas update\`: re-shaping brings that provider's adapter and its dependency back. The
1516
1525
  * update stages nothing while you are already on the latest version, so the switch lands with the
1517
1526
  * next release. Pasting the other provider's credential into \`config.observability\` on its own
1518
- * cannot: the adapter it would need is not here.`}var Gi={source:"src/providers/sentry/browser.ts",name:"SentryBrowserInitOptions",fields:["environment: string;"]},Wc={source:"src/providers/sentry/desktop-main.ts",name:"SentryDesktopMainInitOptions",fields:["environment: string;","appIsReady: boolean;"]};function zc(e,t){return e.includes("sentry")?[]:t?[Gi,Wc]:[Gi]}async function qc(e,t){let r=await nr(te(e,t.source),"utf-8"),n=`export interface ${t.name} {
1527
+ * cannot: the adapter it would need is not here.`}var Gi={source:"src/providers/sentry/browser.ts",name:"SentryBrowserInitOptions",fields:["environment: string;"]},Zc={source:"src/providers/sentry/desktop-main.ts",name:"SentryDesktopMainInitOptions",fields:["environment: string;","appIsReady: boolean;"]};function Qc(e,t){return e.includes("sentry")?[]:t?[Gi,Zc]:[Gi]}async function el(e,t){let r=await nr(te(e,t.source),"utf-8"),n=`export interface ${t.name} {
1519
1528
  `,i=r.indexOf(n),o=r.indexOf(`
1520
1529
  }
1521
1530
  `,i);if(i===-1||o===-1)throw new Error(`generateObservabilityProvider: ${t.source} no longer exports ${t.name} - the stand-in this strip emits for a project without Sentry has nothing left to track.`);let s=r.slice(i+n.length,o).split(`
1522
- `).map(a=>a.trim()).filter(a=>/^[A-Za-z_$][\w$]*\??: .+;$/.test(a));if(s.join(" ")!==t.fields.join(" "))throw new Error(`generateObservabilityProvider: ${t.name} now declares [${s.join(" ")}] but the stand-in emitted for a project without Sentry declares [${t.fields.join(" ")}] - update the stand-in so switching providers on an update cannot break a buyer's call site.`)}var Jc=" into every browser bundle. `tests/export-isolation.test.ts` walks the real module graph to keep\n * that from ever landing quietly.",Xc=` if (resolveSentryDsn(observability, process.env.SENTRY_DSN)) ops.push(sentryServerOps);
1523
- `,Zc=` if (resolvePosthogCredentials(observability, process.env.POSTHOG_API_KEY)) {
1531
+ `).map(a=>a.trim()).filter(a=>/^[A-Z_$][\w$]*\??: .+;$/i.test(a));if(s.join(" ")!==t.fields.join(" "))throw new Error(`generateObservabilityProvider: ${t.name} now declares [${s.join(" ")}] but the stand-in emitted for a project without Sentry declares [${t.fields.join(" ")}] - update the stand-in so switching providers on an update cannot break a buyer's call site.`)}var tl=" into every browser bundle. `tests/export-isolation.test.ts` walks the real module graph to keep\n * that from ever landing quietly.",rl=` if (resolveSentryDsn(observability, process.env.SENTRY_DSN)) ops.push(sentryServerOps);
1532
+ `,nl=` if (resolvePosthogCredentials(observability, process.env.POSTHOG_API_KEY)) {
1524
1533
  ops.push(posthogServerOps);
1525
1534
  }
1526
- `,Qc=` if (resolveSentryDsn(config.observability, process.env.SENTRY_DSN)) {
1535
+ `,il=` if (resolveSentryDsn(config.observability, process.env.SENTRY_DSN)) {
1527
1536
  await initSentryServer();
1528
1537
  }
1529
- `,el=` if (observability?.sentry?.dsn) ops.push(sentryBrowserOps);
1530
- `,tl=` if (observability?.posthog?.publicKey) ops.push(posthogBrowserOps);
1531
- `,rl=` if (config.observability?.sentry?.dsn) await initSentryBrowser(options);
1532
- `,Wi=` if (observability?.posthog?.publicKey && !observability?.sentry?.dsn) {
1538
+ `,sl=` if (observability?.sentry?.dsn) ops.push(sentryBrowserOps);
1539
+ `,ol=` if (observability?.posthog?.publicKey) ops.push(posthogBrowserOps);
1540
+ `,al=` if (config.observability?.sentry?.dsn) await initSentryBrowser(options);
1541
+ `,cl=` if (observability?.posthog?.publicKey && !observability?.sentry?.dsn) {
1533
1542
  announceMissingDesktopSdk("posthog");
1534
1543
  }
1535
- `,nl="export type BrowserReportingOptions = SentryBrowserInitOptions;",il=`export interface BrowserReportingOptions {
1544
+ `,ll=` // PostHog ships no desktop SDK, so a project configured ONLY for PostHog reports nothing here -
1545
+ // announced rather than silent, because a desktop build that quietly drops every error looks
1546
+ // identical to one with reporting off.
1547
+ `,pl=`import { createProviderGapAnnouncer } from "./announce";
1548
+ `,dl=`/**
1549
+ * Say once that the selected provider cannot report from the desktop main process.
1550
+ *
1551
+ * A WARNING and never an error: PostHog ships no Electron SDK, and a buyer running PostHog on the
1552
+ * web must not be blocked from shipping a desktop build over it. Silence would be worse, because
1553
+ * the desktop app would simply never report with nothing to explain why, so the gap is surfaced
1554
+ * here and again in the observability docs.
1555
+ *
1556
+ * Built from the shared announcer rather than written out here, so this message and the renderer's
1557
+ * cannot drift apart; the latch is this announcer's own, so main and its renderer still warn
1558
+ * independently.
1559
+ */
1560
+ const announceMissingDesktopSdk = createProviderGapAnnouncer({
1561
+ surface: "in the desktop main process",
1562
+ reason: "ships no Electron SDK",
1563
+ remedy: "Select sentry to report errors from the desktop app."
1564
+ });
1565
+
1566
+ `,ul=`/**
1567
+ * Say once that the selected provider cannot report from the desktop renderer.
1568
+ *
1569
+ * A WARNING and never an error: PostHog ships no Electron SDK, and a buyer running PostHog on the
1570
+ * web must not be blocked from shipping a desktop build over it. Main and the renderer are separate
1571
+ * processes, so each announces the gap in its own console - which is what the shared factory gives,
1572
+ * since it closes over a latch per announcer rather than one per module.
1573
+ */
1574
+ const announceMissingDesktopSdk = createProviderGapAnnouncer({
1575
+ surface: "in the desktop renderer",
1576
+ reason: "ships no Electron SDK",
1577
+ remedy: "Select sentry to report errors from the desktop app."
1578
+ });
1579
+
1580
+ `,ml=` const observability = config.observability;
1581
+ `,hl=`import { config } from "@repo/config";
1582
+ `,fl=` // No error-reporting adapter was generated for this project, so there is nothing to arm.
1583
+ `,gl="export type BrowserReportingOptions = SentryBrowserInitOptions;",yl=`export interface BrowserReportingOptions {
1536
1584
  /** The deployment environment reports are tagged with. */
1537
1585
  environment: string;
1538
- }`,sl=` return observability?.sentry?.dsn ? [sentryDesktopMainOps] : [];
1539
- `,ol=` if (observability?.sentry?.dsn) await initSentryDesktopMain(options);
1540
- `,al="export type DesktopMainReportingOptions = SentryDesktopMainInitOptions;",cl=`export interface DesktopMainReportingOptions {
1586
+ }`,bl=` return observability?.sentry?.dsn ? [sentryDesktopMainOps] : [];
1587
+ `,wl=` if (observability?.sentry?.dsn) await initSentryDesktopMain(options);
1588
+ `,vl="export type DesktopMainReportingOptions = SentryDesktopMainInitOptions;",kl=`export interface DesktopMainReportingOptions {
1541
1589
  /** The deployment environment reports are tagged with. */
1542
1590
  environment: string;
1543
1591
  /** Whether Electron's \`app\` has emitted \`ready\` yet. */
1544
1592
  appIsReady: boolean;
1545
- }`,ll=` return observability?.sentry?.dsn ? [sentryDesktopRendererOps] : [];
1546
- `,pl=` if (observability?.sentry?.dsn) await initSentryDesktopRenderer();
1547
- `;function zi(e,t){let r=[];return e.includes("sentry")||r.push({find:t.sentry,replace:""}),e.includes("posthog")||r.push({find:t.posthog,replace:""}),r}function dl(e){let t=[{find:Jc,replace:" into every browser bundle."},...zi(e,{sentry:Xc,posthog:Zc})];return e.includes("sentry")||t.push({find:Qc,replace:""}),t}function ul(e){let t=[...zi(e,{sentry:el,posthog:tl})];return e.includes("sentry")||t.push({find:rl,replace:""},ml),t}var ml={find:nl,replace:il};function hl(e){let t=[];return e.includes("posthog")||t.push({find:Wi,replace:""}),e.includes("sentry")||t.push({find:sl,replace:` return [];
1548
- `},{find:ol,replace:""},{find:al,replace:cl}),t}function fl(e){let t=[];return e.includes("posthog")||t.push({find:Wi,replace:""}),e.includes("sentry")||t.push({find:ll,replace:` return [];
1549
- `},{find:pl,replace:""}),t}var gl=` if (!posthogConfigured()) return;
1593
+ }`,El=` return observability?.sentry?.dsn ? [sentryDesktopRendererOps] : [];
1594
+ `,Sl=` if (observability?.sentry?.dsn) await initSentryDesktopRenderer();
1595
+ `;function Wi(e,t){let r=[];return e.includes("sentry")||r.push({find:t.sentry,replace:""}),e.includes("posthog")||r.push({find:t.posthog,replace:""}),r}function Pl(e){let t=[{find:tl,replace:" into every browser bundle."},...Wi(e,{sentry:rl,posthog:nl})];return e.includes("sentry")||t.push({find:il,replace:""}),t}function Al(e){let t=[...Wi(e,{sentry:sl,posthog:ol})];return e.includes("sentry")||t.push({find:al,replace:""},Il),t}var Il={find:gl,replace:yl};function Rl(e){let t=[...zi(e,dl)];return e.includes("sentry")||t.push({find:bl,replace:` return [];
1596
+ `},{find:wl,replace:Ji(e)},{find:vl,replace:kl}),t.push(...qi(e)),t}function Tl(e){let t=[...zi(e,ul)];return e.includes("sentry")||t.push({find:El,replace:` return [];
1597
+ `},{find:Sl,replace:Ji(e)}),t.push(...qi(e)),t}function zi(e,t){return e.includes("posthog")?[]:[{find:ll,replace:""},{find:cl,replace:"",all:!0},{find:t,replace:""},{find:pl,replace:""}]}function qi(e){return e.length>0?[]:[{find:ml,replace:"",all:!0},{find:hl,replace:""}]}function Ji(e){return e.length>0?"":fl}var _l=` if (!posthogConfigured()) return;
1550
1598
  try {
1551
1599
  const { captureAiGeneration: capture } = await import("./providers/posthog/llm");
1552
1600
  await capture(event);
1553
1601
  } catch (reportingError) {
1554
1602
  logReportingFailure("[observability] failed to report an AI generation", reportingError);
1555
1603
  }
1556
- `,yl=` // No PostHog adapter was generated for this project, so there is nothing to report to.
1557
- `,bl=` // No PostHog adapter was generated for this project, so there is nothing queued to drain.
1558
- `,wl=`/** Whether PostHog is configured on this server, without touching the PostHog folder. */
1604
+ `,Ol=` // No PostHog adapter was generated for this project, so there is nothing to report to.
1605
+ `,xl=` // No PostHog adapter was generated for this project, so there is nothing queued to drain.
1606
+ `,Dl=`/** Whether PostHog is configured on this server, without touching the PostHog folder. */
1559
1607
  function posthogConfigured(): boolean {
1560
1608
  return Boolean(process.env.POSTHOG_API_KEY || config.observability?.posthog?.publicKey);
1561
1609
  }
1562
1610
 
1563
- `,vl=` if (!posthogConfigured()) return;
1611
+ `,Nl=` if (!posthogConfigured()) return;
1564
1612
  try {
1565
1613
  const { flushAiGenerations: flush } = await import("./providers/posthog/llm");
1566
1614
  await flush();
1567
1615
  } catch (reportingError) {
1568
1616
  logReportingFailure("[observability] failed to flush queued AI generations", reportingError);
1569
1617
  }
1570
- `;function kl(e){return e.includes("posthog")?[]:[{find:gl,replace:yl},{find:vl,replace:bl},{find:wl,replace:""},{find:`import { logReportingFailure } from "./logger";
1618
+ `;function Cl(e){return e.includes("posthog")?[]:[{find:_l,replace:Ol},{find:Nl,replace:xl},{find:Dl,replace:""},{find:`import { logReportingFailure } from "./logger";
1571
1619
  `,replace:""},{find:`import { config } from "@repo/config";
1572
- `,replace:""},{find:"export async function captureAiGeneration(event: AiGenerationEvent): Promise<void> {",replace:"export async function captureAiGeneration(_event: AiGenerationEvent): Promise<void> {"},{find:" * @param event - The call to record.",replace:" * @param _event - Ignored: no PostHog adapter was generated for this project."}]}var Ki=[{file:"src/resolve-server.ts",edits:dl},{file:"src/resolve-browser.ts",edits:ul},{file:"src/llm-analytics.ts",edits:kl,dualMode:!1}],El=[{file:"src/resolve-desktop-main.ts",edits:hl},{file:"src/resolve-desktop-renderer.ts",edits:fl}];import{readdir as Sl,readFile as Pl}from"fs/promises";import{join as qi}from"path";async function Ji(e){if(e.demo)return;let t=e.appName.trim()||e.projectName,r=JSON.stringify(t).slice(1,-1),n=qi(e.projectDir,"packages/i18n/translations"),i;try{i=await Sl(n)}catch{return}for(let o of i){let s=qi(n,o,"web.json"),a;try{a=await Pl(s,"utf-8")}catch{continue}let d=a.replaceAll("GenerateSaaS",()=>r);d!==a&&await c(s,d)}}async function ir(e){let t=e.projectDir;e.demo||(await Nn(t),await Cn(t),await Ln(t),await $n(t)),await jn(t),await Un(e),await Vn(e),await Bn(e),e.demo||await Gn(e),await Yn(e),await Wn(e),await zn(e),await Zn(e),await ei(e),await ri(e),await li(e),await di(e),await hi(e),await wi(e),await Li(e),await vi(e),await ki(e),await Ei(e),await Si(e),await Pi(e),await Ai(e),await Ii(e),await Oi(e),await Ri(e),await Ti(e),await Di(e),await Mr(e),await Mi(e),await Fi(e),await Yi(e),await ai(e),await Ji(e),await gi(e)}import{basename as Zi,join as Qi,relative as Il}from"path";import{createHash as Xi}from"crypto";import{readFile as Al}from"fs/promises";async function sr(e){let t=await Al(e);return Xi("sha256").update(t).digest("hex")}function Br(e){return Xi("sha256").update(e).digest("hex")}var Rl=new Set(["data",Q]);function Tl(e){let t=e.split("/");for(let r of t)if(Sr.has(r)||Pr.has(r)||Rl.has(r)||r.startsWith(".env")&&!r.includes("example"))return!0;return!1}function es(e,t){return{projectName:e.projectName??Zi(t),appName:e.appName??e.projectName??Zi(t),projectDir:t,architecture:e.architecture??"fullstack",paymentProvider:e.paymentProvider??"none",emailProvider:e.emailProvider??"smtp",multiTenancy:e.multiTenancy??!1,projects:e.projects??!1,docs:e.docs??!1,desktop:e.desktop??!1,mobile:e.mobile??!1,mobilePurchases:e.mobilePurchases??"none",ai:e.ai??!1,webAi:e.webAi??!0,runner:e.runner??!1,revenueSharing:e.revenueSharing??!1,credits:e.credits??!1,defaultCurrency:e.defaultCurrency??"USD",deploymentTarget:e.deploymentTarget??"node",databaseProvider:e.databaseProvider??"postgres",cacheProvider:e.cacheProvider??"redis",observability:e.observability??[],version:e.version,baseUrl:e.baseUrl,credentials:{},demo:!1}}function _l(e,t){return{version:e.version,initialVersion:e.version,appName:e.appName,projectName:e.projectName,frontend:wn,architecture:e.architecture,paymentProvider:e.paymentProvider,emailProvider:e.emailProvider,multiTenancy:e.multiTenancy,projects:e.projects,docs:e.docs,desktop:e.desktop,mobile:e.mobile,...e.mobile&&oe(e)?{mobilePurchases:e.mobilePurchases}:{},ai:e.ai,webAi:e.webAi,runner:e.runner,credits:e.credits,revenueSharing:e.revenueSharing,defaultCurrency:e.defaultCurrency,deploymentTarget:e.deploymentTarget,databaseProvider:e.databaseProvider,cacheProvider:e.cacheProvider,observability:e.observability,...e.baseUrl?{baseUrl:e.baseUrl}:{},...t&&{licenseToken:t.token,licenseKeyHash:t.keyHash,installId:t.installId}}}async function ts(e,t){let n=(await ke(e.projectDir,e.projectDir,Tl)).sort(),i=await Promise.all(n.map(async a=>[Ve(Il(e.projectDir,a)),await sr(a)])),o=Object.fromEntries(i),s=_l(e,t);await c(Qi(e.projectDir,Ae),JSON.stringify(s,null," ")+`
1573
- `),await c(Qi(e.projectDir,vn),JSON.stringify(o,null," ")+`
1574
- `)}import{relative as Ol}from"path";async function dt(e){let r=(await ke(e,e,st)).sort(),n=await Promise.all(r.map(async i=>[Ve(Ol(e,i)),await sr(i)]));return Object.fromEntries(n)}import{copyFile as xl,mkdir as Dl,rm as Nl}from"fs/promises";import{dirname as Cl,join as rs,relative as Ll}from"path";import{existsSync as $l}from"fs";async function Gr(e,t){$l(t)&&await Nl(t,{recursive:!0,force:!0});let n=(await ke(e,e,st)).map(i=>({file:i,dest:rs(t,Ve(Ll(e,i)))}));await Promise.all([...new Set(n.map(({dest:i})=>Cl(i)))].map(i=>Dl(i,{recursive:!0}))),await Promise.all(n.map(({file:i,dest:o})=>xl(i,o)))}async function ns(e,t){await Gr(e,rs(t,Ft))}import{readFile as ss,readdir as jl}from"fs/promises";import{existsSync as Ml}from"fs";import{join as pe,dirname as Ul,resolve as Kr,sep as Hr}from"path";import{fileURLToPath as Fl}from"url";var Vl={"claude-code":".claude/skills",cursor:".cursor/skills",codex:".agents/skills","gemini-cli":".gemini/skills",windsurf:".windsurf/skills"},Be=Object.values(Vl),Yr=["generatesaas-update"],Bl=Ul(Fl(import.meta.url));function Gl(){return Kt(Bl,["skill","content"],"content")}async function Wr(e,t){for(let r of Be){let n=pe(e,r);for(let[i,o]of Object.entries(t)){let s=Kr(n,i);if(!s.startsWith(n+Hr))continue;let a=pe(s,"scripts"),d=pe(s,"references");await Yt(a),await Yt(d),await c(pe(s,"SKILL.md"),o.skillMd.replaceAll("__SKILL_ROOT__",r));for(let[w,y]of Object.entries(o.scripts)){let P=Kr(a,w);P.startsWith(a+Hr)&&await c(P,y)}let u=Object.entries(o.references);u.length===0&&await c(pe(d,".gitkeep"),"");for(let[w,y]of u){let P=Kr(d,w);P.startsWith(d+Hr)&&await c(P,y)}}}}async function is(e){if(!Ml(e))return{};let t={};for(let r of await jl(e))r!==".gitkeep"&&(t[r]=await ss(pe(e,r),"utf-8"));return t}async function os(e){let t=Gl(),r={};for(let n of Yr){let i=pe(t,n);r[n]={skillMd:await ss(pe(i,"SKILL.md"),"utf-8"),scripts:await is(pe(i,"scripts")),references:await is(pe(i,"references"))}}await Wr(e,r)}import{execFile as Kl,execFileSync as Hl}from"child_process";import{access as as,readFile as Yl}from"fs/promises";import{join as zr}from"path";import*as M from"@clack/prompts";function Ke(e){try{let t=process.platform==="win32"?"where":"which";return Hl(t,[e],{stdio:"ignore"}),!0}catch{return!1}}function Ge(e,t,r,n=3e5){return new Promise((i,o)=>{Kl(e,t,{cwd:r,timeout:n,maxBuffer:50*1024*1024},(s,a,d)=>{if(s){let u=String(a||"").trim(),y=[String(d||"").trim(),u].filter(Boolean).join(`
1575
- `);o(new Error(y?`${s.message}
1576
- ${y}`:s.message))}else i()})})}async function cs(e){if(!Ke("pnpm"))return M.log.warn("pnpm not found. Skipping lockfile regeneration."),!1;try{return await Ge("pnpm",["install","--lockfile-only","--no-frozen-lockfile","--config.minimumReleaseAge=0"],e),!0}catch(t){let r=t instanceof Error?t.message:String(t);return M.log.warn(`Lockfile regeneration failed: ${r}`),M.log.warn("Deploys using --frozen-lockfile may fail."),!1}}async function ls(e){if(!Ke("pnpm"))return M.log.warn("pnpm not found. Skipping dependency installation."),M.log.info("Install pnpm: https://pnpm.io/installation"),!1;let t=M.spinner();t.start("Installing dependencies (this may take a minute)...");try{return await Ge("pnpm",["install","--config.minimumReleaseAge=0"],e),t.stop("Dependencies installed."),!0}catch(r){t.stop("Dependency installation failed.");let n=r instanceof Error?r.message:String(r);return M.log.warn(`pnpm install failed: ${n}`),M.log.warn("You can run it manually later."),!1}}async function ps(e){if(!Ke("pnpm"))return!1;let t=M.spinner();t.start("Generating baseline database migration...");try{return await Ge("pnpm",["-F","@repo/database","generate"],e),t.stop("Baseline migration generated."),!0}catch(r){t.stop("Baseline migration generation failed.");let n=r instanceof Error?r.message:String(r);return M.log.warn(`Could not generate baseline migration: ${n}`),M.log.warn("Run 'pnpm -F @repo/database generate' before your first deploy."),!1}}async function ds(e){try{return await as(zr(e,".git")),M.log.info("Git repository already exists, skipping init."),!0}catch{}if(!Ke("git"))return M.log.warn("git not found. Skipping repository initialization."),!1;let t=M.spinner();t.start("Initializing git repository...");try{return await Ge("git",["init"],e),await Ge("git",["add","-A"],e),await Ge("git",["commit","--no-verify","-m","Initial commit from GenerateSaaS"],e),t.stop("Git repository initialized."),!0}catch{return t.stop("Git initialization failed."),M.log.warn("You can run git init manually later."),!1}}async function us(e){if(!Ke("pnpm"))return!1;try{await as(zr(e,".git"))}catch{return!1}try{let t=JSON.parse(await Yl(zr(e,"package.json"),"utf-8")),r=!!t.devDependencies?.["simple-git-hooks"],n=!!t["simple-git-hooks"];if(!r||!n)return!1}catch{return!1}try{return await Ge("pnpm",["exec","simple-git-hooks"],e),!0}catch{return M.log.warn("Could not install git hooks. Run 'pnpm exec simple-git-hooks' manually."),!1}}import*as He from"@clack/prompts";import re from"picocolors";function ms(e,t){let r=Qe(e);t.dockerAvailable||He.log.warn("Docker not found. Install Docker to run local services: https://docs.docker.com/get-docker/"),t.baselineMigrationMissing&&He.log.warn("No database migration was generated (the install did not complete). Run `pnpm install` then `pnpm --filter @repo/database generate` and commit the result BEFORE deploying - otherwise your first deploy pushes the schema untracked.");let n=[];n.push(`cd ${e.projectDir}`),t.pnpmInstalled||n.push("pnpm install"),n.push(`pnpm infra ${re.dim(`# ${r.map(a=>sn[a].label).join(", ")}`)}`),n.push(`pnpm dev ${re.dim("# http://localhost:3000")}`),t.skippedCredentials.length>0&&(n.push(""),n.push(re.dim("Fill in remaining TODO values in .env"))),He.note(n.join(`
1577
- `),re.yellow("Start Development"));let i=[];i.push(`App ${re.cyan("http://localhost:3000")}`),e.architecture==="separate"&&i.push(`API ${re.cyan("http://localhost:3010")}`),r.includes("mailpit")&&i.push(`Mailpit ${re.cyan("http://localhost:8025")}`),r.includes("inngest")&&i.push(`Inngest ${re.cyan("http://localhost:8288")}`),He.note(i.join(`
1578
- `),re.yellow("Dev Tools"));let o=[],s=Wl(e);s.length>0&&o.push(`Set in production: ${re.dim(s.join(", "))}`),o.push("pnpm db:setup # Apply the database schema"),o.push(zl(e)),He.note(o.join(`
1579
- `),re.yellow("Deployment"))}function Wl(e){let t=["DATABASE_URL","BETTER_AUTH_SECRET","INNGEST_APP_ID","INNGEST_EVENT_KEY","INNGEST_BASE_URL"];return e.cacheProvider==="upstash"?t.push("UPSTASH_REDIS_REST_URL","UPSTASH_REDIS_REST_TOKEN"):t.push("REDIS_URL"),e.paymentProvider==="stripe"?t.push("STRIPE_SECRET_KEY","STRIPE_WEBHOOK_SECRET"):e.paymentProvider==="polar"&&t.push("POLAR_ACCESS_TOKEN","POLAR_WEBHOOK_SECRET"),e.emailProvider==="ses"?t.push("AMAZON_SES_REGION","AMAZON_SES_KEY","AMAZON_SES_SECRET"):e.emailProvider==="resend"?t.push("RESEND_API_KEY"):t.push("SMTP_HOST","SMTP_PORT"),t}function zl(e){switch(e.deploymentTarget){case"node":return"Deploy with Docker or your preferred Node.js host";case"vercel":return"vercel deploy # Deploy to Vercel"}}function ut(e){let r=(e.startsWith("v")?e.slice(1):e).match(/^(\d+)\.(\d+)\.(\d+)$/);return r?[Number(r[1]),Number(r[2]),Number(r[3])]:null}function Ye(e,t){let r=ut(e),n=ut(t);if(!r||!n)return 0;for(let i=0;i<3;i++)if(r[i]!==n[i])return r[i]-n[i];return 0}function or(e,t){return e.versions.find(r=>r.version===t)?.cli}function hs(e){return process.env.GENERATESAAS_TEMPLATE_TARBALL||process.env.GENERATESAAS_TEMPLATE_TARBALL_DIR||process.env.GENERATESAAS_OFFLINE_LICENSE==="1"?!0:ut(e)===null}function ar(e,t,r="3.7.0"){if(hs(r))return{ok:!0};let n=or(e,e.latest);return!n||ut(n)===null?{ok:!0}:Ye(r,n)>=0?{ok:!0}:{ok:!1,message:`Your installed generatesaas CLI (v${r}) is too old for template v${e.latest}, which needs CLI v${n} or newer. Run npx generatesaas@latest ${t} so npm fetches the current CLI. If the release happened minutes ago, npm may still be propagating it - retry shortly.`}}function fs(e,t,r="3.7.0"){if(hs(r))return{ok:!0};let n=or(e,t);return!n||ut(n)===null?{ok:!0}:Ye(r,n)===0?{ok:!0}:{ok:!1,message:`Template v${t} must be scaffolded by CLI v${n} exactly (the CLI whose generators produced that release). Run npx generatesaas@${n} init.`}}import ep from"picocolors";var tp="a10a6fb9d7cadde32e37dad52059d17b5d2b916b08c76d8fbcc99982e9a3d87f";async function rp(e){let t=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(`generatesaas-demo:${e}`)),r=[...new Uint8Array(t).subarray(0,16)].map(n=>n.toString(16).padStart(2,"0")).join("");return`${r.slice(0,8)}-${r.slice(8,12)}-${r.slice(12,16)}-${r.slice(16,20)}-${r.slice(20,32)}`}function gs(e){e.command("init").description("Scaffold a new GenerateSaaS project").argument("[apiKey]","license key (same as --api-key)").option("-n, --name <name>","project name (lowercase, hyphens, starts with letter)").option("--app-name <name>","display name for the app").option("-l, --location <path>","project directory (default: ./{name})").addOption(new ne("--architecture <type>","fullstack or separate").choices([...et])).addOption(new ne("--payment <provider>","payment provider").choices([...tt])).addOption(new ne("--email <provider>","email provider").choices([...rt])).option("--org","enable multi-tenancy (organizations)").option("--no-org","disable multi-tenancy").option("--projects","enable projects (a switcher that scopes a user's work)").option("--no-projects","disable projects").option("--docs","include the docs app (apps/docs, Fumadocs)").option("--no-docs","exclude the docs app").option("--desktop","include the desktop app (apps/desktop, built with Electron)").option("--no-desktop","exclude the desktop app").option("--mobile","include the mobile app (apps/mobile, built with Expo)").option("--no-mobile","exclude the mobile app").addOption(new ne("--mobile-purchases <lane>","in-app purchases in the mobile app: revenuecat adds the store billing lane on top of your web payment provider, none keeps web billing only").choices([...Me])).option("--ai","include the AI features (chat, models, automations, integrations); unlocks the runner").option("--no-ai","exclude the AI features").option("--web-ai","show the AI features in the web app (the default)").option("--no-web-ai","desktop-first: keep the AI features out of the web app, which is reduced to account, login and billing - the desktop or mobile app is the AI product. Requires --desktop or --mobile, plus --ai, and cannot be combined with --runner").option("--runner","include the runner feature - your web users connect a machine that runs their own AI subscriptions for this app").option("--no-runner","exclude the backend runner feature").option("--revenue-sharing","enable revenue sharing").option("--no-revenue-sharing","disable revenue sharing").option("--credits","enable credits system").option("--no-credits","disable credits system (subscription-only)").addOption(new ne("--currency <code>","default currency for billing").choices([...fe])).addOption(new ne("--preset <preset>","infrastructure preset: serverless (Vercel + Neon + Upstash) or selfhost (Docker or Node + Postgres + Redis); --deploy/--database/--cache override it piecewise").choices([...je])).addOption(new ne("--deploy <target>","deployment target").choices([...ge])).addOption(new ne("--database <provider>","database provider").choices([...ye])).addOption(new ne("--cache <provider>","cache provider").choices([...be])).option("--observability <providers>",`comma-separated observability providers (${K.join(", ")}); anything unselected ships no SDK`).option("--api-key <key>","API key (skips interactive prompt)").option("--base-url <url>","public base URL (e.g. https://example.com) - bakes into canonical/og/sitemap").option("-y, --yes","accept defaults for unspecified options (non-interactive)").addOption(new ne("--demo","first-party demo build: keep sample content, mark site non-indexable - requires CI API key").hideHelp()).addOption(new ne("--no-db-migration","skip generating the baseline DB migration (internal: demos/CI/playground)").hideHelp()).action(async(t,r)=>{await np(t?{...r,apiKey:t}:r)})}async function np(e){let t=performance.now();rn("3.7.0");let r;try{r=gn(e)}catch(v){k.cancel(j(v)),process.exit(1)}let n=k.spinner(),i;try{i=await it({apiKey:e.apiKey,prompt:!e.yes})}catch(v){k.cancel(j(v)),process.exit(1)}e.demo&&Br(i)!==tp&&(k.cancel("--demo is restricted to first-party demo deployments."),process.exit(1));let o=ve(i),s,a=async()=>{s=await Te(o);let v=ar(s,"init");if(!v.ok)throw new Error(v.message);return{latestVersion:s.latest,selectedVersion:s.latest,desktopAllowed:s.entitlements?.desktopAllowed??!0,runnerAllowed:s.entitlements?.runnerAllowed??!0,mobileAllowed:s.entitlements?.mobileAllowed??!0}};n.start("Verifying access...");let d,u,w=!0,y=!0,P=!0;try{({latestVersion:d,selectedVersion:u,desktopAllowed:w,runnerAllowed:y,mobileAllowed:P}=await a()),n.stop("Access verified."),Fe(i)}catch(v){if(n.stop("Access verification failed."),v instanceof F&&v.status===401){e.yes&&(k.cancel("Invalid API key. Cannot prompt in non-interactive mode."),process.exit(1)),k.log.warning("Invalid API key."),i=await kt(),o=ve(i),n.start("Verifying access...");try{({latestVersion:d,selectedVersion:u,desktopAllowed:w,runnerAllowed:y,mobileAllowed:P}=await a()),n.stop("Access verified."),Fe(i)}catch(U){n.stop("Access verification failed."),k.cancel(U instanceof F&&U.status===401?"Invalid API key.":j(U)),process.exit(1)}}else k.cancel(j(v)),process.exit(1)}k.log.success(`Latest version: ${d}`),r.desktop===!0&&!w&&(k.cancel("The desktop app is available on the Pro plan and up. Upgrade your plan at generatesaas.com."),process.exit(1)),r.runner===!0&&!y&&(k.cancel("The runner is available on the Pro plan and up. Upgrade your plan at generatesaas.com."),process.exit(1)),r.mobile===!0&&!P&&(k.cancel("The mobile app is available on the Pro plan and up. Upgrade your plan at generatesaas.com."),process.exit(1));let I;e.yes?I=yn({...r,...w?{}:{desktop:!1},...y?{}:{runner:!1},...P?{}:{mobile:!1}}):I=await bn(r,{desktopAllowed:w,runnerAllowed:y,mobileAllowed:P});let R;n.start("Activating license...");try{let v=e.demo&&I.baseUrl?await rp(I.baseUrl):crypto.randomUUID(),U=()=>({frontend:vr,version:u,installId:v,projectName:I.projectName,options:An(I)}),G;try{G=await kr(o,U())}catch(se){let C=Vt(se);if(!C?.lastAllowedVersion||!s)throw se;n.stop("License activation failed.");let de=fs(s,C.lastAllowedVersion);if(de.ok||(k.cancel(`${C.message} ${de.message}`),process.exit(1)),e.yes){let ue=or(s,C.lastAllowedVersion);k.cancel(`${C.message} Re-run ${ue?`npx generatesaas@${ue} init`:"init"} without --yes to continue with v${C.lastAllowedVersion} (the last version your license covers).`),process.exit(1)}let X=await k.confirm({message:`Your update window has ended. Continue with v${C.lastAllowedVersion} (the last version your license covers)?`});(k.isCancel(X)||!X)&&(k.cancel("Setup cancelled."),process.exit(0)),u=C.lastAllowedVersion,n.start(`Activating license for v${u}...`),G=await kr(o,U())}R={token:G.token,keyHash:Br(i),installId:G.installId??v},n.stop("License activated.")}catch(v){n.stop("License activation failed."),k.cancel(j(v)),process.exit(1)}let f=Ql(I.projectDir);if(ql(f)&&Jl(f).length>0)if(e.yes)k.log.info(`Directory ${f} is not empty. Merging (keeping existing files, overwriting conflicts).`);else{let U=await k.select({message:`Directory ${f} is not empty.`,options:[{value:"merge",label:"Merge",hint:"keep existing files, overwrite conflicts"},{value:"overwrite",label:"Overwrite",hint:"delete everything and start fresh"},{value:"cancel",label:"Cancel"}]});(k.isCancel(U)||U==="cancel")&&(k.cancel("Setup cancelled."),process.exit(0)),U==="overwrite"&&Xl(f,{recursive:!0,force:!0})}let O={...I,projectDir:f,version:u,...e.demo?{docs:!1}:{}};n.start("Downloading template...");try{await Bt(o,u,f),n.stop("Template downloaded.")}catch(v){n.stop("Download failed."),k.cancel(j(v)),process.exit(1)}n.start("Generating project files...");try{if(await ir(O),!e.demo){let v=await dt(f);await c(Zl(f,Ut),JSON.stringify(v,null," ")+`
1580
- `),await ns(f,f)}await os(f),await ts(O,R),n.stop("Project files generated.")}catch(v){n.stop("Generation failed."),k.cancel(j(v)),process.exit(1)}!await cs(f)&&O.demo===!0&&(k.cancel("Lockfile regeneration failed on a demo build - refusing to ship a stale lockfile."),process.exit(1));let q=await ls(f),J=O.demo!==!0&&e.dbMigration!==!1,Oe=!1;J&&q&&(await ps(f),Oe=!0),await ds(f),q&&await us(f);let xe=Ke("docker"),Je=yr(O).map(v=>v.key).filter(v=>!O.credentials?.[v]);ms(O,{pnpmInstalled:q,dockerAvailable:xe,skippedCredentials:Je,baselineMigrationMissing:J&&!Oe}),nn(),k.log.info(ep.dim(`Done in ${((performance.now()-t)/1e3).toFixed(1)}s`))}import{existsSync as cr}from"fs";import{readFile as Es}from"fs/promises";import{join as We,resolve as cp}from"path";import*as b from"@clack/prompts";import D from"picocolors";import{mkdtemp as ip,rm as sp}from"fs/promises";import{tmpdir as op}from"os";import{join as ap}from"path";async function qr(e,t,r,n){let i=await ip(ap(op(),"generatesaas-stage-"));try{await Bt(e,t,i),await ir({...r,projectDir:i}),await Gr(i,n)}finally{await sp(i,{recursive:!0,force:!0})}}function ys(e){return e?"ON":"OFF"}var mt="packages/config/src/index.ts";function bs(e){let t=e.databaseProvider!==void 0&&e.databaseProvider!=="postgres",r=e.cacheProvider!==void 0&&e.cacheProvider!=="redis";return[...e.dockerServices??[]].filter(n=>!(n==="postgres"&&t)&&!(n==="redis"&&r)).sort()}function ws(e){return[...Qe({databaseProvider:e.databaseProvider??"postgres",cacheProvider:e.cacheProvider??"redis",emailProvider:e.emailProvider??"smtp"})].sort()}var Jr=[{key:"errorTracking",severity:"warn",normalize:e=>{e.errorTracking===void 0||e.observability!==void 0||(e.observability=e.errorTracking==="none"?[]:[e.errorTracking])},preserved:()=>!0,describe:()=>"Retired option `errorTracking`: it is now `observability`, an array, because a project may run more than one provider at once. Your recorded choice was migrated across automatically."},{key:"companion",severity:"warn",normalize:e=>{e.companion===void 0||e.runner!==void 0||(e.runner=e.companion)},preserved:()=>!0,describe:()=>"Retired option `companion`: it is now `runner`, because the daemon it names is AgentRunner. Your recorded choice was migrated across automatically - the feature itself is unchanged."},{key:"companionSource",severity:"warn",preserved:()=>!1,describe:e=>`Retired option \`companionSource\`: your project recorded a \`${String(e.companionSource)}\` daemon source. There is now one runner daemon - AgentRunner - which we publish and your users install from its own releases. Your project keeps the runner feature and its own pairing, dispatch and Runners page; it no longer holds or brands a daemon.`},{key:"companionName",severity:"warn",preserved:()=>!1,describe:e=>`Retired option \`companionName\`: your project recorded a branded daemon called ${e.companionName}. Buyers no longer brand or publish a daemon - your users install AgentRunner, which we maintain. Their existing install of your old daemon keeps running until they switch.`},{key:"companionRepoUrl",severity:"warn",preserved:()=>!1,describe:e=>`Retired option \`companionRepoUrl\`: your project pointed its install flow at ${e.companionRepoUrl}. It now points at AgentRunner, the one daemon we publish.`},{key:"companionLocalPath",severity:"warn",preserved:e=>(e.companionLocalPath??"").trim()==="",describe:e=>`Retired option \`companionLocalPath\`: your project recorded a local daemon checkout at ${e.companionLocalPath}. The option is gone, and so is the choice behind it - there is one runner daemon (AgentRunner) and we publish it, so nothing in your project is built from a local checkout any more.`},{key:"desktopAutoRelease",severity:"warn",applies:e=>e.desktop===!0,preserved:e=>e.desktopAutoRelease!==!0,describe:()=>"Retired option `desktopAutoRelease`: your project recorded automatic desktop releases, but the release trigger is no longer an option - cutting a release publishes signed installers from your repository and spends your Actions minutes, so it is always deliberate now. The staged `.github/workflows/desktop-release.yml` runs on `workflow_dispatch` only (the Actions tab). Add a `workflow_run` block to it if you want the CI-chained trigger back."},{key:"billingScope",severity:"ask",applies:e=>e.multiTenancy===!0,preserved:e=>e.billingScope!=="organization",describe:()=>"Retired option `billingScope`: your project recorded organization-scoped billing, and organization billing is GONE - not moved to config, removed. Money now lives only on a USER: an organization has no balance, no plan and no payment-provider customer of its own, and a workspace is funded by that organization's OWNER, whose personal balance every credit spent in it is drawn from. Payments already in flight are safe - a webhook arriving with old organization metadata is credited to that organization's owner rather than dropped - but a STORED balance is not: the `credits` and `plan` columns an organization holds them in are going away, and this update does NOT migrate them for you. MOVE every paying organization's credits and plan onto its owner BEFORE you take new checkouts, or that balance goes with the columns. How should this update proceed?"},{key:"socialProviders",severity:"warn",preserved:e=>(e.socialProviders??[]).length===0,describe:e=>`Retired option \`socialProviders\`: your project recorded ${(e.socialProviders??[]).join(", ")}, but it is now a plain config value that starts empty. Add those IDs back to \`config.auth.socialProviders\` in ${mt} or their sign-in buttons stop rendering.`},{key:"mcpServer",severity:"warn",preserved:e=>e.mcpServer!==!0,describe:()=>`Retired option \`mcpServer\`: your project recorded the outward MCP server ON, but its code now ships to every project behind a config gate generated OFF. Set \`config.mcpServer.enabled\` to \`true\` in ${mt} to keep your /mcp endpoint and its settings tab.`},{key:"emailTracking",severity:"ask",preserved:e=>e.emailTracking!==!1,describe:()=>`Retired option \`emailTracking\`: your project recorded email open/click tracking OFF, but it is now a plain config value generated ON. Applying this update as-is starts tracking opens and clicks for every user you mail. Put it back by setting \`config.email.tracking.enabled\` to \`false\` in ${mt}. How should this update proceed?`},{key:"aiBuiltin",severity:"warn",normalize:e=>{e.aiBuiltin===void 0&&e.aiByok!==void 0&&(e.aiBuiltin=e.aiByok===!1)},applies:e=>e.ai===!0,preserved:e=>e.aiBuiltin===oe(e),describe:e=>`Retired option \`aiBuiltin\`: your project recorded built-in AI models ${ys(e.aiBuiltin)}, but it is now a plain config value generated ${ys(oe(e))} for a project ${oe(e)?"with":"without"} a payment provider. Set \`config.ai.builtin\` to \`${String(e.aiBuiltin===!0)}\` in ${mt} to keep your choice.`},{key:"aiByok",severity:"warn",applies:e=>e.ai===!0,preserved:e=>e.aiByok!==!1,describe:()=>`Retired option \`aiByok\`: your project recorded bring-your-own-key AI OFF, but it is now a plain config value generated ON. Set \`config.ai.byok\` to \`false\` in ${mt} to keep it off.`},{key:"dockerServices",severity:"warn",preserved:e=>bs(e).join(",")===ws(e).join(","),describe:e=>`Retired option \`dockerServices\`: your project recorded ${bs(e).join(", ")||"no services"}, but the local Docker services are now DERIVED from your stack - postgres when you self-host Postgres, redis when you self-host Redis, mailpit on SMTP, inngest always - so an inconsistent selection is no longer possible. Your regenerated \`infra/docker-compose.yml\` will contain ${ws(e).join(", ")}. Add any extra service back by hand; the file is yours to edit.`},{key:"aiTools",severity:"warn",preserved:e=>(e.aiTools??[]).length===an.length,describe:e=>`Retired option \`aiTools\`: your project recorded ${(e.aiTools??[]).join(", ")||"no AI tools"}, but the \`generatesaas-update\` skill bundle now ships to every AI-tool root (${Be.join(", ")}) so it is there whichever assistant you switch to. Delete the roots you do not use - they are plain text files with no runtime path.`},{key:"blog",severity:"warn",preserved:e=>e.blog!==!1,describe:()=>`Retired option \`blog\`: your project recorded the blog OFF, but content is no longer an option. This update adds the \`/blog\`, \`/alternatives\` and \`/compare\` route code to your project; every one of them 404s until you add a file under \`packages/content/{locale}/{section}/\`, and none of them appears in your navbar, footer, sitemap or llms.txt while it is empty. Delete an entry from \`config.content.sections\` in ${mt} to drop a section for good.`}],Mf=Jr.map(e=>e.key);function vs(e){for(let t of Jr)t.normalize?.(e)}function ks(e){let t=[];for(let r of Jr){if(r.normalize?.(e),e[r.key]===void 0)continue;(!r.applies||r.applies(e))&&!r.preserved(e)&&t.push({key:r.key,message:r.describe(e),severity:r.severity}),delete e[r.key]}return t}function Ss(e){e.command("update").description("Update AI skill files and stage template updates").argument("[mode]","pass 'auto' to mark the staged update for unattended apply by your AI assistant").option("--cwd <path>","project directory (default: current directory)").action(async(t,r)=>{let n=t==="auto"?"auto":void 0,i=cp(r.cwd??process.cwd()),o=We(i,Ae),s;try{s=JSON.parse(await Es(o,"utf-8"))}catch{b.cancel(".generatesaas/manifest.json not found. Run this from a GenerateSaaS project."),process.exit(1)}s.frontend===br&&(b.cancel(`This project was generated on the Nuxt frontend (\`.generatesaas/manifest.json\` records \`frontend: "${br}"\`).
1620
+ `,replace:""},{find:"export async function captureAiGeneration(event: AiGenerationEvent): Promise<void> {",replace:"export async function captureAiGeneration(_event: AiGenerationEvent): Promise<void> {"},{find:" * @param event - The call to record.",replace:" * @param _event - Ignored: no PostHog adapter was generated for this project."}]}var Ki=[{file:"src/resolve-server.ts",edits:Pl},{file:"src/resolve-browser.ts",edits:Al},{file:"src/llm-analytics.ts",edits:Cl,dualMode:!1}],Ll=[{file:"src/resolve-desktop-main.ts",edits:Rl},{file:"src/resolve-desktop-renderer.ts",edits:Tl}];import{readdir as $l,readFile as jl}from"fs/promises";import{join as Xi}from"path";async function Zi(e){if(e.demo)return;let t=e.appName.trim()||e.projectName,r=JSON.stringify(t).slice(1,-1),n=Xi(e.projectDir,"packages/i18n/translations"),i;try{i=await $l(n)}catch{return}for(let o of i){let s=Xi(n,o,"web.json"),a;try{a=await jl(s,"utf-8")}catch{continue}let d=a.replaceAll("GenerateSaaS",()=>r);d!==a&&await c(s,d)}}async function ir(e){let t=e.projectDir;e.demo||(await Nn(t),await Cn(t),await Ln(t),await $n(t)),await jn(t),await Mn(e),await Vn(e),await Bn(e),e.demo||await Gn(e),await Yn(e),await Wn(e),await zn(e),await Zn(e),await ei(e),await ri(e),await li(e),await di(e),await hi(e),await wi(e),await Li(e),await vi(e),await ki(e),await Ei(e),await Si(e),await Pi(e),await Ai(e),await Ii(e),await Oi(e),await Ri(e),await Ti(e),await Di(e),await Ur(e),await Ui(e),await Fi(e),await Yi(e),await ai(e),await Zi(e),await gi(e)}import{basename as es,join as ts,relative as Ml}from"path";import{createHash as Qi}from"crypto";import{readFile as Ul}from"fs/promises";async function sr(e){let t=await Ul(e);return Qi("sha256").update(t).digest("hex")}function Br(e){return Qi("sha256").update(e).digest("hex")}var Fl=new Set(["data",Q]);function Vl(e){let t=e.split("/");for(let r of t)if(Sr.has(r)||Pr.has(r)||Fl.has(r)||r.startsWith(".env")&&!r.includes("example"))return!0;return!1}function rs(e,t){return{projectName:e.projectName??es(t),appName:e.appName??e.projectName??es(t),projectDir:t,architecture:e.architecture??"fullstack",paymentProvider:e.paymentProvider??"none",emailProvider:e.emailProvider??"smtp",multiTenancy:e.multiTenancy??!1,projects:e.projects??!1,docs:e.docs??!1,desktop:e.desktop??!1,mobile:e.mobile??!1,mobilePurchases:e.mobilePurchases??"none",ai:e.ai??!1,webAi:e.webAi??!0,runner:e.runner??!1,revenueSharing:e.revenueSharing??!1,credits:e.credits??!1,defaultCurrency:e.defaultCurrency??"USD",deploymentTarget:e.deploymentTarget??"node",databaseProvider:e.databaseProvider??"postgres",cacheProvider:e.cacheProvider??"redis",observability:e.observability??[],version:e.version,baseUrl:e.baseUrl,credentials:{},demo:!1}}function Bl(e,t){return{version:e.version,initialVersion:e.version,appName:e.appName,projectName:e.projectName,frontend:wn,architecture:e.architecture,paymentProvider:e.paymentProvider,emailProvider:e.emailProvider,multiTenancy:e.multiTenancy,projects:e.projects,docs:e.docs,desktop:e.desktop,mobile:e.mobile,...e.mobile&&oe(e)?{mobilePurchases:e.mobilePurchases}:{},ai:e.ai,webAi:e.webAi,runner:e.runner,credits:e.credits,revenueSharing:e.revenueSharing,defaultCurrency:e.defaultCurrency,deploymentTarget:e.deploymentTarget,databaseProvider:e.databaseProvider,cacheProvider:e.cacheProvider,observability:e.observability,...e.baseUrl?{baseUrl:e.baseUrl}:{},...t&&{licenseToken:t.token,licenseKeyHash:t.keyHash,installId:t.installId}}}async function ns(e,t){let n=(await Ee(e.projectDir,e.projectDir,Vl)).sort(),i=await Promise.all(n.map(async a=>[Be(Ml(e.projectDir,a)),await sr(a)])),o=Object.fromEntries(i),s=Bl(e,t);await c(ts(e.projectDir,we),`${JSON.stringify(s,null," ")}
1621
+ `),await c(ts(e.projectDir,vn),`${JSON.stringify(o,null," ")}
1622
+ `)}import{relative as Gl}from"path";async function dt(e){let r=(await Ee(e,e,st)).sort(),n=await Promise.all(r.map(async i=>[Be(Gl(e,i)),await sr(i)]));return Object.fromEntries(n)}import{copyFile as Kl,mkdir as Hl,rm as Yl}from"fs/promises";import{dirname as Wl,join as is,relative as zl}from"path";import{existsSync as ql}from"fs";async function Gr(e,t){ql(t)&&await Yl(t,{recursive:!0,force:!0});let n=(await Ee(e,e,st)).map(i=>({file:i,dest:is(t,Be(zl(e,i)))}));await Promise.all([...new Set(n.map(({dest:i})=>Wl(i)))].map(i=>Hl(i,{recursive:!0}))),await Promise.all(n.map(({file:i,dest:o})=>Kl(i,o)))}async function ss(e,t){await Gr(e,is(t,Ft))}import{readdir as Jl,readFile as as}from"fs/promises";import{existsSync as Xl}from"fs";import{dirname as Zl,join as pe,resolve as Kr,sep as Hr}from"path";import{fileURLToPath as Ql}from"url";var ep={"claude-code":".claude/skills",cursor:".cursor/skills",codex:".agents/skills","gemini-cli":".gemini/skills",windsurf:".windsurf/skills"},Ge=Object.values(ep),Yr=["generatesaas-update"],tp=Zl(Ql(import.meta.url));function rp(){return Kt(tp,["skill","content"],"content")}async function Wr(e,t){for(let r of Ge){let n=pe(e,r);for(let[i,o]of Object.entries(t)){let s=Kr(n,i);if(!s.startsWith(n+Hr))continue;let a=pe(s,"scripts"),d=pe(s,"references");await Yt(a),await Yt(d),await c(pe(s,"SKILL.md"),o.skillMd.replaceAll("__SKILL_ROOT__",r));for(let[w,b]of Object.entries(o.scripts)){let P=Kr(a,w);P.startsWith(a+Hr)&&await c(P,b)}let m=Object.entries(o.references);m.length===0&&await c(pe(d,".gitkeep"),"");for(let[w,b]of m){let P=Kr(d,w);P.startsWith(d+Hr)&&await c(P,b)}}}}async function os(e){if(!Xl(e))return{};let t={};for(let r of await Jl(e))r!==".gitkeep"&&(t[r]=await as(pe(e,r),"utf-8"));return t}async function cs(e){let t=rp(),r={};for(let n of Yr){let i=pe(t,n);r[n]={skillMd:await as(pe(i,"SKILL.md"),"utf-8"),scripts:await os(pe(i,"scripts")),references:await os(pe(i,"references"))}}await Wr(e,r)}import{execFile as np,execFileSync as ip}from"child_process";import{access as ls,readFile as sp}from"fs/promises";import{join as zr}from"path";import*as U from"@clack/prompts";function He(e){try{let t=process.platform==="win32"?"where":"which";return ip(t,[e],{stdio:"ignore"}),!0}catch{return!1}}function Ke(e,t,r,n=3e5){return new Promise((i,o)=>{np(e,t,{cwd:r,timeout:n,maxBuffer:50*1024*1024},(s,a,d)=>{if(s){let m=String(a||"").trim(),b=[String(d||"").trim(),m].filter(Boolean).join(`
1623
+ `);o(new Error(b?`${s.message}
1624
+ ${b}`:s.message))}else i()})})}async function ps(e){if(!He("pnpm"))return U.log.warn("pnpm not found. Skipping lockfile regeneration."),!1;try{return await Ke("pnpm",["install","--lockfile-only","--no-frozen-lockfile","--config.minimumReleaseAge=0"],e),!0}catch(t){let r=t instanceof Error?t.message:String(t);return U.log.warn(`Lockfile regeneration failed: ${r}`),U.log.warn("Deploys using --frozen-lockfile may fail."),!1}}async function ds(e){if(!He("pnpm"))return U.log.warn("pnpm not found. Skipping dependency installation."),U.log.info("Install pnpm: https://pnpm.io/installation"),!1;let t=U.spinner();t.start("Installing dependencies (this may take a minute)...");try{return await Ke("pnpm",["install","--config.minimumReleaseAge=0"],e),t.stop("Dependencies installed."),!0}catch(r){t.stop("Dependency installation failed.");let n=r instanceof Error?r.message:String(r);return U.log.warn(`pnpm install failed: ${n}`),U.log.warn("You can run it manually later."),!1}}async function us(e){if(!He("pnpm"))return!1;let t=U.spinner();t.start("Generating baseline database migration...");try{return await Ke("pnpm",["-F","@repo/database","generate"],e),t.stop("Baseline migration generated."),!0}catch(r){t.stop("Baseline migration generation failed.");let n=r instanceof Error?r.message:String(r);return U.log.warn(`Could not generate baseline migration: ${n}`),U.log.warn("Run 'pnpm -F @repo/database generate' before your first deploy."),!1}}async function ms(e){try{return await ls(zr(e,".git")),U.log.info("Git repository already exists, skipping init."),!0}catch{}if(!He("git"))return U.log.warn("git not found. Skipping repository initialization."),!1;let t=U.spinner();t.start("Initializing git repository...");try{return await Ke("git",["init"],e),await Ke("git",["add","-A"],e),await Ke("git",["commit","--no-verify","-m","Initial commit from GenerateSaaS"],e),t.stop("Git repository initialized."),!0}catch{return t.stop("Git initialization failed."),U.log.warn("You can run git init manually later."),!1}}async function hs(e){if(!He("pnpm"))return!1;try{await ls(zr(e,".git"))}catch{return!1}try{let t=JSON.parse(await sp(zr(e,"package.json"),"utf-8")),r=!!t.devDependencies?.["simple-git-hooks"],n=!!t["simple-git-hooks"];if(!r||!n)return!1}catch{return!1}try{return await Ke("pnpm",["exec","simple-git-hooks"],e),!0}catch{return U.log.warn("Could not install git hooks. Run 'pnpm exec simple-git-hooks' manually."),!1}}import*as Ye from"@clack/prompts";import re from"picocolors";function fs(e,t){let r=Qe(e);t.dockerAvailable||Ye.log.warn("Docker not found. Install Docker to run local services: https://docs.docker.com/get-docker/"),t.baselineMigrationMissing&&Ye.log.warn("No database migration was generated (the install did not complete). Run `pnpm install` then `pnpm --filter @repo/database generate` and commit the result BEFORE deploying - otherwise your first deploy pushes the schema untracked.");let n=[];n.push(`cd ${e.projectDir}`),t.pnpmInstalled||n.push("pnpm install"),n.push(`pnpm infra ${re.dim(`# ${r.map(a=>sn[a].label).join(", ")}`)}`),n.push(`pnpm dev ${re.dim("# http://localhost:3000")}`),t.skippedCredentials.length>0&&(n.push(""),n.push(re.dim("Fill in remaining TODO values in .env"))),Ye.note(n.join(`
1625
+ `),re.yellow("Start Development"));let i=[];i.push(`App ${re.cyan("http://localhost:3000")}`),e.architecture==="separate"&&i.push(`API ${re.cyan("http://localhost:3010")}`),r.includes("mailpit")&&i.push(`Mailpit ${re.cyan("http://localhost:8025")}`),r.includes("inngest")&&i.push(`Inngest ${re.cyan("http://localhost:8288")}`),Ye.note(i.join(`
1626
+ `),re.yellow("Dev Tools"));let o=[],s=op(e);s.length>0&&o.push(`Set in production: ${re.dim(s.join(", "))}`),o.push("pnpm db:setup # Apply the database schema"),o.push(ap(e)),Ye.note(o.join(`
1627
+ `),re.yellow("Deployment"))}function op(e){let t=["DATABASE_URL","BETTER_AUTH_SECRET","INNGEST_APP_ID","INNGEST_EVENT_KEY","INNGEST_BASE_URL","INNGEST_SIGNING_KEY"];return e.cacheProvider==="upstash"?t.push("UPSTASH_REDIS_REST_URL","UPSTASH_REDIS_REST_TOKEN"):t.push("REDIS_URL"),e.paymentProvider==="stripe"?t.push("STRIPE_SECRET_KEY","STRIPE_WEBHOOK_SECRET"):e.paymentProvider==="polar"&&t.push("POLAR_ACCESS_TOKEN","POLAR_WEBHOOK_SECRET"),e.emailProvider==="ses"?t.push("AMAZON_SES_REGION","AMAZON_SES_KEY","AMAZON_SES_SECRET"):e.emailProvider==="resend"?t.push("RESEND_API_KEY"):t.push("SMTP_HOST","SMTP_PORT"),t}function ap(e){switch(e.deploymentTarget){case"node":return"Deploy with Docker or your preferred Node.js host";case"vercel":return"vercel deploy # Deploy to Vercel"}}function ut(e){let r=(e.startsWith("v")?e.slice(1):e).match(/^(\d+)\.(\d+)\.(\d+)$/);return r?[Number(r[1]),Number(r[2]),Number(r[3])]:null}function _e(e,t){let r=ut(e),n=ut(t);if(!r||!n)return 0;for(let i=0;i<3;i++)if(r[i]!==n[i])return r[i]-n[i];return 0}function or(e,t){return e.versions.find(r=>r.version===t)?.cli}function gs(e){return process.env.GENERATESAAS_TEMPLATE_TARBALL||process.env.GENERATESAAS_TEMPLATE_TARBALL_DIR||process.env.GENERATESAAS_OFFLINE_LICENSE==="1"?!0:ut(e)===null}function ar(e,t,r="3.9.0"){if(gs(r))return{ok:!0};let n=or(e,e.latest);return!n||ut(n)===null?{ok:!0}:_e(r,n)>=0?{ok:!0}:{ok:!1,message:`Your installed generatesaas CLI (v${r}) is too old for template v${e.latest}, which needs CLI v${n} or newer. Run npx generatesaas@latest ${t} so npm fetches the current CLI. If the release happened minutes ago, npm may still be propagating it - retry shortly.`}}function ys(e,t,r="3.9.0"){if(gs(r))return{ok:!0};let n=or(e,t);return!n||ut(n)===null?{ok:!0}:_e(r,n)===0?{ok:!0}:{ok:!1,message:`Template v${t} must be scaffolded by CLI v${n} exactly (the CLI whose generators produced that release). Run npx generatesaas@${n} init.`}}import mp from"picocolors";var hp="a10a6fb9d7cadde32e37dad52059d17b5d2b916b08c76d8fbcc99982e9a3d87f";async function fp(e){let t=await crypto.subtle.digest("SHA-256",new TextEncoder().encode(`generatesaas-demo:${e}`)),r=[...new Uint8Array(t).subarray(0,16)].map(n=>n.toString(16).padStart(2,"0")).join("");return`${r.slice(0,8)}-${r.slice(8,12)}-${r.slice(12,16)}-${r.slice(16,20)}-${r.slice(20,32)}`}function bs(e){e.command("init").description("Scaffold a new GenerateSaaS project").argument("[apiKey]","license key (same as --api-key)").option("-n, --name <name>","project name (lowercase, hyphens, starts with letter)").option("--app-name <name>","display name for the app").option("-l, --location <path>","project directory (default: ./{name})").addOption(new ne("--architecture <type>","fullstack or separate").choices([...et])).addOption(new ne("--payment <provider>","payment provider").choices([...tt])).addOption(new ne("--email <provider>","email provider").choices([...rt])).option("--org","enable multi-tenancy (organizations)").option("--no-org","disable multi-tenancy").option("--projects","enable projects (a switcher that scopes a user's work)").option("--no-projects","disable projects").option("--docs","include the docs app (apps/docs, Fumadocs)").option("--no-docs","exclude the docs app").option("--desktop","include the desktop app (apps/desktop, built with Electron)").option("--no-desktop","exclude the desktop app").option("--mobile","include the mobile app (apps/mobile, built with Expo)").option("--no-mobile","exclude the mobile app").addOption(new ne("--mobile-purchases <lane>","in-app purchases in the mobile app: revenuecat adds the store billing lane on top of your web payment provider, none keeps web billing only").choices([...Me])).option("--ai","include the AI features (chat, models, automations, integrations); unlocks the runner").option("--no-ai","exclude the AI features").option("--web-ai","show the AI features in the web app (the default)").option("--no-web-ai","desktop-first: keep the AI features out of the web app, which is reduced to account, login and billing - the desktop or mobile app is the AI product. Requires --desktop or --mobile, plus --ai, and cannot be combined with --runner").option("--runner","include the runner feature - your web users connect a machine that runs their own AI subscriptions for this app").option("--no-runner","exclude the backend runner feature").option("--revenue-sharing","enable revenue sharing").option("--no-revenue-sharing","disable revenue sharing").option("--credits","enable credits system").option("--no-credits","disable credits system (subscription-only)").addOption(new ne("--currency <code>","default currency for billing").choices([...fe])).addOption(new ne("--preset <preset>","infrastructure preset: serverless (Vercel + Neon + Upstash) or selfhost (Docker or Node + Postgres + Redis); --deploy/--database/--cache override it piecewise").choices([...Ue])).addOption(new ne("--deploy <target>","deployment target").choices([...ge])).addOption(new ne("--database <provider>","database provider").choices([...ye])).addOption(new ne("--cache <provider>","cache provider").choices([...be])).option("--observability <providers>",`comma-separated observability providers (${K.join(", ")}); anything unselected ships no SDK`).option("--api-key <key>","API key (skips interactive prompt)").option("--base-url <url>","public base URL (e.g. https://example.com) - bakes into canonical/og/sitemap").option("-y, --yes","accept defaults for unspecified options (non-interactive)").addOption(new ne("--demo","first-party demo build: keep sample content, mark site non-indexable - requires CI API key").hideHelp()).addOption(new ne("--no-db-migration","skip generating the baseline DB migration (internal: demos/CI/playground)").hideHelp()).action(async(t,r)=>{await gp(t?{...r,apiKey:t}:r)})}async function gp(e){let t=performance.now();rn("3.9.0");let r;try{r=gn(e)}catch(v){k.cancel(j(v)),process.exit(1)}let n=k.spinner(),i;try{i=await it({apiKey:e.apiKey,prompt:!e.yes})}catch(v){k.cancel(j(v)),process.exit(1)}e.demo&&Br(i)!==hp&&(k.cancel("--demo is restricted to first-party demo deployments."),process.exit(1));let o=ke(i),s,a=async()=>{s=await Te(o);let v=ar(s,"init");if(!v.ok)throw new Error(v.message);return{latestVersion:s.latest,selectedVersion:s.latest,desktopAllowed:s.entitlements?.desktopAllowed??!0,runnerAllowed:s.entitlements?.runnerAllowed??!0,mobileAllowed:s.entitlements?.mobileAllowed??!0}};n.start("Verifying access...");let d,m,w=!0,b=!0,P=!0;try{({latestVersion:d,selectedVersion:m,desktopAllowed:w,runnerAllowed:b,mobileAllowed:P}=await a()),n.stop("Access verified."),Ve(i)}catch(v){if(n.stop("Access verification failed."),v instanceof F&&v.status===401){e.yes&&(k.cancel("Invalid API key. Cannot prompt in non-interactive mode."),process.exit(1)),k.log.warning("Invalid API key."),i=await kt(),o=ke(i),n.start("Verifying access...");try{({latestVersion:d,selectedVersion:m,desktopAllowed:w,runnerAllowed:b,mobileAllowed:P}=await a()),n.stop("Access verified."),Ve(i)}catch(M){n.stop("Access verification failed."),k.cancel(M instanceof F&&M.status===401?"Invalid API key.":j(M)),process.exit(1)}}else k.cancel(j(v)),process.exit(1)}k.log.success(`Latest version: ${d}`),r.desktop===!0&&!w&&(k.cancel("The desktop app is available on the Pro plan and up. Upgrade your plan at generatesaas.com."),process.exit(1)),r.runner===!0&&!b&&(k.cancel("The runner is available on the Pro plan and up. Upgrade your plan at generatesaas.com."),process.exit(1)),r.mobile===!0&&!P&&(k.cancel("The mobile app is available on the Pro plan and up. Upgrade your plan at generatesaas.com."),process.exit(1));let I;e.yes?I=yn({...r,...w?{}:{desktop:!1},...b?{}:{runner:!1},...P?{}:{mobile:!1}}):I=await bn(r,{desktopAllowed:w,runnerAllowed:b,mobileAllowed:P});let _;n.start("Activating license...");try{let v=e.demo&&I.baseUrl?await fp(I.baseUrl):crypto.randomUUID(),M=()=>({frontend:vr,version:m,installId:v,projectName:I.projectName,options:An(I)}),G;try{G=await kr(o,M())}catch(se){let N=Vt(se);if(!N?.lastAllowedVersion||!s)throw se;n.stop("License activation failed.");let de=ys(s,N.lastAllowedVersion);if(de.ok||(k.cancel(`${N.message} ${de.message}`),process.exit(1)),e.yes){let ue=or(s,N.lastAllowedVersion);k.cancel(`${N.message} Re-run ${ue?`npx generatesaas@${ue} init`:"init"} without --yes to continue with v${N.lastAllowedVersion} (the last version your license covers).`),process.exit(1)}let X=await k.confirm({message:`Your update window has ended. Continue with v${N.lastAllowedVersion} (the last version your license covers)?`});(k.isCancel(X)||!X)&&(k.cancel("Setup cancelled."),process.exit(0)),m=N.lastAllowedVersion,n.start(`Activating license for v${m}...`),G=await kr(o,M())}_={token:G.token,keyHash:Br(i),installId:G.installId??v},n.stop("License activated.")}catch(v){n.stop("License activation failed."),k.cancel(j(v)),process.exit(1)}let f=up(I.projectDir);if(cp(f)&&lp(f).length>0)if(e.yes)k.log.info(`Directory ${f} is not empty. Merging (keeping existing files, overwriting conflicts).`);else{let M=await k.select({message:`Directory ${f} is not empty.`,options:[{value:"merge",label:"Merge",hint:"keep existing files, overwrite conflicts"},{value:"overwrite",label:"Overwrite",hint:"delete everything and start fresh"},{value:"cancel",label:"Cancel"}]});(k.isCancel(M)||M==="cancel")&&(k.cancel("Setup cancelled."),process.exit(0)),M==="overwrite"&&pp(f,{recursive:!0,force:!0})}let O={...I,projectDir:f,version:m,...e.demo?{docs:!1}:{}};n.start("Downloading template...");try{await Bt(o,m,f),n.stop("Template downloaded.")}catch(v){n.stop("Download failed."),k.cancel(j(v)),process.exit(1)}n.start("Generating project files...");try{if(await ir(O),!e.demo){let v=await dt(f);await c(dp(f,Mt),`${JSON.stringify(v,null," ")}
1628
+ `),await ss(f,f)}await cs(f),await ns(O,_),n.stop("Project files generated.")}catch(v){n.stop("Generation failed."),k.cancel(j(v)),process.exit(1)}!await ps(f)&&O.demo===!0&&(k.cancel("Lockfile regeneration failed on a demo build - refusing to ship a stale lockfile."),process.exit(1));let q=await ds(f),J=O.demo!==!0&&e.dbMigration!==!1,xe=!1;J&&q&&(await us(f),xe=!0),await ms(f),q&&await hs(f);let De=He("docker"),Je=yr(O).map(v=>v.key).filter(v=>!O.credentials?.[v]);fs(O,{pnpmInstalled:q,dockerAvailable:De,skippedCredentials:Je,baselineMigrationMissing:J&&!xe}),nn(),k.log.info(mp.dim(`Done in ${((performance.now()-t)/1e3).toFixed(1)}s`))}import{existsSync as cr}from"fs";import{readFile as Ps}from"fs/promises";import{join as We,resolve as kp}from"path";import*as y from"@clack/prompts";import C from"picocolors";import{mkdtemp as yp,rm as bp}from"fs/promises";import{tmpdir as wp}from"os";import{join as vp}from"path";async function qr(e,t,r,n){let i=await yp(vp(wp(),"generatesaas-stage-"));try{await Bt(e,t,i),await ir({...r,projectDir:i}),await Gr(i,n)}finally{await bp(i,{recursive:!0,force:!0})}}function ws(e){return e?"ON":"OFF"}var mt="packages/config/src/index.ts";function vs(e){let t=e.databaseProvider!==void 0&&e.databaseProvider!=="postgres",r=e.cacheProvider!==void 0&&e.cacheProvider!=="redis";return[...e.dockerServices??[]].filter(n=>!(n==="postgres"&&t)&&!(n==="redis"&&r)).sort()}function ks(e){return[...Qe({databaseProvider:e.databaseProvider??"postgres",cacheProvider:e.cacheProvider??"redis",emailProvider:e.emailProvider??"smtp"})].sort()}var Jr=[{key:"errorTracking",severity:"warn",normalize:e=>{e.errorTracking===void 0||e.observability!==void 0||(e.observability=e.errorTracking==="none"?[]:[e.errorTracking])},preserved:()=>!0,describe:()=>"Retired option `errorTracking`: it is now `observability`, an array, because a project may run more than one provider at once. Your recorded choice was migrated across automatically."},{key:"companion",severity:"warn",normalize:e=>{e.companion===void 0||e.runner!==void 0||(e.runner=e.companion)},preserved:()=>!0,describe:()=>"Retired option `companion`: it is now `runner`, because the daemon it names is AgentRunner. Your recorded choice was migrated across automatically - the feature itself is unchanged."},{key:"companionSource",severity:"warn",preserved:()=>!1,describe:e=>`Retired option \`companionSource\`: your project recorded a \`${String(e.companionSource)}\` daemon source. There is now one runner daemon - AgentRunner - which we publish and your users install from its own releases. Your project keeps the runner feature and its own pairing, dispatch and Runners page; it no longer holds or brands a daemon.`},{key:"companionName",severity:"warn",preserved:()=>!1,describe:e=>`Retired option \`companionName\`: your project recorded a branded daemon called ${e.companionName}. Buyers no longer brand or publish a daemon - your users install AgentRunner, which we maintain. Their existing install of your old daemon keeps running until they switch.`},{key:"companionRepoUrl",severity:"warn",preserved:()=>!1,describe:e=>`Retired option \`companionRepoUrl\`: your project pointed its install flow at ${e.companionRepoUrl}. It now points at AgentRunner, the one daemon we publish.`},{key:"companionLocalPath",severity:"warn",preserved:e=>(e.companionLocalPath??"").trim()==="",describe:e=>`Retired option \`companionLocalPath\`: your project recorded a local daemon checkout at ${e.companionLocalPath}. The option is gone, and so is the choice behind it - there is one runner daemon (AgentRunner) and we publish it, so nothing in your project is built from a local checkout any more.`},{key:"desktopAutoRelease",severity:"warn",applies:e=>e.desktop===!0,preserved:e=>e.desktopAutoRelease!==!0,describe:()=>"Retired option `desktopAutoRelease`: your project recorded automatic desktop releases, but the release trigger is no longer an option - cutting a release publishes signed installers from your repository and spends your Actions minutes, so it is always deliberate now. The staged `.github/workflows/desktop-release.yml` runs on `workflow_dispatch` only (the Actions tab). Add a `workflow_run` block to it if you want the CI-chained trigger back."},{key:"billingScope",severity:"ask",applies:e=>e.multiTenancy===!0,preserved:e=>e.billingScope!=="organization",describe:()=>"Retired option `billingScope`: your project recorded organization-scoped billing, and organization billing is GONE - not moved to config, removed. Money now lives only on a USER: an organization has no balance, no plan and no payment-provider customer of its own, and a workspace is funded by that organization's OWNER, whose personal balance every credit spent in it is drawn from. Payments already in flight are safe - a webhook arriving with old organization metadata is credited to that organization's owner rather than dropped - but a STORED balance is not: the `credits` and `plan` columns an organization holds them in are going away, and this update does NOT migrate them for you. MOVE every paying organization's credits and plan onto its owner BEFORE you take new checkouts, or that balance goes with the columns. How should this update proceed?"},{key:"socialProviders",severity:"warn",preserved:e=>(e.socialProviders??[]).length===0,describe:e=>`Retired option \`socialProviders\`: your project recorded ${(e.socialProviders??[]).join(", ")}, but it is now a plain config value that starts empty. Add those IDs back to \`config.auth.socialProviders\` in ${mt} or their sign-in buttons stop rendering.`},{key:"mcpServer",severity:"warn",preserved:e=>e.mcpServer!==!0,describe:()=>`Retired option \`mcpServer\`: your project recorded the outward MCP server ON, but its code now ships to every project behind a config gate generated OFF. Set \`config.mcpServer.enabled\` to \`true\` in ${mt} to keep your /mcp endpoint and its settings tab.`},{key:"emailTracking",severity:"ask",preserved:e=>e.emailTracking!==!1,describe:()=>`Retired option \`emailTracking\`: your project recorded email open/click tracking OFF, but it is now a plain config value generated ON. Applying this update as-is starts tracking opens and clicks for every user you mail. Put it back by setting \`config.email.tracking.enabled\` to \`false\` in ${mt}. How should this update proceed?`},{key:"aiBuiltin",severity:"warn",normalize:e=>{e.aiBuiltin===void 0&&e.aiByok!==void 0&&(e.aiBuiltin=e.aiByok===!1)},applies:e=>e.ai===!0,preserved:e=>e.aiBuiltin===oe(e),describe:e=>`Retired option \`aiBuiltin\`: your project recorded built-in AI models ${ws(e.aiBuiltin)}, but it is now a plain config value generated ${ws(oe(e))} for a project ${oe(e)?"with":"without"} a payment provider. Set \`config.ai.builtin\` to \`${String(e.aiBuiltin===!0)}\` in ${mt} to keep your choice.`},{key:"aiByok",severity:"warn",applies:e=>e.ai===!0,preserved:e=>e.aiByok!==!1,describe:()=>`Retired option \`aiByok\`: your project recorded bring-your-own-key AI OFF, but it is now a plain config value generated ON. Set \`config.ai.byok\` to \`false\` in ${mt} to keep it off.`},{key:"dockerServices",severity:"warn",preserved:e=>vs(e).join(",")===ks(e).join(","),describe:e=>`Retired option \`dockerServices\`: your project recorded ${vs(e).join(", ")||"no services"}, but the local Docker services are now DERIVED from your stack - postgres when you self-host Postgres, redis when you self-host Redis, mailpit on SMTP, inngest always - so an inconsistent selection is no longer possible. Your regenerated \`infra/docker-compose.yml\` will contain ${ks(e).join(", ")}. Add any extra service back by hand; the file is yours to edit.`},{key:"aiTools",severity:"warn",preserved:e=>(e.aiTools??[]).length===an.length,describe:e=>`Retired option \`aiTools\`: your project recorded ${(e.aiTools??[]).join(", ")||"no AI tools"}, but the \`generatesaas-update\` skill bundle now ships to every AI-tool root (${Ge.join(", ")}) so it is there whichever assistant you switch to. Delete the roots you do not use - they are plain text files with no runtime path.`},{key:"blog",severity:"warn",preserved:e=>e.blog!==!1,describe:()=>`Retired option \`blog\`: your project recorded the blog OFF, but content is no longer an option. This update adds the \`/blog\`, \`/alternatives\` and \`/compare\` route code to your project; every one of them 404s until you add a file under \`packages/content/{locale}/{section}/\`, and none of them appears in your navbar, footer, sitemap or llms.txt while it is empty. Delete an entry from \`config.content.sections\` in ${mt} to drop a section for good.`}],Jf=Jr.map(e=>e.key);function Es(e){for(let t of Jr)t.normalize?.(e)}function Ss(e){let t=[];for(let r of Jr){if(r.normalize?.(e),e[r.key]===void 0)continue;(!r.applies||r.applies(e))&&!r.preserved(e)&&t.push({key:r.key,message:r.describe(e),severity:r.severity}),delete e[r.key]}return t}function As(e){e.command("update").description("Update AI skill files and stage template updates").allowExcessArguments(!0).option("--cwd <path>","project directory (default: current directory)").option("--answer <id=choice>","answer a question that would otherwise prompt (repeatable), e.g. --answer desktop-migration=keep-ai",Ep,[]).action(async(t,r)=>{r.args.length>0&&y.log.warn("`auto` is now the default and the argument is ignored.");let n=Sp(t.answer),i=kp(t.cwd??process.cwd()),o=We(i,we),s;try{s=JSON.parse(await Ps(o,"utf-8"))}catch{y.cancel(".generatesaas/manifest.json not found. Run this from a GenerateSaaS project."),process.exit(1)}s.frontend===br&&(y.cancel(`This project was generated on the Nuxt frontend (\`.generatesaas/manifest.json\` records \`frontend: "${br}"\`).
1581
1629
 
1582
1630
  v${wr} is the last release that ships a Nuxt frontend, and this CLI cannot update or migrate a Nuxt project to Next.js.
1583
1631
 
1584
- Your project keeps working exactly as it is - stay on v${wr}, or start a fresh project on Next.js with ${D.cyan("generatesaas init")} when you are ready to move.`),process.exit(1));let a=ln(s);a.length>0&&(b.cancel(`.generatesaas/manifest.json carries a value this CLI cannot shape a project from:
1632
+ Your project keeps working exactly as it is - stay on v${wr}, or start a fresh project on Next.js with ${C.cyan("generatesaas init")} when you are ready to move.`),process.exit(1));let a=ln(s);a.length>0&&(y.cancel(`.generatesaas/manifest.json carries a value this CLI cannot shape a project from:
1585
1633
 
1586
1634
  ${a.map(f=>` - ${f}`).join(`
1587
1635
  `)}
1588
1636
 
1589
- Correct it there, then run ${D.cyan("generatesaas update")} again.`),process.exit(1)),vs(s);let d=me(s);d&&(b.cancel(`.generatesaas/manifest.json turns \`${d.feature}\` on with \`deploymentTarget: "${d.target}"\`, which cannot run it.
1637
+ Correct it there, then run ${C.cyan("generatesaas update")} again.`),process.exit(1)),Es(s);let d=me(s);d&&(y.cancel(`.generatesaas/manifest.json turns \`${d.feature}\` on with \`deploymentTarget: "${d.target}"\`, which cannot run it.
1590
1638
 
1591
1639
  ${d.reason}
1592
1640
 
1593
- Correct it there, then run ${D.cyan("generatesaas update")} again.`),process.exit(1));let u=mr(s);u.length>0&&(b.cancel(`.generatesaas/manifest.json records a combination this project cannot run:
1641
+ Correct it there, then run ${C.cyan("generatesaas update")} again.`),process.exit(1));let m=mr(s);m.length>0&&(y.cancel(`.generatesaas/manifest.json records a combination this project cannot run:
1594
1642
 
1595
- ${u.map(f=>` - ${f}`).join(`
1643
+ ${m.map(f=>` - ${f}`).join(`
1596
1644
  `)}
1597
1645
 
1598
- Correct it there, then run ${D.cyan("generatesaas update")} again.`),process.exit(1));let w=mn(s);w.length>0&&(b.cancel(`.generatesaas/manifest.json turns the web AI surface off (\`webAi: false\`) in a project that cannot run without it:
1646
+ Correct it there, then run ${C.cyan("generatesaas update")} again.`),process.exit(1));let w=mn(s);w.length>0&&(y.cancel(`.generatesaas/manifest.json turns the web AI surface off (\`webAi: false\`) in a project that cannot run without it:
1599
1647
 
1600
1648
  ${w.map(f=>` - ${f}`).join(`
1601
1649
  `)}
1602
1650
 
1603
- Correct it there, then run ${D.cyan("generatesaas update")} again.`),process.exit(1));let y=hn(s);y.length>0&&(b.cancel(`.generatesaas/manifest.json turns on mobile store purchases (\`mobilePurchases: "revenuecat"\`) in a project that cannot run them:
1651
+ Correct it there, then run ${C.cyan("generatesaas update")} again.`),process.exit(1));let b=hn(s);b.length>0&&(y.cancel(`.generatesaas/manifest.json turns on mobile store purchases (\`mobilePurchases: "revenuecat"\`) in a project that cannot run them:
1604
1652
 
1605
- ${y.map(f=>` - ${f}`).join(`
1653
+ ${b.map(f=>` - ${f}`).join(`
1606
1654
  `)}
1607
1655
 
1608
- Correct it there, then run ${D.cyan("generatesaas update")} again.`),process.exit(1));let P;try{P=await it()}catch(f){b.cancel(j(f)),process.exit(1)}let I=ve(P),R=b.spinner();try{R.start("Verifying access...");let f;try{f=await Te(I)}catch(N){throw N instanceof F&&N.status===401?new Error("Your saved API key was rejected. Run `generatesaas auth` to update it, or set GENERATESAAS_API_KEY."):N}let O=ar(f,"update");if(!O.ok)throw new Error(O.message);R.stop("Access verified."),Fe(P),R.start("Fetching latest skill files...");let _e=await Pn(I,f.latest);await Wr(i,_e.skills);let q=Be;if(R.stop("Skills updated."),b.log.success(`Skill files installed to ${D.cyan(q.length.toString())} locations.`),s.version===f.latest){b.log.info(`Already on the latest version (${s.version}).`);return}let J=f.entitlements;J&&(s.desktop&&!J.desktopAllowed&&(b.cancel("This project includes the desktop app, which is available on the Pro plan and up. Upgrade your plan at generatesaas.com to keep updating it."),process.exit(1)),s.runner&&!J.runnerAllowed&&(b.cancel("This project includes the runner, which is available on the Pro plan and up. Upgrade your plan at generatesaas.com to keep updating it."),process.exit(1)),s.mobile&&J.mobileAllowed===!1&&(b.cancel("This project includes the mobile app, which is available on the Pro plan and up. Upgrade your plan at generatesaas.com to keep updating it."),process.exit(1)));let Oe=JSON.stringify(s);un(s),await lp(s,fn(s),n),await dp(ks(s),n);let xe=cn(s),De=pn(s),Je=mr(De);Je.length>0&&(b.cancel(`.generatesaas/manifest.json is missing a provider key, and its default would create a combination this project cannot run:
1656
+ Correct it there, then run ${C.cyan("generatesaas update")} again.`),process.exit(1));let P;try{P=await it()}catch(f){y.cancel(j(f)),process.exit(1)}let I=ke(P),_=y.spinner();try{_.start("Verifying access...");let f;try{f=await Te(I)}catch(D){throw D instanceof F&&D.status===401?new Error("Your saved API key was rejected. Run `generatesaas auth` to update it, or set GENERATESAAS_API_KEY."):D}let O=ar(f,"update");if(!O.ok)throw new Error(O.message);_.stop("Access verified."),Ve(P),_.start("Fetching latest skill files...");let Oe=await Pn(I,f.latest);await Wr(i,Oe.skills);let q=Ge;if(_.stop("Skills updated."),y.log.success(`Skill files installed to ${C.cyan(q.length.toString())} locations.`),s.version===f.latest){y.log.info(`Already on the latest version (${s.version}).`);return}_e(s.version,f.latest)>0&&(y.cancel(`This project is on ${s.version}, which is newer than the latest release (${f.latest}). Updating would stage the older template over it. Check that your API key points at the right account, or correct \`version\` in ${we}.`),process.exit(1));let J=f.entitlements;J&&(s.desktop&&!J.desktopAllowed&&(y.cancel("This project includes the desktop app, which is available on the Pro plan and up. Upgrade your plan at generatesaas.com to keep updating it."),process.exit(1)),s.runner&&!J.runnerAllowed&&(y.cancel("This project includes the runner, which is available on the Pro plan and up. Upgrade your plan at generatesaas.com to keep updating it."),process.exit(1)),s.mobile&&J.mobileAllowed===!1&&(y.cancel("This project includes the mobile app, which is available on the Pro plan and up. Upgrade your plan at generatesaas.com to keep updating it."),process.exit(1)));let xe=JSON.stringify(s);un(s),await Pp(s,fn(s),n),await Ap(Ss(s),n);let De=cn(s),Ne=pn(s),Je=mr(Ne);Je.length>0&&(y.cancel(`.generatesaas/manifest.json is missing a provider key, and its default would create a combination this project cannot run:
1609
1657
 
1610
- ${Je.map(N=>` - ${N}`).join(`
1658
+ ${Je.map(D=>` - ${D}`).join(`
1611
1659
  `)}
1612
1660
 
1613
- Add the key to .generatesaas/manifest.json with a value your deployment target supports, then run ${D.cyan("generatesaas update")} again.`),process.exit(1));let v=JSON.stringify(De)!==Oe;if(s=De,s.licenseToken)try{let N=await In(I,{currentToken:s.licenseToken,newVersion:f.latest});s.licenseToken=N.token,N.licenseKeyHash&&(s.licenseKeyHash=N.licenseKeyHash),await c(o,JSON.stringify(s,null," ")+`
1614
- `),v=!1,b.log.success("License refreshed.")}catch(N){let ht=Vt(N);ht&&(b.cancel(ht.message),process.exit(1)),b.log.warn("License refresh skipped.")}v&&await c(o,JSON.stringify(s,null," ")+`
1615
- `);let U=es(s,i),G=We(i,kn);R.start(`Staging v${f.latest} (shaped for your config)...`),await qr(I,f.latest,U,G),R.stop("Template staged.");let{text:se,title:C}=await hp(I,f,s.version);se&&b.note(se,C);let de=We(i,Ut),X=We(i,Ft),ue=!cr(X),Ne=!cr(de);if(ue){if(R.start("Building baseline template (one-time migration)..."),await qr(I,s.version,U,X),Ne){let N=await dt(X);await c(de,JSON.stringify(N,null," ")+`
1616
- `)}if(R.stop("Baseline template stored."),!Ne){let N=await fp(de,X);N>0&&b.log.warn(`Rebuilt baseline differs from the original for ${N} file(s) (the CLI's shaping evolved since this project was scaffolded). Classification still follows the committed template-hashes.json; upstream diffs for those files may include unrelated noise.`)}}else if(Ne){R.start("Computing baseline template hashes...");let N=await dt(X);await c(de,JSON.stringify(N,null," ")+`
1617
- `),R.stop("Baseline hashes computed.")}await c(We(i,En),JSON.stringify({currentVersion:s.version,targetVersion:f.latest,changelog:se,stagedAt:new Date().toISOString(),...xe.length>0?{newOptions:xe}:{},...n?{mode:n}:{}},null," ")+`
1618
- `),b.log.info(`Update staged: ${D.cyan(s.version)} \u2192 ${D.cyan(f.latest)}`),b.log.info(`Ask your AI coding assistant to ${D.cyan("'update my GenerateSaaS project'")}.`),s.desktop===!0&&cr(We(i,"apps/tauri"))&&b.log.warn(`Desktop: the app moved to an Electron shell (${D.cyan("apps/desktop")}). Your project still has the old Tauri shell (${D.cyan("apps/tauri")}) - remove it after verifying the Electron app builds and runs. See ${D.cyan("/desktop/updates")}.`),s.desktop===!0&&cr(We(i,"apps/electron"))&&b.log.warn(`Desktop: the app now lives at ${D.cyan("apps/desktop")}. Your project still has the old ${D.cyan("apps/electron")} directory - move your local changes across, remove it, then run ${D.cyan("pnpm install")}. See ${D.cyan("/desktop/updates")}.`)}catch(f){R.stop("Failed."),b.cancel(`Update failed: ${j(f)}`),process.exit(1)}})}async function lp(e,t,r){if(t.kind==="none")return;let n=mp[t.kind];r==="auto"&&(b.cancel(`${n.message}
1661
+ Add the key to .generatesaas/manifest.json with a value your deployment target supports, then run ${C.cyan("generatesaas update")} again.`),process.exit(1));let v=JSON.stringify(Ne)!==xe;if(s=Ne,s.licenseToken)try{let D=await In(I,{currentToken:s.licenseToken,newVersion:f.latest});s.licenseToken=D.token,D.licenseKeyHash&&(s.licenseKeyHash=D.licenseKeyHash),await c(o,`${JSON.stringify(s,null," ")}
1662
+ `),v=!1,y.log.success("License refreshed.")}catch(D){let ht=Vt(D);ht&&(y.cancel(ht.message),process.exit(1)),y.log.warn("License refresh skipped.")}v&&await c(o,`${JSON.stringify(s,null," ")}
1663
+ `);let M=rs(s,i),G=We(i,kn);_.start(`Staging v${f.latest} (shaped for your config)...`),await qr(I,f.latest,M,G),_.stop("Template staged.");let{text:se,title:N}=await Tp(I,f,s.version);se&&y.note(se,N);let de=We(i,Mt),X=We(i,Ft),ue=!cr(X),Ce=!cr(de);if(ue){if(_.start("Building baseline template (one-time migration)..."),await qr(I,s.version,M,X),Ce){let D=await dt(X);await c(de,`${JSON.stringify(D,null," ")}
1664
+ `)}if(_.stop("Baseline template stored."),!Ce){let D=await _p(de,X);D>0&&y.log.warn(`Rebuilt baseline differs from the original for ${D} file(s) (the CLI's shaping evolved since this project was scaffolded). Classification still follows the committed template-hashes.json; upstream diffs for those files may include unrelated noise.`)}}else if(Ce){_.start("Computing baseline template hashes...");let D=await dt(X);await c(de,`${JSON.stringify(D,null," ")}
1665
+ `),_.stop("Baseline hashes computed.")}await c(We(i,En),`${JSON.stringify({currentVersion:s.version,targetVersion:f.latest,changelog:se,stagedAt:new Date().toISOString(),...De.length>0?{newOptions:De}:{}},null," ")}
1666
+ `),y.log.info(`Update staged: ${C.cyan(s.version)} \u2192 ${C.cyan(f.latest)}`),y.log.info(`Ask your AI coding assistant to ${C.cyan("'update my GenerateSaaS project'")}.`),s.desktop===!0&&cr(We(i,"apps/tauri"))&&y.log.warn(`Desktop: the app moved to an Electron shell (${C.cyan("apps/desktop")}). Your project still has the old Tauri shell (${C.cyan("apps/tauri")}) - remove it after verifying the Electron app builds and runs. See ${C.cyan("/desktop/updates")}.`),s.desktop===!0&&cr(We(i,"apps/electron"))&&y.log.warn(`Desktop: the app now lives at ${C.cyan("apps/desktop")}. Your project still has the old ${C.cyan("apps/electron")} directory - move your local changes across, remove it, then run ${C.cyan("pnpm install")}. See ${C.cyan("/desktop/updates")}.`)}catch(f){_.stop("Failed."),y.cancel(`Update failed: ${j(f)}`),process.exit(1)}})}var Is="desktop-migration";function Ep(e,t){return t.push(e),t}function Sp(e){let t=new Set([Is,...Object.keys(Ts).map(n=>`retired:${n}`)]),r=new Map;for(let n of e){let i=n.indexOf("=");(i<=0||i===n.length-1)&&(y.cancel(`\`--answer ${n}\` is malformed. Use \`--answer <id>=<choice>\`.`),process.exit(1));let o=n.slice(0,i);t.has(o)||(y.cancel(`\`--answer ${n}\` names a question this update does not ask. Valid ids: ${[...t].join(", ")}.`),process.exit(1)),r.set(o,n.slice(i+1))}return r}async function Rs(e,t){let r=t.get(e.id);if(r!==void 0){let n=e.choices.find(i=>i.id===r);return n||(y.cancel(`\`--answer ${e.id}=${r}\` is not a valid choice. Valid choices: ${e.choices.map(i=>i.id).join(", ")}.`),process.exit(1)),n}if(process.stdin.isTTY){let n=await y.select({message:e.message,options:e.choices.map(o=>({value:o.id,label:o.label,...o.hint?{hint:o.hint}:{}}))});y.isCancel(n)&&(y.cancel("Update cancelled. Nothing was changed or staged."),process.exit(1));let i=e.choices.find(o=>o.id===n);return i||(y.cancel("Update cancelled. Nothing was changed or staged."),process.exit(1)),i}y.cancel(`${e.message}
1667
+
1668
+ This update is running without an interactive terminal, so it cannot ask you directly. Answer the question \`${e.id}\` and re-run, for example:
1619
1669
 
1620
- This is a decision only you can make, so an unattended update will not guess it. Run ${D.cyan("generatesaas update")} without ${D.cyan("auto")} and answer it.`),process.exit(1));let i=await b.select({message:n.message,options:n.options});b.isCancel(i)&&(b.cancel("Update cancelled. Nothing was changed or staged."),process.exit(1)),i.apply(e)}var pp={billingScope:[{value:"stage",label:"Stage it - I will move each organization's balance to its owner myself",hint:"move every paying organization's credits and plan onto its owner before you take new checkouts - the columns holding them are going away, and a stored balance is not migrated for you"},{value:"stop",label:"Stop, and stage nothing",hint:"migrate those balances in your database first, then re-run update - this is buyer DATA, not a config line, so nothing the update stages can put it back"}],emailTracking:[{value:"stage",label:"Stage it - I will turn tracking back off myself",hint:"set `config.email.tracking.enabled` to false in packages/config/src/index.ts before your next send"},{value:"stop",label:"Stop, and stage nothing",hint:"edit packages/config/src/index.ts first, then re-run update - a file you have edited is walked as a 3-way merge instead of being replaced"}]};async function dp(e,t){let r=[];for(let n of e){let i=n.severity==="ask"?pp[n.key]:void 0;if(!i){b.log.warn(n.message);continue}r.push({notice:n,answers:i})}for(let{notice:n,answers:i}of r){t==="auto"&&(b.cancel(`${n.message}
1670
+ ${C.cyan(`generatesaas update --answer ${e.id}=${e.choices[0].id}`)}
1621
1671
 
1622
- This is a decision only you can make, so an unattended update will not guess it. Run ${D.cyan("generatesaas update")} without ${D.cyan("auto")} and answer it.`),process.exit(1));let o=await b.select({message:n.message,options:i});(b.isCancel(o)||o==="stop")&&(b.cancel("Update cancelled. Nothing was changed or staged."),process.exit(1))}}function up(e){e.desktop=!1}var mp={"legacy-desktop-ai":{message:"Your desktop app runs the local AI stack through the retired desktop-AI option. Desktop AI now follows the AI option. Keep it?",options:[{value:{apply:e=>{e.ai=!0}},label:"Turn AI on, keep the desktop AI stack",hint:"also makes your website's AI surface available - keep it hidden with config.ai.enabled: false"},{value:{apply:e=>{e.ai=!1}},label:"Turn desktop AI off",hint:"your desktop app becomes a client shell: no AI, no Terminal"}]},"desktop-gains-ai":{message:"Your desktop app has no AI today, but your project has the AI option on. With the desktop-AI option retired, AI on a desktop project now ships the app's local AI stack. Keep it?",options:[{value:{apply:()=>{}},label:"Keep AI - the desktop app gains the AI stack",hint:"adds the local AI stack and the Terminal to your desktop app"},{value:{apply:e=>{e.ai=!1,e.runner=!1}},label:"Drop AI",hint:"your website's AI surface hides, and this also drops the web runner - it requires AI"},{value:{apply:up},label:"Drop the desktop app",hint:"your website keeps its AI surface exactly as it is today"}]}};async function hp(e,t,r){let n=t.latest,i=t.versions.filter(d=>Ye(d.version,r)>0&&Ye(d.version,n)<=0).sort((d,u)=>Ye(d.version,u.version)),o=async d=>{try{return await Sn(e,d)}catch{return null}};if(i.length<=1)return{text:await o(n),title:`Changelog v${n}`};let s=await Promise.all(i.map(d=>o(d.version)));return{text:i.map((d,u)=>{let w=d.date?` (${d.date.slice(0,10)})`:"",y=s[u]??"_No changelog available for this release._";return`# v${d.version}${w}
1672
+ Choices:
1673
+ ${e.choices.map(n=>` - ${n.id}: ${n.label}${n.hint?` (${n.hint})`:""}`).join(`
1674
+ `)}`),process.exit(1)}async function Pp(e,t,r){if(t.kind==="none")return;let n=Rp[t.kind];(await Rs({id:Is,message:n.message,choices:n.choices},r)).apply(e)}var Ts={billingScope:[{value:"stage",label:"Stage it - I will move each organization's balance to its owner myself",hint:"move every paying organization's credits and plan onto its owner before you take new checkouts - the columns holding them are going away, and a stored balance is not migrated for you"},{value:"stop",label:"Stop, and stage nothing",hint:"migrate those balances in your database first, then re-run update - this is buyer DATA, not a config line, so nothing the update stages can put it back"}],emailTracking:[{value:"stage",label:"Stage it - I will turn tracking back off myself",hint:"set `config.email.tracking.enabled` to false in packages/config/src/index.ts before your next send"},{value:"stop",label:"Stop, and stage nothing",hint:"edit packages/config/src/index.ts first, then re-run update - a file you have edited is walked as a 3-way merge instead of being replaced"}]};async function Ap(e,t){let r=[];for(let n of e){let i=n.severity==="ask"?Ts[n.key]:void 0;if(!i){y.log.warn(n.message);continue}r.push({notice:n,answers:i})}for(let{notice:n,answers:i}of r)(await Rs({id:`retired:${n.key}`,message:n.message,choices:i.map(s=>({id:s.value,label:s.label,hint:s.hint}))},t)).id==="stop"&&(y.cancel("Update cancelled. Nothing was changed or staged."),process.exit(1))}function Ip(e){e.desktop=!1}var Rp={"legacy-desktop-ai":{message:"Your desktop app runs the local AI stack through the retired desktop-AI option. Desktop AI now follows the AI option. Keep it?",choices:[{id:"keep-ai",label:"Turn AI on, keep the desktop AI stack",hint:"also makes your website's AI surface available - keep it hidden with config.ai.enabled: false",apply:e=>{e.ai=!0}},{id:"drop-ai",label:"Turn desktop AI off",hint:"your desktop app becomes a client shell: no AI, no Terminal",apply:e=>{e.ai=!1}}]},"desktop-gains-ai":{message:"Your desktop app has no AI today, but your project has the AI option on. With the desktop-AI option retired, AI on a desktop project now ships the app's local AI stack. Keep it?",choices:[{id:"keep-ai",label:"Keep AI - the desktop app gains the AI stack",hint:"adds the local AI stack and the Terminal to your desktop app",apply:()=>{}},{id:"drop-ai",label:"Drop AI",hint:"your website's AI surface hides, and this also drops the web runner - it requires AI",apply:e=>{e.ai=!1,e.runner=!1}},{id:"drop-desktop",label:"Drop the desktop app",hint:"your website keeps its AI surface exactly as it is today",apply:Ip}]}};async function Tp(e,t,r){let n=t.latest,i=t.versions.filter(d=>_e(d.version,r)>0&&_e(d.version,n)<=0).sort((d,m)=>_e(d.version,m.version)),o=async d=>{try{return await Sn(e,d)}catch{return null}};if(i.length<=1)return{text:await o(n),title:`Changelog v${n}`};let s=await Promise.all(i.map(d=>o(d.version)));return{text:i.map((d,m)=>{let w=d.date?` (${d.date.slice(0,10)})`:"",b=s[m]??"_No changelog available for this release._";return`# v${d.version}${w}
1623
1675
 
1624
- ${y}`}).join(`
1676
+ ${b}`}).join(`
1625
1677
 
1626
- `),title:`Changelog v${r} \u2192 v${n}`}}async function fp(e,t){let r=JSON.parse(await Es(e,"utf-8")),n=await dt(t),i=0;for(let[o,s]of Object.entries(r))st(o)||n[o]!==s&&i++;for(let o of Object.keys(n))o in r||i++;return i}import*as z from"@clack/prompts";import Se from"picocolors";import{readFile as gp}from"fs/promises";import{join as yp,resolve as bp}from"path";function Ps(e){e.command("status").description("Show project status and check for updates").option("--cwd <path>","project directory (default: current directory)").action(async t=>{let r=bp(t.cwd??process.cwd()),n=yp(r,Ae),i;try{i=JSON.parse(await gp(n,"utf-8"))}catch{z.cancel(".generatesaas/manifest.json not found. Run this from a GenerateSaaS project."),process.exit(1)}let o=[`Version: ${Se.cyan(i.version)}`,i.deploymentTarget?`Deploy target: ${Se.cyan(i.deploymentTarget)}`:null,i.databaseProvider?`Database: ${Se.cyan(i.databaseProvider)}`:null,i.cacheProvider?`Cache: ${Se.cyan(i.cacheProvider)}`:null].filter(Boolean).join(`
1627
- `);z.note(o,Se.bold("Project Status"));let s=z.spinner();s.start("Checking for updates...");try{let a=await it(),d=ve(a),w=(await Te(d)).latest;i.version===w?(s.stop("Up to date."),z.log.success(`Already on the latest version (${Se.green(w)})`)):(s.stop("Update available."),z.log.warning(`Update available: ${Se.yellow(i.version)} \u2192 ${Se.green(w)}`),z.log.info(`Open this project in your AI coding agent and ask it to ${Se.cyan("update my GenerateSaaS project")} - it fetches and applies the update for you.`))}catch(a){s.stop("Check failed."),a instanceof F&&a.status===401?z.log.warning("Invalid API key. Run `generatesaas auth` to update it, or set GENERATESAAS_API_KEY."):z.log.warning(`Could not check for updates: ${j(a)}`)}})}import{readFile as wp}from"fs/promises";import*as $ from"@clack/prompts";import L from"picocolors";function vp(){return process.env.GENERATESAAS_API_KEY??vt()}function kp(e){return{verdict:e.verdict,plan:e.license?.plan??e.domainInstalls.find(t=>t.ownerPlan)?.ownerPlan??null,mismatchDomain:e.install?.domain??null,ejectedAt:e.install?.ejectedAt??e.domainInstalls.find(t=>t.ejectedAt)?.ejectedAt??null}}function Ep(e){return{verdict:e.verdict??"unknown",ejectedAt:e.ejectedAt??null}}function Sp(e){switch(e.verdict){case"licensed":return $.log.success(`${L.green("LICENSED")} - resolves to an account with an active${e.plan?` ${e.plan}`:""} license.`),!0;case"ejected":return $.log.success(`${L.green("EJECTED")} - a licensed buyer opted this install out of telemetry${e.ejectedAt?` on ${e.ejectedAt.slice(0,10)}`:""}. The site is legitimate.`),!0;case"revoked":return $.log.error(`${L.red("REVOKED")} - the owning account no longer holds a plan (refund or chargeback). This deployment is no longer licensed.`),!1;case"token_domain_mismatch":return $.log.error(`${L.red("LEAKED TOKEN")} - this license belongs to a different deployment${e.mismatchDomain?` (${L.cyan(e.mismatchDomain)})`:""}, not this site. The token was copied from a licensed project.`),!1;case"no_license_history":return $.log.error(`${L.red("NO LICENSE HISTORY")} - no license has ever been associated with this site. If it runs GenerateSaaS, treat it as unlicensed.`),!1;default:return $.log.warn(`${L.yellow("UNKNOWN")} - could not cross-reference the records right now. Try again shortly.`),!1}}async function As(e,t){let r=process.env.GENERATESAAS_API_URL??wt,n=vp();e.start("Cross-referencing license records...");try{let i=n?kp(await Rn(r,n,{lkh:t.lkh,nid:t.nid,domain:t.domain})):Ep(await Er(r,{token:t.token,domain:t.domain}));return e.stop(`${L.green("Checked")} - records cross-referenced`),Sp(i)}catch(i){return e.stop(`${L.yellow("Skipped")} - ${j(i)}`),null}}function Pp(e){let t=e.split(".");if(t.length!==3||!t[1])throw new Error("Invalid JWT format");let r=Buffer.from(t[1],"base64url").toString("utf-8");return JSON.parse(r)}function Xr(e){return typeof e!="number"?"unknown":new Date(e*1e3).toISOString().split("T")[0]}function Is(e){$.note([`License ID: ${L.cyan(String(e.lid??"unknown"))}`,`Version: ${L.cyan(String(e.ver??"unknown"))}`,`Init version: ${String(e.iver??"unknown")}`,`Frontend: ${String(e.fe??"unknown")}`,`Created: ${Xr(e.pat)}`,`Last updated: ${Xr(e.uat)}`,`Expires: ${Xr(e.exp)}`,`Install ID: ${String(e.nid??"unknown")}`].join(`
1628
- `),L.yellow("License Details"))}function Ap(e){let r=(/^https?:\/\//i.test(e)?e:`https://${e}`).replace(/\/+$/,"");if(r.endsWith("/api"))return[`${r}/license`];try{if(new URL(r).pathname!=="/")return[`${r}/license`]}catch{return[`${r}/license`]}return[`${r}/api/license`,`${r}/license`]}async function Rs(e){let t=$.spinner(),r=null,n="no candidates";for(let s of Ap(e)){t.start(`Checking ${s}...`);try{let a=await fetch(s);if(!a.ok){n=`${s} returned ${a.status}`,t.stop(`${L.yellow("Not here")} - ${n}`);continue}let d=(await a.text()).trim();if(!d||d.split(".").length!==3){n=`${s} did not return a JWT`,t.stop(`${L.yellow("Not here")} - ${n}`);continue}r=d,t.stop(`${L.green("Found")} - license endpoint responded`);break}catch(a){n=`${s}: ${j(a)}`,t.stop(`${L.yellow("Unreachable")} - ${n}`)}}if(r===null){$.log.warn(`No license endpoint found (last: ${n}). The site may be ejected, not a GenerateSaaS app, or serving its API elsewhere.`);let s=Ts(e);return s?await As(t,{domain:s})??!1:!1}let i;try{i=Pp(r)}catch{return $.log.error("Could not decode JWT payload."),!1}t.start("Verifying signature...");try{let s=process.env.GENERATESAAS_API_URL??wt,a=await Er(s,{token:r});if(a.valid)t.stop(`${L.green("Valid")} - signature verified`);else return t.stop(`${L.red("Invalid")} - ${a.reason}`),!1}catch{return t.stop(`${L.yellow("Skipped")} - could not reach verification service`),$.log.warn("Signature not verified. Displaying unverified claims:"),Is(i),!1}return Is(i),await As(t,{token:r,lkh:typeof i.lkh=="string"?i.lkh:void 0,nid:typeof i.nid=="string"?i.nid:void 0,domain:Ts(e)})??!0}function Ts(e){try{return new URL(/^https?:\/\//i.test(e)?e:`https://${e}`).hostname}catch{return}}function _s(e){e.command("verify").description("Verify a GenerateSaaS license on a deployed site").argument("[url]","URL of the site to verify (e.g. https://example.com or https://example.com/api)").option("--file <path>","file with URLs to check, one per line").action(async(t,r)=>{if(!t&&!r.file&&($.cancel("Provide a URL or --file <path>."),process.exit(1)),r.file){let i=(await wp(r.file,"utf-8")).split(`
1629
- `).map(s=>s.trim()).filter(s=>s&&!s.startsWith("#"));i.length===0&&($.cancel("No URLs found in file."),process.exit(1));let o=0;for(let s of i)await Rs(s)&&o++,$.log.info("");$.log.success(`${o}/${i.length} sites verified.`)}else await Rs(t)||process.exit(1)})}import{existsSync as Ip,rmSync as Rp}from"fs";import*as ie from"@clack/prompts";function Os(e){e.command("auth").description("Set or update your GenerateSaaS API key").option("--clear","remove saved API key").action(async t=>{if(t.clear){Ip(we)?(Rp(we),ie.log.success("API key removed.")):ie.log.info("No API key configured.");return}let r=vt();r?ie.log.info(`Current API key: ****${r.slice(-4)}`):ie.log.info("No API key configured.");let n=await kt(),i=ve(n),o=ie.spinner();o.start("Verifying API key...");try{await Te(i),o.stop("API key verified."),Fe(n),ie.log.success("API key saved.")}catch(s){o.stop("Verification failed."),s instanceof F&&s.status===401?ie.cancel("Invalid API key."):ie.cancel(j(s)),process.exit(1)}})}import{existsSync as lr,rmSync as Tp,readFileSync as Qr,writeFileSync as xs}from"fs";import{join as ze}from"path";import*as B from"@clack/prompts";var _p=["packages/api/src/functions/maintenance/license-heartbeat.ts","packages/api/src/lib/cron-spread.ts","packages/api/src/lib/manifest.ts","packages/api/src/routes/internal/license.ts"],Op=[{file:"packages/api/src/routes/inngest.ts",removals:[`import { licenseHeartbeatFunction } from "../functions/maintenance/license-heartbeat";
1678
+ `),title:`Changelog v${r} \u2192 v${n}`}}async function _p(e,t){let r=JSON.parse(await Ps(e,"utf-8")),n=await dt(t),i=0;for(let[o,s]of Object.entries(r))st(o)||n[o]!==s&&i++;for(let o of Object.keys(n))o in r||i++;return i}import*as z from"@clack/prompts";import Pe from"picocolors";import{readFile as Op}from"fs/promises";import{join as xp,resolve as Dp}from"path";function _s(e){e.command("status").description("Show project status and check for updates").option("--cwd <path>","project directory (default: current directory)").action(async t=>{let r=Dp(t.cwd??process.cwd()),n=xp(r,we),i;try{i=JSON.parse(await Op(n,"utf-8"))}catch{z.cancel(".generatesaas/manifest.json not found. Run this from a GenerateSaaS project."),process.exit(1)}let o=[`Version: ${Pe.cyan(i.version)}`,i.deploymentTarget?`Deploy target: ${Pe.cyan(i.deploymentTarget)}`:null,i.databaseProvider?`Database: ${Pe.cyan(i.databaseProvider)}`:null,i.cacheProvider?`Cache: ${Pe.cyan(i.cacheProvider)}`:null].filter(Boolean).join(`
1679
+ `);z.note(o,Pe.bold("Project Status"));let s=z.spinner();s.start("Checking for updates...");try{let a=await it(),d=ke(a),w=(await Te(d)).latest;i.version===w?(s.stop("Up to date."),z.log.success(`Already on the latest version (${Pe.green(w)})`)):(s.stop("Update available."),z.log.warning(`Update available: ${Pe.yellow(i.version)} \u2192 ${Pe.green(w)}`),z.log.info(`Open this project in your AI coding agent and ask it to ${Pe.cyan("update my GenerateSaaS project")} - it fetches and applies the update for you.`))}catch(a){s.stop("Check failed."),a instanceof F&&a.status===401?z.log.warning("Invalid API key. Run `generatesaas auth` to update it, or set GENERATESAAS_API_KEY."):z.log.warning(`Could not check for updates: ${j(a)}`)}})}import{Buffer as Np}from"buffer";import{readFile as Cp}from"fs/promises";import*as $ from"@clack/prompts";import L from"picocolors";function Lp(){return process.env.GENERATESAAS_API_KEY??vt()}function $p(e){return{verdict:e.verdict,plan:e.license?.plan??e.domainInstalls.find(t=>t.ownerPlan)?.ownerPlan??null,mismatchDomain:e.install?.domain??null,ejectedAt:e.install?.ejectedAt??e.domainInstalls.find(t=>t.ejectedAt)?.ejectedAt??null}}function jp(e){return{verdict:e.verdict??"unknown",ejectedAt:e.ejectedAt??null}}function Up(e){switch(e.verdict){case"licensed":return $.log.success(`${L.green("LICENSED")} - resolves to an account with an active${e.plan?` ${e.plan}`:""} license.`),!0;case"ejected":return $.log.success(`${L.green("EJECTED")} - a licensed buyer opted this install out of telemetry${e.ejectedAt?` on ${e.ejectedAt.slice(0,10)}`:""}. The site is legitimate.`),!0;case"revoked":return $.log.error(`${L.red("REVOKED")} - the owning account no longer holds a plan (refund or chargeback). This deployment is no longer licensed.`),!1;case"token_domain_mismatch":return $.log.error(`${L.red("LEAKED TOKEN")} - this license belongs to a different deployment${e.mismatchDomain?` (${L.cyan(e.mismatchDomain)})`:""}, not this site. The token was copied from a licensed project.`),!1;case"no_license_history":return $.log.error(`${L.red("NO LICENSE HISTORY")} - no license has ever been associated with this site. If it runs GenerateSaaS, treat it as unlicensed.`),!1;default:return $.log.warn(`${L.yellow("UNKNOWN")} - could not cross-reference the records right now. Try again shortly.`),!1}}async function Os(e,t){let r=process.env.GENERATESAAS_API_URL??wt,n=Lp();e.start("Cross-referencing license records...");try{let i=n?$p(await Rn(r,n,{lkh:t.lkh,nid:t.nid,domain:t.domain})):jp(await Er(r,{token:t.token,domain:t.domain}));return e.stop(`${L.green("Checked")} - records cross-referenced`),Up(i)}catch(i){return e.stop(`${L.yellow("Skipped")} - ${j(i)}`),null}}function Mp(e){let t=e.split(".");if(t.length!==3||!t[1])throw new Error("Invalid JWT format");let r=Np.from(t[1],"base64url").toString("utf-8");return JSON.parse(r)}function Xr(e){return typeof e!="number"?"unknown":new Date(e*1e3).toISOString().split("T")[0]}function xs(e){$.note([`License ID: ${L.cyan(String(e.lid??"unknown"))}`,`Version: ${L.cyan(String(e.ver??"unknown"))}`,`Init version: ${String(e.iver??"unknown")}`,`Frontend: ${String(e.fe??"unknown")}`,`Created: ${Xr(e.pat)}`,`Last updated: ${Xr(e.uat)}`,`Expires: ${Xr(e.exp)}`,`Install ID: ${String(e.nid??"unknown")}`].join(`
1680
+ `),L.yellow("License Details"))}function Fp(e){let r=(/^https?:\/\//i.test(e)?e:`https://${e}`).replace(/\/+$/,"");if(r.endsWith("/api"))return[`${r}/license`];try{if(new URL(r).pathname!=="/")return[`${r}/license`]}catch{return[`${r}/license`]}return[`${r}/api/license`,`${r}/license`]}async function Ds(e){let t=$.spinner(),r=null,n="no candidates";for(let s of Fp(e)){t.start(`Checking ${s}...`);try{let a=await fetch(s);if(!a.ok){n=`${s} returned ${a.status}`,t.stop(`${L.yellow("Not here")} - ${n}`);continue}let d=(await a.text()).trim();if(!d||d.split(".").length!==3){n=`${s} did not return a JWT`,t.stop(`${L.yellow("Not here")} - ${n}`);continue}r=d,t.stop(`${L.green("Found")} - license endpoint responded`);break}catch(a){n=`${s}: ${j(a)}`,t.stop(`${L.yellow("Unreachable")} - ${n}`)}}if(r===null){$.log.warn(`No license endpoint found (last: ${n}). The site may be ejected, not a GenerateSaaS app, or serving its API elsewhere.`);let s=Ns(e);return s?await Os(t,{domain:s})??!1:!1}let i;try{i=Mp(r)}catch{return $.log.error("Could not decode JWT payload."),!1}t.start("Verifying signature...");try{let s=process.env.GENERATESAAS_API_URL??wt,a=await Er(s,{token:r});if(a.valid)t.stop(`${L.green("Valid")} - signature verified`);else return t.stop(`${L.red("Invalid")} - ${a.reason}`),!1}catch{return t.stop(`${L.yellow("Skipped")} - could not reach verification service`),$.log.warn("Signature not verified. Displaying unverified claims:"),xs(i),!1}return xs(i),await Os(t,{token:r,lkh:typeof i.lkh=="string"?i.lkh:void 0,nid:typeof i.nid=="string"?i.nid:void 0,domain:Ns(e)})??!0}function Ns(e){try{return new URL(/^https?:\/\//i.test(e)?e:`https://${e}`).hostname}catch{return}}function Cs(e){e.command("verify").description("Verify a GenerateSaaS license on a deployed site").argument("[url]","URL of the site to verify (e.g. https://example.com or https://example.com/api)").option("--file <path>","file with URLs to check, one per line").action(async(t,r)=>{if(!t&&!r.file&&($.cancel("Provide a URL or --file <path>."),process.exit(1)),r.file){let i=(await Cp(r.file,"utf-8")).split(`
1681
+ `).map(s=>s.trim()).filter(s=>s&&!s.startsWith("#"));i.length===0&&($.cancel("No URLs found in file."),process.exit(1));let o=0;for(let s of i)await Ds(s)&&o++,$.log.info("");$.log.success(`${o}/${i.length} sites verified.`)}else await Ds(t)||process.exit(1)})}import{existsSync as Vp,rmSync as Bp}from"fs";import*as ie from"@clack/prompts";function Ls(e){e.command("auth").description("Set or update your GenerateSaaS API key").option("--clear","remove saved API key").action(async t=>{if(t.clear){Vp(ve)?(Bp(ve),ie.log.success("API key removed.")):ie.log.info("No API key configured.");return}let r=vt();r?ie.log.info(`Current API key: ****${r.slice(-4)}`):ie.log.info("No API key configured.");let n=await kt(),i=ke(n),o=ie.spinner();o.start("Verifying API key...");try{await Te(i),o.stop("API key verified."),Ve(n),ie.log.success("API key saved.")}catch(s){o.stop("Verification failed."),s instanceof F&&s.status===401?ie.cancel("Invalid API key."):ie.cancel(j(s)),process.exit(1)}})}import{existsSync as lr,readFileSync as Qr,rmSync as Gp,writeFileSync as $s}from"fs";import{join as ze}from"path";import*as B from"@clack/prompts";var Kp=["packages/api/src/functions/maintenance/license-heartbeat.ts","packages/api/src/lib/cron-spread.ts","packages/api/src/lib/manifest.ts","packages/api/src/routes/internal/license.ts","packages/api/tests/functions/license-heartbeat.test.ts","packages/api/tests/lib/cron-spread.test.ts"],Hp=[{file:"packages/api/src/routes/inngest.ts",removals:[`import { licenseHeartbeatFunction } from "../functions/maintenance/license-heartbeat";
1630
1682
  `,` licenseHeartbeatFunction,
1631
1683
  `]},{file:"packages/api/src/routes/internal/index.ts",removals:[`import licenseRoutes from "./license";
1632
1684
  `,` .route("/license", licenseRoutes)
1633
1685
  `]},{file:"packages/api/src/routes/public/v1/health.ts",removals:[`import { manifest } from "../../../lib/manifest";
1634
- `],replacements:[{from:'c.json({ status: "success" as const, version: manifest?.version })',to:'c.json({ status: "success" as const })'}]}];function xp(){return Be.flatMap(e=>Yr.map(t=>ze(e,t)))}function Zr(e){return lr(e)?(Tp(e,{recursive:!0}),!0):!1}function Dp(e,t,r=[]){if(!lr(e))return!1;let n=Qr(e,"utf-8"),i=n;for(let o of t)i=i.replace(o,"");for(let{from:o,to:s}of r)i=i.replace(o,s);return i===n?!1:(xs(e,i,"utf-8"),!0)}function Np(e){let t=ze(e,".gitignore");if(!lr(t))return!1;let r=Qr(t,"utf-8"),n=r.split(`
1686
+ `],replacements:[{from:'c.json({ status: "success" as const, version: manifest?.version })',to:'c.json({ status: "success" as const })'}]}];function Yp(){return Ge.flatMap(e=>Yr.map(t=>ze(e,t)))}function Zr(e){return lr(e)?(Gp(e,{recursive:!0}),!0):!1}function Wp(e,t,r=[]){if(!lr(e))return!1;let n=Qr(e,"utf-8"),i=n;for(let o of t)i=i.replace(o,"");for(let{from:o,to:s}of r)i=i.replace(o,s);return i===n?!1:($s(e,i,"utf-8"),!0)}function zp(e){let t=ze(e,".gitignore");if(!lr(t))return!1;let r=Qr(t,"utf-8"),n=r.split(`
1635
1687
  `).filter(i=>!i.includes(".generatesaas")).join(`
1636
- `);return n===r?!1:(xs(t,n,"utf-8"),!0)}function Ds(e){e.command("eject").description("Remove all GenerateSaaS ties - manifest, license, heartbeat, skills").action(async()=>{let t=process.cwd(),r=ze(t,Ae),n;try{n=JSON.parse(Qr(r,"utf-8"))}catch{B.cancel("No GenerateSaaS project found in this directory."),process.exit(1)}let i=await B.text({message:'Type "eject" to confirm (this cannot be undone):',validate:a=>{if(a!=="eject")return'Type "eject" to confirm, or press Ctrl+C to cancel.'}});if(B.isCancel(i)&&(B.cancel("Eject cancelled."),process.exit(0)),n.licenseToken)try{await fetch("https://generatesaas.com/api/v1/heartbeat",{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${n.licenseToken}`},body:JSON.stringify({event:"eject",version:n.version,frontend:n.frontend}),signal:AbortSignal.timeout(5e3)}),B.log.info("Recorded the opt-out with generatesaas.com (final event - nothing is sent after this).")}catch{B.log.warn("Could not reach generatesaas.com to record the opt-out. Ejecting anyway.")}let o=[],s=[];for(let a of xp())Zr(ze(t,a))&&o.push(a);for(let a of _p)Zr(ze(t,a))&&o.push(a);Zr(ze(t,Q))&&o.push(Q+"/");for(let a of Op){let d=ze(t,a.file);Dp(d,a.removals,a.replacements)?s.push(a.file):lr(d)&&B.log.warn(`Could not auto-modify ${a.file} - manually remove license/heartbeat references.`)}Np(t)&&s.push(".gitignore");for(let a of o)B.log.info(`Deleted ${a}`);for(let a of s)B.log.info(`Modified ${a}`);B.log.success("Ejected successfully. This project is now fully standalone.")})}var qe=new Cp().name("generatesaas").description("CLI for scaffolding and managing GenerateSaaS projects").version("3.7.0").addHelpText("after",`
1688
+ `);return n===r?!1:($s(t,n,"utf-8"),!0)}function js(e){e.command("eject").description("Remove all GenerateSaaS ties - manifest, license, heartbeat, skills").action(async()=>{let t=process.cwd(),r=ze(t,we),n;try{n=JSON.parse(Qr(r,"utf-8"))}catch{B.cancel("No GenerateSaaS project found in this directory."),process.exit(1)}let i=await B.text({message:'Type "eject" to confirm (this cannot be undone):',validate:a=>{if(a!=="eject")return'Type "eject" to confirm, or press Ctrl+C to cancel.'}});if(B.isCancel(i)&&(B.cancel("Eject cancelled."),process.exit(0)),n.licenseToken)try{await fetch("https://generatesaas.com/api/v1/heartbeat",{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${n.licenseToken}`},body:JSON.stringify({event:"eject",version:n.version,frontend:n.frontend}),signal:AbortSignal.timeout(5e3)}),B.log.info("Recorded the opt-out with generatesaas.com (final event - nothing is sent after this).")}catch{B.log.warn("Could not reach generatesaas.com to record the opt-out. Ejecting anyway.")}let o=[],s=[];for(let a of Yp())Zr(ze(t,a))&&o.push(a);for(let a of Kp)Zr(ze(t,a))&&o.push(a);Zr(ze(t,Q))&&o.push(`${Q}/`);for(let a of Hp){let d=ze(t,a.file);Wp(d,a.removals,a.replacements)?s.push(a.file):lr(d)&&B.log.warn(`Could not auto-modify ${a.file} - manually remove license/heartbeat references.`)}zp(t)&&s.push(".gitignore");for(let a of o)B.log.info(`Deleted ${a}`);for(let a of s)B.log.info(`Modified ${a}`);B.log.success("Ejected successfully. This project is now fully standalone.")})}var qe=new qp().name("generatesaas").description("CLI for scaffolding and managing GenerateSaaS projects").version("3.9.0").addHelpText("after",`
1637
1689
  Examples:
1638
1690
  $ generatesaas init Interactive setup
1639
1691
  $ generatesaas init -n my-app -y Quick setup with defaults
1640
1692
  $ generatesaas status Check for updates
1641
1693
  $ generatesaas auth Set or update API key
1642
- `);gs(qe);Ss(qe);Ps(qe);_s(qe);Os(qe);Ds(qe);qe.parseAsync().catch(e=>{Ns.cancel("An unexpected error occurred."),console.error(e),process.exit(1)});
1694
+ `);bs(qe);As(qe);_s(qe);Cs(qe);Ls(qe);js(qe);qe.parseAsync().catch(e=>{Us.cancel("An unexpected error occurred."),console.error(e),process.exit(1)});