Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add meteor/agent-skills --skill migrate-to-meteor-3git clone --depth 1 https://github.com/meteor/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/meteor/agent-skills/migrate-to-meteor-3)<a href="https://agentmods.dev/skills/meteor/agent-skills/migrate-to-meteor-3"><img src="https://agentmods.dev/badge/skills/meteor/agent-skills/migrate-to-meteor-3/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/meteor/agent-skills/migrate-to-meteor-3"><img src="https://agentmods.dev/badge/skills/meteor/agent-skills/migrate-to-meteor-3.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00151 | $0.02082 |
| Opus 5 | $0.00076 | $0.01041 |
| Sonnet 5 | $0.00030 | $0.00416 |
| Haiku 4.5 | $0.00015 | $0.00208 |
Grade A, and why
migrate-to-meteor-3 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 146 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Migrate a Meteor 2.x application to Meteor 3.x
Meteor 3 removed Fibers. Server-side Mongo APIs are async. The module system enforces strict mode. Client reactivity inside async code needs care. Atmosphere packages often need forking or replacement. Approach the migration in phases. Do not flip the framework version flag first.
Recommended strategy
- Update the project to the latest 2.x release.
- Run the app with
WARN_WHEN_USING_OLD_API=true meteor run. The console logs every sync-API call that needs an async sibling, giving you a to-do list before the framework flip. - Migrate server-side sync Mongo calls to
*Asyncsiblings while still on 2.x. Trace each changed function through every server-side caller: await where the caller consumes the value, forward Promises deliberately, and restructure sync-only boundaries. Stop only at an async-capable framework boundary. Seereferences/async-rewrites.mdandreferences/call-vs-callAsync.md. A community jscodeshift codemod automates the easy cases, but it misses non-standard collection imports (for example,meteor/<publisher>:collections). Review the diff by hand, then audit callback Promise ownership and collection argument shapes. - Audit Atmosphere packages. Find replacements or fork outdated ones;
pin
api.versionsFrom(['2.x', '3.0']). Seereferences/package-triage.md. Save.meteor/versionsand npm lockfile checkpoints so package-major changes remain distinguishable from Meteor. - Upgrade to Meteor 3.x.
- Sweep implicit globals; rewrite to
constorexport/import. Seereferences/module-system.md. - Audit Blaze helpers and
Tracker.autorunblocks for lost reactivity afterawait. Seereferences/client-reactivity.md. - Replace iterators that contain
await(forEach,map,filter) withfor...oforPromise.all. Seereferences/js-iterators.md. - Audit publications using internal cursor APIs (
_cursorDescription, manualsub.added) and framework handlers that read invocationthis. Both synchronous and async publish handlers may return cursors; keep cursor transforms synchronous and use ordinary functions when Meteor must bindthis. When a package patchesMeteor.publishwith anEnvironmentVariable, scopepublish.callat the wrapper's top level, not inside the invoked handler. Verify invocation context before and afterawait. Seereferences/publications.mdandreferences/other-breaking-changes.md. - For TypeScript projects, install
zodern:typesand updatetsconfig.json. Seereferences/typescript-migration.md. - For React projects, decide whether to adopt the Suspense-aware
react-meteor-dataimport. Seereferences/react-migration.md, then usemeteor-reactfor current hook, scaffold, and build guidance.
What ships with it
15 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/async-cheatsheet.md 2.5 KB
- references/async-rewrites.md 8.1 KB
- references/call-vs-callAsync.md 2.9 KB
- references/client-reactivity.md 4.8 KB
- references/community-case-studies.md 3.5 KB
- references/eval-cases.md 13 KB
- references/js-iterators.md 2.6 KB
- references/module-system.md 3.6 KB
- references/other-breaking-changes.md 7.1 KB
- references/package-triage.md 6.3 KB
- references/publications.md 4.8 KB
- references/react-migration.md 3.8 KB
- references/removed-functions.md 3.6 KB
- references/typescript-migration.md 1.9 KB
- references/webapp-express.md 4.1 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 146 lines · 151 tokens per session scan A c418b052a09e
migrate-to-meteor-3 is a skill published in the GitHub repository meteor/agent-skills (9 stars, last pushed today), licensed MIT. It adds 151 tokens to every session and 2,082 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
event-store-design
Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.
convex-explain-app
Explain an existing Convex app — data model + relationships, public vs internal functions, auth/ownership model, components, a request→data flow — read from the schema and function surface. Read-only.
platform-custom-field-generate
Use this skill when users need to create, generate, or validate Salesforce Custom Field metadata. Trigger when users mention custom fields, field types, Roll-up Summary fields, Master-Detail relationships, Lookup relationships, formula fields, picklists, dependent (controlling) picklists, referencing a value set from…
field-service-sobject-create-configure
Headless 360 REST API deployment step for creating sObject records. Handles describe-based field discovery, required-field derivation, entity-relationship ordering, and composite graph transactions. Use this skill when a designer skill (or a user directly) needs to create sObject records after design confirmation…
durable-objects
Build, debug, or review Cloudflare Durable Objects code for persistent state and coordination.
nornicdb-grpc
Drive NornicDB over gRPC — the Qdrant-compatible surface (Collections, Points, Snapshots) plus the additive NornicSearch service. Use when ingesting via Qdrant SDKs, migrating from Qdrant, or running hybrid text+vector search from a non-Bolt client. Covers connection, RPC catalog, collection→database mapping…