unifi-mcp: Skill for Claude Code

.agents/skills/monorepo-release-pipeline/SKILL.md

myco:monorepo-release-pipeline is a skill for Claude Code from sirkirby/unifi-mcp. It costs 194 tokens per session (6,669 once invoked), scanned C, original, MIT.

A release workflow for a monorepo, a repository containing multiple related projects, including seven separately versioned Python packages and a Node.js/TypeScript worker.

In plain words
What is it for?
Use it to determine which packages changed, create correctly scoped version tags, publish them in dependency order, and check release prerequisites.
Why use it?
It helps prevent releases from using the wrong package versions, tags, dependency order, or release notes.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: installed under .agents/ (shared by several agents).

This is sirkirby/unifi-mcp's own configuration. It tells Claude Code how to work on unifi-mcp 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 unifi-mcp configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/check_pin_alignment.py --api-core-floor-only.

Reuse

Borrowing it

Nothing to install: this file belongs to sirkirby/unifi-mcp. 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/sirkirby/unifi-mcp/main/.agents/skills/monorepo-release-pipeline/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/sirkirby/unifi-mcp

Made for: Claude Code.

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 myco:monorepo-release-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/sirkirby/unifi-mcp/monorepo-release-pipeline/github.svg)](https://agentmods.dev/skills/sirkirby/unifi-mcp/monorepo-release-pipeline)
Your own site
<a href="https://agentmods.dev/skills/sirkirby/unifi-mcp/monorepo-release-pipeline"><img src="https://agentmods.dev/badge/skills/sirkirby/unifi-mcp/monorepo-release-pipeline/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 myco:monorepo-release-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/sirkirby/unifi-mcp/monorepo-release-pipeline"><img src="https://agentmods.dev/badge/skills/sirkirby/unifi-mcp/monorepo-release-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 194 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,669 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. 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: 4 findings, 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 234
    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.
  • high Tool Misuse · line 234
    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.
  • low MCP Rug Pull · line 56
    pip install without ==version installs the latest release, which could include malicious changes.
    Fix: Pin the version: pip install package==1.2.3
  • low MCP Rug Pull · line 313
    pip install without ==version installs the latest release, which could include malicious changes.
    Fix: Pin the version: pip install package==1.2.3
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.00194 $0.06669
Opus 5 $0.00097 $0.03334
Sonnet 5 $0.00039 $0.01334
Haiku 4.5 $0.00019 $0.00667

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

Security

Grade C, and why

myco:monorepo-release-pipeline scanned grade C with 1 finding 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 5d 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf /tmp/wheelcheck && mkdir -p /tmp/wheelcheck
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.agents/skills/monorepo-release-pipeline/SKILL.md · 426 lines

How it starts

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

Monorepo Release Pipeline

The unifi-mcp repo ships seven independently versioned Python packages plus the Node/TypeScript worker app: unifi-core and unifi-mcp-shared live under packages/; unifi-network-mcp, unifi-protect-mcp, unifi-access-mcp, and unifi-api-server live under apps/; unifi-mcp-relay lives under packages/ alongside core and shared; unifi-mcp-worker lives under apps/worker/ and publishes to npm. Each has its own package identity, tag namespace, publish workflow, and release-notes scope. Getting the release sequence wrong leaves downstream packages referencing non-existent PyPI versions or produces contaminated release notes that bleed across package boundaries.

Prerequisites

  • All feature PRs for the release are merged to main.
  • All PRs targeting main must pass the pin-alignment CI gate (automated blocker). This gate runs on every PR and blocks stale transitive dependency pins that would cause fresh installs to fail. See Procedure D, Step 0 for details.
  • Working tree is clean: git status shows nothing staged or modified.
  • Remote is current: git fetch origin && git log origin/main..HEAD shows nothing.
  • PyPI credentials are not stored locally — publishing is handled entirely by GitHub Actions OIDC trusted publishing (no TWINE_PASSWORD, no PYPI_TOKEN).
  • Decide which packages are changing and their new versions before pushing any tag.

Package Map

Package Directory PyPI Name Tag namespace
unifi-core packages/unifi-core/ unifi-core core/v*
unifi-mcp-shared packages/unifi-mcp-shared/ unifi-mcp-shared shared/v*
unifi-mcp-network apps/network/ unifi-network-mcp network/v*
unifi-mcp-protect apps/protect/ unifi-protect-mcp protect/v*
unifi-mcp-access apps/access/ unifi-access-mcp access/v*
unifi-api-server apps/api/ unifi-api-server api/v*
unifi-mcp-relay packages/unifi-mcp-relay/ unifi-mcp-relay relay/v*
unifi-mcp-worker apps/worker/ unifi-mcp-worker (npm, unscoped) worker/v*

Read the full file on GitHub · 426 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. 5d ago Changed · +2 lines eecfc80dc113
  2. 7d ago Changed · +12 lines 8cab9aab1f5f
  3. 13d ago First seen · 412 lines · 194 tokens per session scan C 3bb9a75a33e7

Subscribe to this mod's changes

myco:monorepo-release-pipeline is a skill published in the GitHub repository sirkirby/unifi-mcp (809 stars, last pushed 2d ago), licensed MIT. It adds 194 tokens to every session and 6,669 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). 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

github-ops

GitHub repository operations, automation, and management. Issue triage, PR management, CI/CD operations, release management, and security monitoring using the gh CLI. Use when the user wants to manage GitHub issues, PRs, CI status, releases, contributors, stale items, or any GitHub operational task beyond simple git…

JunMystery/Agent-Guidance-Python · 71 tokens

github-release-management

Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.

ruvnet/RuView · 27 tokens

agent-github-modes

Agent skill for github-modes - invoke with $agent-github-modes.

ruvnet/ruflo · 21 tokens

releasepr

Adopt, configure, run, or troubleshoot compozy/releasepr in a consuming repository, including Actions, beta/stable/legacy plans, notes, dry-runs, and publication. Excludes pr-release internals and general versioning advice.

compozy/compozy · 53 tokens

gitlab-devops

GitLab DevOps operations — issues, merge requests, CI/CD pipelines, repository browsing, labels, milestones, releases, and wiki management. Use when querying GitLab project status, monitoring pipeline executions, browsing repository files, creating issues for network findings, opening merge requests for config…

automateyournetwork/netclaw · 67 tokens

release-changelog-harness

Chooses ecosystem-native release and changelog tooling (Changesets, Melos, release-plz) plus binary distribution (GitHub Release tarballs, install.sh) when the product is an executable. Use for release CI, install.sh, versioning, CHANGELOGs, shipping MCP/CLI without clone, or meta repos that only ship skills via npx…

Arenukvern/mcp_flutter · 84 tokens