EpicenterHQ

monorepo

@EpicenterHQ/monorepo
EpicenterHQ
3,831
251 forks
Updated 1/6/2026
View on GitHub

Monorepo script commands and conventions for this codebase. Use when running builds, tests, formatting, linting, or type checking.

Installation

$skills install @EpicenterHQ/monorepo
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Pathskills/monorepo/SKILL.md
Branchmain
Scoped Name@EpicenterHQ/monorepo

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


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:

CommandPurposeWhen to use
bun formatFix formatting (biome + prettier)Development
bun format:checkCheck formattingCI
bun lintFix lint issues (eslint + biome)Development
bun lint:checkCheck lint issuesCI
bun typecheckType checking (tsc, svelte-check, astro check)Both

Convention

  • No suffix = fix (modifies files)
  • :check suffix = check only (for CI, no modifications)
  • typecheck alone = 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).