ワンクリックで
pnpm-dependency-ops
pnpmの依存追加運用とERR_PNPM_IGNORED_BUILDS対応の共通手順。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
pnpmの依存追加運用とERR_PNPM_IGNORED_BUILDS対応の共通手順。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | pnpm-dependency-ops |
| description | pnpmの依存追加運用とERR_PNPM_IGNORED_BUILDS対応の共通手順。 |
pnpm add <package-name> または pnpm add -D <package-name> を使う。package.json の dependencies / devDependencies を手で書き換えない。ERR_PNPM_IGNORED_BUILDS が出たら、pnpm-workspace.yaml の allowBuilds で許可または拒否する。
allowBuilds:
esbuild: true # 許可する場合
sharp: false # 拒否する場合
allowBuilds の判断前に必ず確認を行う。node_modules/.pnpm/<package-name>@<version>/node_modules/<package-name>/package.json を開き、postinstall / preinstall / install を確認する。preinstall / install / postinstall で実行されるファイルのパスを特定し、実際のスクリプトファイル本文まで必ず確認する。pnpm remove <package-name>
Creates beautiful ASCII art visualizations for plans, architectures, workflows, and data. This skill should be used when explaining system architecture, creating implementation plans, showing workflows, visualizing comparisons, or documenting file structures. NOT for code syntax highlighting or markdown tables. User explicitly loves ASCII art - use liberally for visual communication.
現在の Git 作業ツリーの変更を、意味のある単位に分割してセマンティックなコミットにする。大きな差分や複数目的が混在した差分のコミット分割、scope なしを原則とする semantic commit 形式のメッセージ作成、コミット計画のレビューを行うときに使う。既存の Git 状態を尊重する。
Design, draft, review, and refine Codex agent skills that follow current Codex conventions and the open Agent Skills format. Use when the user wants to create a new skill, update an existing SKILL.md, improve a skill's trigger description, decide whether to add scripts/references/assets, add agents/openai.yaml, or validate and test a skill package before installing it. Common triggers include "create a Codex skill", "make a skill", and "improve this SKILL.md".
Node.jsプロジェクトで新しく依存関係を入れる際の標準選定ルール。プロジェクト立ち上げ時や機能追加時に、どのライブラリやツールを採用するかを事前に固定し、選定の揺れを防ぎたいときに使う。
Node.jsプロジェクトを新規作成する手順。