.cursor/skills/update-version/SKILL.md
Update the project version number across all files that contain it on the current branch. Use when bumping the version on a single branch only. For a full multi-branch release, use the release skill instead.
npx skillsauth add openshift/lightspeed-console update-versionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Determine the new version. If the user didn't specify one, read the
current version from package.json and bump the patch version number.
Update package.json — replace the version string in both the top-level
version field and the consolePlugin.version field. Both must match.
Update src/components/OverviewDetail.tsx — replace the old version
string in the JSX with the new one.
Sync the lockfile — run npm install to propagate the version change
into package-lock.json.
Verify — search the workspace for the old version string to confirm no
stale references remain (ignore node_modules/ and dist/). Report any
unexpected occurrences to the user.
This project uses semver (MAJOR.MINOR.PATCH)
testing
Run Cypress tests filtered by tag. Use when the user asks to run tests, run Cypress, or test a specific feature tag like @core or @attach.
testing
Review project AI skills for duplication, stale references, mistakes, and structural issues. Use when the user asks to review skills, audit skills, check for duplicate skills, or verify skill quality.
development
Review all README.md files in the repo for typos, errors, and outdated information. Use when the user asks to review READMEs, check documentation accuracy, or audit docs.
tools
Bump the project version across all release branches and commit the changes. Use when the user asks to do a release or update the version on all branches.