@mecha.im/cli 0.3.4 → 0.3.5
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/Dockerfile +1 -1
- package/README.md +2 -1
- package/agent/dashboard/package.json +1 -1
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -32,7 +32,7 @@ RUN apk add --no-cache xz \
|
|
|
32
32
|
&& rm /tmp/s6-overlay-*.tar.xz
|
|
33
33
|
|
|
34
34
|
# Minimal system deps (root) — only what requires root privileges
|
|
35
|
-
RUN apk add --no-cache git bash curl libstdc++ python3 py3-pip
|
|
35
|
+
RUN apk add --no-cache git bash curl libstdc++ python3 py3-pip make g++
|
|
36
36
|
|
|
37
37
|
# Create non-root user
|
|
38
38
|
RUN adduser -D -u 10001 appuser
|
package/README.md
CHANGED
|
@@ -6,7 +6,8 @@ An army of agents. Run autonomous Claude bots in Docker containers with scheduli
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Install
|
|
9
|
-
npm install -g mecha
|
|
9
|
+
npm install -g @mecha.im/cli
|
|
10
|
+
# Or run without installing: npx @mecha.im/cli
|
|
10
11
|
|
|
11
12
|
# Initialize (builds Docker image)
|
|
12
13
|
mecha init
|