maxsimcli 5.0.3 → 5.0.5
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/assets/CHANGELOG.md +17 -0
- package/dist/assets/hooks/maxsim-check-update.cjs +2 -1
- package/dist/assets/hooks/maxsim-check-update.cjs.map +1 -1
- package/dist/assets/hooks/maxsim-notification-sound.cjs +3 -2
- package/dist/assets/hooks/maxsim-notification-sound.cjs.map +1 -1
- package/dist/assets/hooks/maxsim-statusline.cjs +6 -4
- package/dist/assets/hooks/maxsim-statusline.cjs.map +1 -1
- package/dist/assets/hooks/maxsim-stop-sound.cjs +3 -2
- package/dist/assets/hooks/maxsim-stop-sound.cjs.map +1 -1
- package/dist/assets/hooks/maxsim-sync-reminder.cjs.map +1 -1
- package/dist/assets/templates/commands/maxsim/quick.md +3 -5
- package/dist/assets/templates/references/thinking-partner.md +0 -2
- package/dist/assets/templates/skills/github-artifact-protocol/SKILL.md +0 -1
- package/dist/assets/templates/skills/github-tools-guide/SKILL.md +2 -9
- package/dist/assets/templates/templates/state.md +0 -10
- package/dist/assets/templates/workflows/execute.md +3 -3
- package/dist/assets/templates/workflows/go.md +1 -1
- package/dist/assets/templates/workflows/help.md +1 -2
- package/dist/assets/templates/workflows/new-milestone.md +1 -1
- package/dist/assets/templates/workflows/plan-create.md +1 -1
- package/dist/assets/templates/workflows/plan-discuss.md +1 -1
- package/dist/assets/templates/workflows/plan.md +4 -4
- package/dist/assets/templates/workflows/progress.md +0 -5
- package/dist/assets/templates/workflows/quick.md +1 -151
- package/dist/assets/templates/workflows/sdd.md +1 -1
- package/dist/assets/templates/workflows/verify-phase.md +2 -2
- package/dist/cli.cjs +8417 -8695
- package/dist/cli.cjs.map +1 -1
- package/dist/install.cjs +2 -1
- package/dist/install.cjs.map +1 -1
- package/package.json +1 -1
package/dist/install.cjs
CHANGED
|
@@ -7699,6 +7699,7 @@ function checkForUpdate(options) {
|
|
|
7699
7699
|
const projectVersionFile = node_path.join(cwd, CLAUDE_DIR, "maxsim", "VERSION");
|
|
7700
7700
|
const globalVersionFile = node_path.join(homeDir, CLAUDE_DIR, "maxsim", "VERSION");
|
|
7701
7701
|
if (!node_fs.existsSync(cacheDir)) node_fs.mkdirSync(cacheDir, { recursive: true });
|
|
7702
|
+
const isWindows = process.platform === "win32";
|
|
7702
7703
|
(0, node_child_process.spawn)(process.execPath, ["-e", `
|
|
7703
7704
|
const fs = require('fs');
|
|
7704
7705
|
const { execSync } = require('child_process');
|
|
@@ -7733,7 +7734,7 @@ function checkForUpdate(options) {
|
|
|
7733
7734
|
`], {
|
|
7734
7735
|
stdio: "ignore",
|
|
7735
7736
|
windowsHide: true,
|
|
7736
|
-
detached:
|
|
7737
|
+
detached: !isWindows
|
|
7737
7738
|
}).unref();
|
|
7738
7739
|
}
|
|
7739
7740
|
/**
|