com um clique
ci
Run complete CI checks locally (build debug/release, run tests, check warnings)
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Run complete CI checks locally (build debug/release, run tests, check warnings)
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
| name | ci |
| description | Run complete CI checks locally (build debug/release, run tests, check warnings) |
Run a complete CI-like workflow locally to catch issues before pushing:
Check git status:
cd /Users/bri/dev/Trebuchet && git status --short
Warn if there are uncommitted changes.
Build in debug mode:
cd /Users/bri/dev/Trebuchet && swift build 2>&1 | tee /tmp/trebuchet-build-debug.log
Build in release mode:
cd /Users/bri/dev/Trebuchet && swift build --configuration release 2>&1 | tee /tmp/trebuchet-build-release.log
Run all tests:
cd /Users/bri/dev/Trebuchet && swift test 2>&1 | tee /tmp/trebuchet-test.log
Check for warnings (excluding known unhandled file warnings):
grep -i "warning:" /tmp/trebuchet-build-release.log | grep -v "found.*file.*which are unhandled" || echo "No warnings found"
Provide a summary with:
/tmp/trebuchet-*.log for detailed inspection/test-aws for those)Update CHANGELOG.md with new entries following Keep a Changelog format
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 AWS integration tests with LocalStack for local AWS service simulation
Run Trebuchet test suites using Swift Testing framework