telepresence: Skill for Claude Code

.claude/skills/ship-release/SKILL.md

ship-release is a skill for Claude Code, Codex from telepresenceio/telepresence. It costs 72 tokens per session (2,956 once invoked), scanned A, original, Apache-2.0.

A release procedure for Telepresence, a development tool that connects local programs to services in a remote environment. It continues after a release branch has been prepared, taking the release through checks, documentation, automation, and pull-request merges.

In plain words
What is it for?
It is for completing a Telepresence release, including running CI checks, updating documentation, starting the Releases workflow, pushing tags, and merging release changes.
Why use it?
It organizes the many steps between a prepared branch and a published release, while checking that required tags, branches, and pull requests exist first.

Skill for Claude CodeCodex

Written for Claude Code and Codex: disable-model-invocation in frontmatter, but also agents/openai.yaml present. Also seen: mentions CLAUDE.md.

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 →

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

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,295 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/ship-release/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 ship-release

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/telepresenceio/telepresence/ship-release"><img src="https://agentmods.dev/badge/skills/telepresenceio/telepresence/ship-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,956 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.00072 $0.02956
Opus 5 $0.00036 $0.01478
Sonnet 5 $0.00014 $0.00591
Haiku 4.5 $0.00007 $0.00296

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

Security

Grade A, and why

ship-release 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 10d 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/ship-release/SKILL.md · 253 lines

How it starts

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

ship-release

End-to-end driver for releasing Telepresence. Picks up where prepare-release left off and carries the change through:

  1. Telepresence release PR (CI green + regression green)
  2. Docs PR in ../telepresence.io
  3. Tag push, Releases workflow, merge of both PRs.

This is user-only (disable-model-invocation: true). A release is publicly visible and partially irreversible (tags push to GitHub, Homebrew updates for GA). Claude must never invoke this on its own.

Preconditions to verify before doing anything

Run each check and stop with a clear message if any fails:

  1. CWD is the telepresence repo. git rev-parse --show-toplevel ends in telepresence.
  2. make prepare-release has been run. The current HEAD must carry both vX.Y.Z and rpc/vX.Y.Z annotated tags locally:
    git tag --points-at HEAD | sort
    
    Two entries expected. If the tag list is empty or missing the rpc/ peer, stop — the user needs to run make prepare-release first.
  3. Branch is pushed. Capture tp_branch=$(git branch --show-current), then:
    git ls-remote --exit-code origin "refs/heads/$tp_branch"
    
    If this fails, stop and tell the user to push the branch first.
  4. PR exists. gh pr view "$tp_branch" --json number,state,url,headRefName. If no PR, stop.
  5. Sibling docs repo present. test -d ../telepresence.io && test -d ../telepresence.io/.git. If not, stop.

Capture once and reuse throughout:

  • tp_branch — name of the prepare-release branch.
  • tp_version — pick the non-rpc/ tag from git tag --points-at HEAD (e.g. v2.28.0).
  • docs_versionecho "$tp_version" | sed -E 's/^v([0-9]+\.[0-9]+).*/\1/' (e.g. 2.28).
  • pr_number — from gh pr view.

Phase 1 — Drive the Telepresence release PR

1.1 Verify branch and PR (already done in preconditions)

1.2 Wait for all checks except regression to be green

Use:

gh pr checks "$tp_branch" --json name,state,conclusion

Filter out the rows whose name is exactly regression or node_agent_docker_runtime (neither has been triggered yet — the label triggers them). Match the name exactly: regression_compat is a different job, and it only runs behind the compatibility test label. For every remaining row:

Read the full file on GitHub · 253 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. 10d ago First seen · 253 lines · 72 tokens per session scan A 26d533a8615e

Subscribe to this mod's changes

ship-release is a skill published in the GitHub repository telepresenceio/telepresence (7,295 stars, last pushed yesterday), licensed Apache-2.0. It adds 72 tokens to every session and 2,956 once invoked, about $0.0004 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.