@rozek/nanoclaw 0.0.13 → 0.0.14

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.
@@ -55,7 +55,8 @@ RUN mkdir -p /workspace/group /workspace/global /workspace/extra /workspace/ipc/
55
55
  # Container input (prompt, group info) is passed via stdin JSON.
56
56
  # Credentials are injected by the host's credential proxy — never passed here.
57
57
  # Follow-up messages arrive via IPC files in /workspace/ipc/input/
58
- RUN printf '#!/bin/bash\nset -e\ncd /app && npx tsc --outDir /tmp/dist 2>&1 >&2\nln -s /app/node_modules /tmp/dist/node_modules\nchmod -R a-w /tmp/dist\ncat > /tmp/input.json\nnode /tmp/dist/index.js < /tmp/input.json\n' > /app/entrypoint.sh && chmod +x /app/entrypoint.sh
58
+ # Uses pre-compiled /app/dist/ (built during image creation) no runtime tsc needed.
59
+ RUN printf '#!/bin/bash\nset -e\ncat > /tmp/input.json\nnode /app/dist/index.js < /tmp/input.json\n' > /app/entrypoint.sh && chmod +x /app/entrypoint.sh
59
60
 
60
61
  # Set ownership to node user (non-root) for writable directories
61
62
  RUN chown -R node:node /workspace && chmod 777 /home/node
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rozek/nanoclaw",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "Personal Claude assistant. Lightweight, secure, customizable.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",