# Project: LevelUp — Claude Code workflow kit

Reference implementation of a senior-grade Claude Code setup. This file is the
template you copy into real repos. Keep it short — bloat makes the model ignore it.

## Commands (EDIT per repo — list only the non-guessable ones)
- Test:      `<your test cmd>`        # e.g. pnpm test
- Build:     `<your build cmd>`       # e.g. pnpm build
- Lint/fmt:  `<your lint cmd>`        # e.g. pnpm lint && pnpm format
- Typecheck: `<your typecheck cmd>`   # e.g. pnpm tsc --noEmit

## House rules
- Be extremely concise; sacrifice grammar for concision.
- Plan before non-trivial work; skip the plan if the diff fits one sentence.
- IMPORTANT: never claim done without a runnable check (test/build/lint) — show the evidence.
- Match existing patterns over cleverness. No dead code, no stray console.log, flag every TODO.
- Prefer the `gh` CLI for GitHub. Branch before committing on a shared branch.

## Gotchas (EDIT per repo)
- <known footguns, env quirks, services that must be running, etc.>

<!-- Maintenance rule: for each line ask "would removing it cause a mistake?" If no, cut it. -->
