Files
meteor/CLAUDE.md

1.8 KiB

Read AGENTS.md before starting any task.

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
e2e-coverage Updating the E2E test coverage report when apps/skeletons change
ai-context Creating, updating, or maintaining AI documentation files
changelog Writing, reviewing, or editing changelog entries for releases
version-bump Bumping package versions for beta, RC, and official releases
docs-gap Analyzing release changes for missing user-facing documentation

Agent Setup

Claude Code

IMPORTANT: Before using any skill, check if it is installed in .claude/skills/. If a skill is missing, install ALL skills by running:

for skill in .github/skills/*/; do
  name=$(basename "$skill")
  mkdir -p ".claude/skills/$name"
  ln -sf "../../../.github/skills/$name/SKILL.md" ".claude/skills/$name/SKILL.md"
done

This symlinks .github/skills/ into .claude/skills/ where Claude Code discovers them. The .claude/skills/ directory is gitignored — each contributor must run this once per checkout.