Skip to content

Commit 9f2d25d

Browse files
committed
chore: release v0.5.7 - workflow documentation improvements
1 parent 10e1f0f commit 9f2d25d

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

CHANGELOG.md

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

1010
---
1111

12+
## [0.5.7] - 2025-11-14
13+
14+
### 📝 Documentation
15+
16+
**SDS Workflow Clarification**
17+
- Distinguished core vs optional commands (aligned with [GitHub spec-kit](https://github.com/github/spec-kit) pattern)
18+
- Added Simple Path (2-4 commands) and Complex Path (5-7 commands) workflows
19+
- Clarified `/metaspec.sds.implement` creates specification documents, NOT code
20+
- Marked complex-path-only commands with ⭐ (plan, tasks, implement)
21+
22+
**Updated files**:
23+
- `README.md`: Command listings with workflow annotations
24+
- `AGENTS.md`: Added two workflow paths with examples
25+
- `src/metaspec/templates/base/.metaspec/README.md.j2`: Template for generated speckits
26+
27+
**Impact**:
28+
- Reduces confusion about "must use all 8 commands"
29+
- Prevents misunderstanding that `implement` generates code
30+
- Clearer guidance for choosing simple vs complex specification workflows
31+
- All newly generated speckits will include improved documentation
32+
33+
---
34+
1235
## [0.5.6] - 2025-11-14
1336

1437
### 🐛 Bug Fixes

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,12 @@ uv run mypy src/metaspec # Type check
486486

487487
## 🏗️ Status
488488

489-
**Current Version**: v0.5.6 (Alpha) 🚀
489+
**Current Version**: v0.5.7 (Alpha) 🚀
490+
491+
**Latest Updates** (v0.5.7):
492+
- 📝 Clarified SDS workflow with Simple vs Complex paths
493+
- 📝 Distinguished core/optional commands (aligned with GitHub spec-kit)
494+
- 📝 Prevented confusion: `sds.implement` creates docs NOT code
490495

491496
**Core Features**:
492497
- ✅ Meta-specification framework with YAML validation

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.6"
3+
version = "0.5.7"
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.6"
8+
__version__ = "0.5.7"
99

1010
__all__ = ["__version__"]
1111

0 commit comments

Comments
 (0)