aiblueprint-cli 1.4.45 → 1.4.46

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.
@@ -6,7 +6,7 @@
6
6
  "hooks": [
7
7
  {
8
8
  "type": "command",
9
- "command": "bun ${CLAUDE_PLUGIN_ROOT}/claude-code-config/scripts/validate-command.js"
9
+ "command": "bun {CLAUDE_PATH}/scripts/command-validator/src/cli.ts"
10
10
  }
11
11
  ]
12
12
  }
package/dist/cli.js CHANGED
@@ -33154,6 +33154,7 @@ var KNOWN_CLAUDE_PATHS = [
33154
33154
  ];
33155
33155
  function transformHookCommand(command, claudeDir) {
33156
33156
  let transformed = command;
33157
+ transformed = replaceClaudePathPlaceholder(transformed, claudeDir);
33157
33158
  for (const pattern of KNOWN_CLAUDE_PATHS) {
33158
33159
  transformed = transformed.replace(pattern, `${claudeDir}/`);
33159
33160
  }
@@ -35149,6 +35150,7 @@ async function installProConfigs(options) {
35149
35150
  await import_fs_extra9.default.copy(tempDir, claudeFolder, {
35150
35151
  overwrite: true
35151
35152
  });
35153
+ await replacePathPlaceholdersInDir(claudeFolder, claudeFolder);
35152
35154
  } catch (error) {
35153
35155
  throw new Error(`Failed to install premium configs: ${error instanceof Error ? error.message : "Unknown error"}`);
35154
35156
  } finally {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiblueprint-cli",
3
- "version": "1.4.45",
3
+ "version": "1.4.46",
4
4
  "description": "AIBlueprint CLI for setting up Claude Code configurations",
5
5
  "author": "AIBlueprint",
6
6
  "license": "MIT",