guide-recap

guide-recap is a skill for Claude Code from FlorianBruniaux/claude-code-plugins. It costs 50 tokens per session (1,875 once invoked), scanned A, original, MIT.

A release-summary tool that turns CHANGELOG entries into announcements and recap posts in French and English.

In plain words
What is it for?
It is for creating LinkedIn, Twitter/X, newsletter, and Slack content after releases or for weekly updates.
Why use it?
It removes the need to rewrite the same release information for each channel and language.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the release-automation plugin — 3 skills, 1 command shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/florianbruniaux/claude-code-plugins/guide-recap
Any agent
npx skills add FlorianBruniaux/claude-code-plugins --skill guide-recap
Clone the repo
git clone --depth 1 https://github.com/FlorianBruniaux/claude-code-plugins

Made for: Claude Code.

Or install release-automation, the plugin that ships this one along with the rest of its 3 skills, 1 command.

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 guide-recap

README.md
[![agentmods](https://agentmods.dev/badge/skills/florianbruniaux/claude-code-plugins/guide-recap.svg)](https://agentmods.dev/skills/florianbruniaux/claude-code-plugins/guide-recap)
Your own site
<a href="https://agentmods.dev/skills/florianbruniaux/claude-code-plugins/guide-recap"><img src="https://agentmods.dev/badge/skills/florianbruniaux/claude-code-plugins/guide-recap.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,875 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00050 $0.01875
Opus 5 $0.00025 $0.00937
Sonnet 5 $0.00010 $0.00375
Haiku 4.5 $0.00005 $0.00187

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

Security

Grade A, and why

guide-recap 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 2d 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.

plugins/release-automation/skills/guide-recap/SKILL.md · 220 lines

How it starts

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

Guide Recap

Generate social media content from CHANGELOG.md entries. Produces 8 outputs by default (4 formats x 2 languages).

When to Use

  • After running /release to create social announcements
  • Weekly to summarize multiple releases
  • Before posting on LinkedIn, Twitter/X, newsletter, or Slack

Usage

/guide-recap latest              # Latest released version
/guide-recap v3.20.5             # Specific version
/guide-recap week                # Current week (Monday to today)
/guide-recap week 2026-01-27     # Specific week (Monday to Sunday)

Flags

Flag Effect Default
--interactive Guide mode: choose angle, audience, highlight Off (auto-draft)
--format=X Single format: linkedin, twitter, newsletter, slack All 4 formats
--lang=X Single language: fr, en Both FR + EN
--save Save output to [project-docs]/social-posts/ Display only
--force Generate even if only maintenance entries Skip low-score

Workflow (7 Steps)

Step 1: Parse Input

Parse $ARGUMENTS to determine mode:

Input Mode Target
latest Single version First ## [X.Y.Z] after [Unreleased]
vX.Y.Z or X.Y.Z Single version Exact version match
week Week range Monday of current week -> today
week YYYY-MM-DD Week range That Monday -> following Sunday

If no argument or invalid argument, display usage and exit.

Step 2: Extract CHANGELOG Entries

Read CHANGELOG.md from the project root.

Single version:

  1. Find line matching ## [{version}]
  2. Extract all content until next ## [ line
  3. Parse ### Added, ### Changed, ### Fixed sections

Week range:

  1. Collect all ## [X.Y.Z] - YYYY-MM-DD entries where date falls in range
  2. Parse all sections from all matching versions

Error: version not found -> List last 5 versions, suggest latest. Error: week has no entries -> Show date of last release, suggest that version.

Read the full file on GitHub · 220 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. 2d ago First seen · 220 lines · 50 tokens per session scan A d14928b51d55

Subscribe to this mod's changes

guide-recap is a skill published in the GitHub repository FlorianBruniaux/claude-code-plugins (40 stars, last pushed 4d ago), licensed MIT. It adds 50 tokens to every session and 1,875 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

release

Cut a FastMCP release end to end. Use when the maintainer says "cut a release", "prep a patch", "ship 4.x.y", or asks what a release would contain. Covers the notes preview, the title pun, the docs changelog PR that must land before the tag, the tag itself, the publish fan-out, and verifying gofastmcp.com actually…

PrefectHQ/fastmcp · 83 tokens

create-milestone

Create a GitHub milestone for an upcoming release. Suggests the next version based on the latest release, gathers all merged PRs and closed issues since that release, presents a draft with two tables (Issues and PRs) for user approval, then creates the milestone and assigns all approved items.

agentic-community/mcp-gateway-registry · 64 tokens

update-project-version

Update the NeMo Relay project version across Cargo, Node, and lockfiles without leaving release surfaces out of sync.

NVIDIA/NeMo-Relay · 26 tokens

ship

Release pipeline for already-done local work. Dispatches /ground-state pre-flight, runs the project test suite, drafts a commit message, pushes, and opens a PR with a structured verification summary. Use when local changes are ready to hand off to review — e.g. 'ship this', 'push and open a PR', 'release this work'.…

griffinwork40/agent-afk · 93 tokens

harn-release

Use for Harn release prep, version bumps, publishing, tags, and release notes.

burin-labs/harn · 22 tokens

release

Cut a new release of ra-mcp. Determines the next version from the commit history since the last tag, bumps pyproject.toml, commits, tags, and pushes. Use when: "make a release", "cut a release", "release", "bump version", "tag a new version", "publish a new version".

AI-Riksarkivet/ra-mcp · 70 tokens