원클릭으로
typescript-standards
TypeScript coding standards for this monorepo. Use when writing/refactoring/reviewing TypeScript.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
TypeScript coding standards for this monorepo. Use when writing/refactoring/reviewing TypeScript.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
You are assisting with documentation authoring for the chkit docs site. Use this skill whenever the user wants to create, edit, reorganize, move, or delete documentation pages for chkit. Trigger this skill when the user mentions docs, documentation, doc pages, the docs site, writing guides, updating CLI references, or any work involving files in apps/docs/. Also trigger when the user asks about the docs site structure, how pages are organized, or how to add content to the chkit website.
Use when creating a pull request. Ensures changesets are created for user-facing changes, verification passes, and PR metadata is correct. Invoke this skill BEFORE committing or pushing PR code.
Code architecture patterns for this monorepo. Use when organizing code, refactoring modules, designing service structure, or extracting/moving code to new files. Enforces clean function ordering, service functions over classes, and explicit dependency injection.
ClickHouse schema management with chkit. Use when working with chkit CLI commands, ClickHouse table/view/materialized view definitions, migration generation, drift detection, or clickhouse.config.ts files. Trigger on chkit commands, @chkit/core imports, or schema definition tasks.
Environment variable management for this monorepo. Use when adding new env vars/secrets, debugging missing env errors, CI mismatches, or Turborepo env passthrough issues.
Fetch real-time, official library docs instead of relying on stale memory. Use whenever implementing against external libraries/frameworks/packages.
| name | typescript-standards |
| description | TypeScript coding standards for this monorepo. Use when writing/refactoring/reviewing TypeScript. |
| allowed-tools | ["Read","Edit","Grep","Glob"] |
| metadata | {"internal":true} |
// Bad
export default function myFunction() {}
// Good
export function myFunction() {}
Export only what other packages consume. Avoid wildcard exports for internal modules.
import { type BuildOptions } from './types'
as/double-cast assertions where possibleas const objects are sufficientPromise.all for independent parallel async operationsUse Bun package manager commands in this repo:
bun add -d <package>