Help us improve
Share bugs, ideas, or general feedback.
From Arcaneum
Manages Docker containers for Qdrant and MeiliSearch local development services. Use for starting, stopping, restarting, checking status, and viewing logs.
npx claudepluginhub cwensel/arcaneum --plugin arcHow this skill is triggered — by the user, by Claude, or both
Slash command
/arc:arc-containerThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manages Qdrant and MeiliSearch Docker containers for local development.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Manages Qdrant and MeiliSearch Docker containers for local development.
# Start services
arc container start # Start both Qdrant and MeiliSearch
arc container start --service qdrant # Start only Qdrant
arc container start --service meilisearch # Start only MeiliSearch
# Stop services
arc container stop
arc container stop --service qdrant
arc container stop --service meilisearch
# Restart services
arc container restart
arc container restart --service qdrant
# Check status
arc container status
arc container status --json
# View logs
arc container logs # Tail logs from both services
arc container logs --service qdrant # Qdrant logs only
arc container logs --lines 100 # Show more lines
# Reset (delete all data)
arc container reset --confirm # Reset both services
arc container reset --service qdrant --confirm # Reset only Qdrant
After starting:
# Check if Docker is running
docker info
# Check service health
arc container status
# View recent errors
arc container logs --lines 50
# Full reset if needed
arc container reset --confirm
arc container start