version-update
Updates the OLS version number across all required files. Use when bumping the version for a release or when the user asks to update, bump, or change the version number.
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
---
name: "version-update"
description: "Updates the OLS version number across all required files. Use when bumping the version for a release or when the user asks to update, bump, or change the version number."
license: "Apache-2.0"
---
# Version Update
Update the version in **three** files. They must all match.
## Files to update
**1. `ols/version.py`** — source of truth
```python
__version__ = "X.Y.Z"
```
**2. `docs/openapi.json`** — OpenAPI spec
```json
"info": {
"version": "X.Y.Z"
}
```
**3. `scripts/build-container.sh`** — container build (note the `v` prefix)
```bash
OLS_VERSION=vX.Y.Z
```
## Checklist
- [ ] `ols/version.py` updated
- [ ] `docs/openapi.json` updated
- [ ] `scripts/build-container.sh` updated with `v` prefix
- [ ] All three versions match
- [ ] Regenerate OpenAPI docs if needed after version changeMore General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

