@braingrid/cli 0.2.38 → 0.2.39

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,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.39] - 2026-02-17
11
+
12
+ ### Fixed
13
+
14
+ - **Restored lost prompt guidance in command hooks**
15
+ - `pre-task-create-naming.sh` now outputs `additionalContext` on valid path with sequential numbering instructions, concrete examples, and blocked-by suffix guidance
16
+ - `pre-task-update-instructions.sh` completed-path guidance enriched with project config detection examples and blocked-by stripping example
17
+ - Converting prompt-type hooks to command-type hooks had lost behavioral guidance that Claude relied on; this restores it via `additionalContext`
18
+
10
19
  ## [0.2.38] - 2026-02-17
11
20
 
12
21
  ### Added
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.38" : "0.0.0-test";
225
+ var CLI_VERSION = true ? "0.2.39" : "0.0.0-test";
226
226
  var PRODUCTION_CONFIG = {
227
227
  apiUrl: "https://app.braingrid.ai",
228
228
  workosAuthUrl: "https://auth.braingrid.ai",