@braingrid/cli 0.2.10 → 0.2.11

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,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.11] - 2025-11-25
9
+
10
+ ### Fixed
11
+
12
+ - **Claude Code skill installation path**
13
+ - Fixed issue where skill files were installed to nested directory (`.claude/skills/braingrid-cli/braingrid-cli`)
14
+ - Skills now correctly install to flat directory structure (`.claude/skills/braingrid-cli/`)
15
+ - Updated sourceDirs configuration to start recursive walk from skill directory itself
16
+ - Ensures proper skill detection and loading in Claude Code
17
+
8
18
  ## [0.2.10] - 2025-11-25
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.10" : "0.0.0-test";
425
+ var CLI_VERSION = true ? "0.2.11" : "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",
@@ -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",