Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 2.33 KB

File metadata and controls

43 lines (30 loc) · 2.33 KB

CLAUDE.md

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

All development instructions are maintained in shared files under .github/ so that every AI coding agent (Claude, Copilot, etc.) follows the same standards. Read and follow these files — they are the single source of truth.

Shared Instructions

Primary reference (read first)

  • .github/copilot-instructions.md — Complete development guide: commit standards, code quality, import patterns, UI patterns, build process, testing, validation, project structure, and environment setup

Domain-specific instructions

Agent specializations

Quick Reference

# Development
npm run dev            # Frontend dev server (port 8092)
npm run dev:server     # Backend dev server (port 8091)
npm run fake-stick     # Mock Z-Wave controller (port 5555)

# Quality checks (always run before committing)
npm run lint-fix       # Auto-fix lint issues
npm run lint           # Validate remaining issues
npm run test           # Run all tests

# Build
npm run build          # Full build (frontend + backend)