From 8a2196c24c6717e32d203e072fff350c144b5a18 Mon Sep 17 00:00:00 2001 From: robertsLando Date: Mon, 16 Feb 2026 14:56:34 +0100 Subject: [PATCH] chore: add CLAUDE.md referencing shared copilot instructions Co-Authored-By: Claude Opus 4.6 --- CLAUDE.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 00000000..c66be4df --- /dev/null +++ b/CLAUDE.md @@ -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 +```