yolo
Installation
SKILL.md
Contains Shell Commands
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
<live_context>
Project root:
!pwd
Devcontainer present:
!ls -la .devcontainer/devcontainer.json 2>/dev/null && echo "YES" || echo "NO"
Docker daemon status:
!docker info --format '{{.ServerVersion}}' 2>/dev/null && echo "RUNNING" || echo "NOT RUNNING"
Docker Desktop installed:
!command -v docker 2>/dev/null || echo "NOT FOUND"
VS Code installed:
!command -v code 2>/dev/null || echo "NOT FOUND"
</live_context>