بنقرة واحدة
ci
Run complete CI checks locally (build debug/release, run tests, check warnings)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run complete CI checks locally (build debug/release, run tests, check warnings)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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
| 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)