@braingrid/cli 0.2.43 → 0.2.45

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 CHANGED
@@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.45] - 2026-02-20
11
+
12
+ ### Fixed
13
+
14
+ - **Slash command plan reading** — read plan from `~/.claude/plans/` instead of conversation transcript
15
+ - **Build task creation** — enforce sequential task creation to avoid hook runner errors
16
+
17
+ ### Changed
18
+
19
+ - **Settings formatting** — reformat settings.json to use tabs for consistency
20
+
21
+ ## [0.2.44] - 2026-02-17
22
+
23
+ ### Fixed
24
+
25
+ - **Hardened verify-acceptance-criteria.sh** — added `cleanup()` function replacing 7 inline `rm -f` calls; moved ERR/SIGINT/SIGTERM trap before first file check to prevent orphan sentinel files; sanitized `grep -c` output with `${VAR//[^0-9]/}` to prevent arithmetic errors
26
+ - **POSIX portability** — replaced non-standard `\s` with `[[:space:]]` in grep patterns
27
+ - **CRLF safety** — strip `\r` from YAML frontmatter parsing for Dropbox sync compatibility
28
+ - **Build task naming** — aligned task subject templates with `TASK N` naming convention
29
+
30
+ ### Added
31
+
32
+ - **E2E test script for setup** — added test-setup skill and E2E test script for `braingrid setup claude-code`
33
+ - **Stale sentinel cleanup** — delete build sentinel when no state file exists
34
+
10
35
  ## [0.2.43] - 2026-02-17
11
36
 
12
37
  ### Fixed