Librechat-Mobile: Skill for Claude Code

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

release-highlights is a skill for Claude Code from garfiec/Librechat-Mobile. It costs 94 tokens per session (1,930 once invoked), scanned A, original, MIT.

A workflow for adding a manually written Highlights section to an existing GitHub release. A release is a published version of a project, and the section summarizes its pull requests in reader-friendly language.

In plain words
What is it for?
Use it to read every pull request in a release range, draft highlights in the project’s style, request approval for unclear wording, and safely insert only that section.
Why use it?
It adds context above automatically generated release notes without replacing the generated details or important build information.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool.

This is garfiec/Librechat-Mobile's own configuration. It tells Claude Code how to work on Librechat-Mobile 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 Librechat-Mobile configures →

Reuse

Borrowing it

Nothing to install: this file belongs to garfiec/Librechat-Mobile. 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/garfiec/Librechat-Mobile/develop/.claude/skills/release-highlights/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/garfiec/Librechat-Mobile

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 release-highlights

README.md
[![agentmods](https://agentmods.dev/badge/skills/garfiec/librechat-mobile/release-highlights.svg)](https://agentmods.dev/skills/garfiec/librechat-mobile/release-highlights)
Your own site
<a href="https://agentmods.dev/skills/garfiec/librechat-mobile/release-highlights"><img src="https://agentmods.dev/badge/skills/garfiec/librechat-mobile/release-highlights.svg" alt="Measured on agentmods" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,930 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.00094 $0.01930
Opus 5 $0.00047 $0.00965
Sonnet 5 $0.00019 $0.00386
Haiku 4.5 $0.00009 $0.00193

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

Security

Grade A, and why

release-highlights 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/insert_highlights.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/release-highlights/SKILL.md · 165 lines

How it starts

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

Release Highlights

Adds a # Highlights section between the badge row and ## What's Changed on a published release. Nothing else about the release changes.

The invariant

Everything from ## What's Changed down is generated once, at publish time, and cannot be rebuilt. It carries the compare link, the New Contributors block, the build provenance attestation ID, and the CI run URL. Those come from the publish-time workflow run. If they are overwritten they are gone.

So: never regenerate a release body. Never call gh release edit --notes with prose you composed. Never let gh release create --generate-notes near an existing release. The only supported write is scripts/insert_highlights.py, which fetches the live body, splits it at the marker, and reassembles it with the tail byte-identical — then re-fetches and proves the tail did not change, printing a restore command if it did.

If the script refuses, that refusal is the feature. Do not work around it by editing the body by hand.

Steps

1. Resolve the target

  • No argument → the newest release: gh release list --repo garfiec/Librechat-Mobile --limit 1
  • Explicit tags → exactly those, in the order given.
  • --backfill → every release with no Highlights section. Enumerate them and confirm before touching any. There are releases going back to v0.1.1 that predate both calver and the Switchboard rename; they are almost never what the user meant. --since <tag> sets a floor. Backfill never runs implicitly.

Refuse a tag that already has a Highlights section. Replacing one is a separate, explicit request, and only then does --replace get passed.

2. Read the release and every PR in it

gh release view "$TAG" --repo garfiec/Librechat-Mobile --json body -q .body

Extract the PR numbers from the What's Changed list, then read every one of them:

for p in $PRS; do
  echo "=== #$p"
  gh pr view "$p" --json title,body -q '.title + "\n" + (.body | .[0:800])'
done

Read the full file on GitHub · 165 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. 8d ago First seen · 165 lines · 94 tokens per session scan A a07e4ba5463b

Subscribe to this mod's changes

release-highlights is a skill published in the GitHub repository garfiec/Librechat-Mobile (88 stars, last pushed yesterday), licensed MIT. It adds 94 tokens to every session and 1,930 once invoked, about $0.0005 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.