Dashboard › cli › Distillation
833ebf89-1982-421c-9198-3940ffa21ef2["lore_tm_v1_440JE3MMDmPXUVAJUenAgyO0bn6f_SBAlh5LEkEnhSU","lore_tm_v1_xLuj442YZ30Zx2yyMZzEx1uT_VX078DZ8dD6h9n0f7w","lore_tm_v1_e2JIMQUPMjIbTgTadoA3VZnxYU2FVzMwzy0oTbwqKsQ","lore_tm_v1_2ud1rqBVMi-xjlHFd7WzS_peM8fmYNppXJcDejZOECE","lore_tm_v1_L-FtRph57kbZ2--wUHdp-oNXRnKxxLCAsJHZyJUy_Fg","lore_tm_v1_NSqFyCKZFN651-V7SpvCV8hTaV1Pk_qYYv08LbFd-Xw","lore_tm_v1_dwK3nAm4znjbjKkvjwNSiEUmrTb-HbyfgbA_OQbOvMA","lore_tm_v1_tKP_JJ2IipgdJjqL_-opKpOb5AX34I_-GUe2DfAVdBY"]
Date: Sep 9, 2026
repo-setup before situation skills; repository skills live under .agents/skills/, are generated from the canonical skills/ tree by scripts/sync-skills.mjs, and target-repository AGENTS.md / CONTRIBUTING.md files must be read first.package.json for the latest scripts.devDependencies, never dependencies, because everything is bundled at build time via esbuild; CI enforces this with pnpm run check:deps.pnpm add -D <package> with the -D flag.packages/cli/CONTRIBUTING.md specifies command conventions: list commands use optional positional context; view commands use optional primary identifiers; target forms are <org>/<project>, <org>/, <project>, or omitted for auto-detection; context priority is 1. positional arguments, 2. config defaults, 3. DSN auto-detection from SENTRY_DSN or source code.packages/cli/CONTRIBUTING.md requires new commands to: 1. choose list or view patterns, 2. reuse resolveOrg() / resolveOrgAndProject() from lib/resolve-target.ts, 3. support --json, 4. support -w / --web for view commands, 5. use ContextError for missing context, and 6. add E2E tests under test/e2e/.packages/cli/CONTRIBUTING.md code-style rules are TypeScript strict mode, explicit types for public APIs, JSDoc documentation, and small focused functions.packages/cli/.cursor/rules/ultracite.mdc identifies Ultracite as the project’s zero-config Biome preset and documents commands: npx ultracite fix to format/fix, npx ultracite check to check issues, and npx ultracite doctor to diagnose setup.npx ultracite fix should run before committing.