/decide
/cs:decide <memo> — Log a decision to two-layer memory via decision-logger. Approved memo becomes durable; raw transcripts kept for reference. Use when the founder has approved a boardroom memo and the decision must become durable company memory — e.g. right after /cs:boardroom
One skill from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --skill decide --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/decide
Context preview
The summary Claude sees to decide when to auto-load this skill.
/cs:decide <memo> — Log a decision to two-layer memory via decision-logger. Approved memo becomes durable; raw transcripts kept for reference. Use when the founder has approved a boardroom memo and the decision must become durable company memory — e.g. right after /cs:boardroom
Stats
Stars23,056
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
SKILL.md
decide.SKILL.md
--- name: "decide" description: "/cs:decide <memo> — Log a decision to two-layer memory via decision-logger. Approved memo becomes durable; raw transcripts kept for reference. Use when the founder has approved a boardroom memo and the decision must become durable company memory — e.g. right after /cs:boardroom concludes." --- # /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`).
