- Agents run in isolated Linux VMs via Apple Container - All groups get Bash access (safe - sandboxed in container) - Browser automation via agent-browser + Chromium - Per-group configurable additional directory mounts - File-based IPC for messages and scheduled tasks - Container image with Node.js 22, Chromium, agent-browser Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
595 B
Bash
Executable File
24 lines
595 B
Bash
Executable File
#!/bin/bash
|
|
# Build the NanoClaw agent container image
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
IMAGE_NAME="nanoclaw-agent"
|
|
TAG="${1:-latest}"
|
|
|
|
echo "Building NanoClaw agent container image..."
|
|
echo "Image: ${IMAGE_NAME}:${TAG}"
|
|
|
|
# Build with Apple Container
|
|
container build -t "${IMAGE_NAME}:${TAG}" .
|
|
|
|
echo ""
|
|
echo "Build complete!"
|
|
echo "Image: ${IMAGE_NAME}:${TAG}"
|
|
echo ""
|
|
echo "Test with:"
|
|
echo " echo '{\"prompt\":\"What is 2+2?\",\"groupFolder\":\"test\",\"chatJid\":\"test@g.us\",\"isMain\":false}' | container run -i ${IMAGE_NAME}:${TAG}"
|