slopcode 0.2.125 → 0.2.127

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/README.md CHANGED
@@ -11,6 +11,16 @@ SlopCode is the open source AI slopcoding agent focused on terminal workflows.
11
11
  npm i -g slopcode@latest
12
12
  ```
13
13
 
14
+ ### Termux on Android
15
+
16
+ ```bash
17
+ pkg update
18
+ pkg install nodejs git ripgrep neovim tar
19
+ npm i -g slopcode@latest --include=optional
20
+ ```
21
+
22
+ The Android package includes the native sidecar TUI runtime for Termux arm64/x64.
23
+
14
24
  ## Quickstart
15
25
 
16
26
  ```bash
package/package.json CHANGED
@@ -34,19 +34,19 @@
34
34
  "scripts": {
35
35
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
36
36
  },
37
- "version": "0.2.125",
37
+ "version": "0.2.127",
38
38
  "license": "MIT",
39
39
  "optionalDependencies": {
40
- "slopcode-bin-darwin-arm64": "0.2.125",
41
- "slopcode-bin-linux-x64-baseline": "0.2.125",
42
- "slopcode-bin-windows-x64": "0.2.125",
43
- "slopcode-bin-linux-x64": "0.2.125",
44
- "slopcode-bin-linux-x64-baseline-musl": "0.2.125",
45
- "slopcode-bin-linux-x64-musl": "0.2.125",
46
- "slopcode-bin-linux-arm64": "0.2.125",
47
- "slopcode-bin-windows-x64-baseline": "0.2.125",
48
- "slopcode-bin-linux-arm64-musl": "0.2.125",
49
- "slopcode-bin-darwin-x64-baseline": "0.2.125",
50
- "slopcode-bin-darwin-x64": "0.2.125"
40
+ "slopcode-bin-darwin-arm64": "0.2.127",
41
+ "slopcode-bin-linux-x64-baseline": "0.2.127",
42
+ "slopcode-bin-windows-x64": "0.2.127",
43
+ "slopcode-bin-linux-x64": "0.2.127",
44
+ "slopcode-bin-linux-x64-baseline-musl": "0.2.127",
45
+ "slopcode-bin-linux-x64-musl": "0.2.127",
46
+ "slopcode-bin-linux-arm64": "0.2.127",
47
+ "slopcode-bin-windows-x64-baseline": "0.2.127",
48
+ "slopcode-bin-linux-arm64-musl": "0.2.127",
49
+ "slopcode-bin-darwin-x64-baseline": "0.2.127",
50
+ "slopcode-bin-darwin-x64": "0.2.127"
51
51
  }
52
52
  }
package/postinstall.mjs CHANGED
@@ -327,7 +327,7 @@ async function main() {
327
327
  }
328
328
 
329
329
  try {
330
- main()
330
+ await main()
331
331
  } catch (error) {
332
332
  clearCache()
333
333
  console.error("Postinstall script error:", error.message)