1---2name: writing-typescript3description: Idiomatic TypeScript development. Use when writing TypeScript code, Node.js services, React apps, or TypeScript design advice. Emphasizes strict typing, boundary validation, composition, fast feedback, behavior tests, and project-configured tooling. NOT for Go, Python, Rust, plain HTML/CSS/JS, or server-rendered templates (use writing-web).4---56# TypeScript Development78## Scope910- Use for `.ts` and `.tsx`, Node.js services, React apps, typed APIs, and TypeScript design advice.11- Do not use for Go, Python, Rust, plain HTML/CSS/JS, or server-rendered templates.12- Follow the repository's TypeScript version, tsconfig, package manager, framework, test runner, and lint rules.13- Do not add dependencies or switch frameworks unless the project already uses them or the user approves.1415## Reference Reads1617- Read only the references needed for the task.18- Read `references/principles.md` for non-trivial TypeScript changes or reviews.19- Read `references/patterns.md` for data models, validation, async flow, or module boundaries.20- Read `references/react.md` for `.tsx`, hooks, component state, forms, performance, or React tests.21- Read `references/testing.md` before adding or changing TypeScript tests.22- Read `references/linting.md` before changing lint config, lint commands, or slow lint workflows.2324## Defaults2526- Preserve strict typing; do not weaken compiler options to pass checks.27- Use `unknown` for untrusted input. Avoid `any`; isolate it only for unavoidable interop.28- Validate API, JSON, env, storage, and form data at the boundary before typed use.29- Use discriminated unions for variants, async state, and domain states.30- Use guard clauses and focused helpers. Avoid deep nesting, global state, and mixed concerns.31- Use the project's error conventions; prefer unions or `Result` for recoverable failures.32- Pass dependencies explicitly; avoid inheritance, singletons, and hidden module state.33- Avoid unsafe casts, non-null assertions, broad index signatures, boolean-flag state, and new app enums where literal unions fit.3435## Comments and JSDoc3637- Use JSDoc or TSDoc for exported APIs and non-obvious public properties or methods.38- Avoid merely restating property, parameter, or type names.39- Add implementation comments only for non-obvious constraints, invariants, side effects, tradeoffs, or interoperability quirks.40- Keep comments short. Move longer rationale to docs, issue links, or design notes.41- Do not comment obvious code.42- Keep tests readable without comments; add one only for unobvious fixtures, timers, concurrency, browser setup, or regression context.4344## Testing and Verification4546- For behavior changes, include success and failure tests. For React, cover affected user-visible states.47- Use focused test, typecheck, and lint commands for the changed file, package, or workspace while editing.48- Run the project's configured typecheck, tests, lint, and format checks for the changed package or workspace before final output.49- Keep coverage, end-to-end tests, and expensive debug diagnostics off the hot path unless they are the task.50- Report checks run, failures, and unchecked risks. Do not claim success without a clean check or an explicit reason it was skipped.5152## Failure Handling5354- If project root is unclear, identify the nearest `package.json` and `tsconfig.json`; in monorepos, state the selected package.55- If strict compiler options are absent, do not silently weaken new code. State the gap and keep the change locally type-safe.56- If validation needs a schema/form library not already used, ask before adding it; otherwise use a narrow type guard.57- If typecheck or tests fail, quote the exact diagnostic or failing assertion, state the cause, and fix the type/model boundary before widening types.58- Do not run destructive shell commands. For broad or risky changes, state the risk and ask before acting.5960## Final Response6162- Files changed:63- Checks:64- Skipped checks:65- Risks/follow-ups: