$npx -y skills add Geeksfino/openskills --skill openskills-bindings-maintainerMaintain compatibility between openskills-runtime and language bindings (TypeScript, Python), including feature flags, build configuration, and smoke verification.
| 1 | # OpenSkills Bindings Maintainer |
| 2 | |
| 3 | Use this skill when runtime APIs, features, or dependency topology changes may affect bindings. |
| 4 | |
| 5 | ## Scope |
| 6 | |
| 7 | - `bindings/ts/**` |
| 8 | - `bindings/python/**` |
| 9 | - runtime crate feature interactions affecting bindings |
| 10 | |
| 11 | ## Workflow |
| 12 | |
| 13 | 1. Identify runtime change surface (API, features, dependencies). |
| 14 | 2. Check both bindings for feature/compile assumptions. |
| 15 | 3. Verify build and smoke tests for each binding. |
| 16 | 4. Confirm lockfile and manifest consistency where applicable. |
| 17 | |
| 18 | ## TS Binding Checks |
| 19 | |
| 20 | ```bash |
| 21 | cd bindings/ts |
| 22 | npm install |
| 23 | npm run build |
| 24 | ``` |
| 25 | |
| 26 | ## Python Binding Checks |
| 27 | |
| 28 | Use project-standard build/test commands for Python bindings and confirm import/runtime behavior. |
| 29 | |
| 30 | ## Guardrails |
| 31 | |
| 32 | - Avoid introducing plugin/build-tool dependencies into default binding paths unless intentional. |
| 33 | - Keep generated files and lockfiles aligned with project policy. |
| 34 | |
| 35 | ## Output Format |
| 36 | |
| 37 | - Compatibility matrix (runtime vs TS/Python) |
| 38 | - Breaking changes |
| 39 | - Required migration steps |
| 40 | - Verification evidence |