بنقرة واحدة
apple-container
Run Linux containers on Apple silicon Macs using Apple's native Swift-based container tool
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run Linux containers on Apple silicon Macs using Apple's native Swift-based container tool
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
| name | apple-container |
| description | Run Linux containers on Apple silicon Macs using Apple's native Swift-based container tool |
| version | 1.0.0 |
| author | Hermes Agent |
| license | Apache-2.0 |
| platforms | ["macos"] |
| metadata | {"hermes":{"tags":["containers","docker","macos","apple-silicon","devops"],"related_skills":["vps-infra"]}} |
Apple's official tool for running Linux containers as lightweight virtual machines on Apple silicon Macs. OCI-compatible, Swift-native, optimized for Apple silicon.
# Start the system service
container system start
# Pull an image
container pull ubuntu:latest
# Run a container
container run ubuntu:latest /bin/bash
# List running containers
container ps
# Build from Dockerfile
container build -t myapp:latest .
# Tag for registry
container tag myapp:latest registry.example.com/myapp:latest
# Push to registry
container push registry.example.com/myapp:latest
# Stop a container
container stop <container_id>
# View logs
container logs <container_id>
# Execute command in running container
container exec <container_id> ls -la
# Verify installation
container --version
# Test with a simple container
container run --rm alpine echo "Hello from Apple Container"