using-localstack — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited using-localstack (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Operations-first playbook to emulate AWS locally with high fidelity. Focuses on production-parity workflows (event-driven, streaming, containers, IaC), fast debugging, and deterministic CI.
Use Pro when avoiding deploy-to-test cycles outweighs license cost.
pipx install localstack (recommended: isolated Python env, cross-platform) OR brew install localstack/tap/localstack-cli (macOS-only, simpler on M1/M2)localstack start -dLOCALSTACK_AUTH_TOKEN=<token> localstack start -d --version x.y.zcurl http://localhost:4566/_localstack/health | jqVerify: All needed services show "available" or "running"
awslocal <service> ... (wrapper for AWS CLI with endpoint preset to localhost:4566)Verify: awslocal sts get-caller-identity (should return any identity without error)
awslocal s3 mb s3://demo && awslocal s3 lsVerify: Output includes demo bucket; if not, check logs: docker logs localstack | grep -i s3
awslocal dynamodb create-table --table-name test --attribute-definitions AttributeName=id,AttributeType=S --key-schema AttributeName=id,KeyType=HASH --billing-mode PAY_PER_REQUESTVerify: awslocal dynamodb describe-table --table-name test | jq .Table.TableStatus returns "ACTIVE" Debug: If fails, check service health: curl http://localhost:4566/_localstack/health | jq .services.dynamodb
awslocal lambda create-function ..., then invokeVerify: Check invocation result and CloudWatch logs: awslocal logs tail /aws/lambda/<function-name>
See Service Workflows for detailed event-driven patterns
tflocal/cdklocal/CloudFormation against LocalStackSee IaC Deployment for toolchain setup and patterns
docker logs localstack, LS_LOG=trace for deep tracesSee Debugging & Observability for troubleshooting
*.localhost.localstack.cloud for service hostnameslocalhost:4566; treat persistence as optional~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.