Skip to content

Commit 254fd56

Browse files
committed
chore(release): version 0.13.0
1 parent e259250 commit 254fd56

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.13.0] - 2026-03-18
9+
10+
### Added
11+
- **Hypothesis-Driven Debugging:** Refactored the `/debug` command and `debugger` agent to implement a scientific, hypothesis-driven workflow. Includes status analysis, hypothesis formulation with user approval, and isolated testing in temporary `debug/hyp-*` branches.
12+
- **Content:** Added a new blog post draft "Revenge of the Test-Driven Nerds" to the `drafts/` directory.
13+
14+
### Changed
15+
- **Command Rename:** Renamed the `.gemini/commands/docs.toml` to `.gemini/commands/document.toml` for better semantic clarity.
16+
- **Settings:** Removed the experimental `plan` setting from `.gemini/settings.json`.
17+
- **Documentation:** Enhanced installation and setup documentation with detailed project scaffolding and integration steps.
18+
819
## [0.12.0] - 2026-03-16
920

1021
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The `.gemini/commands/` directory defines specialized workflows that automate ev
7575
* **`/draft`**: Multi-phase workflow to turn research and plans into detailed, high-quality technical documents or articles section-by-section.
7676
* **`/revise`**: Uses the `editor` subagent to perform structural and linguistic audits based on the project's style guide.
7777
* **`/maintenance`**: Performs a deep scan of the codebase to identify technical debt, refactoring opportunities, and areas to improve test coverage.
78-
* **`/docs`**: Analyzes the codebase and journals to generate or update comprehensive project documentation in the `docs/` folder.
78+
* **`/document`**: Analyzes the codebase and journals to generate or update comprehensive project documentation in the `docs/` folder.
7979
* **`/cron`**: Manages repetitive background tasks (e.g., health checks, automated reports) using **systemd user timers**.
8080

8181
### 🚀 Phase 4: Shipping & Quality
@@ -91,7 +91,7 @@ This framework shines when you combine these commands into cohesive workflows:
9191
2. **Plan:** Use `/plan` to turn requirements into a technical roadmap in `plans/`.
9292
3. **Track:** Link the plan to `TASKS.md` using `/plan`'s built-in sync.
9393
4. **Implement:** Use `/task work` to mark progress and begin coding.
94-
5. **Refine:** Run `/docs` to ensure your changes are well-documented.
94+
5. **Refine:** Run `/document` to ensure your changes are well-documented.
9595
6. **Ship:** Use `/commit` for clean history and `/release` for a new version tag.
9696

9797
### 2️⃣ Bug Resolution Workflow

docs/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33

44
# --- Configuration ---
55
REPO_URL="https://github.com/apiad/starter.git"
6-
VERSION="0.12.0"
6+
VERSION="0.13.0"
77

88
# --- Functions ---
99
banner() {

0 commit comments

Comments
 (0)