@braingrid/cli 0.2.61 → 0.2.62
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 +6 -0
- package/dist/cli.js +4 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.62] - 2026-03-20
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Deprecate breakdown command from setup** — removed the breakdown command from the setup flow as it is no longer needed
|
|
15
|
+
|
|
10
16
|
## [0.2.61] - 2026-03-17
|
|
11
17
|
|
|
12
18
|
### Added
|
package/dist/cli.js
CHANGED
|
@@ -227,7 +227,7 @@ async function axiosWithRetry(config2, options) {
|
|
|
227
227
|
|
|
228
228
|
// src/build-config.ts
|
|
229
229
|
var BUILD_ENV = true ? "production" : process.env.NODE_ENV === "test" ? "development" : "production";
|
|
230
|
-
var CLI_VERSION = true ? "0.2.
|
|
230
|
+
var CLI_VERSION = true ? "0.2.62" : "0.0.0-test";
|
|
231
231
|
var PRODUCTION_CONFIG = {
|
|
232
232
|
apiUrl: "https://app.braingrid.ai",
|
|
233
233
|
workosAuthUrl: "https://auth.braingrid.ai",
|
|
@@ -3992,6 +3992,7 @@ async function handleSetupClaudeCode(opts) {
|
|
|
3992
3992
|
docsUrl: "https://docs.braingrid.ai/claude-code",
|
|
3993
3993
|
deprecatedFiles: [
|
|
3994
3994
|
".claude/commands/build.md",
|
|
3995
|
+
".claude/commands/breakdown.md",
|
|
3995
3996
|
".claude/skills/braingrid-cli/skill.md",
|
|
3996
3997
|
".claude/skills/braingrid-cli/SKILL.md",
|
|
3997
3998
|
".claude/skills/build/skill.md",
|
|
@@ -4106,7 +4107,8 @@ async function handleSetupCursor(opts) {
|
|
|
4106
4107
|
sourceFile: "cursor/AGENTS.md",
|
|
4107
4108
|
targetFile: "AGENTS.md"
|
|
4108
4109
|
},
|
|
4109
|
-
docsUrl: "https://docs.braingrid.ai/cursor"
|
|
4110
|
+
docsUrl: "https://docs.braingrid.ai/cursor",
|
|
4111
|
+
deprecatedFiles: [".cursor/commands/breakdown.md", ".cursor/commands/build.md"]
|
|
4110
4112
|
};
|
|
4111
4113
|
try {
|
|
4112
4114
|
const setupResult = await _handleSetup(config2, opts);
|