Skip to content

Commit 8b75a57

Browse files
Dean Sharonclaude
andcommitted
chore: bump version to 0.7.0
- Add brainstorm and design workflow commands - Redesign /plan for issue triage with GitHub integration - Rename /plan-next-steps to /breakdown - Remove /research in favor of brainstorm + design - Execute /commit without user confirmation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent a122584 commit 8b75a57

2 files changed

Lines changed: 49 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,54 @@ All notable changes to DevFlow 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.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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devflow-kit",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "Agentic Development Toolkit for Claude Code - Enhance AI-assisted development with intelligent commands and workflows",
55
"main": "dist/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)