@tdsoft-tech/aikit 0.1.18 → 0.1.19

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/cli.js CHANGED
@@ -7432,7 +7432,8 @@ var OpenCodeAdapter = class {
7432
7432
  return join15(paths.opencodeConfig(), "agent");
7433
7433
  }
7434
7434
  async transformCommand(command) {
7435
- const name = `ak_cm_${command.name}`;
7435
+ const sanitizedName = command.name.replace(/:/g, "-");
7436
+ const name = `ak_cm_${sanitizedName}`;
7436
7437
  const content = this.generateCommandContent(command);
7437
7438
  return { name, content };
7438
7439
  }
@@ -7571,7 +7572,7 @@ var ClaudeAdapter = class {
7571
7572
  return paths.claudeAgents(true);
7572
7573
  }
7573
7574
  async transformCommand(command) {
7574
- const name = command.name;
7575
+ const name = command.name.replace(/:/g, "-");
7575
7576
  const content = this.generateCommandContent(command);
7576
7577
  return { name, content };
7577
7578
  }