telepresence: Skill for Claude Code

.claude/skills/changelog-entry/SKILL.md

changelog-entry is a skill for Claude Code, Codex from telepresenceio/telepresence. It costs 60 tokens per session (741 once invoked), scanned A, original, Apache-2.0.

A changelog helper that adds a release-note entry to CHANGELOG.yml, the YAML file that records software changes, and regenerates related documentation.

In plain words
What is it for?
Use it to record a bug fix, feature, security change, or other behaviour change, including its title, description, and optional documentation or image link.
Why use it?
It removes the need to remember the changelog format and update generated documentation separately. It also helps keep the entry under the correct unreleased version.

Skill for Claude CodeCodex

Written for Claude Code and Codex: PostToolUse hook event, but also agents/openai.yaml present. Also seen: reads .claude/ paths.

This is telepresenceio/telepresence's own configuration. It tells Claude Code and Codex how to work on telepresence 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 telepresence configures →

About the project

Telepresence is a development tool that connects a local computer to a remote Kubernetes or OpenShift cluster, allowing a locally running service to receive cluster traffic and use the remote environment. Developers use it to test and debug services with their usual tools without repeatedly rebuilding and deploying containers. The catalogue add-ons help operate Telepresence connections and workflows.

telepresenceio/telepresence · 7,296 stars · on GitHub · telepresence.io

Reuse

Borrowing it

Nothing to install: this file belongs to telepresenceio/telepresence. 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/telepresenceio/telepresence/release/v2/.claude/skills/changelog-entry/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/telepresenceio/telepresence

Made for: Claude Code, Codex.

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 changelog-entry

README.md
[![agentmods](https://agentmods.dev/badge/skills/telepresenceio/telepresence/changelog-entry/github.svg)](https://agentmods.dev/skills/telepresenceio/telepresence/changelog-entry)
Your own site
<a href="https://agentmods.dev/skills/telepresenceio/telepresence/changelog-entry"><img src="https://agentmods.dev/badge/skills/telepresenceio/telepresence/changelog-entry/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 changelog-entry

Your own site · 80×15
<a href="https://agentmods.dev/skills/telepresenceio/telepresence/changelog-entry"><img src="https://agentmods.dev/badge/skills/telepresenceio/telepresence/changelog-entry.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 741 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.00060 $0.00741
Opus 5 $0.00030 $0.00370
Sonnet 5 $0.00012 $0.00148
Haiku 4.5 $0.00006 $0.00074

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

Security

Grade A, and why

changelog-entry 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.

.claude/skills/changelog-entry/SKILL.md · 52 lines

How it starts

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

changelog-entry

Adds an entry to CHANGELOG.yml following the schema documented in the file header, then regenerates the derived documentation.

Inputs to gather (in order)

  1. type — one of bugfix, feature, security, change. If the user describes the change but does not pick a type, infer it:
    • "fixes/resolves/closes a bug" → bugfix
    • "adds support for / introduces / new" → feature
    • "CVE / vulnerability / hardens" → security
    • anything else affecting behavior → change
  2. title — short (≤80 chars), sentence-cased, no trailing period.
  3. body — 2-3 sentences. This field is HTML, not markdown. Use <code>...</code> for code, <a href="...">...</a> for links. Prefer YAML's >- folded scalar so line wrapping doesn't leak literal newlines.
  4. docs (optional) — path to a docs page under docs/ if the entry deserves a "Learn more" link.
  5. image (optional) — path under the release-notes directory if there's a visual.

Steps

  1. Read the top of CHANGELOG.yml. The first items: entry is the current/upcoming version.
  2. If it has date: (TBD), append the new entry to its notes: array.
  3. If the top item is already dated (a shipped release), insert a NEW - version: <next> block above it with date: (TBD) and the single new note. Ask the user for the next version number — do not invent it.
  4. Match existing indentation exactly (2 spaces). YAML is whitespace-sensitive.
  5. After saving, run make docs-files to regenerate docs/release-notes.md, docs/release-notes.mdx, and docs/variables.yml. (The PostToolUse hook in .claude/settings.json will also try to do this; running it explicitly here makes the success/failure visible.)
  6. Show the user the diff: git diff CHANGELOG.yml docs/release-notes.md docs/release-notes.mdx docs/variables.yml.

Schema reference (from CHANGELOG.yml header)

items:
  - version: 2.28.0
    date: (TBD)              # or YYYY-MM-DD
    notes:
      - type: bugfix         # bugfix | feature | security | change
        title: Short title
        body: >-
          Two or three sentences describing the change and why it
          is noteworthy.  This is HTML.
        docs: optional/path
        image: optional/path

Read the full file on GitHub · 52 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 52 lines · 60 tokens per session scan A e68ec5579d72

Subscribe to this mod's changes

changelog-entry is a skill published in the GitHub repository telepresenceio/telepresence (7,296 stars, last pushed 2d ago), licensed Apache-2.0. It adds 60 tokens to every session and 741 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.