unifi-mcp: Skill for Claude Code

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

myco:monorepo-release-pipeline is a skill for Claude Code from devjourney/unifi-mcp. It costs 194 tokens per session (5,871 once invoked), scanned C, a copy of myco:monorepo-release-pipeline, MIT.

A release procedure for a monorepo—a single code repository containing multiple independently published packages and applications. It covers deciding which packages changed, assigning the right version tags, and releasing them in dependency order.

In plain words
What is it for?
Use it to prepare and publish releases for the unifi-mcp packages and worker application after changes are merged and checks pass.
Why use it?
It helps prevent one package from receiving another package’s version information or being released before a dependency it needs exists.

Skill for Claude Code

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

This is devjourney/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 uv run python scripts/live_smoke.py --server network --phase safe.

Reuse

Borrowing it

Nothing to install: this file belongs to devjourney/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/devjourney/unifi-mcp/main/.agents/skills/monorepo-release-pipeline/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/devjourney/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/devjourney/unifi-mcp/monorepo-release-pipeline/github.svg)](https://agentmods.dev/skills/devjourney/unifi-mcp/monorepo-release-pipeline)
Your own site
<a href="https://agentmods.dev/skills/devjourney/unifi-mcp/monorepo-release-pipeline"><img src="https://agentmods.dev/badge/skills/devjourney/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/devjourney/unifi-mcp/monorepo-release-pipeline"><img src="https://agentmods.dev/badge/skills/devjourney/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 5,871 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.
Origin 98% copy Near-identical to another mod 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.05871
Opus 5 $0.00097 $0.02936
Sonnet 5 $0.00039 $0.01174
Haiku 4.5 $0.00019 $0.00587

Measured 11d ago against content hash d00e5e14ef4c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 11d 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

This is a copy

98% identical to myco:monorepo-release-pipeline — 35 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

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

How it starts

The opening of the file, as written. The whole thing — 393 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 · 393 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. 11d ago First seen · 393 lines · 194 tokens per session scan C d00e5e14ef4c

Subscribe to this mod's changes

myco:monorepo-release-pipeline is a skill published in the GitHub repository devjourney/unifi-mcp (0 stars, last pushed 1mo ago), licensed MIT. It adds 194 tokens to every session and 5,871 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). It is 98% identical to myco:monorepo-release-pipeline, differing in 35 lines, and is treated as a copy.