Skip to content

Commit 247a2d0

Browse files
committed
release: v0.1.3 - Add /metaspec.sds.checklist command
New Features: - Added /metaspec.sds.checklist for protocol quality validation - SDS commands increased from 4 to 5 (total: 16 commands) - Systematic quality checklists for protocol specifications Bug Fixes: - Fixed template files inclusion (.gitignore correction) Documentation: - Updated all documentation for new command structure - Complete alignment with GitHub spec-kit practices This release completes the SDS/SDD symmetry with comprehensive quality assurance tools for both protocol specification and toolkit development.
1 parent 23c2177 commit 247a2d0

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.3] - 2025-11-05
11+
12+
### ✨ New Features
13+
- **SDS Commands**: Added `/metaspec.sds.checklist` command for protocol quality validation
14+
- Generates systematic quality checklists for protocol specifications
15+
- Validates entity definitions, operations, validation rules, error handling
16+
- Complements `/metaspec.sds.analyze` with human review framework
17+
- Aligns with GitHub spec-kit best practices
18+
19+
### 📚 Documentation
20+
- **Command Count**: Updated from 15 to 16 commands (5 SDS + 8 SDD + 3 Evolution)
21+
- **Complete Update**: All documentation reflects new command structure
22+
- README.md, AGENTS.md, quickstart.md, architecture.md
23+
- Template documentation and examples
24+
25+
### 🐛 Bug Fixes
26+
- **Template Files**: Fixed `.gitignore` to include `src/metaspec/templates/base/specs/`
27+
- Changed `specs/` to `/specs/` to only ignore root directory
28+
- Template files now properly included in distribution
29+
30+
### 🎯 Improvements
31+
- **SDS/SDD Symmetry**: Better alignment between protocol and toolkit workflows
32+
- **Quality Assurance**: Comprehensive quality validation for both SDS and SDD layers
33+
1034
## [0.1.2] - 2025-11-04
1135

1236
### 📚 Documentation

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

1010
__all__ = ["__version__"]
1111

src/metaspec/cli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def version_command() -> None:
3434
"""
3535
Show version information.
3636
"""
37-
console.print("MetaSpec version 0.1.2")
37+
console.print("MetaSpec version 0.1.3")
3838

3939

4040
@app.callback()

0 commit comments

Comments
 (0)