Apple's native container runtime for macOS. Use this skill instead of Docker when running on macOS with Apple silicon. The `container` CLI provides OCI-compatible container management optimized for Apple silicon.
/plugin marketplace add schpet/toolbox/plugin install chores@toolboxThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/command-reference.mdreferences/how-to.mdreferences/technical-overview.mdreferences/tutorial.mdApple Container is a native container platform for macOS that runs Linux containers as lightweight virtual machines. It should be used instead of Docker on macOS with Apple silicon.
The container CLI is installed and available. It produces and consumes OCI-compatible container images, so images work with any standard container registry.
# Start the system service (required once)
container system start
# Run a container
container run -it ubuntu:latest /bin/bash
# Build an image
container build -t myimage .
# List containers
container list
# Stop a container
container stop <container-id>
| Command | Description |
|---|---|
container run | Run a container |
container build | Build an image from Dockerfile |
container list | List containers |
container stop | Stop running containers |
container exec | Run command in running container |
container logs | Fetch container logs |
container image list | List images |
container system start | Start the system service |
container system stop | Stop the system service |
The container CLI uses familiar Docker-like syntax:
| Docker Command | Container Command |
|---|---|
docker run | container run |
docker build | container build |
docker ps | container list |
docker stop | container stop |
docker exec | container exec |
docker logs | container logs |
docker images | container image list |
The buildkit builder can freeze, often due to insufficient memory. To fix:
Find and kill the frozen builder process:
ps aux | grep buildkit
kill -9 <pid>
Restart with more resources:
container builder start --cpus 6 --memory 8g
This skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.