Apple container CLI Helper
Teaches Claude the exact syntax and constraints of Apple's `container` CLI for running containers on Apple-silicon Macs without Docker.
Dev & CodingIntermediate★ 398⑂ 42AI score 8/10Last updated: Jul 9, 2026
What it does
- Gives Claude an accurate map of Apple's open-source
containerCLI (repoapple/container). - Prevents Docker-by-habit mistakes: no shared daemon, one lightweight VM (and IP) per container, image verbs live under
container image, not as top-level commands. - Covers installation via the signed .pkg, bringing services up with
container system start, upgrade/uninstall helper scripts, plus task-focused reference files (commands.md,concepts.md,configuration.md,workflows.md). - Flags version and OS gating: macOS 15 vs macOS 26 networking limits, and commands added in 1.0.0 (
machine,cp,export,prune,registry list).
Who it's for
- Developers on M1+ Macs who want containers without Docker Desktop.
- Teams evaluating Apple's native tooling instead of Docker/Podman.
- Anyone building OCI images on macOS and pushing them to registries like GHCR.
Example uses
- "Run an alpine shell on my Mac without Docker" → verify services, then
container run --rm -it docker.io/library/alpine sh. - "Build my app image and push it to ghcr.io" →
container build -t myapp:latest .,container registry login ghcr.io, thencontainer image push .... - "Why does
container network createfail?" → explains it is macOS 26-only and that macOS 15 offers just the default subnet.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/sanjay3290/ai-skills/HEAD/skills/apple-container/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/apple-container folder from the GitHub repo sanjay3290/ai-skills into my ~/.claude/skills/apple-container/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/sanjay3290/ai-skills.git /tmp/ai-skills && mkdir -p ~/.claude/skills && cp -r /tmp/ai-skills/skills/apple-container ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open Terminal.
- Clone the repo:
git clone https://github.com/sanjay3290/ai-skills.git /tmp/ai-skills - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r /tmp/ai-skills/skills/apple-container ~/.claude/skills/ - Confirm the
references/files came along:ls ~/.claude/skills/apple-container - Restart Claude Code and ask something like "how do I run a container with apple container?" to trigger it.
- For real usage, install the signed .pkg from the
apple/containerreleases page on an Apple-silicon Mac and runcontainer system startfirst.
View source on GitHub ↗License: Apache-2.0