publish-no-version-bump

publish-no-version-bump is a skill for Claude Code, Codex from Fu-Jie/openwebui-extensions. It costs 40 tokens per session (980 once invoked), scanned A, original, MIT.

A release workflow that commits and pushes code to GitHub, then publishes it to the official OpenWebUI marketplace without changing its version number. OpenWebUI is a web interface for using AI models and related tools.

In plain words
What is it for?
Use it to stage and commit non-breaking patches, performance improvements, refactoring, documentation fixes, and code-quality changes, then sync them to GitHub and OpenWebUI.
Why use it?
It provides a defined path for shipping fixes and maintenance changes when the user-visible functionality has not materially changed. It avoids treating bug fixes, refactoring, documentation, or linting updates as new feature releases.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/publish_plugin.py --force.

Good fit Use it to stage and commit non-breaking patches, performance improvements, refactoring, documentation fixes, and code-quality changes, then sync them to GitHub and OpenWebUI.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Fu-Jie/openwebui-extensions
agentmods
npx agentmods add skills/fu-jie/openwebui-extensions/publish-no-version-bump

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for publish-no-version-bump

README.md
[![agentmods](https://agentmods.dev/badge/skills/fu-jie/openwebui-extensions/publish-no-version-bump/github.svg)](https://agentmods.dev/skills/fu-jie/openwebui-extensions/publish-no-version-bump)
Your own site
<a href="https://agentmods.dev/skills/fu-jie/openwebui-extensions/publish-no-version-bump"><img src="https://agentmods.dev/badge/skills/fu-jie/openwebui-extensions/publish-no-version-bump/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for publish-no-version-bump

Your own site · 80×15
<a href="https://agentmods.dev/skills/fu-jie/openwebui-extensions/publish-no-version-bump"><img src="https://agentmods.dev/badge/skills/fu-jie/openwebui-extensions/publish-no-version-bump.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 980 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Tool Misuse · line 65
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00040 $0.00980
Opus 5 $0.00020 $0.00490
Sonnet 5 $0.00008 $0.00196
Haiku 4.5 $0.00004 $0.00098

Measured 10d ago against content hash e20ca67eff7b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

publish-no-version-bump scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/skills/publish-no-version-bump/SKILL.md · 151 lines

How it starts

The opening of the file, as written. The whole thing — 151 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Publish Without Version Bump

Overview

This skill handles the workflow for pushing code changes to the remote repository and syncing them to the OpenWebUI official marketplace without incrementing the plugin version number.

This is useful for:

  • Bug fixes and patches
  • Performance optimizations
  • Code refactoring
  • Documentation fixes
  • Linting and code quality improvements

When to Use

Use this skill when:

  • You've made non-breaking changes (bug fixes, optimizations, refactoring)
  • The functionality hasn't changed significantly
  • The user-facing behavior is unchanged or only improved
  • There's no need to bump the semantic version

Do NOT use if:

  • You're adding new features → use release-prep instead
  • You're making breaking changes → use release-prep instead
  • The version should be incremented → use version-bumper first

Workflow

Step 1 — Stage and Commit Changes

Ensure all desired code changes are staged in git:

git status  # Verify what will be committed
git add -A  # Stage all changes

Create a descriptive commit message using Conventional Commits format:

fix(plugin-name): brief description
- Detailed change 1
- Detailed change 2

Example commit types:

  • fix: — Bug fixes, patches
  • perf: — Performance improvements, optimization
  • refactor: — Code restructuring without behavior change
  • test: — Test updates
  • docs: — Documentation changes

Key Rule: The commit message should make clear that this is NOT a new feature release (no feat: type).

Step 2 — Push to Remote

Push the commit to the main branch:

git commit -m "<message>" && git push

Verify the push succeeded by checking GitHub.

Step 3 — Publish to Official Marketplace

Run the publish script with --force flag to update the marketplace without version change:

python scripts/publish_plugin.py --force

Important: The --force flag ensures the marketplace version is updated even if the version string in the plugin file hasn't changed.

Read the full file on GitHub · 151 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 151 lines · 40 tokens per session scan A e20ca67eff7b

Subscribe to this mod's changes

publish-no-version-bump is a skill published in the GitHub repository Fu-Jie/openwebui-extensions (307 stars, last pushed 5d ago), licensed MIT. It adds 40 tokens to every session and 980 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.