원클릭으로
test-aws
Run AWS integration tests with LocalStack for local AWS service simulation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run AWS integration tests with LocalStack for local AWS service simulation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Update CHANGELOG.md with new entries following Keep a Changelog format
Run complete CI checks locally (build debug/release, run tests, check warnings)
Run the complete dev server test workflow for the Aura project
Rebuild the trebuchet CLI binary in release configuration
Create a new Trebuchet release tag following semantic versioning (without 'v' prefix)
Run Trebuchet test suites using Swift Testing framework
| name | test-aws |
| description | Run AWS integration tests with LocalStack for local AWS service simulation |
Run AWS integration tests using LocalStack:
Check if LocalStack is running:
curl -s http://localhost:4566/_localstack/health 2>/dev/null
If not running, start LocalStack:
cd /Users/bri/dev/Trebuchet && docker-compose -f docker-compose.localstack.yml up -d
Wait for LocalStack to be healthy (up to 30 seconds):
timeout 30 bash -c 'until curl -s http://localhost:4566/_localstack/health | grep -q "\"running\""; do sleep 1; done'
Run the AWS integration tests:
cd /Users/bri/dev/Trebuchet && swift test --filter TrebuchetAWSTests
Report test results
Ask the user if they want to stop LocalStack:
docker-compose -f docker-compose.localstack.yml down -vLocalStack simulates these AWS services:
For troubleshooting, refer to Tests/TrebuchetAWSTests/README.md