@braingrid/cli 0.2.8 → 0.2.9
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 +10 -0
- package/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to this project 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
|
+
## [0.2.9] - 2025-11-12
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Documentation URLs updated to docs subdomain**
|
|
13
|
+
- Updated Claude Code documentation URL from `https://braingrid.ai/docs/claude-code` to `https://docs.braingrid.ai/claude-code`
|
|
14
|
+
- Updated Cursor documentation URL from `https://braingrid.ai/docs/cursor` to `https://docs.braingrid.ai/cursor`
|
|
15
|
+
- URLs displayed in setup command success messages now point to correct documentation location
|
|
16
|
+
- Affects `braingrid setup claude-code` and `braingrid setup cursor` output
|
|
17
|
+
|
|
8
18
|
## [0.2.8] - 2025-11-12
|
|
9
19
|
|
|
10
20
|
### Fixed
|
package/dist/cli.js
CHANGED
|
@@ -422,7 +422,7 @@ import axios3, { AxiosError as AxiosError2 } from "axios";
|
|
|
422
422
|
|
|
423
423
|
// src/build-config.ts
|
|
424
424
|
var BUILD_ENV = true ? "production" : process.env.NODE_ENV === "test" ? "development" : "production";
|
|
425
|
-
var CLI_VERSION = true ? "0.2.
|
|
425
|
+
var CLI_VERSION = true ? "0.2.9" : "0.0.0-test";
|
|
426
426
|
var PRODUCTION_CONFIG = {
|
|
427
427
|
apiUrl: "https://app.braingrid.ai",
|
|
428
428
|
workosAuthUrl: "https://sensitive-harvest-60.authkit.app",
|
|
@@ -5766,7 +5766,7 @@ async function handleSetupClaudeCode(opts) {
|
|
|
5766
5766
|
sourceFile: "claude-code/CLAUDE.md",
|
|
5767
5767
|
targetFile: "CLAUDE.md"
|
|
5768
5768
|
},
|
|
5769
|
-
docsUrl: "https://braingrid.ai/
|
|
5769
|
+
docsUrl: "https://docs.braingrid.ai/claude-code"
|
|
5770
5770
|
};
|
|
5771
5771
|
return _handleSetup(config, opts);
|
|
5772
5772
|
}
|
|
@@ -5779,7 +5779,7 @@ async function handleSetupCursor(opts) {
|
|
|
5779
5779
|
sourceFile: "cursor/AGENTS.md",
|
|
5780
5780
|
targetFile: "AGENTS.md"
|
|
5781
5781
|
},
|
|
5782
|
-
docsUrl: "https://braingrid.ai/
|
|
5782
|
+
docsUrl: "https://docs.braingrid.ai/cursor"
|
|
5783
5783
|
};
|
|
5784
5784
|
return _handleSetup(config, opts);
|
|
5785
5785
|
}
|