← スキル一覧に戻る

creating-packages
by jasonkuhrt
Opinionated Standard Lib for TypeScript
⭐ 5🍴 0📅 2025年12月29日
SKILL.md
name: creating-packages description: Creates new packages in the @kitz monorepo with proper structure, configuration, and workspace integration. Handles package.json, tsconfigs, source files, and runs necessary sync scripts.
Creating Packages
Create new packages in the monorepo with full scaffolding.
Steps
- Run the script at
.claude/skills/creating-packages/scripts/create-package.tswith the package name as argument - Run
pnpm installto link the new package in the workspace - Verify the package was created in
packages/<name>/
Reference
The script creates:
packages/<name>/
├── src/
│ ├── _.ts # Namespace file
│ ├── __.ts # Barrel file
│ └── <name>.ts # Main implementation
├── package.json # @kitz/<name> with workspace deps
├── tsconfig.json # Development config
└── tsconfig.build.json # Build config
Package naming:
- Input:
foo-bar→ Package:@kitz/foo-bar - Input:
core→ Package:@kitz/core
Notes
- The
kitzaggregator package is separate and exports from all other packages - After creating, you may want to add the new package to
kitz/src/exports - Run
syncing-package-scriptsskill if the new package needs updated scripts
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
○Issue管理
オープンIssueが50未満
0/5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
レビュー
💬
レビュー機能は近日公開予定です


