claudekit-cli 3.33.0-dev.9 → 3.34.0-dev.1

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/dist/index.js CHANGED
@@ -38593,6 +38593,11 @@ var init_ck_config_schema = __esm(() => {
38593
38593
  default: true,
38594
38594
  description: "SubagentStart hook - injects context to subagents"
38595
38595
  },
38596
+ "descriptive-name": {
38597
+ type: "boolean",
38598
+ default: true,
38599
+ description: "PreToolUse hook - enforces kebab-case descriptive file naming for scripts"
38600
+ },
38596
38601
  "dev-rules-reminder": {
38597
38602
  type: "boolean",
38598
38603
  default: true,
@@ -38603,6 +38608,11 @@ var init_ck_config_schema = __esm(() => {
38603
38608
  default: true,
38604
38609
  description: "UserPromptSubmit/PostToolUse hook - usage limits awareness"
38605
38610
  },
38611
+ "context-tracking": {
38612
+ type: "boolean",
38613
+ default: true,
38614
+ description: "Context window tracking injection (% used, token counts) in dev-rules-reminder"
38615
+ },
38606
38616
  "scout-block": {
38607
38617
  type: "boolean",
38608
38618
  default: true,
@@ -45375,7 +45385,7 @@ var package_default;
45375
45385
  var init_package = __esm(() => {
45376
45386
  package_default = {
45377
45387
  name: "claudekit-cli",
45378
- version: "3.33.0-dev.9",
45388
+ version: "3.34.0-dev.1",
45379
45389
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
45380
45390
  type: "module",
45381
45391
  repository: {
@@ -77766,7 +77776,7 @@ async function handleMerge(ctx) {
77766
77776
  displayConflictSummary(summary);
77767
77777
  }
77768
77778
  try {
77769
- const sourceMetadataPath = join77(sourceDir, "metadata.json");
77779
+ const sourceMetadataPath = ctx.options.global ? join77(sourceDir, "metadata.json") : join77(sourceDir, ".claude", "metadata.json");
77770
77780
  if (await import_fs_extra20.pathExists(sourceMetadataPath)) {
77771
77781
  const metadataContent = await import_fs_extra20.readFile(sourceMetadataPath, "utf-8");
77772
77782
  const sourceMetadata = JSON.parse(metadataContent);
@@ -77782,6 +77792,8 @@ async function handleMerge(ctx) {
77782
77792
  logger.verbose(`Preserved ${deletionResult.preservedPaths.length} user-owned file(s)`);
77783
77793
  }
77784
77794
  }
77795
+ } else {
77796
+ logger.debug(`No source metadata found at ${sourceMetadataPath}, skipping deletions`);
77785
77797
  }
77786
77798
  } catch (error) {
77787
77799
  logger.debug(`Cleanup of deprecated files failed: ${error}`);