From localstack
Manages LocalStack state and snapshots: save, load, export, import state, work with Cloud Pods, create local snapshots, or enable persistence across restarts.
npx claudepluginhub localstack/skills --plugin localstackThis skill uses the workspace's default tool permissions.
Save, load, and manage LocalStack state for reproducible development environments and state snapshots.
Manage LocalStack container lifecycle: start, stop, restart, check status, configure environment variables, and troubleshoot. Useful for local AWS cloud emulation.
Manages Pulumi stacks for dev, staging, and prod environments with Bash commands for creation, selection, configuration, YAML files, and TypeScript config reading.
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.
Share bugs, ideas, or general feedback.
Save, load, and manage LocalStack state for reproducible development environments and state snapshots.
Local snapshots allow you to export LocalStack state to files and import them back. This works without requiring a Pro subscription.
# Export current state to a local file
localstack state export my-state.zip
# Export to a specific path
localstack state export /path/to/backup/state.zip
# Import state from a local file
localstack state import my-state.zip
# Import from a specific path
localstack state import /path/to/backup/state.zip
Cloud Pods store state in LocalStack's cloud platform, enabling team collaboration and remote state management.
Cloud Pods require a LocalStack Pro subscription and auth token:
export LOCALSTACK_AUTH_TOKEN=<your-token>
# Save current state to a Cloud Pod
localstack pod save my-pod-name
# Save with a message
localstack pod save my-pod-name --message "Initial setup with S3 and DynamoDB"
# Load state from a Cloud Pod
localstack pod load my-pod-name
# Load and merge with existing state
localstack pod load my-pod-name --merge
# List all available Cloud Pods
localstack pod list
# Delete a Cloud Pod
localstack pod delete my-pod-name
# View Cloud Pod details
localstack pod inspect my-pod-name
For automatic persistence across LocalStack restarts (without explicit export/import):
# Enable local persistence
PERSISTENCE=1 localstack start -d
# State is saved to .localstack/ directory
# Survives container restarts
| Feature | Local Snapshots (export/import) | Cloud Pods (save/load) |
|---|---|---|
| Storage | Local files | LocalStack cloud |
| Pro required | No | Yes |
| Team sharing | Manual file sharing | Built-in |
| Version control | Can commit files | Cloud-managed |
| Offline use | Yes | No |
state export/import for local development and CI/CD pipelinesPERSISTENCE=1 for simple state retention across restarts