jpskill.com
🛠️ 開発・MCP コミュニティ

decisions

Load past architectural decisions. Use when making new decisions to ensure consistency.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o decisions.zip https://jpskill.com/download/17955.zip && unzip -o decisions.zip && rm decisions.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17955.zip -OutFile "$d\decisions.zip"; Expand-Archive "$d\decisions.zip" -DestinationPath $d -Force; ri "$d\decisions.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して decisions.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → decisions フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Decisions Skill

過去の決定を理解し、尊重します。

この Skill をロードするタイミング

  • アーキテクチャ上の決定を行うとき
  • アプローチを選択するとき
  • 既存のパターンに疑問を持つとき

Decision Records

@memory/knowledge/decisions/

各決定ファイルには以下が含まれます。

  • Context: なぜ決定したのか
  • Options: 何を検討したか
  • Decision: 何を選択したか
  • Rationale: なぜ選択したか
  • Consequences: 何が続くか

使い方

決定を行う前に

  1. 類似の決定が存在するか確認します。

    Glob("memory/knowledge/decisions/*.json")
  2. 存在する場合:

    • 決定を読みます
    • 根拠を理解します
    • 従うか、逸脱する理由を文書化します
  3. 存在しない場合:

    • 決定を行い、文書化します

決定の記録

{"knowledge_updates":[{"category":"decision","content":"Decision: Use X over Y | Context: Needed to solve Z | Rationale: X better because...","confidence":"certain"}]}

Decision Format

{"id":"DEC-001","title":"Short title","date":"YYYY-MM-DD","status":"accepted|deprecated|superseded","context":"Why this decision was needed","options":[{"option":"Option A","pros":["list"],"cons":["list"]},{"option":"Option B","pros":["list"],"cons":["list"]}],"decision":"Which was chosen","rationale":"Why this option","consequences":["What follows"]}
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Decisions Skill

Understanding and respecting past decisions.

When to Load This Skill

  • Making architectural decisions
  • Choosing between approaches
  • Questioning existing patterns

Decision Records

@memory/knowledge/decisions/

Each decision file contains:

  • Context: Why decided
  • Options: What was considered
  • Decision: What was chosen
  • Rationale: Why chosen
  • Consequences: What follows

How to Use

Before Making a Decision

  1. Check if similar decision exists:

    Glob("memory/knowledge/decisions/*.json")
  2. If exists:

    • Read the decision
    • Understand the rationale
    • Either follow or document why diverging
  3. If not exists:

    • Make and document the decision

Recording a Decision

{"knowledge_updates":[{"category":"decision","content":"Decision: Use X over Y | Context: Needed to solve Z | Rationale: X better because...","confidence":"certain"}]}

Decision Format

{"id":"DEC-001","title":"Short title","date":"YYYY-MM-DD","status":"accepted|deprecated|superseded","context":"Why this decision was needed","options":[{"option":"Option A","pros":["list"],"cons":["list"]},{"option":"Option B","pros":["list"],"cons":["list"]}],"decision":"Which was chosen","rationale":"Why this option","consequences":["What follows"]}