maxsimcli 1.0.8 → 1.0.10

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/install.cjs CHANGED
@@ -6483,7 +6483,7 @@ var require_dist = /* @__PURE__ */ __commonJSMin(((exports) => {
6483
6483
  var require_package = /* @__PURE__ */ __commonJSMin(((exports, module) => {
6484
6484
  module.exports = {
6485
6485
  "name": "maxsimcli",
6486
- "version": "1.0.8",
6486
+ "version": "1.0.10",
6487
6487
  "private": false,
6488
6488
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini and Codex by MayStudios.",
6489
6489
  "bin": { "maxsimcli": "dist/install.cjs" },
@@ -7325,6 +7325,17 @@ function install(isGlobal, runtime = "claude") {
7325
7325
  const pkgJsonDest = node_path.join(targetDir, "package.json");
7326
7326
  node_fs.writeFileSync(pkgJsonDest, "{\"type\":\"commonjs\"}\n");
7327
7327
  console.log(` ${chalk.green("✓")} Wrote package.json (CommonJS mode)`);
7328
+ const toolSrc = node_path.resolve(__dirname, "cli.cjs");
7329
+ const binDir = node_path.join(targetDir, "maxsim", "bin");
7330
+ const toolDest = node_path.join(binDir, "maxsim-tools.cjs");
7331
+ if (node_fs.existsSync(toolSrc)) {
7332
+ node_fs.mkdirSync(binDir, { recursive: true });
7333
+ node_fs.copyFileSync(toolSrc, toolDest);
7334
+ console.log(` ${chalk.green("✓")} Installed maxsim-tools.cjs`);
7335
+ } else {
7336
+ console.warn(` ${chalk.yellow("!")} cli.cjs not found at ${toolSrc} — maxsim-tools.cjs not installed`);
7337
+ failures.push("maxsim-tools.cjs");
7338
+ }
7328
7339
  let hooksSrc = null;
7329
7340
  const bundledHooksDir = node_path.resolve(__dirname, "assets", "hooks");
7330
7341
  if (node_fs.existsSync(bundledHooksDir)) hooksSrc = bundledHooksDir;