Skip to content

Commit a5952c6

Browse files
committed
chore: release v0.5.6 - documentation fix
1 parent 6291d91 commit a5952c6

File tree

4 files changed

+34
-12
lines changed

4 files changed

+34
-12
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
---
1111

12+
## [0.5.6] - 2025-11-14
13+
14+
### 🐛 Bug Fixes
15+
16+
**Documentation Command Count Fix**
17+
- Fixed SDS command count: was showing 5, now correctly shows 8 commands
18+
- Fixed total command count: was showing 16, now correctly shows 19 commands (8 SDS + 8 SDD + 3 Evolution)
19+
- Added missing SDS commands in documentation: `plan`, `tasks`, `implement`
20+
21+
**Files Updated**:
22+
- `README.md`: Quick start example now shows all 8 SDS and 8 SDD commands
23+
- `src/metaspec/templates/base/.metaspec/README.md.j2`: Updated command counts and added missing commands
24+
- `src/metaspec/templates/base/AGENTS.md.j2`: Fixed command count in developer section
25+
- `docs/quickstart.md`: Updated command count from 16 to 19
26+
- `docs/architecture.md`: Fixed SDS command count from 5 to 8
27+
28+
**Impact**:
29+
- All newly generated speckits will show correct command counts
30+
- Documentation now matches actual implementation (8 SDS + 8 SDD + 3 Evolution = 19 commands)
31+
32+
---
33+
1234
## [0.5.5] - 2025-11-13
1335

1436
### 🐛 Bug Fixes

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -466,23 +466,23 @@ uv run mypy src/metaspec # Type check
466466

467467
## 🏗️ Status
468468

469-
**v0.5.5** - Version Sync Fix 🔧
470-
- Fixed version number inconsistency in `__init__.py` (ensures all version indicators are synchronized)
469+
**Current Version**: v0.5.6 (Alpha) 🚀
471470

472-
**v0.5.4** - Precision-Guided Navigation 🚀
473-
- Added line-number navigation to `specify`, `implement`, `tasks`, `plan` (SDS/SDD) for 84-98% token savings
474-
- Enhanced `/metaspec.*.analyze` with Quick / Focused / Full modes
475-
- Fixed 6 Jinja2 template issues and refreshed documentation (CHANGELOG, AGENTS)
476-
477-
**v0.5.3** - Alpha Release 🎉
478-
479-
Core features complete: YAML validation, multi-domain generation, CLI tools, AI agent support, built-in MetaSpec commands (19 commands: 8 SDS + 8 SDD + 3 Evolution), recursive tree structure for specifications, unified spec interface.
471+
**Core Features**:
472+
- ✅ Meta-specification framework with YAML validation
473+
- ✅ Multi-domain speckit generation (SD-Development, SD-Design, SD-Testing, etc.)
474+
- ✅ 19 AI-assisted MetaSpec commands (8 SDS + 8 SDD + 3 Evolution)
475+
- ✅ Precision-guided navigation (84-98% token savings)
476+
- ✅ Recursive tree structure for complex specifications
477+
- ✅ CLI tools and community registry
480478

481479
**Quality Metrics**:
482480
- ✅ 90.99% test coverage (151/151 tests passing)
483481
- ✅ Full CLI functionality tested
484482
- ✅ Production-ready code quality
485483

484+
📝 See [CHANGELOG.md](./CHANGELOG.md) for release history
485+
486486
---
487487

488488
## 🤝 Contributing

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "meta-spec"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
description = "Meta-specification framework for generating Spec-Driven X (SD-X) toolkits for AI agents"
55
readme = "README.md"
66
requires-python = ">=3.11"

src/metaspec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from YAML definitions.
66
"""
77

8-
__version__ = "0.5.5"
8+
__version__ = "0.5.6"
99

1010
__all__ = ["__version__"]
1111

0 commit comments

Comments
 (0)