Skip to main content

conventions

Apply repository design and testing conventions when writing, refactoring, or reviewing TypeScript packages, services, state, tests, or runtime hosts. Includes package-level E2Es and fixture design.

Zur Installation springen

Quellinformationen

Repository
cashew-labs/halo
Letzte Quellaktivität
16. September 2026 um 22:44
Erkannte Sprache von SKILL.md
Englisch
Sterne
1
Forks
1

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

Datei-Explorer
8 Dateien

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
conventions
description
Apply repository design and testing conventions when writing, refactoring, or reviewing TypeScript packages, services, state, tests, or runtime hosts. Includes package-level E2Es and fixture design.
# Repository conventions Keep behavior reusable across clients and environments. Give state, dependencies, and lifecycle explicit owners. Prefer composition and direct consumer flows over layers that send work back and forth. ## Find the relevant page Read the pages relevant to the change before editing: | When changing | Read | | ------------------------------------------------------------- | ------------------------------------------ | | Package boundaries, exports, or file organization | [Packages](references/packages.md) | | Services, host interfaces, startup, cleanup, or client access | [Services](references/services.md) | | Mutable state, streams, derived views, or operation ordering | [State](references/state.md) | | TypeScript implementation or error handling | [TypeScript](references/typescript.md) | | Tests, fixtures, or test review | [Testing](references/testing.md) | | Development hosts, environment setup, CI, or deployment | [Environments](references/environments.md) | Read multiple pages when the change crosses boundaries, not the entire handbook for every task. Testing guidance applies to Vitest and Playwright alike. Examples use simplified TypeScript adapted from real code, not complete implementations. Imports and unrelated setup are omitted; “avoid” shows the counterexample, “prefer” shows the intended shape. ## Apply it to the change at hand Apply these principles practically. Improve the changed area without turning a small task into a full migration. Do not add wrappers, packages, or tests merely to satisfy a diagram. Keep project commands and exceptions in `AGENTS.md`, and current architecture and migration progress in the implementation spec. Update that spec as work lands; do not describe planned APIs as available.
Auf GitHub ansehen