Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Sets up personal Docker tool customization using the project's gitignored override pattern.
Your Dockerfile.user and docker-compose.override.yml are yours — never committed to git.
Determine if the user is in dev (source build) or deploy (GHCR) mode:
!if [ -f docker-compose.yml ] && grep -q 'build: \.' docker-compose.yml 2>/dev/null; then echo "DEV_MODE: Building from source (root docker-compose.yml)"; elif [ -f deploy/docker-compose.yml ]; then echo "DEPLOY_MODE: Using GHCR image (deploy/docker-compose.yml)"; else echo "UNKNOWN_MODE: No docker-compose.yml found in root or deploy/"; fi
Decision:
DEV_MODE → work with Dockerfile.user + docker-compose.override.yml (repo root)DEPLOY_MODE → work with deploy/Dockerfile.user + deploy/docker-compose.override.ymlUNKNOWN_MODE → ask the user which directory their docker-compose.yml lives in before proceedingDEV_MODE — check root files:
npx skills add coleam00/Archon --skill docker-extendHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Highly actionable with clear, concrete steps that an agent can follow directly.