inplan 0.1.5 → 0.1.6
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/bin/cli.js +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +13 -0
package/bin/cli.js
CHANGED
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -18,6 +18,19 @@ Check for the CLI and install it if missing:
|
|
|
18
18
|
|
|
19
19
|
(If the unscoped name is unavailable, install `@cis/inplan`.)
|
|
20
20
|
|
|
21
|
+
**If `open` runs headless** (it prints "the bundled editor's Electron runtime is
|
|
22
|
+
unavailable"): the npm package installed but Electron's **binary** didn't download — a
|
|
23
|
+
proxy/firewall/AV blocked it, or `ignore-scripts` is set. Do **not** `npm install -g
|
|
24
|
+
electron` separately (inplan won't use it). Re-download inplan's own copy, using the path
|
|
25
|
+
the message prints:
|
|
26
|
+
|
|
27
|
+
npm rebuild electron --prefix "$(npm root -g)/inplan" # macOS/Linux
|
|
28
|
+
npm rebuild electron --prefix "%APPDATA%\npm\node_modules\inplan" # Windows (cmd)
|
|
29
|
+
|
|
30
|
+
If the download itself is blocked, set a mirror first (`ELECTRON_MIRROR=https://npmmirror.com/mirrors/electron/`,
|
|
31
|
+
`set ELECTRON_MIRROR=…` on Windows), then rebuild. The loop still works headless until then,
|
|
32
|
+
but the human can't review in the GUI — surface the fix to them and proceed.
|
|
33
|
+
|
|
21
34
|
## File convention
|
|
22
35
|
|
|
23
36
|
Save plans as `<name>.plan.md`. The editor keeps its sidecars in an
|