claude-init 1.0.9 → 1.0.10

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.
@@ -6,7 +6,8 @@
6
6
  "Bash(chmod:*)",
7
7
  "Bash(npm test)",
8
8
  "Bash(node:*)",
9
- "Bash(npm pack:*)"
9
+ "Bash(npm pack:*)",
10
+ "Bash(git log:*)"
10
11
  ],
11
12
  "deny": [],
12
13
  "ask": [],
@@ -58,6 +58,10 @@ RUN ARCH=$(dpkg --print-architecture) && \
58
58
  # Set up non-root user
59
59
  USER node
60
60
 
61
+ # Install uv for Python package management and ensure it is on PATH
62
+ ENV PATH=/home/node/.local/bin:$PATH
63
+ RUN curl -LsSf https://astral.sh/uv/install.sh | sh
64
+
61
65
  # Install global packages
62
66
  ENV NPM_CONFIG_PREFIX=/usr/local/share/npm-global
63
67
  ENV PATH=$PATH:/usr/local/share/npm-global/bin
@@ -91,4 +95,4 @@ USER root
91
95
  RUN chmod +x /usr/local/bin/init-firewall.sh && \
92
96
  echo "node ALL=(root) NOPASSWD: /usr/local/bin/init-firewall.sh" > /etc/sudoers.d/node-firewall && \
93
97
  chmod 0440 /etc/sudoers.d/node-firewall
94
- USER node
98
+ USER node
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-init",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Initialize Claude development environment with configurations and templates",
5
5
  "type": "module",
6
6
  "bin": {