From localstack
Manage LocalStack container lifecycle: start, stop, restart, check status, configure environment variables, and troubleshoot. Useful for local AWS cloud emulation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/localstack:localstack-lifecycleThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage the LocalStack container lifecycle including starting, stopping, and monitoring the local cloud environment.
Manage the LocalStack container lifecycle including starting, stopping, and monitoring the local cloud environment.
# Basic start
localstack start -d
# Start with debug mode
DEBUG=1 localstack start -d
# Start with Pro features (requires auth token)
LOCALSTACK_AUTH_TOKEN=<token> localstack start -d
# Check if LocalStack is running
localstack status
# Check service health
curl http://localhost:4566/_localstack/health
# View running Docker container
docker ps | grep localstack
# Graceful stop
localstack stop
# Force stop via Docker
docker stop localstack-main
# Follow logs
localstack logs -f
# View last 100 lines
localstack logs --tail 100
Key environment variables for LocalStack:
| Variable | Description | Default |
|---|---|---|
DEBUG | Enable debug logging | 0 |
PERSISTENCE | Enable persistence across restarts | 0 |
LOCALSTACK_AUTH_TOKEN | Auth token for Pro features | None |
GATEWAY_LISTEN | Port configuration | 4566 |
LOCALSTACK_AUTH_TOKEN is set for Pro featuresnpx claudepluginhub localstack/skills --plugin localstackAnalyze LocalStack logs to debug AWS API errors, troubleshoot Lambda functions, and view request/response cycles. Useful for enabling debug mode and filtering logs by service.
Provides reference for docker-local Laravel dev environment including service credentials/ports, CLI commands (status/up/down/logs), file paths, project structure, and .env requirements. Use for setup, health checks, and troubleshooting.
Sets up local Kubernetes development environment with EKS parity using Kind clusters, LocalStack for AWS services, and Keycloak for authentication testing.