clawmarketbot 0.1.11 → 0.1.12

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 +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1076,8 +1076,8 @@ async function commitInstallTransaction(input2) {
1076
1076
  await fs5.mkdir(path4.dirname(input2.workspacePath), { recursive: true });
1077
1077
  await fs5.rename(input2.stagedWorkspacePath, input2.workspacePath);
1078
1078
  movedWorkspace = true;
1079
- await fs5.mkdir(path4.dirname(input2.agentDirPath), { recursive: true });
1080
- await fs5.rename(input2.stagedAgentDirPath, input2.agentDirPath);
1079
+ await fs5.mkdir(path4.dirname(input2.agentRootPath), { recursive: true });
1080
+ await fs5.rename(input2.stagedAgentDirPath, input2.agentRootPath);
1081
1081
  movedAgentDir = true;
1082
1082
  if (input2.memoryDbStagedPath && input2.memoryDbTargetPath && await fileExists(input2.memoryDbStagedPath)) {
1083
1083
  await fs5.mkdir(path4.dirname(input2.memoryDbTargetPath), { recursive: true });
@@ -1529,7 +1529,7 @@ function registerConfigCommands(program2) {
1529
1529
 
1530
1530
  // src/index.ts
1531
1531
  var program = new Command();
1532
- program.name("clawmarketbot").description("CLI tool for ClawMarket - discover, download, and install OpenClaw configs").version("0.1.11");
1532
+ program.name("clawmarketbot").description("CLI tool for ClawMarket - discover, download, and install OpenClaw configs").version("0.1.12");
1533
1533
  registerAuthCommands(program);
1534
1534
  registerConfigCommands(program);
1535
1535
  program.parse();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmarketbot",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "private": false,
5
5
  "description": "CLI tool for ClawMarket - discover, download, and install OpenClaw configs",
6
6
  "type": "module",