/cs:decide — Log the Decision

/cs:decide <memo> — Log a decision to two-layer memory via decision-logger.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/decide, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/c-level-agents/skills/decide#main ~/.claude/skills/decide

For one project only, change the path to .claude/skills/decide. This skill also uses company-context.md — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of /cs:decide — Log the Decision

Show the full text105 lines
namedescription
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 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).

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

Version: 1.0.0

1---
2name: "decide"
3description: "/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."
4---
5 
6# /cs:decide — Log the Decision
7 
8**Command:** `/cs:decide <memo-path>`
9 
10Logs the founder's decision via the `decision-logger` skill. This is the gate where in-session deliberation becomes durable company memory.
11 
12## Pipeline Position
13 
14```
15/cs:office-hours → /cs:brief → /cs:boardroom → /cs:decide → /cs:execute → /cs:post-mortem
16 ↑ you are here
17```
18 
19## Two-Layer Memory Model
20 
21The `decision-logger` skill maintains two layers:
22 
231. **Raw transcripts** — every boardroom session, every advisor's Phase 2 position, every dissent. Stored under `~/.claude/decisions/raw/`. Reference only, never feeds back automatically.
242. **Approved decisions** — only the founder-signed memos. Stored under `~/.claude/decisions/approved/`. Feeds into future `/cs:office-hours` and `/cs:founder-mode` calls.
25 
26This split prevents the system from "remembering" unresolved debates as if they were decisions.
27 
28## Input
29 
30A board memo file (output of `/cs:boardroom`).
31 
32## Workflow
33 
341. Read the memo path
352. Verify it has founder approval (status: APPROVED)
363. Extract structured decision record:
37 - Decision title
38 - Date decided
39 - Option chosen
40 - Success + kill criteria
41 - Dissent (preserved)
42 - Review checkpoint date
434. Append to `~/.claude/decisions/approved/<YYYY-MM-DD>-<slug>.md`
445. Update the raw transcript pointer
456. If llm-wiki bridge configured, write to vault (`~/company-vault/10-decisions/`)
467. Schedule auto-revisit (90 days)
47 
48## Output Record Format
49 
50```markdown
51# Decision: <title>
52**Decided:** YYYY-MM-DD
53**By:** <founder name>
54**Memo:** <link to boardroom memo>
55**Brief:** <link to original brief>
56**Review checkpoint:** YYYY-MM-DD (90d default)
57 
58## Decision
59**Chose:** <option>
60**Rejected:** <other options + one-line why>
61 
62## Success Criteria (binding)
63- <metric, threshold, timeframe>
64 
65## Kill Criteria (binding)
66- <metric, threshold, action>
67 
68## Preserved Dissent
69- **<dissenter>:** <unresolved concern>
70- (preserved verbatim; dissent never erased)
71 
72## Next Action
73- `/cs:execute` → 90-day plan due <date>
74 
75## Status History
76- YYYY-MM-DD: APPROVED
77```
78 
79## Why Preserved Dissent
80 
81The 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.
82 
83## Routing
84 
85- `/cs:execute <decision>` — build the 90-day plan
86- `/cs:freeze <decision> <days>` — lock if irreversible
87- (Auto-scheduled) `/cs:post-mortem <decision>` — at 90-day checkpoint
88 
89## Stale-Decision Audit
90 
91`cs-chief-of-staff` runs a weekly stale audit:
92- Decisions > 90 days without revisit → flag for `/cs:post-mortem`
93- Decisions with kill criteria triggered → flag immediately
94- Decisions whose company-context.md basis has changed → flag for re-examination
95 
96## Related
97 
98- Skill: [`decision-logger`](../../../c-level-advisor/skills/decision-logger/SKILL.md)
99- Agent: [`cs-chief-of-staff`](../../agents/cs-chief-of-staff.md)
100- Bridge: [`../../references/llm-wiki-bridge.md`](../../references/llm-wiki-bridge.md)
101 
102---
103 
104**Version:** 1.0.0
105 

Discussion

Alternatives

Also in Decision checksSee all 277 in Product →