mockserver-monorepo: Skill for OpenCode

.opencode/skills/release-management/SKILL.md

release-management is a skill for OpenCode from mock-server/mockserver-monorepo. It costs 78 tokens per session (1,674 once invoked), scanned A, original, Apache-2.0.

A release-preparation workflow for the MockServer project. It examines the changelog, project version, release pipeline, documentation, and Git tags to recommend the next version under Semantic Versioning.

In plain words
What is it for?
Use it to classify a release as major, minor, or patch, check release readiness, verify required settings, and list the parameters for the Buildkite release pipeline.
Why use it?
It helps prevent releasing the wrong version or starting a release when the unreleased changes are incomplete or unclear.

Skill for OpenCode

Written for OpenCode: installed under .opencode/.

This is mock-server/mockserver-monorepo's own configuration. It tells OpenCode how to work on mockserver-monorepo itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mockserver-monorepo configures →

About the project

MockServer is a testing server and proxy that imitates APIs, records and changes network traffic, and deliberately introduces failures. It is for developers testing applications against unavailable dependencies, debugging requests, and checking how systems handle degraded services across several network protocols. The catalogue add-ons help operate, configure, and test MockServer.

mock-server/mockserver-monorepo · 4,965 stars · on GitHub · mock-server.com

Reuse

Borrowing it

Nothing to install: this file belongs to mock-server/mockserver-monorepo. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/mock-server/mockserver-monorepo/master/.opencode/skills/release-management/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/mock-server/mockserver-monorepo

Made for: OpenCode.

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 release-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/mock-server/mockserver-monorepo/release-management.svg)](https://agentmods.dev/skills/mock-server/mockserver-monorepo/release-management)
Your own site
<a href="https://agentmods.dev/skills/mock-server/mockserver-monorepo/release-management"><img src="https://agentmods.dev/badge/skills/mock-server/mockserver-monorepo/release-management.svg" alt="Measured on agentmods" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,674 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.
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.00078 $0.01674
Opus 5 $0.00039 $0.00837
Sonnet 5 $0.00016 $0.00335
Haiku 4.5 $0.00008 $0.00167

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

Security

Grade A, and why

release-management 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 7d 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.

.opencode/skills/release-management/SKILL.md · 156 lines

How it starts

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

Prepare a MockServer Release

Use this workflow before triggering the mockserver-release Buildkite pipeline.

Required Inputs

Inspect these sources every time:

  • changelog.md — especially the ## [Unreleased] section
  • mockserver/pom.xml — current development -SNAPSHOT version
  • .buildkite/release-pipeline.yml — supported release parameters and automated steps
  • docs/operations/release-process.md — operator-facing release guidance
  • Git tags matching mockserver-X.Y.Z — latest numeric release is the authoritative old-version

If AWS access is available, also verify the required secrets exist and contain the expected keys without printing secret values.

Version Recommendation Rules

Recommend the next release from the latest numeric mockserver-X.Y.Z tag, not from the current -SNAPSHOT alone.

Apply these rules in order:

  1. Major release — if any unreleased changelog bullet is explicitly marked BREAKING:
  2. Minor release — if there are meaningful bullets under Added or Changed and no BREAKING: markers
  3. Patch release — if there are only meaningful bullets under Fixed
  4. Block release — if the unreleased changelog is empty, vague, or not ready to publish

Definitions:

  • A "meaningful bullet" is a non-empty - ... entry
  • BREAKING: should appear at the start of an unreleased bullet when a major version bump is intended

Derived values:

  • release-version: recommended SemVer release
  • next-version: release-version patch increment plus -SNAPSHOT
  • old-version: latest numeric mockserver-X.Y.Z tag
  • release-type: full unless the user explicitly wants a partial rerun
  • create-versioned-site: yes for major or minor releases, no for patch releases

Readiness Checks

Validate each of these before declaring the release ready:

  1. changelog.md has meaningful unreleased bullets
  2. changelog.md does not already contain a section for the proposed release-version
  3. mockserver/pom.xml is currently on an X.Y.Z-SNAPSHOT version
  4. The pipeline supports the required outputs for this release:
    • Maven Central core artifacts
    • mockserver-maven-plugin
    • Docker Hub and AWS ECR Public images
    • mockserver-node
    • mockserver-client
    • Helm
    • Javadoc
    • SwaggerHub / OpenAPI
    • website
    • JSON Schema
    • PyPI
    • RubyGems
    • GitHub Release
  5. Required secrets are present:
    • mockserver-build/sonatype
    • mockserver-build/dockerhub
    • mockserver-build/pypi
    • mockserver-build/rubygems
    • mockserver-release/gpg-key
    • mockserver-release/github-token
    • mockserver-release/totp-seed
    • mockserver-release/npm-token
    • mockserver-release/swaggerhub
    • mockserver-release/website-role

Read the full file on GitHub · 156 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. 7d ago First seen · 156 lines · 78 tokens per session scan A 1352990589ab

Subscribe to this mod's changes

release-management is a skill published in the GitHub repository mock-server/mockserver-monorepo (4,965 stars, last pushed yesterday), licensed Apache-2.0. It adds 78 tokens to every session and 1,674 once invoked, about $0.0004 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.