Borrowing it
Nothing to install: this file belongs to zarfld/presonus-studiolive-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.
curl -O https://raw.githubusercontent.com/zarfld/presonus-studiolive-mcp/master/.github/Skills/dependency-ci-hygiene/SKILL.mdgit clone --depth 1 https://github.com/zarfld/presonus-studiolive-mcpWrote 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.
[](https://agentmods.dev/skills/zarfld/presonus-studiolive-mcp/dependency-ci-hygiene)<a href="https://agentmods.dev/skills/zarfld/presonus-studiolive-mcp/dependency-ci-hygiene"><img src="https://agentmods.dev/badge/skills/zarfld/presonus-studiolive-mcp/dependency-ci-hygiene/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.
<a href="https://agentmods.dev/skills/zarfld/presonus-studiolive-mcp/dependency-ci-hygiene"><img src="https://agentmods.dev/badge/skills/zarfld/presonus-studiolive-mcp/dependency-ci-hygiene.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00698 |
| Opus 5 | $0.00000 | $0.00349 |
| Sonnet 5 | $0.00000 | $0.00140 |
| Haiku 4.5 | $0.00000 | $0.00070 |
Grade A, and why
dependency-ci-hygiene 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 146 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Dependency and CI Hygiene
Purpose
Use this skill to keep the TypeScript monorepo buildable, testable, reproducible, and publishable.
This skill is lower priority than routing and safety, but release quality depends on it.
Applies to
package.jsonpnpm-lock.yaml- workspace packages
- TypeScript config
- Vitest config
- CI workflows
- npm package metadata
- MCP SDK version
- adapter dependency versions
Required commands
Run or verify the equivalent commands:
pnpm install --frozen-lockfile
pnpm build
pnpm test
pnpm lint
pnpm typecheck
pnpm inventory
pnpm traceability
If a command does not exist, report that explicitly and recommend whether to add it.
Required dependency audit table
| Package | Current | Target/latest | Used by | Risk | Action |
|---|
Do not upgrade dependencies blindly. Classify risk first.
Risk categories
| Risk | Meaning |
|---|---|
api-drift |
New version may change public API. |
esm-cjs |
Upgrade may affect module system. |
test-fragility |
Test runner/plugin versions may be mismatched. |
security |
Known vulnerability or unsafe dependency. |
runtime |
Could break MCP runtime behavior. |
low |
Safe patch/minor update likely. |
Required workflow
- Inspect workspace package metadata.
- Identify mismatched major versions.
- Identify floating versions that should be pinned before release.
- Identify stale dependencies that are safe to defer.
- Run build/test/typecheck where possible.
- If updating, update one dependency group at a time.
- Record before/after versions and test results.
- Do not combine dependency upgrades with feature implementation unless unavoidable.
MCP SDK rule
For @modelcontextprotocol/sdk:
- check current API usage,
- check server start path,
- check tool registration path,
- run MCP tool inventory after upgrade,
- prefer pinning a known-good version for release.
Do not assume all 1.x versions are behaviorally identical.
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.
- 11d ago First seen · 146 lines · 0 tokens per session scan A f5af194e8cda
dependency-ci-hygiene is a skill published in the GitHub repository zarfld/presonus-studiolive-mcp (1 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 698 tokens. 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-31.
Other skills, from other repositories
ci
Configure Ginkgo for continuous integration — the recommended CLI flag set and the rationale for each flag (-r -p --randomize-all --randomize-suites --fail-on-pending --fail-on-empty --keep-going --cover --race --trace --json-report --timeout --poll-progress-after/-interval), invoking via go run to pin the CLI to…
migrate-vstest-to-mtp
Use this skill before answering, planning, or editing whenever .NET tests or CI are switching from VSTest to Microsoft.Testing.Platform (MTP), or an MTP migration behaves differently. Triggers include "switch from VSTest"; MSTest/NUnit/xUnit MTP enablement; OutputType=Exe only for test projects in…
playwright-ci
Production-ready CI/CD configurations for Playwright — GitHub Actions, GitLab CI, CircleCI, Azure DevOps, Jenkins, Docker, parallel sharding, reporting, code coverage, and global setup/teardown.
ci-maintenance-workflow
CI and GitHub Actions maintenance workflows — fix a failing test from a CI URL, fix a failing smoke test, add @pytest.mark.slow markers to slow tests, or review a PR against agent-checkable standards. Use when user asks to fix a failing test, fix a smoke test, mark slow tests, or review a PR. Trigger when the user…
playwright-testing
E2E testing with Playwright - Page Objects, cross-browser, CI/CD.
test-setup
Scaffold the test framework and CI/CD pipeline for the project's engine. Creates the tests/ directory structure, engine-specific test runner configuration, and GitHub Actions workflow. Run once during Technical Setup phase before the first sprint begins.