[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-meteor-meteor-deployment":3,"mdc--98tgnv-key":39,"related-org-meteor-meteor-deployment":1364,"related-repo-meteor-meteor-deployment":1527},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":34,"sourceUrl":37,"mdContent":38},"meteor-deployment","deploy Meteor 3 applications","Use when deploying a Meteor 3 application. Triggers on meteor build, meteor deploy, Galaxy Push to Deploy, Galaxy Mode, Repository Mode, DEPLOY_HOSTNAME, Docker, Kubernetes, settings.json, METEOR_SETTINGS, MONGO_URL, MONGO_OPLOG_URL, ROOT_URL, PORT, HTTP_FORWARDED_COUNT, NODE_OPTIONS, health checks, pre-deploy commands, hot code push, --architecture os.linux.x86_64, --server-only, or a deployed Node.js version mismatch. Use this skill when the user asks about shipping the app, asks about production config, or asks about containerizing.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"meteor","Meteor","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmeteor.png",[12,14,17,20],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Deployment","deployment",{"name":18,"slug":19,"type":13},"Docker","docker",{"name":21,"slug":22,"type":13},"Kubernetes","kubernetes",4,"https:\u002F\u002Fgithub.com\u002Fmeteor\u002Fagent-skills","2026-08-28T15:08:44.881769","MIT",0,[29,30,31,32,8,33],"agent-skills","ai-agents","claude-code","codex","meteorjs",{"repoUrl":24,"stars":23,"forks":27,"topics":35,"description":36},[29,30,31,32,8,33],"Meteor-maintained Agent Skills for building, migrating, testing, securing, and deploying Meteor 3 applications.","https:\u002F\u002Fgithub.com\u002Fmeteor\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fmeteor-deployment","---\nname: meteor-deployment\ndescription: >\n  Use when deploying a Meteor 3 application. Triggers on meteor build,\n  meteor deploy, Galaxy Push to Deploy, Galaxy Mode, Repository Mode,\n  DEPLOY_HOSTNAME, Docker, Kubernetes, settings.json, METEOR_SETTINGS,\n  MONGO_URL, MONGO_OPLOG_URL, ROOT_URL, PORT, HTTP_FORWARDED_COUNT,\n  NODE_OPTIONS, health checks, pre-deploy commands, hot code push,\n  --architecture os.linux.x86_64, --server-only, or a deployed Node.js\n  version mismatch. Use this skill when the user asks about shipping the app,\n  asks about production config, or asks about containerizing.\nmetadata:\n  author: meteor\n  kind: knowledge\n  meteor: \">=3.0\"\n  area: ops\n  tagline: \"Ship Meteor 3 apps to production (meteor build, Galaxy, Docker\u002FKubernetes, settings.json, env vars, Node version matching).\"\n  bundle: [\"ops\"]\n  docs_synced_at: \"2026-08-26\"\nlicense: MIT\n---\n\n# Meteor deployment\n\n`meteor build` produces a self-contained Node bundle that runs anywhere\nthe matching Node.js version runs. Galaxy is the first-party host;\nDocker \u002F Kubernetes \u002F SSH-to-a-Node-host all work too.\n\nMatch the Node version to the bundled Meteor Node:\n\n| Meteor | Node major |\n|---|---|\n| 3.0 | 20 |\n| 3.1 through 3.4 | 22 |\n| 3.5+ | 24 |\n\nMismatch causes runtime errors. Run `meteor node -v` to confirm.\n\n## Decision flow\n\n1. Galaxy? Choose Git Push to Deploy or the Meteor CLI. Configure Galaxy's\n   settings source, build hooks, health checks, and domains from\n   `references\u002Fgalaxy.md`.\n2. Docker \u002F Kubernetes? `meteor build --directory .\u002Fbuild --server-only`\n   skips platform-specific mobile artifacts. Use\n   `--architecture os.linux.x86_64` for a cross-build.\n3. SSH to a Node host? Same `meteor build`, scp the bundle, install prod\n   deps under `bundle\u002Fprograms\u002Fserver`, run `node main.js`.\n4. Vercel \u002F Netlify \u002F serverless? Not supported. Meteor needs a\n   long-lived Node process with a WebSocket.\n\n## Required environment\n\n| Var               | Purpose                                                      |\n|-------------------|--------------------------------------------------------------|\n| `ROOT_URL`        | Absolute external URL (e.g. `https:\u002F\u002Fapp.example.com`).      |\n| `MONGO_URL`       | `mongodb:\u002F\u002F...` connection string.                           |\n| `MONGO_OPLOG_URL` | Optional Mongo replica oplog URL.                       |\n| `PORT`            | Listen port. Default 3000.                                   |\n| `BIND_IP`         | Network interface. Default 0.0.0.0.                          |\n| `METEOR_SETTINGS` | JSON; populates `Meteor.settings`.                           |\n| `MAIL_URL`        | SMTP for `Email.send` and account emails.                    |\n\n`ROOT_URL` is the external URL the browser sees, not the cluster-internal\nservice URL. OAuth redirects, `Meteor.absoluteUrl`, and CSP all rely on\nit.\n\nOn Meteor 3.0 through 3.4, configure `MONGO_OPLOG_URL` for oplog-backed\nreactivity; without it, Meteor polls. Meteor 3.5+ can use core change streams\nwithout that variable and falls back to oplog or polling when needed. Atlas\nhosting alone does not add core change-stream support to an older Meteor app.\n\n## `settings.json`\n\n```json\n{\n  \"public\": { \"appName\": \"My App\", \"stripePublishableKey\": \"pk_live_...\" },\n  \"stripeSecretKey\": \"sk_live_...\",\n  \"oauthSecretKey\": \"16-byte-base64==\",\n  \"mailgun\": { \"apiKey\": \"...\" }\n}\n```\n\nTop-level keys: server only. `public` subtree: shipped to the client.\n\nLoad:\n\n```bash\n# dev\nmeteor run --settings settings.json\n\n# production\nMETEOR_SETTINGS=$(cat settings.json) node bundle\u002Fmain.js\n```\n\n## Galaxy\n\nChoose one deployment path:\n\n| Path | Use when | Trigger |\n|---|---|---|\n| Push to Deploy | Galaxy should build a connected GitHub or Bitbucket branch. | Every push to the selected branch. |\n| Meteor CLI | A person or CI pipeline controls each upload. | `meteor deploy \u003Capp-name>`. |\n\nFor a Free app, pass a simple app name, not a custom domain:\n\n```bash\nmeteor login\nmeteor deploy myapp --free --settings settings.json\n\nDEPLOY_HOSTNAME=eu-west-1.galaxy-deploy.meteor.com \\\n  meteor deploy myapp --plan essentials --settings settings.json\n```\n\nGalaxy assigns a `myapp.sandbox.galaxycloud.app` hostname on Free or a\nregional `myapp.\u003Cregion>.galaxycloud.app` hostname on paid plans. Add custom\ndomains in the dashboard. The active primary domain controls `ROOT_URL`.\n\nGalaxy injects `PORT`, `ROOT_URL`, and `METEOR_SETTINGS`. Put `MONGO_URL`,\n`MAIL_URL`, and other server environment values under\n`galaxy.meteor.com.env` in the Galaxy settings JSON. Do not assume a CLI\n`--settings` file overrides Repository Mode.\n\nSee `references\u002Fgalaxy.md` for settings modes, Push to Deploy builds,\nzero-downtime rollout and rollback, proxies, Mongo TLS, memory, and custom\nbase images.\n\n## Docker\n\nSee `references\u002Fdocker.md` for a working multi-stage Dockerfile. Build\nthe bundle in one stage, install server deps and run in a smaller one.\n`--server-only` skips platform-specific mobile application builds, but it\ndoes not omit the browser client or create an API-only bundle. Meteor still\nbuilds the `web.cordova` client target used for hot code push.\n\n## Hot code push\n\n`autoupdate` provides production hot code push. It detects a new client\nversion over DDP, applies stylesheet-only changes without reloading when\npossible, and otherwise performs a full browser reload. Remove `autoupdate`\nfrom `.meteor\u002Fpackages` to disable HCP.\n\n`hot-module-replacement` is different. It replaces accepted JavaScript\nmodules during development and falls back to HCP when a module cannot accept\nthe update. HMR is disabled in production and on unsupported web\narchitectures. There is no `Meteor.disableClientResourceFetch` switch in the\ncurrent public API.\n\n## Anti-patterns\n\n- Commit `settings.json` with production secrets. Use a CI secret store\n  or env vars; load with `METEOR_SETTINGS=$(cat ...)` at startup.\n- Set `ROOT_URL` to the internal Kubernetes service URL. Use the\n  external HTTPS URL or OAuth redirects and `Meteor.absoluteUrl` break.\n- Run a Node version that does not match the bundled Meteor Node. Always\n  check `meteor node -v`.\n- Build on the wrong architecture. M-series Mac developers building for\n  x86_64 Linux must pass `--architecture os.linux.x86_64`.\n- Commit Galaxy settings with credentials or expect Repository Mode to read a\n  CLI `--settings` file. Keep secrets in Galaxy Mode or a secret store.\n- Hardcode Galaxy's port, load-balancer IP, or regional DNS target. Read\n  `$PORT` and copy current network values from the app dashboard.\n- Bundle the source tree into the Docker image alongside the built\n  bundle. Use multi-stage; the runtime image holds only `bundle\u002F`.\n\n## See also\n\n- `references\u002Fsettings-and-env.md`\n- `references\u002Fgalaxy.md`\n- `references\u002Fdocker.md`\n- `references\u002Feval-cases.md`\n",{"data":40,"body":48},{"name":4,"description":6,"metadata":41,"license":26},{"author":8,"kind":42,"meteor":43,"area":44,"tagline":45,"bundle":46,"docs_synced_at":47},"knowledge",">=3.0","ops","Ship Meteor 3 apps to production (meteor build, Galaxy, Docker\u002FKubernetes, settings.json, env vars, Node version matching).",[44],"2026-08-26",{"type":49,"children":50},"root",[51,59,72,77,143,156,163,234,240,410,428,440,450,721,733,738,833,839,844,912,917,1030,1057,1112,1124,1128,1156,1162,1188,1207,1213,1315,1321,1358],{"type":52,"tag":53,"props":54,"children":55},"element","h1",{"id":4},[56],{"type":57,"value":58},"text","Meteor deployment",{"type":52,"tag":60,"props":61,"children":62},"p",{},[63,70],{"type":52,"tag":64,"props":65,"children":67},"code",{"className":66},[],[68],{"type":57,"value":69},"meteor build",{"type":57,"value":71}," produces a self-contained Node bundle that runs anywhere\nthe matching Node.js version runs. Galaxy is the first-party host;\nDocker \u002F Kubernetes \u002F SSH-to-a-Node-host all work too.",{"type":52,"tag":60,"props":73,"children":74},{},[75],{"type":57,"value":76},"Match the Node version to the bundled Meteor Node:",{"type":52,"tag":78,"props":79,"children":80},"table",{},[81,99],{"type":52,"tag":82,"props":83,"children":84},"thead",{},[85],{"type":52,"tag":86,"props":87,"children":88},"tr",{},[89,94],{"type":52,"tag":90,"props":91,"children":92},"th",{},[93],{"type":57,"value":9},{"type":52,"tag":90,"props":95,"children":96},{},[97],{"type":57,"value":98},"Node major",{"type":52,"tag":100,"props":101,"children":102},"tbody",{},[103,117,130],{"type":52,"tag":86,"props":104,"children":105},{},[106,112],{"type":52,"tag":107,"props":108,"children":109},"td",{},[110],{"type":57,"value":111},"3.0",{"type":52,"tag":107,"props":113,"children":114},{},[115],{"type":57,"value":116},"20",{"type":52,"tag":86,"props":118,"children":119},{},[120,125],{"type":52,"tag":107,"props":121,"children":122},{},[123],{"type":57,"value":124},"3.1 through 3.4",{"type":52,"tag":107,"props":126,"children":127},{},[128],{"type":57,"value":129},"22",{"type":52,"tag":86,"props":131,"children":132},{},[133,138],{"type":52,"tag":107,"props":134,"children":135},{},[136],{"type":57,"value":137},"3.5+",{"type":52,"tag":107,"props":139,"children":140},{},[141],{"type":57,"value":142},"24",{"type":52,"tag":60,"props":144,"children":145},{},[146,148,154],{"type":57,"value":147},"Mismatch causes runtime errors. Run ",{"type":52,"tag":64,"props":149,"children":151},{"className":150},[],[152],{"type":57,"value":153},"meteor node -v",{"type":57,"value":155}," to confirm.",{"type":52,"tag":157,"props":158,"children":160},"h2",{"id":159},"decision-flow",[161],{"type":57,"value":162},"Decision flow",{"type":52,"tag":164,"props":165,"children":166},"ol",{},[167,181,202,229],{"type":52,"tag":168,"props":169,"children":170},"li",{},[171,173,179],{"type":57,"value":172},"Galaxy? Choose Git Push to Deploy or the Meteor CLI. Configure Galaxy's\nsettings source, build hooks, health checks, and domains from\n",{"type":52,"tag":64,"props":174,"children":176},{"className":175},[],[177],{"type":57,"value":178},"references\u002Fgalaxy.md",{"type":57,"value":180},".",{"type":52,"tag":168,"props":182,"children":183},{},[184,186,192,194,200],{"type":57,"value":185},"Docker \u002F Kubernetes? ",{"type":52,"tag":64,"props":187,"children":189},{"className":188},[],[190],{"type":57,"value":191},"meteor build --directory .\u002Fbuild --server-only",{"type":57,"value":193},"\nskips platform-specific mobile artifacts. Use\n",{"type":52,"tag":64,"props":195,"children":197},{"className":196},[],[198],{"type":57,"value":199},"--architecture os.linux.x86_64",{"type":57,"value":201}," for a cross-build.",{"type":52,"tag":168,"props":203,"children":204},{},[205,207,212,214,220,222,228],{"type":57,"value":206},"SSH to a Node host? Same ",{"type":52,"tag":64,"props":208,"children":210},{"className":209},[],[211],{"type":57,"value":69},{"type":57,"value":213},", scp the bundle, install prod\ndeps under ",{"type":52,"tag":64,"props":215,"children":217},{"className":216},[],[218],{"type":57,"value":219},"bundle\u002Fprograms\u002Fserver",{"type":57,"value":221},", run ",{"type":52,"tag":64,"props":223,"children":225},{"className":224},[],[226],{"type":57,"value":227},"node main.js",{"type":57,"value":180},{"type":52,"tag":168,"props":230,"children":231},{},[232],{"type":57,"value":233},"Vercel \u002F Netlify \u002F serverless? Not supported. Meteor needs a\nlong-lived Node process with a WebSocket.",{"type":52,"tag":157,"props":235,"children":237},{"id":236},"required-environment",[238],{"type":57,"value":239},"Required environment",{"type":52,"tag":78,"props":241,"children":242},{},[243,259],{"type":52,"tag":82,"props":244,"children":245},{},[246],{"type":52,"tag":86,"props":247,"children":248},{},[249,254],{"type":52,"tag":90,"props":250,"children":251},{},[252],{"type":57,"value":253},"Var",{"type":52,"tag":90,"props":255,"children":256},{},[257],{"type":57,"value":258},"Purpose",{"type":52,"tag":100,"props":260,"children":261},{},[262,287,310,327,344,361,385],{"type":52,"tag":86,"props":263,"children":264},{},[265,274],{"type":52,"tag":107,"props":266,"children":267},{},[268],{"type":52,"tag":64,"props":269,"children":271},{"className":270},[],[272],{"type":57,"value":273},"ROOT_URL",{"type":52,"tag":107,"props":275,"children":276},{},[277,279,285],{"type":57,"value":278},"Absolute external URL (e.g. ",{"type":52,"tag":64,"props":280,"children":282},{"className":281},[],[283],{"type":57,"value":284},"https:\u002F\u002Fapp.example.com",{"type":57,"value":286},").",{"type":52,"tag":86,"props":288,"children":289},{},[290,299],{"type":52,"tag":107,"props":291,"children":292},{},[293],{"type":52,"tag":64,"props":294,"children":296},{"className":295},[],[297],{"type":57,"value":298},"MONGO_URL",{"type":52,"tag":107,"props":300,"children":301},{},[302,308],{"type":52,"tag":64,"props":303,"children":305},{"className":304},[],[306],{"type":57,"value":307},"mongodb:\u002F\u002F...",{"type":57,"value":309}," connection string.",{"type":52,"tag":86,"props":311,"children":312},{},[313,322],{"type":52,"tag":107,"props":314,"children":315},{},[316],{"type":52,"tag":64,"props":317,"children":319},{"className":318},[],[320],{"type":57,"value":321},"MONGO_OPLOG_URL",{"type":52,"tag":107,"props":323,"children":324},{},[325],{"type":57,"value":326},"Optional Mongo replica oplog URL.",{"type":52,"tag":86,"props":328,"children":329},{},[330,339],{"type":52,"tag":107,"props":331,"children":332},{},[333],{"type":52,"tag":64,"props":334,"children":336},{"className":335},[],[337],{"type":57,"value":338},"PORT",{"type":52,"tag":107,"props":340,"children":341},{},[342],{"type":57,"value":343},"Listen port. Default 3000.",{"type":52,"tag":86,"props":345,"children":346},{},[347,356],{"type":52,"tag":107,"props":348,"children":349},{},[350],{"type":52,"tag":64,"props":351,"children":353},{"className":352},[],[354],{"type":57,"value":355},"BIND_IP",{"type":52,"tag":107,"props":357,"children":358},{},[359],{"type":57,"value":360},"Network interface. Default 0.0.0.0.",{"type":52,"tag":86,"props":362,"children":363},{},[364,373],{"type":52,"tag":107,"props":365,"children":366},{},[367],{"type":52,"tag":64,"props":368,"children":370},{"className":369},[],[371],{"type":57,"value":372},"METEOR_SETTINGS",{"type":52,"tag":107,"props":374,"children":375},{},[376,378,384],{"type":57,"value":377},"JSON; populates ",{"type":52,"tag":64,"props":379,"children":381},{"className":380},[],[382],{"type":57,"value":383},"Meteor.settings",{"type":57,"value":180},{"type":52,"tag":86,"props":386,"children":387},{},[388,397],{"type":52,"tag":107,"props":389,"children":390},{},[391],{"type":52,"tag":64,"props":392,"children":394},{"className":393},[],[395],{"type":57,"value":396},"MAIL_URL",{"type":52,"tag":107,"props":398,"children":399},{},[400,402,408],{"type":57,"value":401},"SMTP for ",{"type":52,"tag":64,"props":403,"children":405},{"className":404},[],[406],{"type":57,"value":407},"Email.send",{"type":57,"value":409}," and account emails.",{"type":52,"tag":60,"props":411,"children":412},{},[413,418,420,426],{"type":52,"tag":64,"props":414,"children":416},{"className":415},[],[417],{"type":57,"value":273},{"type":57,"value":419}," is the external URL the browser sees, not the cluster-internal\nservice URL. OAuth redirects, ",{"type":52,"tag":64,"props":421,"children":423},{"className":422},[],[424],{"type":57,"value":425},"Meteor.absoluteUrl",{"type":57,"value":427},", and CSP all rely on\nit.",{"type":52,"tag":60,"props":429,"children":430},{},[431,433,438],{"type":57,"value":432},"On Meteor 3.0 through 3.4, configure ",{"type":52,"tag":64,"props":434,"children":436},{"className":435},[],[437],{"type":57,"value":321},{"type":57,"value":439}," for oplog-backed\nreactivity; without it, Meteor polls. Meteor 3.5+ can use core change streams\nwithout that variable and falls back to oplog or polling when needed. Atlas\nhosting alone does not add core change-stream support to an older Meteor app.",{"type":52,"tag":157,"props":441,"children":443},{"id":442},"settingsjson",[444],{"type":52,"tag":64,"props":445,"children":447},{"className":446},[],[448],{"type":57,"value":449},"settings.json",{"type":52,"tag":451,"props":452,"children":457},"pre",{"className":453,"code":454,"language":455,"meta":456,"style":456},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"public\": { \"appName\": \"My App\", \"stripePublishableKey\": \"pk_live_...\" },\n  \"stripeSecretKey\": \"sk_live_...\",\n  \"oauthSecretKey\": \"16-byte-base64==\",\n  \"mailgun\": { \"apiKey\": \"...\" }\n}\n","json","",[458],{"type":52,"tag":64,"props":459,"children":460},{"__ignoreMap":456},[461,473,576,615,652,712],{"type":52,"tag":462,"props":463,"children":466},"span",{"class":464,"line":465},"line",1,[467],{"type":52,"tag":462,"props":468,"children":470},{"style":469},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[471],{"type":57,"value":472},"{\n",{"type":52,"tag":462,"props":474,"children":476},{"class":464,"line":475},2,[477,482,488,493,498,503,508,514,518,522,526,532,536,541,545,550,554,558,562,567,571],{"type":52,"tag":462,"props":478,"children":479},{"style":469},[480],{"type":57,"value":481},"  \"",{"type":52,"tag":462,"props":483,"children":485},{"style":484},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[486],{"type":57,"value":487},"public",{"type":52,"tag":462,"props":489,"children":490},{"style":469},[491],{"type":57,"value":492},"\"",{"type":52,"tag":462,"props":494,"children":495},{"style":469},[496],{"type":57,"value":497},":",{"type":52,"tag":462,"props":499,"children":500},{"style":469},[501],{"type":57,"value":502}," {",{"type":52,"tag":462,"props":504,"children":505},{"style":469},[506],{"type":57,"value":507}," \"",{"type":52,"tag":462,"props":509,"children":511},{"style":510},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[512],{"type":57,"value":513},"appName",{"type":52,"tag":462,"props":515,"children":516},{"style":469},[517],{"type":57,"value":492},{"type":52,"tag":462,"props":519,"children":520},{"style":469},[521],{"type":57,"value":497},{"type":52,"tag":462,"props":523,"children":524},{"style":469},[525],{"type":57,"value":507},{"type":52,"tag":462,"props":527,"children":529},{"style":528},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[530],{"type":57,"value":531},"My App",{"type":52,"tag":462,"props":533,"children":534},{"style":469},[535],{"type":57,"value":492},{"type":52,"tag":462,"props":537,"children":538},{"style":469},[539],{"type":57,"value":540},",",{"type":52,"tag":462,"props":542,"children":543},{"style":469},[544],{"type":57,"value":507},{"type":52,"tag":462,"props":546,"children":547},{"style":510},[548],{"type":57,"value":549},"stripePublishableKey",{"type":52,"tag":462,"props":551,"children":552},{"style":469},[553],{"type":57,"value":492},{"type":52,"tag":462,"props":555,"children":556},{"style":469},[557],{"type":57,"value":497},{"type":52,"tag":462,"props":559,"children":560},{"style":469},[561],{"type":57,"value":507},{"type":52,"tag":462,"props":563,"children":564},{"style":528},[565],{"type":57,"value":566},"pk_live_...",{"type":52,"tag":462,"props":568,"children":569},{"style":469},[570],{"type":57,"value":492},{"type":52,"tag":462,"props":572,"children":573},{"style":469},[574],{"type":57,"value":575}," },\n",{"type":52,"tag":462,"props":577,"children":579},{"class":464,"line":578},3,[580,584,589,593,597,601,606,610],{"type":52,"tag":462,"props":581,"children":582},{"style":469},[583],{"type":57,"value":481},{"type":52,"tag":462,"props":585,"children":586},{"style":484},[587],{"type":57,"value":588},"stripeSecretKey",{"type":52,"tag":462,"props":590,"children":591},{"style":469},[592],{"type":57,"value":492},{"type":52,"tag":462,"props":594,"children":595},{"style":469},[596],{"type":57,"value":497},{"type":52,"tag":462,"props":598,"children":599},{"style":469},[600],{"type":57,"value":507},{"type":52,"tag":462,"props":602,"children":603},{"style":528},[604],{"type":57,"value":605},"sk_live_...",{"type":52,"tag":462,"props":607,"children":608},{"style":469},[609],{"type":57,"value":492},{"type":52,"tag":462,"props":611,"children":612},{"style":469},[613],{"type":57,"value":614},",\n",{"type":52,"tag":462,"props":616,"children":617},{"class":464,"line":23},[618,622,627,631,635,639,644,648],{"type":52,"tag":462,"props":619,"children":620},{"style":469},[621],{"type":57,"value":481},{"type":52,"tag":462,"props":623,"children":624},{"style":484},[625],{"type":57,"value":626},"oauthSecretKey",{"type":52,"tag":462,"props":628,"children":629},{"style":469},[630],{"type":57,"value":492},{"type":52,"tag":462,"props":632,"children":633},{"style":469},[634],{"type":57,"value":497},{"type":52,"tag":462,"props":636,"children":637},{"style":469},[638],{"type":57,"value":507},{"type":52,"tag":462,"props":640,"children":641},{"style":528},[642],{"type":57,"value":643},"16-byte-base64==",{"type":52,"tag":462,"props":645,"children":646},{"style":469},[647],{"type":57,"value":492},{"type":52,"tag":462,"props":649,"children":650},{"style":469},[651],{"type":57,"value":614},{"type":52,"tag":462,"props":653,"children":655},{"class":464,"line":654},5,[656,660,665,669,673,677,681,686,690,694,698,703,707],{"type":52,"tag":462,"props":657,"children":658},{"style":469},[659],{"type":57,"value":481},{"type":52,"tag":462,"props":661,"children":662},{"style":484},[663],{"type":57,"value":664},"mailgun",{"type":52,"tag":462,"props":666,"children":667},{"style":469},[668],{"type":57,"value":492},{"type":52,"tag":462,"props":670,"children":671},{"style":469},[672],{"type":57,"value":497},{"type":52,"tag":462,"props":674,"children":675},{"style":469},[676],{"type":57,"value":502},{"type":52,"tag":462,"props":678,"children":679},{"style":469},[680],{"type":57,"value":507},{"type":52,"tag":462,"props":682,"children":683},{"style":510},[684],{"type":57,"value":685},"apiKey",{"type":52,"tag":462,"props":687,"children":688},{"style":469},[689],{"type":57,"value":492},{"type":52,"tag":462,"props":691,"children":692},{"style":469},[693],{"type":57,"value":497},{"type":52,"tag":462,"props":695,"children":696},{"style":469},[697],{"type":57,"value":507},{"type":52,"tag":462,"props":699,"children":700},{"style":528},[701],{"type":57,"value":702},"...",{"type":52,"tag":462,"props":704,"children":705},{"style":469},[706],{"type":57,"value":492},{"type":52,"tag":462,"props":708,"children":709},{"style":469},[710],{"type":57,"value":711}," }\n",{"type":52,"tag":462,"props":713,"children":715},{"class":464,"line":714},6,[716],{"type":52,"tag":462,"props":717,"children":718},{"style":469},[719],{"type":57,"value":720},"}\n",{"type":52,"tag":60,"props":722,"children":723},{},[724,726,731],{"type":57,"value":725},"Top-level keys: server only. ",{"type":52,"tag":64,"props":727,"children":729},{"className":728},[],[730],{"type":57,"value":487},{"type":57,"value":732}," subtree: shipped to the client.",{"type":52,"tag":60,"props":734,"children":735},{},[736],{"type":57,"value":737},"Load:",{"type":52,"tag":451,"props":739,"children":743},{"className":740,"code":741,"language":742,"meta":456,"style":456},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# dev\nmeteor run --settings settings.json\n\n# production\nMETEOR_SETTINGS=$(cat settings.json) node bundle\u002Fmain.js\n","bash",[744],{"type":52,"tag":64,"props":745,"children":746},{"__ignoreMap":456},[747,756,778,787,795],{"type":52,"tag":462,"props":748,"children":749},{"class":464,"line":465},[750],{"type":52,"tag":462,"props":751,"children":753},{"style":752},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[754],{"type":57,"value":755},"# dev\n",{"type":52,"tag":462,"props":757,"children":758},{"class":464,"line":475},[759,763,768,773],{"type":52,"tag":462,"props":760,"children":761},{"style":510},[762],{"type":57,"value":8},{"type":52,"tag":462,"props":764,"children":765},{"style":528},[766],{"type":57,"value":767}," run",{"type":52,"tag":462,"props":769,"children":770},{"style":528},[771],{"type":57,"value":772}," --settings",{"type":52,"tag":462,"props":774,"children":775},{"style":528},[776],{"type":57,"value":777}," settings.json\n",{"type":52,"tag":462,"props":779,"children":780},{"class":464,"line":578},[781],{"type":52,"tag":462,"props":782,"children":784},{"emptyLinePlaceholder":783},true,[785],{"type":57,"value":786},"\n",{"type":52,"tag":462,"props":788,"children":789},{"class":464,"line":23},[790],{"type":52,"tag":462,"props":791,"children":792},{"style":752},[793],{"type":57,"value":794},"# production\n",{"type":52,"tag":462,"props":796,"children":797},{"class":464,"line":654},[798,803,808,813,818,823,828],{"type":52,"tag":462,"props":799,"children":801},{"style":800},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[802],{"type":57,"value":372},{"type":52,"tag":462,"props":804,"children":805},{"style":469},[806],{"type":57,"value":807},"=$(",{"type":52,"tag":462,"props":809,"children":810},{"style":510},[811],{"type":57,"value":812},"cat",{"type":52,"tag":462,"props":814,"children":815},{"style":528},[816],{"type":57,"value":817}," settings.json",{"type":52,"tag":462,"props":819,"children":820},{"style":469},[821],{"type":57,"value":822},")",{"type":52,"tag":462,"props":824,"children":825},{"style":510},[826],{"type":57,"value":827}," node",{"type":52,"tag":462,"props":829,"children":830},{"style":528},[831],{"type":57,"value":832}," bundle\u002Fmain.js\n",{"type":52,"tag":157,"props":834,"children":836},{"id":835},"galaxy",[837],{"type":57,"value":838},"Galaxy",{"type":52,"tag":60,"props":840,"children":841},{},[842],{"type":57,"value":843},"Choose one deployment path:",{"type":52,"tag":78,"props":845,"children":846},{},[847,868],{"type":52,"tag":82,"props":848,"children":849},{},[850],{"type":52,"tag":86,"props":851,"children":852},{},[853,858,863],{"type":52,"tag":90,"props":854,"children":855},{},[856],{"type":57,"value":857},"Path",{"type":52,"tag":90,"props":859,"children":860},{},[861],{"type":57,"value":862},"Use when",{"type":52,"tag":90,"props":864,"children":865},{},[866],{"type":57,"value":867},"Trigger",{"type":52,"tag":100,"props":869,"children":870},{},[871,889],{"type":52,"tag":86,"props":872,"children":873},{},[874,879,884],{"type":52,"tag":107,"props":875,"children":876},{},[877],{"type":57,"value":878},"Push to Deploy",{"type":52,"tag":107,"props":880,"children":881},{},[882],{"type":57,"value":883},"Galaxy should build a connected GitHub or Bitbucket branch.",{"type":52,"tag":107,"props":885,"children":886},{},[887],{"type":57,"value":888},"Every push to the selected branch.",{"type":52,"tag":86,"props":890,"children":891},{},[892,897,902],{"type":52,"tag":107,"props":893,"children":894},{},[895],{"type":57,"value":896},"Meteor CLI",{"type":52,"tag":107,"props":898,"children":899},{},[900],{"type":57,"value":901},"A person or CI pipeline controls each upload.",{"type":52,"tag":107,"props":903,"children":904},{},[905,911],{"type":52,"tag":64,"props":906,"children":908},{"className":907},[],[909],{"type":57,"value":910},"meteor deploy \u003Capp-name>",{"type":57,"value":180},{"type":52,"tag":60,"props":913,"children":914},{},[915],{"type":57,"value":916},"For a Free app, pass a simple app name, not a custom domain:",{"type":52,"tag":451,"props":918,"children":920},{"className":740,"code":919,"language":742,"meta":456,"style":456},"meteor login\nmeteor deploy myapp --free --settings settings.json\n\nDEPLOY_HOSTNAME=eu-west-1.galaxy-deploy.meteor.com \\\n  meteor deploy myapp --plan essentials --settings settings.json\n",[921],{"type":52,"tag":64,"props":922,"children":923},{"__ignoreMap":456},[924,936,966,973,996],{"type":52,"tag":462,"props":925,"children":926},{"class":464,"line":465},[927,931],{"type":52,"tag":462,"props":928,"children":929},{"style":510},[930],{"type":57,"value":8},{"type":52,"tag":462,"props":932,"children":933},{"style":528},[934],{"type":57,"value":935}," login\n",{"type":52,"tag":462,"props":937,"children":938},{"class":464,"line":475},[939,943,948,953,958,962],{"type":52,"tag":462,"props":940,"children":941},{"style":510},[942],{"type":57,"value":8},{"type":52,"tag":462,"props":944,"children":945},{"style":528},[946],{"type":57,"value":947}," deploy",{"type":52,"tag":462,"props":949,"children":950},{"style":528},[951],{"type":57,"value":952}," myapp",{"type":52,"tag":462,"props":954,"children":955},{"style":528},[956],{"type":57,"value":957}," --free",{"type":52,"tag":462,"props":959,"children":960},{"style":528},[961],{"type":57,"value":772},{"type":52,"tag":462,"props":963,"children":964},{"style":528},[965],{"type":57,"value":777},{"type":52,"tag":462,"props":967,"children":968},{"class":464,"line":578},[969],{"type":52,"tag":462,"props":970,"children":971},{"emptyLinePlaceholder":783},[972],{"type":57,"value":786},{"type":52,"tag":462,"props":974,"children":975},{"class":464,"line":23},[976,981,986,991],{"type":52,"tag":462,"props":977,"children":978},{"style":800},[979],{"type":57,"value":980},"DEPLOY_HOSTNAME",{"type":52,"tag":462,"props":982,"children":983},{"style":469},[984],{"type":57,"value":985},"=",{"type":52,"tag":462,"props":987,"children":988},{"style":528},[989],{"type":57,"value":990},"eu-west-1.galaxy-deploy.meteor.com",{"type":52,"tag":462,"props":992,"children":993},{"style":510},[994],{"type":57,"value":995}," \\\n",{"type":52,"tag":462,"props":997,"children":998},{"class":464,"line":654},[999,1004,1008,1012,1017,1022,1026],{"type":52,"tag":462,"props":1000,"children":1001},{"style":528},[1002],{"type":57,"value":1003},"  meteor",{"type":52,"tag":462,"props":1005,"children":1006},{"style":528},[1007],{"type":57,"value":947},{"type":52,"tag":462,"props":1009,"children":1010},{"style":528},[1011],{"type":57,"value":952},{"type":52,"tag":462,"props":1013,"children":1014},{"style":528},[1015],{"type":57,"value":1016}," --plan",{"type":52,"tag":462,"props":1018,"children":1019},{"style":528},[1020],{"type":57,"value":1021}," essentials",{"type":52,"tag":462,"props":1023,"children":1024},{"style":528},[1025],{"type":57,"value":772},{"type":52,"tag":462,"props":1027,"children":1028},{"style":528},[1029],{"type":57,"value":777},{"type":52,"tag":60,"props":1031,"children":1032},{},[1033,1035,1041,1043,1049,1051,1056],{"type":57,"value":1034},"Galaxy assigns a ",{"type":52,"tag":64,"props":1036,"children":1038},{"className":1037},[],[1039],{"type":57,"value":1040},"myapp.sandbox.galaxycloud.app",{"type":57,"value":1042}," hostname on Free or a\nregional ",{"type":52,"tag":64,"props":1044,"children":1046},{"className":1045},[],[1047],{"type":57,"value":1048},"myapp.\u003Cregion>.galaxycloud.app",{"type":57,"value":1050}," hostname on paid plans. Add custom\ndomains in the dashboard. The active primary domain controls ",{"type":52,"tag":64,"props":1052,"children":1054},{"className":1053},[],[1055],{"type":57,"value":273},{"type":57,"value":180},{"type":52,"tag":60,"props":1058,"children":1059},{},[1060,1062,1067,1069,1074,1076,1081,1083,1088,1089,1094,1096,1102,1104,1110],{"type":57,"value":1061},"Galaxy injects ",{"type":52,"tag":64,"props":1063,"children":1065},{"className":1064},[],[1066],{"type":57,"value":338},{"type":57,"value":1068},", ",{"type":52,"tag":64,"props":1070,"children":1072},{"className":1071},[],[1073],{"type":57,"value":273},{"type":57,"value":1075},", and ",{"type":52,"tag":64,"props":1077,"children":1079},{"className":1078},[],[1080],{"type":57,"value":372},{"type":57,"value":1082},". Put ",{"type":52,"tag":64,"props":1084,"children":1086},{"className":1085},[],[1087],{"type":57,"value":298},{"type":57,"value":614},{"type":52,"tag":64,"props":1090,"children":1092},{"className":1091},[],[1093],{"type":57,"value":396},{"type":57,"value":1095},", and other server environment values under\n",{"type":52,"tag":64,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":57,"value":1101},"galaxy.meteor.com.env",{"type":57,"value":1103}," in the Galaxy settings JSON. Do not assume a CLI\n",{"type":52,"tag":64,"props":1105,"children":1107},{"className":1106},[],[1108],{"type":57,"value":1109},"--settings",{"type":57,"value":1111}," file overrides Repository Mode.",{"type":52,"tag":60,"props":1113,"children":1114},{},[1115,1117,1122],{"type":57,"value":1116},"See ",{"type":52,"tag":64,"props":1118,"children":1120},{"className":1119},[],[1121],{"type":57,"value":178},{"type":57,"value":1123}," for settings modes, Push to Deploy builds,\nzero-downtime rollout and rollback, proxies, Mongo TLS, memory, and custom\nbase images.",{"type":52,"tag":157,"props":1125,"children":1126},{"id":19},[1127],{"type":57,"value":18},{"type":52,"tag":60,"props":1129,"children":1130},{},[1131,1132,1138,1140,1146,1148,1154],{"type":57,"value":1116},{"type":52,"tag":64,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":57,"value":1137},"references\u002Fdocker.md",{"type":57,"value":1139}," for a working multi-stage Dockerfile. Build\nthe bundle in one stage, install server deps and run in a smaller one.\n",{"type":52,"tag":64,"props":1141,"children":1143},{"className":1142},[],[1144],{"type":57,"value":1145},"--server-only",{"type":57,"value":1147}," skips platform-specific mobile application builds, but it\ndoes not omit the browser client or create an API-only bundle. Meteor still\nbuilds the ",{"type":52,"tag":64,"props":1149,"children":1151},{"className":1150},[],[1152],{"type":57,"value":1153},"web.cordova",{"type":57,"value":1155}," client target used for hot code push.",{"type":52,"tag":157,"props":1157,"children":1159},{"id":1158},"hot-code-push",[1160],{"type":57,"value":1161},"Hot code push",{"type":52,"tag":60,"props":1163,"children":1164},{},[1165,1171,1173,1178,1180,1186],{"type":52,"tag":64,"props":1166,"children":1168},{"className":1167},[],[1169],{"type":57,"value":1170},"autoupdate",{"type":57,"value":1172}," provides production hot code push. It detects a new client\nversion over DDP, applies stylesheet-only changes without reloading when\npossible, and otherwise performs a full browser reload. Remove ",{"type":52,"tag":64,"props":1174,"children":1176},{"className":1175},[],[1177],{"type":57,"value":1170},{"type":57,"value":1179},"\nfrom ",{"type":52,"tag":64,"props":1181,"children":1183},{"className":1182},[],[1184],{"type":57,"value":1185},".meteor\u002Fpackages",{"type":57,"value":1187}," to disable HCP.",{"type":52,"tag":60,"props":1189,"children":1190},{},[1191,1197,1199,1205],{"type":52,"tag":64,"props":1192,"children":1194},{"className":1193},[],[1195],{"type":57,"value":1196},"hot-module-replacement",{"type":57,"value":1198}," is different. It replaces accepted JavaScript\nmodules during development and falls back to HCP when a module cannot accept\nthe update. HMR is disabled in production and on unsupported web\narchitectures. There is no ",{"type":52,"tag":64,"props":1200,"children":1202},{"className":1201},[],[1203],{"type":57,"value":1204},"Meteor.disableClientResourceFetch",{"type":57,"value":1206}," switch in the\ncurrent public API.",{"type":52,"tag":157,"props":1208,"children":1210},{"id":1209},"anti-patterns",[1211],{"type":57,"value":1212},"Anti-patterns",{"type":52,"tag":1214,"props":1215,"children":1216},"ul",{},[1217,1237,1256,1267,1278,1290,1303],{"type":52,"tag":168,"props":1218,"children":1219},{},[1220,1222,1227,1229,1235],{"type":57,"value":1221},"Commit ",{"type":52,"tag":64,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":57,"value":449},{"type":57,"value":1228}," with production secrets. Use a CI secret store\nor env vars; load with ",{"type":52,"tag":64,"props":1230,"children":1232},{"className":1231},[],[1233],{"type":57,"value":1234},"METEOR_SETTINGS=$(cat ...)",{"type":57,"value":1236}," at startup.",{"type":52,"tag":168,"props":1238,"children":1239},{},[1240,1242,1247,1249,1254],{"type":57,"value":1241},"Set ",{"type":52,"tag":64,"props":1243,"children":1245},{"className":1244},[],[1246],{"type":57,"value":273},{"type":57,"value":1248}," to the internal Kubernetes service URL. Use the\nexternal HTTPS URL or OAuth redirects and ",{"type":52,"tag":64,"props":1250,"children":1252},{"className":1251},[],[1253],{"type":57,"value":425},{"type":57,"value":1255}," break.",{"type":52,"tag":168,"props":1257,"children":1258},{},[1259,1261,1266],{"type":57,"value":1260},"Run a Node version that does not match the bundled Meteor Node. Always\ncheck ",{"type":52,"tag":64,"props":1262,"children":1264},{"className":1263},[],[1265],{"type":57,"value":153},{"type":57,"value":180},{"type":52,"tag":168,"props":1268,"children":1269},{},[1270,1272,1277],{"type":57,"value":1271},"Build on the wrong architecture. M-series Mac developers building for\nx86_64 Linux must pass ",{"type":52,"tag":64,"props":1273,"children":1275},{"className":1274},[],[1276],{"type":57,"value":199},{"type":57,"value":180},{"type":52,"tag":168,"props":1279,"children":1280},{},[1281,1283,1288],{"type":57,"value":1282},"Commit Galaxy settings with credentials or expect Repository Mode to read a\nCLI ",{"type":52,"tag":64,"props":1284,"children":1286},{"className":1285},[],[1287],{"type":57,"value":1109},{"type":57,"value":1289}," file. Keep secrets in Galaxy Mode or a secret store.",{"type":52,"tag":168,"props":1291,"children":1292},{},[1293,1295,1301],{"type":57,"value":1294},"Hardcode Galaxy's port, load-balancer IP, or regional DNS target. Read\n",{"type":52,"tag":64,"props":1296,"children":1298},{"className":1297},[],[1299],{"type":57,"value":1300},"$PORT",{"type":57,"value":1302}," and copy current network values from the app dashboard.",{"type":52,"tag":168,"props":1304,"children":1305},{},[1306,1308,1314],{"type":57,"value":1307},"Bundle the source tree into the Docker image alongside the built\nbundle. Use multi-stage; the runtime image holds only ",{"type":52,"tag":64,"props":1309,"children":1311},{"className":1310},[],[1312],{"type":57,"value":1313},"bundle\u002F",{"type":57,"value":180},{"type":52,"tag":157,"props":1316,"children":1318},{"id":1317},"see-also",[1319],{"type":57,"value":1320},"See also",{"type":52,"tag":1214,"props":1322,"children":1323},{},[1324,1333,1341,1349],{"type":52,"tag":168,"props":1325,"children":1326},{},[1327],{"type":52,"tag":64,"props":1328,"children":1330},{"className":1329},[],[1331],{"type":57,"value":1332},"references\u002Fsettings-and-env.md",{"type":52,"tag":168,"props":1334,"children":1335},{},[1336],{"type":52,"tag":64,"props":1337,"children":1339},{"className":1338},[],[1340],{"type":57,"value":178},{"type":52,"tag":168,"props":1342,"children":1343},{},[1344],{"type":52,"tag":64,"props":1345,"children":1347},{"className":1346},[],[1348],{"type":57,"value":1137},{"type":52,"tag":168,"props":1350,"children":1351},{},[1352],{"type":52,"tag":64,"props":1353,"children":1355},{"className":1354},[],[1356],{"type":57,"value":1357},"references\u002Feval-cases.md",{"type":52,"tag":1359,"props":1360,"children":1361},"style",{},[1362],{"type":57,"value":1363},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1365,"total":1526},[1366,1383,1397,1408,1422,1429,1443,1457,1472,1484,1497,1512],{"slug":1367,"name":1367,"fn":1368,"description":1369,"org":1370,"tags":1371,"stars":23,"repoUrl":24,"updatedAt":1382},"meteor-accounts","implement authentication in Meteor apps","Use when wiring up authentication in a Meteor 3 app. Triggers on accounts-password, accounts-base, OAuth (Google, Facebook, GitHub, Apple, Twitter, Meetup, Weibo), accounts-2fa, accounts-passwordless, ServiceConfiguration.configurations.upsertAsync, Accounts.createUserAsync, Accounts.setPasswordAsync, Accounts.forgotPassword, Accounts.resetPassword, Accounts.verifyEmail, useHttpOnlyCookies, clientStorage, Meteor.loginWithPasswordAnd2faCode, email verification. Use this skill when the user asks about signups, signins, or asks about token storage vs HttpOnly cookies.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1372,1375,1378,1379],{"name":1373,"slug":1374,"type":13},"Auth","auth",{"name":1376,"slug":1377,"type":13},"Authentication","authentication",{"name":9,"slug":8,"type":13},{"name":1380,"slug":1381,"type":13},"OAuth","oauth","2026-08-28T15:08:40.058032",{"slug":1384,"name":1384,"fn":1385,"description":1386,"org":1387,"tags":1388,"stars":23,"repoUrl":24,"updatedAt":1396},"meteor-blaze","build and debug Meteor Blaze interfaces","Use when building or debugging Blaze interfaces in Meteor 3: meteor create --blaze, Spacebars templates, Template helpers and events, lifecycle hooks, Tracker, ReactiveVar or ReactiveDict, template subscriptions, Promise helpers, #let async states, Template.dynamic, Blaze.render, and blaze-hot HMR with the Meteor bundler. Triggers on stale async helper results, lost reactivity after await, data-context lookup surprises, duplicate DOM integrations after HMR, Rspack full reloads, or raw HTML in triple braces. Use this skill when the user asks about reusable Blaze components, current Blaze packages, Rspack entry imports, or testing Blaze templates. For Meteor 2 to 3 upgrades, use migrate-to-meteor-3 instead.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1389,1392,1393],{"name":1390,"slug":1391,"type":13},"Frontend","frontend",{"name":9,"slug":8,"type":13},{"name":1394,"slug":1395,"type":13},"Web Development","web-development","2026-08-28T15:09:37.601349",{"slug":1398,"name":1398,"fn":1399,"description":1400,"org":1401,"tags":1402,"stars":23,"repoUrl":24,"updatedAt":1407},"meteor-community-packages","manage Meteor community packages","Use when choosing, evaluating, adopting, configuring, or debugging a package from Meteor's documented community catalog, or moving from a community package to a promoted core package such as roles. Triggers on community package recommendations, Atmosphere vs npm selection, Packosphere maintenance checks, jam:* helpers, Meteor.publish.once, Meteor.publish.stream, meteor-rpc, Wormhole, cluster, and mail-preview. Use this skill when the user asks which maintained package fits or how its documented integration works. Route Meteor 2-to-3 package failures to migrate-to-meteor-3 and underlying core API design to its owning skill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1403,1406],{"name":1404,"slug":1405,"type":13},"Engineering","engineering",{"name":9,"slug":8,"type":13},"2026-08-28T15:08:45.28079",{"slug":1409,"name":1409,"fn":1410,"description":1411,"org":1412,"tags":1413,"stars":23,"repoUrl":24,"updatedAt":1421},"meteor-debugging","diagnose failures in Meteor 3 applications","Use when diagnosing an unexplained failure in a Meteor 3 application before the failing layer or fix is known. Triggers on server crashes, client-only errors, stuck subscriptions, DDP or WebSocket disconnects, Minimongo\u002Fserver data mismatches, hanging or flaky tests, slow builds, --inspect, console.log, .only, Playwright traces, or requests to debug a Meteor app. Use this skill when evidence must distinguish Meteor tool, server, client, data, test, browser, mobile, or production boundaries. For test setup and authoring use meteor-testing; after confirming a domain cause, hand the repair to the owning skill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1414,1417,1418],{"name":1415,"slug":1416,"type":13},"Debugging","debugging",{"name":9,"slug":8,"type":13},{"name":1419,"slug":1420,"type":13},"WebSockets","websockets","2026-08-28T15:08:40.430401",{"slug":4,"name":4,"fn":5,"description":6,"org":1423,"tags":1424,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1425,1426,1427,1428],{"name":15,"slug":16,"type":13},{"name":18,"slug":19,"type":13},{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"slug":1430,"name":1430,"fn":1431,"description":1432,"org":1433,"tags":1434,"stars":23,"repoUrl":24,"updatedAt":1442},"meteor-methods","author and debug Meteor methods","Use when authoring or debugging Meteor methods (Meteor.methods, Meteor.call, Meteor.callAsync). Triggers on argument validation with check(), optimistic UI stubs, latency compensation, Meteor.Error handling, and DDPRateLimiter. Use this skill when the user asks about server-side mutation, asks about rate limiting RPC, or asks about wrapping a method with auth checks.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1435,1438,1441],{"name":1436,"slug":1437,"type":13},"API Development","api-development",{"name":1439,"slug":1440,"type":13},"Backend","backend",{"name":9,"slug":8,"type":13},"2026-08-28T15:09:38.691128",{"slug":1444,"name":1444,"fn":1445,"description":1446,"org":1447,"tags":1448,"stars":23,"repoUrl":24,"updatedAt":1456},"meteor-modern-build-stack","configure Meteor 3 modern build stacks","Use when configuring or tuning the Meteor 3 modern build stack: SWC transpiler, SWC-based minifier, modern @parcel\u002Fwatcher, web-arch skipping in development, .meteorignore, and the Rspack bundler integration via the rspack Atmosphere package. Triggers on package.json \"meteor\": { \"modern\": true }, .swcrc, swc.config.js, [Transpiler] Used Babel Fallback logs, rspack.config.js, rspack.config.ts, defineConfig from @meteorjs\u002Frspack, Meteor.compileWith* helpers, Meteor.extendConfig, Meteor.extendSwcConfig vs Meteor.replaceSwcConfig, Meteor.splitVendorChunk, Meteor.persistDevFiles, Meteor.disablePlugins, Meteor.enablePortableBuild, HtmlRspackPlugin customization, RSPACK_DEVSERVER_PORT, TOOL_NODE_FLAGS for OOM, modern\u002Flegacy archs. Use this skill when the user asks about enabling the modern build stack, asks about SWC vs Babel in Meteor, asks about Rspack integration setup, or asks about customizing rspack.config.js. For converting an existing app's code to be Rspack-compatible, use migrate-to-rspack instead.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1449,1452,1453],{"name":1450,"slug":1451,"type":13},"Build","build",{"name":9,"slug":8,"type":13},{"name":1454,"slug":1455,"type":13},"Performance","performance","2026-08-28T15:09:42.877439",{"slug":1458,"name":1458,"fn":1459,"description":1460,"org":1461,"tags":1462,"stars":23,"repoUrl":24,"updatedAt":1471},"meteor-mongo-minimongo","author and debug Meteor MongoDB queries","Use when authoring or debugging Mongo queries in Meteor 3. Triggers on Mongo.Collection, find\u002FfindOne, server async vs client Minimongo sync, oplog vs change streams, indexes, selectors, modifiers, projections. Use this skill when the user asks about Mongo on the server or asks about Minimongo on the client.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1463,1466,1467,1468],{"name":1464,"slug":1465,"type":13},"Database","database",{"name":1415,"slug":1416,"type":13},{"name":9,"slug":8,"type":13},{"name":1469,"slug":1470,"type":13},"MongoDB","mongodb","2026-08-28T15:08:44.473981",{"slug":1473,"name":1473,"fn":1474,"description":1475,"org":1476,"tags":1477,"stars":23,"repoUrl":24,"updatedAt":1483},"meteor-pubsub","author and debug Meteor publications","Use when authoring or debugging Meteor publications and subscriptions (Meteor.publish, Meteor.subscribe). Triggers on publication strategies (SERVER_MERGE, NO_MERGE, NO_MERGE_NO_HISTORY), the low-level publish API (added\u002Fchanged\u002Fremoved), cursor authorization, reactive joins, leaked documents. Use this skill when the user asks about pub\u002Fsub or asks about reactive data fetching.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1478,1479,1480],{"name":1439,"slug":1440,"type":13},{"name":9,"slug":8,"type":13},{"name":1481,"slug":1482,"type":13},"Real-time","real-time","2026-08-28T15:09:37.97396",{"slug":1485,"name":1485,"fn":1486,"description":1487,"org":1488,"tags":1489,"stars":23,"repoUrl":24,"updatedAt":1496},"meteor-react","build and debug Meteor React interfaces","Use when building or debugging React interfaces in Meteor 3: meteor create --react, createRoot, JSX or TSX entry points, Rspack React detection, Fast Refresh, react-meteor-data, useTracker, useSubscribe, useFind, withTracker, Suspense, and Tracker.withComputation. Triggers on isLoading being treated as a boolean, useFind receiving fetch(), stale closure inputs, duplicate tracker side effects, unstable Suspense keys, lost reactivity after await, state reset after refresh, or React tests leaking computations. Use this skill when the user asks about a React skeleton, React-specific rspack.config rules, reactive data hooks, or classic versus Suspense integration. Route general bundler configuration to meteor-modern-build-stack and Meteor 2 upgrades to migrate-to-meteor-3.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1490,1491,1492,1495],{"name":1390,"slug":1391,"type":13},{"name":9,"slug":8,"type":13},{"name":1493,"slug":1494,"type":13},"React","react",{"name":1394,"slug":1395,"type":13},"2026-08-28T15:09:37.193947",{"slug":1498,"name":1498,"fn":1499,"description":1500,"org":1501,"tags":1502,"stars":23,"repoUrl":24,"updatedAt":1511},"meteor-security","audit and harden Meteor 3 applications","Use when auditing or hardening a Meteor 3 application. Triggers on missing check() on method arguments, missing this.userId guards on publications, browser-policy CSP, DDPRateLimiter rules, oauth-encryption via Accounts.config oauthSecretKey, audit-argument-checks, allow\u002Fdeny legacy patterns, BrowserPolicy.content.disallowInlineScripts, BrowserPolicy.framing.disallow. Use this skill when the user asks about hardening, asks about a security review, or asks about CSP for a third-party script (Stripe, Google Maps, fonts).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1503,1504,1507,1508],{"name":1373,"slug":1374,"type":13},{"name":1505,"slug":1506,"type":13},"Code Analysis","code-analysis",{"name":9,"slug":8,"type":13},{"name":1509,"slug":1510,"type":13},"Security","security","2026-08-28T15:09:32.604319",{"slug":1513,"name":1513,"fn":1514,"description":1515,"org":1516,"tags":1517,"stars":23,"repoUrl":24,"updatedAt":1525},"meteor-testing","write and repair Meteor test harnesses","Use when setting up, designing, writing, or repairing tests and test harnesses in a Meteor 3 app. Triggers on meteortesting:mocha, --driver-package, TEST_WATCH, TEST_BROWSER_DRIVER, MOCHA_GREP, meteor.testModule, focused tests, .only, Meteor.server.method_handlers, Meteor.server.publish_handlers, DDP.connect, --full-app integration mode, sinon, async test signatures, Playwright\u002FCypress E2E. Use this skill when the user asks about test runners, asks about testing publications, or asks about Jest vs Mocha in Meteor. For a failing, hanging, or flaky test whose failing layer or root cause is unknown, use meteor-debugging before changing the test or app.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1518,1519,1522],{"name":9,"slug":8,"type":13},{"name":1520,"slug":1521,"type":13},"QA","qa",{"name":1523,"slug":1524,"type":13},"Testing","testing","2026-08-28T15:09:38.330724",14,{"items":1528,"total":1526},[1529,1536,1542,1547,1553,1560,1566],{"slug":1367,"name":1367,"fn":1368,"description":1369,"org":1530,"tags":1531,"stars":23,"repoUrl":24,"updatedAt":1382},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1532,1533,1534,1535],{"name":1373,"slug":1374,"type":13},{"name":1376,"slug":1377,"type":13},{"name":9,"slug":8,"type":13},{"name":1380,"slug":1381,"type":13},{"slug":1384,"name":1384,"fn":1385,"description":1386,"org":1537,"tags":1538,"stars":23,"repoUrl":24,"updatedAt":1396},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1539,1540,1541],{"name":1390,"slug":1391,"type":13},{"name":9,"slug":8,"type":13},{"name":1394,"slug":1395,"type":13},{"slug":1398,"name":1398,"fn":1399,"description":1400,"org":1543,"tags":1544,"stars":23,"repoUrl":24,"updatedAt":1407},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1545,1546],{"name":1404,"slug":1405,"type":13},{"name":9,"slug":8,"type":13},{"slug":1409,"name":1409,"fn":1410,"description":1411,"org":1548,"tags":1549,"stars":23,"repoUrl":24,"updatedAt":1421},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1550,1551,1552],{"name":1415,"slug":1416,"type":13},{"name":9,"slug":8,"type":13},{"name":1419,"slug":1420,"type":13},{"slug":4,"name":4,"fn":5,"description":6,"org":1554,"tags":1555,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1556,1557,1558,1559],{"name":15,"slug":16,"type":13},{"name":18,"slug":19,"type":13},{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"slug":1430,"name":1430,"fn":1431,"description":1432,"org":1561,"tags":1562,"stars":23,"repoUrl":24,"updatedAt":1442},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1563,1564,1565],{"name":1436,"slug":1437,"type":13},{"name":1439,"slug":1440,"type":13},{"name":9,"slug":8,"type":13},{"slug":1444,"name":1444,"fn":1445,"description":1446,"org":1567,"tags":1568,"stars":23,"repoUrl":24,"updatedAt":1456},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1569,1570,1571],{"name":1450,"slug":1451,"type":13},{"name":9,"slug":8,"type":13},{"name":1454,"slug":1455,"type":13}]