@braingrid/cli 0.2.32 → 0.2.33

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,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.33] - 2026-02-03
11
+
12
+ ### Changed
13
+
14
+ - **README documentation update**
15
+ - Updated "What gets installed" section to document all Claude Code setup files
16
+ - Added status line script (`.claude/statusline.sh`)
17
+ - Added hook script (`.claude/hooks/sync-braingrid-task.sh`)
18
+ - Added settings configuration (`.claude/settings.json`)
19
+
10
20
  ## [0.2.32] - 2026-02-03
11
21
 
12
22
  ### Added
package/README.md CHANGED
@@ -146,6 +146,9 @@ braingrid setup cursor --dry-run
146
146
  - **Claude Code integration:**
147
147
  - Commands in `.claude/commands/` (specify, breakdown, build, save-requirement)
148
148
  - Skills in `.claude/skills/braingrid-cli/`
149
+ - Status line script at `.claude/statusline.sh`
150
+ - Hook script at `.claude/hooks/sync-braingrid-task.sh` for task status sync
151
+ - Settings in `.claude/settings.json` (configures status line and hooks)
149
152
  - Content injected into `CLAUDE.md` (or creates it if it doesn't exist)
150
153
 
151
154
  - **Cursor integration:**
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.32" : "0.0.0-test";
225
+ var CLI_VERSION = true ? "0.2.33" : "0.0.0-test";
226
226
  var PRODUCTION_CONFIG = {
227
227
  apiUrl: "https://app.braingrid.ai",
228
228
  workosAuthUrl: "https://auth.braingrid.ai",