@braingrid/cli 0.2.10 → 0.2.12

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
@@ -5,6 +5,32 @@ 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.12] - 2025-12-05
9
+
10
+ ### Changed
11
+
12
+ - **Production authentication domain updated**
13
+ - Updated production WorkOS auth URL from `sensitive-harvest-60.authkit.app` to `auth.braingrid.ai`
14
+ - Custom domain provides better branding and user trust during OAuth login flow
15
+ - Development auth domain remains unchanged
16
+
17
+ ### Improved
18
+
19
+ - **Test maintainability for config tests**
20
+ - Extracted mock configuration objects into reusable constants (`MOCK_PROD_CONFIG`, `MOCK_DEV_CONFIG`)
21
+ - Reduced code duplication in `config.test.ts`
22
+ - Test assertions now reference constants instead of hardcoded strings
23
+
24
+ ## [0.2.11] - 2025-11-25
25
+
26
+ ### Fixed
27
+
28
+ - **Claude Code skill installation path**
29
+ - Fixed issue where skill files were installed to nested directory (`.claude/skills/braingrid-cli/braingrid-cli`)
30
+ - Skills now correctly install to flat directory structure (`.claude/skills/braingrid-cli/`)
31
+ - Updated sourceDirs configuration to start recursive walk from skill directory itself
32
+ - Ensures proper skill detection and loading in Claude Code
33
+
8
34
  ## [0.2.10] - 2025-11-25
9
35
 
10
36
  ### Fixed
package/dist/cli.js CHANGED
@@ -422,10 +422,10 @@ 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.10" : "0.0.0-test";
425
+ var CLI_VERSION = true ? "0.2.12" : "0.0.0-test";
426
426
  var PRODUCTION_CONFIG = {
427
427
  apiUrl: "https://app.braingrid.ai",
428
- workosAuthUrl: "https://sensitive-harvest-60.authkit.app",
428
+ workosAuthUrl: "https://auth.braingrid.ai",
429
429
  workosClientId: "client_01K6H010C9K69HSDPM9CQM85S7"
430
430
  };
431
431
  var DEVELOPMENT_CONFIG = {
@@ -5793,7 +5793,7 @@ async function _handleSetup(config, opts) {
5793
5793
  async function handleSetupClaudeCode(opts) {
5794
5794
  const config = {
5795
5795
  name: "Claude Code",
5796
- sourceDirs: ["claude-code/commands", "claude-code/skills"],
5796
+ sourceDirs: ["claude-code/commands", "claude-code/skills/braingrid-cli"],
5797
5797
  targetDirs: [".claude/commands", ".claude/skills/braingrid-cli"],
5798
5798
  injection: {
5799
5799
  sourceFile: "claude-code/CLAUDE.md",