一键导入
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)