Start the Local Dev Environment
SkillCloud & infraStart, stop, and manage the local dev stack (Docker infra, backend, frontend). Works in any directory — worktree or main repo.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Start the Local Dev Environment skill
What this skill tells your AI
The instructions your AI receives, as published by ayunis-core/ayunis-core in .claude/skills/dev-environment/SKILL.md and read by ahel’s review.
The sandbox-api runs inside Docker with Air for hot-reload. Changes to Go files in sandbox-api/ are picked up automatically without restarting the container.
Prerequisites
Install dev dependencies (one-time):
make dependencies
This installs:
air— hot-reload for Goswag— OpenAPI doc generationyq— YAML processor (via brew)
Start the Dev Server
Important: Before starting, kill any existing process on port 8080:
lsof -ti :8080 | xargs kill -9 2>/dev/null || true
docker-compose up dev
This starts the dev service defined in docker-compose.yaml, which:
- Builds from
docker/alpine.Dockerfile - Mounts
./sandbox-apiand./tmpas volumes - Sets
SANDBOX_DEV_MODE=true - Exposes port
8080(sandbox-api) and3010 - Runs
airfor hot-reload
Wait for this log line before testing:
Starting Sandbox API server on :8080
Verify It's Running
curl http://localhost:8080/health
Or test the filesystem endpoint:
curl http://localhost:8080/filesystem/~
Alternative: Run Without Docker (Faster Iteration)
If you want to skip Docker and run air directly on the host:
lsof -ti :8080 | xargs kill -9 2>/dev/null || true
make api
This runs air with SANDBOX_LOG_DIR=./tmp/log from the sandbox-api/ directory. Requires Go installed locally.
Slim Dev Image (No Source Mount)
For testing the production-like image without hot-reload:
docker-compose up dev-slim
This builds from docker/slim.Dockerfile — no volume mounts, no hot-reload.
Run Unit Tests
make test
Runs go test -v ./... from within sandbox-api/. These are fast in-process tests.
Build the Docker Image
make docker-build
Builds blaxel/sandbox-api:latest. To run it:
make docker-run
Logs
Dev logs are written to ./tmp/log/ on the host (mounted from the container). Tail them with:
tail -f tmp/log/*.log
Signals
- GitHub stars
- 33
- Forks
- 3
- Last commit
- Sep 2026
Others that do the same job
Advanced
- Catalog kind
- skill
- Gateway key
dev-environment- Source
- github.com/ayunis-core/ayunis-core