llmops-demo-ts: Skill for Claude Code

.claude/skills/bump-dependencies/SKILL.md

bump-dependencies is a skill for Claude Code from yu-iskw/llmops-demo-ts. It costs 56 tokens per session (1,982 once invoked), scanned A, original, Apache-2.0.

A dependency-upgrade procedure for pnpm workspaces, which are repositories containing several related packages. It updates declared package versions and keeps the lockfile consistent while checking for supply-chain problems.

In plain words
What is it for?
Use it to upgrade or refresh npm package versions in the root project or workspace packages, then install and verify the result.
Why use it?
It prevents dependency manifests and the lockfile from drifting apart, and helps distinguish a real version upgrade from an update that only changes the lockfile.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is yu-iskw/llmops-demo-ts's own configuration. It tells Claude Code how to work on llmops-demo-ts 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 llmops-demo-ts configures →

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is cd ../.. && pnpm install.

Reuse

Borrowing it

Nothing to install: this file belongs to yu-iskw/llmops-demo-ts. 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/yu-iskw/llmops-demo-ts/main/.claude/skills/bump-dependencies/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/yu-iskw/llmops-demo-ts

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 bump-dependencies

README.md
[![agentmods](https://agentmods.dev/badge/skills/yu-iskw/llmops-demo-ts/bump-dependencies/github.svg)](https://agentmods.dev/skills/yu-iskw/llmops-demo-ts/bump-dependencies)
Your own site
<a href="https://agentmods.dev/skills/yu-iskw/llmops-demo-ts/bump-dependencies"><img src="https://agentmods.dev/badge/skills/yu-iskw/llmops-demo-ts/bump-dependencies/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 bump-dependencies

Your own site · 80×15
<a href="https://agentmods.dev/skills/yu-iskw/llmops-demo-ts/bump-dependencies"><img src="https://agentmods.dev/badge/skills/yu-iskw/llmops-demo-ts/bump-dependencies.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 1,982 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.00056 $0.01982
Opus 5 $0.00028 $0.00991
Sonnet 5 $0.00011 $0.00396
Haiku 4.5 $0.00006 $0.00198

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

Security

Grade A, and why

bump-dependencies 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 6d 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.

.claude/skills/bump-dependencies/SKILL.md · 164 lines

How it starts

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

Bump dependencies

Apply the following scope and intent:

$ARGUMENTS

Monorepo conventions

  • Use pnpm from the repository root unless you are only running npm-check-updates inside a package directory; then return to the root for pnpm install.
  • After any change to a workspace or root package.json, run pnpm install at the root so pnpm-lock.yaml stays consistent.

Workspace packages and manifests

Directory pnpm --filter name Manifest
packages/common @llmops-demo/common packages/common/package.json
packages/agents @llmops-demo-ts/agents packages/agents/package.json
packages/backend @llmops-demo-ts/backend packages/backend/package.json
packages/frontend @llmops-demo-ts/frontend packages/frontend/package.json
(root) package.json

Why pnpm up -r -L may not change package.json

Caret ranges (^x.y.z) often already allow the latest compatible release. pnpm can update the lockfile without rewriting package.json. To raise declared versions in a manifest, use targeted pnpm add, npm-check-updates, or manual edits plus root pnpm install.

Commands by package

@llmops-demo/common

pnpm --filter @llmops-demo/common add @langchain/core@latest @google/genai@latest
pnpm --filter @llmops-demo/common add -D jest@latest
cd packages/common && npx npm-check-updates -u
cd ../.. && pnpm install
cd packages/common && npx npm-check-updates -u -f '/@langchain/'
cd ../.. && pnpm install

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

Subscribe to this mod's changes

bump-dependencies is a skill published in the GitHub repository yu-iskw/llmops-demo-ts (6 stars, last pushed 10d ago), licensed Apache-2.0. It adds 56 tokens to every session and 1,982 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-09-04.

Related

Other skills, from other repositories