clawmarketbot 0.1.9 → 0.1.11

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 +1 -11
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1369,16 +1369,6 @@ function registerConfigCommands(program2) {
1369
1369
  memoryDbTargetPath: installPaths.targetMemoryDb
1370
1370
  });
1371
1371
  await setupApiKeysFromConfig(botConfig, context.paths.configPath, context.paths.envPath);
1372
- const installerShPath = path4.join(sourceBase, "installer.sh");
1373
- if (await fileExists(installerShPath)) {
1374
- console.log("\nRunning post-install hook (installer.sh)...");
1375
- const hookPath = path4.join(sourceRoot, "_clawmarket_installer.sh");
1376
- await fs5.copyFile(installerShPath, hookPath);
1377
- await runCommand("bash", [hookPath, context.paths.stateDir], {
1378
- cwd: sourceRoot,
1379
- stdio: "inherit"
1380
- });
1381
- }
1382
1372
  await validateInstalledWorkspace(installPaths.targetWorkspace, botConfig);
1383
1373
  const refreshed = await loadOpenClawContext();
1384
1374
  const installed = refreshed.agents.find((a) => a.id.toLowerCase() === agentId.toLowerCase());
@@ -1539,7 +1529,7 @@ function registerConfigCommands(program2) {
1539
1529
 
1540
1530
  // src/index.ts
1541
1531
  var program = new Command();
1542
- program.name("clawmarketbot").description("CLI tool for ClawMarket - discover, download, and install OpenClaw configs").version("0.1.9");
1532
+ program.name("clawmarketbot").description("CLI tool for ClawMarket - discover, download, and install OpenClaw configs").version("0.1.11");
1543
1533
  registerAuthCommands(program);
1544
1534
  registerConfigCommands(program);
1545
1535
  program.parse();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmarketbot",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "private": false,
5
5
  "description": "CLI tool for ClawMarket - discover, download, and install OpenClaw configs",
6
6
  "type": "module",