monorepo
Monorepo script commands and conventions for this codebase. Use when running builds, tests, formatting, linting, or type checking.
$ Installieren
git clone https://github.com/EpicenterHQ/epicenter /tmp/epicenter && cp -r /tmp/epicenter/skills/monorepo ~/.claude/skills/epicenter// tip: Run this command in your terminal to install the skill
SKILL.md
name: monorepo description: Monorepo script commands and conventions for this codebase. Use when running builds, tests, formatting, linting, or type checking.
Script Commands
The monorepo uses consistent script naming conventions:
| Command | Purpose | When to use |
|---|---|---|
bun format | Fix formatting (biome + prettier) | Development |
bun format:check | Check formatting | CI |
bun lint | Fix lint issues (eslint + biome) | Development |
bun lint:check | Check lint issues | CI |
bun typecheck | Type checking (tsc, svelte-check, astro check) | Both |
Convention
- No suffix = fix (modifies files)
:checksuffix = check only (for CI, no modifications)typecheckalone = type checking (separate concern, cannot auto-fix)
After Completing Code Changes
Run type checking to verify:
bun typecheck
This runs turbo run typecheck which executes the typecheck script in each package (e.g., tsc --noEmit, svelte-check).
Repository

EpicenterHQ
Author
EpicenterHQ/epicenter/skills/monorepo
3.8k
Stars
251
Forks
Updated4d ago
Added5d ago