npx claudepluginhub utakatakyosui/c2lab --plugin bunThis skill uses the workspace's default tool permissions.
commands.mdGuides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Analyzes BMad project state from catalog CSV, configs, artifacts, and query to recommend next skills or answer questions. Useful for help requests, 'what next', or starting BMad.
bun は Zig で書かれた高速な JavaScript ランタイムです。Node.js 互換でありながら、パッケージマネージャー・バンドラー・テストランナーを一体化しています。
詳細なコマンドリファレンスは commands.md を参照してください。
| 機能 | Node.js エコシステム | Bun |
|---|---|---|
| ランタイム | node | bun |
| パッケージ管理 | npm / pnpm / yarn | bun install |
| バンドル | webpack / vite | bun build |
| テスト | jest / vitest | bun test |
| TypeScript 実行 | ts-node / tsx | bun run (ネイティブ対応) |
# ランタイム
bun run <file.ts> # TypeScript/JavaScript を直接実行
bun run <script> # package.json スクリプトを実行
bunx <package> # パッケージを一時実行(npx 相当)
# パッケージ管理
bun install # 依存関係をインストール
bun add <package> # パッケージを追加
bun add -d <package> # devDependencies に追加
bun remove <package> # パッケージを削除
# ビルド・テスト
bun build ./index.ts --outdir ./dist
bun test # テストを実行