multiAI Summary Pending

decisions

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

231 stars

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/decisions/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/clouder0/decisions/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/decisions/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How decisions Compares

Feature / AgentdecisionsStandard Approach
Platform SupportmultiLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

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

Which AI agents support this skill?

This skill is compatible with multi.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 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

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

## Decision Format

```json
{"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"]}
```