Files
meteor/AGENTS.md
2026-02-06 14:42:53 +01:00

2.2 KiB

Meteor

Full-stack JavaScript platform for modern web and mobile applications.

Commands

./meteor run                                 # Run from source
./meteor create my-app                       # Create app
./meteor self-test                           # CLI tests
./meteor test-packages ./packages/<name>     # Package tests
npm run test:modern                          # E2E tests (Jest + Playwright)

Structure

packages/          # Core Meteor packages (~100+)
tools/             # CLI & build system (Isobuild)
npm-packages/      # Published @meteorjs/* packages
scripts/           # Build & release automation

Key Entry Points

Task Location
CLI commands tools/cli/commands.js
Build system tools/isobuild/bundler.js
Package lookup packages/<name>/package.js
Modern bundler packages/rspack/, packages/tools-core/

Skills

Load these for detailed context on specific topics:

Skill When to use
codebase Build system, CLI, isobuild, tools/ directory
conventions Writing packages, CLI commands, code patterns
testing Writing tests, debugging failures, test infrastructure
packages Finding packages by feature, understanding dependencies
modern-tools tools-core utilities, rspack, modern integrations
ai-context Creating, updating, or maintaining AI documentation files

Package Domains

Category Packages
Auth accounts-base, accounts-password, accounts-oauth
Database mongo, minimongo, ddp-server, ddp-client
Build babel-compiler, ecmascript, typescript, rspack
Web webapp, autoupdate, reload
Reactivity tracker, reactive-var, reactive-dict

Notes

  • docs/ and guide/ are the public documentation website, not agent context
  • v3-docs/ contains Meteor 3.x documentation
  • See DEVELOPMENT.md for contributor setup