Rename spec 037-undo-redo to 006-undo-redo for sequential numbering

Delete merged feature branches (005–037) that inflated the auto-increment
counter in create-new-feature.sh, and renumber the undo-redo spec to
follow the existing 001–005 sequence.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Lukas
2026-03-27 11:32:29 +01:00
parent f10c67a5ba
commit f6766b729d
8 changed files with 9 additions and 8 deletions

View File

@@ -114,6 +114,7 @@ Speckit manages **what** to build (specs as living documents). RPI manages **how
- `specs/003-combatant-state/` — HP, AC, conditions, concentration, initiative - `specs/003-combatant-state/` — HP, AC, conditions, concentration, initiative
- `specs/004-bestiary/` — search index, stat blocks, source management, panel UX - `specs/004-bestiary/` — search index, stat blocks, source management, panel UX
- `specs/005-player-characters/` — persistent player character templates (CRUD), search & add to encounters, color/icon visual distinction, `PlayerCharacterStore` port - `specs/005-player-characters/` — persistent player character templates (CRUD), search & add to encounters, color/icon visual distinction, `PlayerCharacterStore` port
- `specs/006-undo-redo/` — undo/redo for encounter state mutations
## Constitution (key principles) ## Constitution (key principles)

View File

@@ -1,6 +1,6 @@
# Data Model: Undo/Redo # Data Model: Undo/Redo
**Feature**: 037-undo-redo **Feature**: 006-undo-redo
**Date**: 2026-03-26 **Date**: 2026-03-26
## Entities ## Entities

View File

@@ -1,7 +1,7 @@
# Implementation Plan: Undo/Redo # Implementation Plan: Undo/Redo
**Branch**: `037-undo-redo` | **Date**: 2026-03-26 | **Spec**: [spec.md](spec.md) **Branch**: `006-undo-redo` | **Date**: 2026-03-26 | **Spec**: [spec.md](spec.md)
**Input**: Feature specification from `/specs/037-undo-redo/spec.md` **Input**: Feature specification from `/specs/006-undo-redo/spec.md`
## Summary ## Summary
@@ -40,7 +40,7 @@ Add undo/redo capability for all encounter state changes using the memento patte
### Documentation (this feature) ### Documentation (this feature)
```text ```text
specs/037-undo-redo/ specs/006-undo-redo/
├── plan.md # This file ├── plan.md # This file
├── research.md # Phase 0 output ├── research.md # Phase 0 output
├── data-model.md # Phase 1 output ├── data-model.md # Phase 1 output

View File

@@ -1,6 +1,6 @@
# Quickstart: Undo/Redo # Quickstart: Undo/Redo
**Feature**: 037-undo-redo **Feature**: 006-undo-redo
**Date**: 2026-03-26 **Date**: 2026-03-26
## Overview ## Overview

View File

@@ -1,6 +1,6 @@
# Research: Undo/Redo for Encounter Actions # Research: Undo/Redo for Encounter Actions
**Feature**: 037-undo-redo **Feature**: 006-undo-redo
**Date**: 2026-03-26 **Date**: 2026-03-26
## Decision 1: Undo/Redo Strategy — Memento (Snapshots) vs Command (Events) ## Decision 1: Undo/Redo Strategy — Memento (Snapshots) vs Command (Events)

View File

@@ -1,6 +1,6 @@
# Feature Specification: Undo/Redo # Feature Specification: Undo/Redo
**Feature Branch**: `037-undo-redo` **Feature Branch**: `006-undo-redo`
**Created**: 2026-03-26 **Created**: 2026-03-26
**Status**: Draft **Status**: Draft
**Input**: Gitea issue #16 — Undo/redo for encounter actions **Input**: Gitea issue #16 — Undo/redo for encounter actions

View File

@@ -1,6 +1,6 @@
# Tasks: Undo/Redo # Tasks: Undo/Redo
**Input**: Design documents from `/specs/037-undo-redo/` **Input**: Design documents from `/specs/006-undo-redo/`
**Prerequisites**: plan.md, spec.md, research.md, data-model.md, quickstart.md **Prerequisites**: plan.md, spec.md, research.md, data-model.md, quickstart.md
**Tests**: Domain tests included (pure function testing is standard for this project per CLAUDE.md). **Tests**: Domain tests included (pure function testing is standard for this project per CLAUDE.md).