npx claudepluginhub utakatakyosui/c2lab --plugin yarnThis 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.
yarn は Facebook が開発したパッケージマネージャーです。v1(Classic)と v2+(Berry)でアーキテクチャが大きく異なります。
詳細なコマンドリファレンスは commands.md を参照してください。
| 点 | v1 (Classic) | v2+ (Berry) |
|---|---|---|
| インストール | node_modules/ | Plug'n'Play(PnP)または node_modules |
| 設定ファイル | .yarnrc | .yarnrc.yml |
| プラグイン | なし | プラグイン拡張可能 |
| ゼロインストール | 非対応 | .yarn/cache/ をコミット可能 |
| バージョン確認 | yarn --version | yarn --version(2.x 以上) |
# インストール
yarn # 依存関係をインストール
yarn add <package> # パッケージを追加
yarn add -D <package> # devDependencies に追加
yarn install --frozen-lockfile # lockfile から厳密インストール(CI 推奨)
# スクリプト
yarn run <script>
yarn <script> # run を省略可
# ワークスペース(v1)
yarn workspaces run <script>
yarn workspace <pkg> <command>
# ワークスペース(v2+)
yarn workspaces foreach run <script>