Version upgrade
Skill yigityildiz0/universal-ai-skill-library/skills/common/version-upgrade
531 searchable AI Agent Skills for Claude Code, OpenAI Codex, and OpenCode — EN/TR catalog, platform and risk notes, direct ZIPs, and curated bundles.
npx -y skills add yigityildiz0/universal-ai-skill-library --skill version-upgradeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 18 days oldThe repository was created 18 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Safely plan and apply a project release version bump with ecosystem-aware file discovery, previewed diffs, changelog evidence, validation, and rollback. Use.
SKILL.md
3.0 KB, as published. Nobody here has run it
Safe Version Upgrade
Prepare releases without blind repository-wide replacement. Preserve behavior and make every edit reviewable.
Operating rules
- Inspect the repository, package ecosystem, current version sources, release policy, tags, and dirty-worktree state.
- Treat one ecosystem-native manifest as the version authority when the project defines one. Record derived files separately.
- Determine the target from the user's explicit version or release policy. If neither exists, infer a recommendation from actual changes but do not silently choose a major bump.
- Build a change plan listing every file, old value, new value, reason, and validation command.
- Before mutation, preserve the dirty worktree and create a timestamped backup of every file to be edited outside version control. Never discard unrelated user changes.
- Apply narrow, syntax-aware edits. Do not replace arbitrary version-looking strings, dependency versions, API versions, schema versions, fixtures, or historical documentation.
- Generate changelog entries only from verified commits, issues, and diffs. Separate breaking changes, features, fixes, security, deprecations, and migrations. Never invent entries.
- Regenerate lockfiles or generated metadata only with the project's existing package manager and only when the requested release requires it.
- Run parser checks, project tests, version-consistency checks, and packaging/build checks proportionate to risk.
- Show the final diff, commands run, validation results, remaining risks, and exact rollback path.
Authority boundaries
- A request to prepare or bump a version authorizes the scoped file edits and local validation, not publishing a release.
- Do not push, publish packages, create a hosted release, sign artifacts, or change remote state without explicit authorization.
- Do not commit or tag unless the user requested it. If requested, verify the final diff and tests immediately before doing so.
- Never expose tokens, signing keys, registry credentials, or private changelog material.
Ecosystem discovery
Prefer authoritative files already used by the project, such as package.json, pyproject.toml, Cargo.toml, go.mod plus release metadata, .csproj, Gradle files, or a dedicated version file. Follow repository instructions and existing release automation. Verify current official tooling documentation when behavior may have changed.
Completion gate
A release bump is complete only when:
- the declared target is consistent across authoritative and derived files;
- unrelated numbers and dependencies are unchanged;
- changelog claims are traceable to evidence;
- required tests/builds pass or failures are reported with logs;
- no publish, push, tag, or commit occurred outside the user's authorization;
- rollback instructions identify the backup or reversible commit.