@braingrid/cli 0.2.43 → 0.2.44

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,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.44] - 2026-02-17
11
+
12
+ ### Fixed
13
+
14
+ - **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
15
+ - **POSIX portability** — replaced non-standard `\s` with `[[:space:]]` in grep patterns
16
+ - **CRLF safety** — strip `\r` from YAML frontmatter parsing for Dropbox sync compatibility
17
+ - **Build task naming** — aligned task subject templates with `TASK N` naming convention
18
+
19
+ ### Added
20
+
21
+ - **E2E test script for setup** — added test-setup skill and E2E test script for `braingrid setup claude-code`
22
+ - **Stale sentinel cleanup** — delete build sentinel when no state file exists
23
+
10
24
  ## [0.2.43] - 2026-02-17
11
25
 
12
26
  ### Fixed
package/dist/cli.js CHANGED
@@ -222,7 +222,7 @@ async function axiosWithRetry(config2, options) {
222
222
 
223
223
  // src/build-config.ts
224
224
  var BUILD_ENV = true ? "production" : process.env.NODE_ENV === "test" ? "development" : "production";
225
- var CLI_VERSION = true ? "0.2.43" : "0.0.0-test";
225
+ var CLI_VERSION = true ? "0.2.44" : "0.0.0-test";
226
226
  var PRODUCTION_CONFIG = {
227
227
  apiUrl: "https://app.braingrid.ai",
228
228
  workosAuthUrl: "https://auth.braingrid.ai",