Meteor Agent Skills
Meteor Agent Skills give compatible AI coding assistants focused guidance for building, debugging, migrating, testing, securing, and deploying Meteor 3 applications.
Skills are installed for your coding assistant, not as Atmosphere or npm dependencies in your application. A compatible assistant can match your request to a relevant skill, load its instructions when needed, and follow its Meteor-specific decision flow without adding the entire catalog to every conversation.
Quick start
Codex
Install the complete catalog as the Meteor plugin:
codex plugin marketplace add meteor/agent-skills
codex plugin add meteor@meteorClaude Code
Install the same catalog as a Claude Code plugin:
claude plugin marketplace add meteor/agent-skills
claude plugin install meteor@meteorOther compatible assistants
The open skills CLI can install the catalog into Claude Code, Cursor, Codex, Copilot, Gemini CLI, OpenCode, and other compatible assistants.
List the available skills:
npx skills add meteor/agent-skills --listSelect skills interactively:
npx skills add meteor/agent-skillsInstall one skill directly:
npx skills add meteor/agent-skills --skill migrate-to-meteor-3Use --all to install every skill non-interactively. See the full catalog and install options for additional plugin and manual installation options.
How skills work
Each skill exposes a short description that tells an assistant when to use it. When a request matches, the assistant loads the full instructions and only the references or helper scripts needed for that task. Neighboring skills also define handoffs, such as moving from broad debugging to the build, data, testing, or deployment guidance after the failing layer is known.
After installation, start a fresh conversation so your assistant discovers the new skills. Ask for the Meteor task naturally. You do not need to name a skill in the prompt.
For example:
- Build a Meteor 3 application from scratch.
- Migrate this Meteor 2 application to Meteor 3.
- Review this publication and subscription flow.
- Diagnose why this Meteor test hangs.
- Audit this application for security issues.
- Validate this production deployment configuration.
Skill coverage
The catalog focuses on Meteor workflows where framework context, version boundaries, and practical decisions are especially important.
| Scope | Skills | What they cover |
|---|---|---|
| Meteor 3 migration | migrate-to-meteor-3, migrate-to-rspack | Fibers removal, async API migration, Promise call chains, package triage, and moving Meteor 3.4+ applications to Rspack. |
| Modern build stack | meteor-modern-build-stack | SWC, file watching, Meteor Bundler optimizations, Rspack setup, version pairing, and build diagnostics. |
| Data and application APIs | meteor-methods, meteor-pubsub, meteor-mongo-minimongo | Methods, validation, latency compensation, publications, subscriptions, Mongo queries, indexes, Minimongo, oplog, and Change Streams. |
| User interfaces | meteor-react, meteor-blaze | Reactive data, Suspense, Fast Refresh, Spacebars, Tracker, async rendering, lifecycle behavior, and bundler-specific refresh behavior. |
| Application foundations | meteor-accounts, meteor-security, meteor-testing | Authentication, OAuth, password flows, authorization, rate limiting, CSP, unit and integration tests, and browser end-to-end testing. |
| Community packages | meteor-community-packages | Selecting and integrating packages from Meteor's documented community catalog while checking versions, ownership, behavior, support boundaries, and upstream repositories. |
| Debugging and operations | meteor-debugging, meteor-deployment | Evidence-first diagnosis across builds, runtime, data, tests, browsers, mobile, and production, plus Galaxy, Docker, Kubernetes, settings, and Node version matching. |
The current catalog targets Meteor 3. Most skills support Meteor 3.0 and later. The modern build stack skill starts with Meteor 3.3, and the Rspack migration skill starts with Meteor 3.4. The catalog has dedicated UI skills for React and Blaze, but does not yet include dedicated Vue, Svelte, or Solid skills.
Curated bundles
You can install the complete catalog, one skill, or a curated group of related skills. The repository currently publishes these bundles:
| Bundle | Use it for |
|---|---|
essentials | Core debugging, build, Methods, pub/sub, Mongo, and security work. |
migration | Migrating to Meteor 3 or moving an existing Meteor 3 application to Rspack. |
fullstack | Data, accounts, security, testing, and general full-stack application work. |
ops | Debugging and production deployment. |
blaze | Blaze-specific interface work. |
react | React-specific interface work. |
See the bundle catalog for the exact skill membership and generated install commands.
Working with Agent Skills
Agent Skills complement the Meteor documentation and your own review. They do not replace API documentation, application tests, or decisions based on your deployed Meteor and package versions.
Feedback
Report problems in the Meteor Agent Skills issue tracker. Include:
- The prompt or task, with sensitive application details removed.
- The skill selected, or the skill you expected.
- The assistant client and model.
- Your Meteor release and relevant Atmosphere or npm package versions.
- The result, expected behavior, and a small reproduction or relevant logs when available.
Feedback about missed skill selection, incorrect commands or APIs, inaccurate version boundaries, missing decisions, and installation failures helps guide future updates.

