Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"name": "decisions",
"source": "./src",
"description": "Decision memory for Claude Code — captures why choices were made so future sessions inherit context instead of repeating debates.",
"version": "1.2.1",
"version": "1.3.0",
"license": "MIT",
"keywords": [
"memory", "decisions", "reasoning", "context",
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## 1.3.0 — 2026-04-13

### Features
- **Superpowers integration** — auto-detects the [Superpowers](https://github.com/obra/superpowers) plugin and seeds 8 methodology decisions (TDD, design-first, systematic debugging, subagent-driven development, git worktrees, verification-before-completion, detailed plans, spec-before-quality)
- **Decision extraction from specs/plans** — scans Superpowers spec and plan files (`docs/superpowers/specs/`, `docs/superpowers/plans/`) for trade-offs and approach choices, nudges the agent to capture them as decisions on first implementation edit
- General `SeedRegistry` pattern for plugin-aware decision seeding, extensible to other plugins

## 1.1.1 — 2026-04-06

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion src/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "decisions",
"version": "1.2.1",
"version": "1.3.0",
"description": "Gives your codebase a memory for why. Captures decisions automatically, surfaces them when you edit affected files.",
"author": {
"name": "Zima Labs",
Expand Down
2 changes: 1 addition & 1 deletion src/decision/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
Or just run: scripts/bump-version.sh <version>
"""

__version__ = "1.2.1"
__version__ = "1.3.0"