docs: update skills to use Docker commands after runtime migration (#325)

All skills now reference Docker CLI instead of Apple Container CLI.
Setup skill defaults to Docker with optional /convert-to-apple-container.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
gavrielc
2026-02-20 14:06:31 +02:00
committed by GitHub
parent a7faac664a
commit 6b9b3a12c9
7 changed files with 41 additions and 161 deletions

View File

@@ -200,11 +200,11 @@ Add to the end of tools array (before the closing `]`):
Change build context from `container/` to project root (required to access `.claude/skills/`):
```bash
# Find:
container build -t "${IMAGE_NAME}:${TAG}" .
docker build -t "${IMAGE_NAME}:${TAG}" .
# Replace with:
cd "$SCRIPT_DIR/.."
container build -t "${IMAGE_NAME}:${TAG}" -f container/Dockerfile .
docker build -t "${IMAGE_NAME}:${TAG}" -f container/Dockerfile .
```
---
@@ -402,7 +402,7 @@ If MCP tools not found in container:
./container/build.sh 2>&1 | grep -i skill
# Check container has the file
container run nanoclaw-agent ls -la /app/src/skills/
docker run nanoclaw-agent ls -la /app/src/skills/
```
## Security