mockserver-monorepo: Skill for OpenCode

.opencode/skills/dependabot-snyk-pr-management/SKILL.md

dependabot-snyk-pr-management is a skill for OpenCode from mock-server/mockserver-monorepo. It costs 56 tokens per session (3,273 once invoked), scanned A, original, Apache-2.0.

Instructions for handling Dependabot and Snyk pull requests, which propose dependency updates or fixes for known security vulnerabilities.

In plain words
What is it for?
Use it to manage dependency-update and security-fix pull requests, check their authors and CI results, review their scope, and issue supported bot commands.
Why use it?
It adds checks before merging, rebasing, or closing these automated changes so broken builds, unsafe changes, or incompatible Java and Jakarta packages are less likely to slip through.

Skill for OpenCode

Written for OpenCode: installed under .opencode/. Also seen: mentions AGENTS.md; mentions 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,969 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/dependabot-snyk-pr-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 dependabot-snyk-pr-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/mock-server/mockserver-monorepo/dependabot-snyk-pr-management/github.svg)](https://agentmods.dev/skills/mock-server/mockserver-monorepo/dependabot-snyk-pr-management)
Your own site
<a href="https://agentmods.dev/skills/mock-server/mockserver-monorepo/dependabot-snyk-pr-management"><img src="https://agentmods.dev/badge/skills/mock-server/mockserver-monorepo/dependabot-snyk-pr-management/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 dependabot-snyk-pr-management

Your own site · 80×15
<a href="https://agentmods.dev/skills/mock-server/mockserver-monorepo/dependabot-snyk-pr-management"><img src="https://agentmods.dev/badge/skills/mock-server/mockserver-monorepo/dependabot-snyk-pr-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,273 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 pass 7 Sept 2026
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.00056 $0.03273
Opus 5 $0.00028 $0.01636
Sonnet 5 $0.00011 $0.00655
Haiku 4.5 $0.00006 $0.00327

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

Security

Grade A, and why

dependabot-snyk-pr-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 12d 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/dependabot-snyk-pr-management/SKILL.md · 363 lines

How it starts

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

Dependabot and Snyk PR Management

Interact with Dependabot and Snyk pull requests for dependency upgrades and security fixes.

When to Use

Use when:

  • User asks to "rebase Dependabot PR", "merge Dependabot PR", or similar
  • User asks to "update dependencies", "fix Snyk alerts", or similar
  • Investigating failed dependency upgrade PRs
  • Reviewing security vulnerability PRs from Snyk or Dependabot

Safety Rules

IMPORTANT: Before merging, rebasing, or closing any PR:

  1. Verify PR author is app/dependabot or a Snyk bot
  2. Check CI status (all checks must pass for merge)
  3. Verify javax/jakarta compatibility (see section below)
  4. Review changed dependencies and scope
  5. Never use git add . — stage explicit files only
  6. Never force-push to bot-owned branches without explicit user approval

Dependabot Commands

Dependabot responds to commands in PR comments. All commands are invoked via @dependabot <command>.

Response behavior: Dependabot reacts with 👍 and may take several minutes to process the command.

Common Commands

Command Purpose When to Use
@dependabot rebase Rebase PR onto latest base branch When PR is behind master or needs to pick up recent fixes
@dependabot recreate Close and recreate PR from scratch When PR is in a bad state or has conflicts
@dependabot merge Merge PR (if all checks pass) To auto-merge via Dependabot (alternative: gh pr merge --auto)
@dependabot squash and merge Squash and merge PR Preferred for dependency bumps to keep history clean
@dependabot cancel merge Cancel a previously requested merge If you change your mind
@dependabot close Close PR without merging To reject an upgrade
@dependabot reopen Reopen a closed PR To reconsider a previously rejected upgrade
@dependabot ignore this dependency Never upgrade this dependency For permanently pinned dependencies
@dependabot ignore this major version Skip this major version When major version requires code changes
@dependabot ignore this minor version Skip this minor version When minor version has issues
@dependabot ignore this patch version Skip this patch version When patch version has issues
@dependabot show <dep> ignore conditions Show current ignore rules for dependency Before removing ignore rules
@dependabot unignore <dep> Remove all ignore rules for dependency Re-enable upgrades for a specific dependency

Read the full file on GitHub · 363 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. 12d ago First seen · 363 lines · 56 tokens per session scan A aec0f07e8c66

Subscribe to this mod's changes

dependabot-snyk-pr-management is a skill published in the GitHub repository mock-server/mockserver-monorepo (4,969 stars, last pushed today), licensed Apache-2.0. It adds 56 tokens to every session and 3,273 once invoked, about $0.0003 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.

Related

Other skills, from other repositories