$npx -y skills add Geeksfino/openskills --skill openskills-release-opsPrepare and validate OpenSkills release readiness across runtime, bindings, examples, and regression gates with a deterministic checklist and go/no-go outcome.
| 1 | # OpenSkills Release Ops |
| 2 | |
| 3 | Use this skill when preparing a release candidate or validating publish readiness. |
| 4 | |
| 5 | ## Release Gates |
| 6 | |
| 7 | 1. Runtime compile and test status |
| 8 | 2. Binding build status (TS and Python) |
| 9 | 3. Example-agent sanity checks |
| 10 | 4. Changelog/version consistency |
| 11 | 5. Packaging/publish prerequisites |
| 12 | |
| 13 | ## Core Verification |
| 14 | |
| 15 | ```bash |
| 16 | cargo check -p openskills-runtime |
| 17 | cargo test -p openskills-runtime |
| 18 | ``` |
| 19 | |
| 20 | ## Evidence Required |
| 21 | |
| 22 | - Test command outputs summarized |
| 23 | - Any skipped gates with reason |
| 24 | - Known risks and rollback notes |
| 25 | |
| 26 | ## Go/No-Go Decision |
| 27 | |
| 28 | Return one of: |
| 29 | |
| 30 | - `GO` (all required gates pass) |
| 31 | - `GO with risks` (non-blocking issues documented) |
| 32 | - `NO-GO` (blocking issues remain) |
| 33 | |
| 34 | Include explicit blockers and exact repro commands. |