claudekit-cli 3.6.1 → 3.6.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.
Files changed (2) hide show
  1. package/dist/index.js +26 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -14925,7 +14925,7 @@ var cac = (name = "") => new CAC(name);
14925
14925
  // package.json
14926
14926
  var package_default = {
14927
14927
  name: "claudekit-cli",
14928
- version: "3.6.1",
14928
+ version: "3.6.2",
14929
14929
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
14930
14930
  type: "module",
14931
14931
  repository: {
@@ -15903,6 +15903,16 @@ class PathResolver {
15903
15903
  }
15904
15904
 
15905
15905
  // src/utils/claudekit-scanner.ts
15906
+ var SKIP_DIRS = [
15907
+ "debug",
15908
+ "projects",
15909
+ "shell-snapshots",
15910
+ "file-history",
15911
+ "todos",
15912
+ "session-env",
15913
+ "statsig",
15914
+ ".anthropic"
15915
+ ];
15906
15916
  async function scanClaudeKitDirectory(directoryPath) {
15907
15917
  const counts = {
15908
15918
  agents: 0,
@@ -15935,6 +15945,9 @@ async function scanClaudeKitDirectory(directoryPath) {
15935
15945
  const skillItems = await import_fs_extra.readdir(skillsPath);
15936
15946
  let skillCount = 0;
15937
15947
  for (const item of skillItems) {
15948
+ if (SKIP_DIRS.includes(item)) {
15949
+ continue;
15950
+ }
15938
15951
  const itemPath = join2(skillsPath, item);
15939
15952
  const stat = await import_fs_extra.readdir(itemPath).catch(() => null);
15940
15953
  if (stat?.includes("SKILL.md")) {
@@ -31550,7 +31563,7 @@ init_environment();
31550
31563
  init_logger();
31551
31564
  var import_fs_extra16 = __toESM(require_lib(), 1);
31552
31565
  import { join as join27, relative as relative8, resolve as resolve3 } from "node:path";
31553
- var SKIP_DIRS = [
31566
+ var SKIP_DIRS2 = [
31554
31567
  "node_modules",
31555
31568
  ".venv",
31556
31569
  "venv",
@@ -31559,7 +31572,15 @@ var SKIP_DIRS = [
31559
31572
  ".git",
31560
31573
  ".svn",
31561
31574
  "dist",
31562
- "build"
31575
+ "build",
31576
+ "debug",
31577
+ "projects",
31578
+ "shell-snapshots",
31579
+ "file-history",
31580
+ "todos",
31581
+ "session-env",
31582
+ "statsig",
31583
+ ".anthropic"
31563
31584
  ];
31564
31585
 
31565
31586
  class FileScanner {
@@ -31572,7 +31593,7 @@ class FileScanner {
31572
31593
  try {
31573
31594
  const entries = await import_fs_extra16.readdir(dirPath, { encoding: "utf8" });
31574
31595
  for (const entry of entries) {
31575
- if (SKIP_DIRS.includes(entry)) {
31596
+ if (SKIP_DIRS2.includes(entry)) {
31576
31597
  logger.debug(`Skipping directory: ${entry}`);
31577
31598
  continue;
31578
31599
  }
@@ -32523,7 +32544,7 @@ import { promisify as promisify6 } from "node:util";
32523
32544
  // package.json
32524
32545
  var package_default2 = {
32525
32546
  name: "claudekit-cli",
32526
- version: "3.6.1",
32547
+ version: "3.6.2",
32527
32548
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
32528
32549
  type: "module",
32529
32550
  repository: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "3.6.1",
3
+ "version": "3.6.2",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {