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

decide

/cs:decide <memo> — Log a decision to two-layer memory via decision-logger. Approved memo becomes durable; raw transcripts kept for reference.

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して decide.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → decide フォルダができる
  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
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

/cs:decide — Log the Decision

Command: /cs:decide <memo-path>

Logs the founder's decision via the decision-logger skill. This is the gate where in-session deliberation becomes durable company memory.

Pipeline Position

/cs:office-hours  →  /cs:brief  →  /cs:boardroom  →  /cs:decide  →  /cs:execute  →  /cs:post-mortem
                                                       ↑ you are here

Two-Layer Memory Model

The decision-logger skill maintains two layers:

  1. Raw transcripts — every boardroom session, every advisor's Phase 2 position, every dissent. Stored under ~/.claude/decisions/raw/. Reference only, never feeds back automatically.
  2. Approved decisions — only the founder-signed memos. Stored under ~/.claude/decisions/approved/. Feeds into future /cs:office-hours and /cs:founder-mode calls.

This split prevents the system from "remembering" unresolved debates as if they were decisions.

Input

A board memo file (output of /cs:boardroom).

Workflow

  1. Read the memo path
  2. Verify it has founder approval (status: APPROVED)
  3. Extract structured decision record:
    • Decision title
    • Date decided
    • Option chosen
    • Success + kill criteria
    • Dissent (preserved)
    • Review checkpoint date
  4. Append to ~/.claude/decisions/approved/<YYYY-MM-DD>-<slug>.md
  5. Update the raw transcript pointer
  6. If llm-wiki bridge configured, write to vault (~/company-vault/10-decisions/)
  7. Schedule auto-revisit (90 days)

Output Record Format

# Decision: <title>
**Decided:** YYYY-MM-DD
**By:** <founder name>
**Memo:** <link to boardroom memo>
**Brief:** <link to original brief>
**Review checkpoint:** YYYY-MM-DD (90d default)

## Decision
**Chose:** <option>
**Rejected:** <other options + one-line why>

## Success Criteria (binding)
- <metric, threshold, timeframe>

## Kill Criteria (binding)
- <metric, threshold, action>

## Preserved Dissent
- **<dissenter>:** <unresolved concern>
- (preserved verbatim; dissent never erased)

## Next Action
- `/cs:execute` → 90-day plan due <date>

## Status History
- YYYY-MM-DD: APPROVED

Why Preserved Dissent

The biggest risk in approved decisions is forgetting why someone disagreed. When the kill criteria trigger, the dissent often turns out to have been correct. Preserving it verbatim — not summarized — keeps the company honest at post-mortem time.

Routing

  • /cs:execute <decision> — build the 90-day plan
  • /cs:freeze <decision> <days> — lock if irreversible
  • (Auto-scheduled) /cs:post-mortem <decision> — at 90-day checkpoint

Stale-Decision Audit

cs-chief-of-staff runs a weekly stale audit:

  • Decisions > 90 days without revisit → flag for /cs:post-mortem
  • Decisions with kill criteria triggered → flag immediately
  • Decisions whose company-context.md basis has changed → flag for re-examination

Related


Version: 1.0.0