devflow-kit 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +3 -1
- package/dist/commands/init.js +14 -8
- package/package.json +1 -1
- package/plugins/devflow-accessibility/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-ambient/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-audit-claude/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-code-review/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-core-skills/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-debug/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-frontend-design/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-go/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-implement/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-java/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-python/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-react/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-resolve/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-rust/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-self-review/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-specify/.claude-plugin/plugin.json +1 -1
- package/plugins/devflow-typescript/.claude-plugin/plugin.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to DevFlow will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.3.2] - 2026-03-08
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Init prompt improvements** — Agent Teams marked as experimental with recommendation to disable; ambient mode now defaults to enabled (recommended)
|
|
12
|
+
- **Init flags documented** — Added `--ambient`/`--no-ambient` and `--memory`/`--no-memory` to README
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
8
16
|
## [1.3.1] - 2026-03-08
|
|
9
17
|
|
|
10
18
|
### Fixed
|
|
@@ -822,6 +830,7 @@ devflow init
|
|
|
822
830
|
|
|
823
831
|
---
|
|
824
832
|
|
|
833
|
+
[1.3.2]: https://github.com/dean0x/devflow/compare/v1.3.1...v1.3.2
|
|
825
834
|
[1.3.1]: https://github.com/dean0x/devflow/compare/v1.3.0...v1.3.1
|
|
826
835
|
[1.3.0]: https://github.com/dean0x/devflow/compare/v1.2.0...v1.3.0
|
|
827
836
|
[1.2.0]: https://github.com/dean0x/devflow/compare/v1.1.0...v1.2.0
|
package/README.md
CHANGED
|
@@ -241,7 +241,9 @@ Session context is saved and restored automatically via Working Memory hooks —
|
|
|
241
241
|
|--------|-------------|
|
|
242
242
|
| `--plugin <names>` | Comma-separated plugin names (e.g., `implement,code-review`) |
|
|
243
243
|
| `--scope <user\|local>` | Installation scope (default: user) |
|
|
244
|
-
| `--teams` / `--no-teams` | Enable/disable
|
|
244
|
+
| `--teams` / `--no-teams` | Enable/disable Agent Teams (experimental, default: off) |
|
|
245
|
+
| `--ambient` / `--no-ambient` | Enable/disable ambient mode (default: on) |
|
|
246
|
+
| `--memory` / `--no-memory` | Enable/disable working memory (default: on) |
|
|
245
247
|
| `--verbose` | Show detailed output |
|
|
246
248
|
|
|
247
249
|
### Uninstall Options
|
package/dist/commands/init.js
CHANGED
|
@@ -150,9 +150,12 @@ export const initCommand = new Command('init')
|
|
|
150
150
|
teamsEnabled = false;
|
|
151
151
|
}
|
|
152
152
|
else {
|
|
153
|
-
const teamsChoice = await p.
|
|
154
|
-
message: 'Enable Agent Teams?
|
|
155
|
-
|
|
153
|
+
const teamsChoice = await p.select({
|
|
154
|
+
message: 'Enable Agent Teams?',
|
|
155
|
+
options: [
|
|
156
|
+
{ value: false, label: 'No (Recommended)', hint: 'Experimental — may be unstable' },
|
|
157
|
+
{ value: true, label: 'Yes', hint: 'Advanced — peer debate in review, exploration, debugging' },
|
|
158
|
+
],
|
|
156
159
|
});
|
|
157
160
|
if (p.isCancel(teamsChoice)) {
|
|
158
161
|
p.cancel('Installation cancelled.');
|
|
@@ -166,12 +169,15 @@ export const initCommand = new Command('init')
|
|
|
166
169
|
ambientEnabled = options.ambient;
|
|
167
170
|
}
|
|
168
171
|
else if (!process.stdin.isTTY) {
|
|
169
|
-
ambientEnabled =
|
|
172
|
+
ambientEnabled = true;
|
|
170
173
|
}
|
|
171
174
|
else {
|
|
172
|
-
const ambientChoice = await p.
|
|
173
|
-
message: 'Enable ambient mode?
|
|
174
|
-
|
|
175
|
+
const ambientChoice = await p.select({
|
|
176
|
+
message: 'Enable ambient mode?',
|
|
177
|
+
options: [
|
|
178
|
+
{ value: true, label: 'Yes (Recommended)', hint: 'Auto-loads relevant skills for each prompt' },
|
|
179
|
+
{ value: false, label: 'No', hint: 'Full control — load skills manually' },
|
|
180
|
+
],
|
|
175
181
|
});
|
|
176
182
|
if (p.isCancel(ambientChoice)) {
|
|
177
183
|
p.cancel('Installation cancelled.');
|
|
@@ -179,7 +185,7 @@ export const initCommand = new Command('init')
|
|
|
179
185
|
}
|
|
180
186
|
ambientEnabled = ambientChoice;
|
|
181
187
|
}
|
|
182
|
-
// Working memory selection (defaults ON — foundational
|
|
188
|
+
// Working memory selection (defaults ON — foundational feature)
|
|
183
189
|
let memoryEnabled;
|
|
184
190
|
if (options.memory !== undefined) {
|
|
185
191
|
memoryEnabled = options.memory;
|
package/package.json
CHANGED