@braingrid/cli 0.2.47 → 0.2.48
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 +12 -0
- package/dist/cli.js +15 -3
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.48] - 2026-02-23
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Frontend design skill** — new skill for creating production-grade frontend interfaces with design system references (color, typography, spacing, shadows, layout, accessibility, icons)
|
|
15
|
+
- **UX skill** — new skill for designing excellent UX across web, mobile, and CLI with pattern references (forms, navigation, search, feedback, wizards, states, lists/tables)
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- **Setup command** — `braingrid setup claude-code` now installs frontend-design and ux skills alongside braingrid-cli skill
|
|
20
|
+
- **Docs sync** — sync script updated to distribute both new skills to BrainGridAI/braingrid repo (17 → 39 files)
|
|
21
|
+
|
|
10
22
|
## [0.2.47] - 2026-02-20
|
|
11
23
|
|
|
12
24
|
### Fixed
|
package/dist/cli.js
CHANGED
|
@@ -228,7 +228,7 @@ async function axiosWithRetry(config2, options) {
|
|
|
228
228
|
|
|
229
229
|
// src/build-config.ts
|
|
230
230
|
var BUILD_ENV = true ? "production" : process.env.NODE_ENV === "test" ? "development" : "production";
|
|
231
|
-
var CLI_VERSION = true ? "0.2.
|
|
231
|
+
var CLI_VERSION = true ? "0.2.48" : "0.0.0-test";
|
|
232
232
|
var PRODUCTION_CONFIG = {
|
|
233
233
|
apiUrl: "https://app.braingrid.ai",
|
|
234
234
|
workosAuthUrl: "https://auth.braingrid.ai",
|
|
@@ -3673,10 +3673,22 @@ function isSetupResult(result) {
|
|
|
3673
3673
|
async function handleSetupClaudeCode(opts) {
|
|
3674
3674
|
const config2 = {
|
|
3675
3675
|
name: "Claude Code",
|
|
3676
|
-
sourceDirs: [
|
|
3677
|
-
|
|
3676
|
+
sourceDirs: [
|
|
3677
|
+
"claude-code/commands",
|
|
3678
|
+
"claude-code/skills/braingrid-cli",
|
|
3679
|
+
"claude-code/skills/frontend-design",
|
|
3680
|
+
"claude-code/skills/ux"
|
|
3681
|
+
],
|
|
3682
|
+
targetDirs: [
|
|
3683
|
+
".claude/commands",
|
|
3684
|
+
".claude/skills/braingrid-cli",
|
|
3685
|
+
".claude/skills/frontend-design",
|
|
3686
|
+
".claude/skills/ux"
|
|
3687
|
+
],
|
|
3678
3688
|
dirLabels: [
|
|
3679
3689
|
{ label: "Commands", countMode: "files" },
|
|
3690
|
+
{ label: "Skills", countMode: "single" },
|
|
3691
|
+
{ label: "Skills", countMode: "single" },
|
|
3680
3692
|
{ label: "Skills", countMode: "single" }
|
|
3681
3693
|
],
|
|
3682
3694
|
injection: {
|