npx claudepluginhub utakatakyosui/c2lab --plugin npmThis 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.
npm は Node.js の標準パッケージマネージャーです。npx はパッケージをインストールせずに直接実行するランナーです。
詳細なコマンドリファレンスは commands.md を参照してください。
# インストール
npm install # package.json の依存関係をインストール
npm install <package> # パッケージを追加(dependencies)
npm install -D <package> # パッケージを追加(devDependencies)
npm ci # lockfile から厳密インストール(CI 推奨)
# スクリプト
npm run <script> # scripts フィールドのコマンドを実行
npm test # npm run test の省略形
npm start # npm run start の省略形
# パッケージ管理
npm update # パッケージを更新
npm uninstall <package> # パッケージを削除
npm list # インストール済みパッケージ一覧
npm outdated # 更新可能なパッケージを表示
# npx
npx <package> # パッケージを一時的に実行
npx <package>@<version> # バージョン指定で実行