@braingrid/cli 0.2.1 → 0.2.2
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 +28 -0
- package/README.md +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,34 @@ 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.2] - 2025-11-10
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Concise BrainGrid documentation for project injection (`.claude/CLAUDE.md`)
|
|
13
|
+
- 42-line section explaining BrainGrid workflow for Claude Code
|
|
14
|
+
- Slash commands reference and typical workflow
|
|
15
|
+
- Key features (auto-detection, reactive errors, status flows, output formats)
|
|
16
|
+
- BrainGrid CLI slash commands for Claude Code
|
|
17
|
+
- `/specify [prompt]` - Create AI-refined requirement from vague idea
|
|
18
|
+
- `/save-requirement [title]` - Save detailed plan as requirement
|
|
19
|
+
- `/breakdown [req-id]` - Break requirement into AI-prompted tasks
|
|
20
|
+
- `/build [req-id]` - Get complete implementation plan in markdown
|
|
21
|
+
- `/cut-release [patch|minor|major]` - Automate NPM release workflow
|
|
22
|
+
- BrainGrid CLI skill for Claude Code with comprehensive workflow guidance
|
|
23
|
+
- Installation instructions in braingrid-cli skill
|
|
24
|
+
- BrainGrid project configuration files
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Updated README tagline capitalization
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- Removed unsupported `--status` field from `/save-requirement` slash command
|
|
33
|
+
- API does not accept status field during requirement creation
|
|
34
|
+
- Status is set automatically by the backend
|
|
35
|
+
|
|
8
36
|
## [0.2.1] - 2025-01-07
|
|
9
37
|
|
|
10
38
|
### Added
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<img src="https://www.braingrid.ai/logos/braingrid-symbol-800.png" width="100"/>
|
|
3
3
|
<h1>BrainGrid</h1>
|
|
4
4
|
|
|
5
|
-
<p>Prompt AI Coding Tools
|
|
5
|
+
<p>Prompt AI Coding Tools Like a Rockstar Developer</p>
|
|
6
6
|
<h3>A CLI to turn messy thoughts into detailed specs and perfectly-prompted tasks to build well-structured, maintainable software with AI.</h3>
|
|
7
7
|
|
|
8
8
|
[](https://www.npmjs.com/package/@braingrid/cli)
|
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.2" : "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",
|