claude-init 1.0.8 → 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.
package/.claude/commands/plan.md
CHANGED
|
@@ -25,6 +25,6 @@ Additionally, maintain the following principles throughout your work process:
|
|
|
25
25
|
1. Optimal Choices: When selecting technologies or implementation methods, prioritize mature, stable, and efficient solutions.
|
|
26
26
|
2. Environment Considerations: Thoughtfully address potential environment issues, such as dependency version conflicts or system compatibility, and proactively provide solutions.
|
|
27
27
|
|
|
28
|
-
Now, no need to code, read through and understand the codebase and give me a plan on:
|
|
28
|
+
Now, no need to code, read through and understand the codebase and give me a detailed plan on:
|
|
29
29
|
|
|
30
30
|
$ARGUMENTS
|
package/.devcontainer/Dockerfile
CHANGED
|
@@ -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
|