@@ -5,6 +5,54 @@ All notable changes to DevFlow will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.7.0] - 2025-11-16
9+
10+ ### Added
11+ - ** ` /brainstorm ` command** - Explore design decisions and architectural approaches
12+ - Launches brainstorm sub-agent for structured exploration
13+ - Analyzes trade-offs between different approaches
14+ - Saves exploration to ` .docs/brainstorm/ `
15+ - ** ` /design ` command** - Create detailed implementation plans with integration points
16+ - Launches design sub-agent for concrete planning
17+ - Studies existing codebase patterns
18+ - Saves implementation plan to ` .docs/design/ `
19+ - ** ` /breakdown ` command** - Quick task decomposition without interaction
20+ - Renamed from ` /plan-next-steps ` for conciseness
21+ - Extracts action items from conversation
22+ - Saves todos immediately without triage
23+
24+ ### Changed
25+ - ** ` /plan ` command** - Redesigned for deliberate issue triage
26+ - Examine each issue individually (what, why, severity)
27+ - Three-way decision: implement now, defer to GitHub issue, or skip
28+ - Creates and locks actual GitHub issues via ` gh ` CLI
29+ - Applies orchestration principle (minimal tools)
30+ - ** ` /commit ` command** - Execute immediately without user confirmation
31+ - Trust agent judgment after safety checks pass
32+ - Only abort for genuine issues (secrets, credentials)
33+ - Faster workflow without back-and-forth
34+ - ** ` /implement ` command** - Streamlined from 507 to ~ 100 lines
35+ - Removed over-engineered interactive triage
36+ - Focus on efficient task execution
37+ - Only stop for genuine design decisions
38+ - ** Documentation framework** - Standardized across all agents
39+ - Timestamps: YYYY-MM-DD_HHMM (sortable, readable)
40+ - Branch slugs: sanitize ` / ` to ` - ` for file paths
41+ - Consistent ` .docs/ ` directory structure
42+ - ** Research skill** - Updated to use brainstorm agent
43+ - Auto-launches brainstorm for unfamiliar features
44+ - Suggests ` /design ` after exploration completes
45+
46+ ### Removed
47+ - ** ` /research ` command** - Replaced by ` /brainstorm ` + ` /design ` workflow
48+ - ** ` /plan-next-steps ` command** - Renamed to ` /breakdown `
49+ - ** research sub-agent** - Replaced by brainstorm and design agents
50+
51+ ### Breaking Changes
52+ - ` /plan-next-steps ` renamed to ` /breakdown `
53+ - ` /research ` command removed (use ` /brainstorm ` + ` /design ` )
54+ - ` /plan ` behavior completely changed (triage vs batch selection)
55+
856## [ 0.6.1] - 2025-11-04
957
1058### Fixed
0 commit comments