You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`install-superplan.cmd` is a Windows batch file. If you download it from Git Bash, run it through `cmd.exe` or switch to PowerShell; do not ask Bash to execute it directly.
51
+
44
52
The Windows installer now installs the CLI and the packaged overlay companion, and it downloads and keeps a bundled Node runtime when needed so users do not need to preinstall Node.js just to get started.
45
53
46
54
After install, Superplan will ask if you want to run `superplan init`.
55
+
If `superplan` is not found in the current shell after install, open a new terminal and run `superplan --version`.
- npm from a local checkout after build (release mode): `npm install -g .`
48
50
- npm link for active local development: `npm link` from the project root after `npm run build`.
49
51
50
52
Important install note:
51
53
52
-
- Public quick-start docs pin the installer to `0.1.0` by using both the tagged raw URL and `SUPERPLAN_REF=0.1.0`, because `scripts/install.sh` otherwise resolves to the current default install ref when that env var is absent.
53
-
-`scripts/install.sh` records install metadata under `~/.config/superplan/install.json` so `superplan update` can reuse the install source later and then refresh existing skill installs.
54
+
- Public quick-start docs use the raw installer entrypoints from `main`: `scripts/install.sh` for macOS/Linux and `scripts/install.cmd` for Windows, with the Windows batch entrypoint delegating to `scripts/install.ps1`.
55
+
-`install-superplan.cmd` is a Windows batch file; Git Bash users must hand it to `cmd.exe` instead of asking Bash to execute it directly, or they will hit `bash: install-superplan.cmd: command not found`.
56
+
- The install scripts record install metadata under `~/.config/superplan/install.json` so `superplan update` can reuse the install source later and then refresh existing skill installs.
54
57
- Older installed binaries that predate the `update` command still need one manual rebuild/reinstall before `superplan update` becomes available.
55
58
- The documented npm flow assumes a local checkout where dependencies are installed and `npm run build` has been run before `npm install -g .`.
59
+
- If the installer adds a new bin directory to `PATH`, users need to open a new shell before `superplan` is available there.
0 commit comments