Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# CLAUDE.md

This file provides guidance to Claude Code when working with this repository.

## Shared Instructions

Project-level AI coding instructions are maintained in a single shared location:

- **[`.github/copilot-instructions.md`](.github/copilot-instructions.md)** — the primary reference for project overview, architecture, development workflow, testing, coding standards, and contribution guidelines.

Please read that file for full context before making changes.

## Quick Reference

```bash
# Build (required before testing)
npm run build

# Lint and auto-fix
npm run lint
npm run fix

# Run all tests
npm test

# Run tests for a specific Node.js version
npm run test:20
npm run test:22
npm run test:24

# Watch mode (rebuild on change)
npm run start
```