project-starter-template-es-ai: Skill for Claude Code

.claude/skills/release/SKILL.md

release is a skill for Claude Code from brayandiazc/project-starter-template-es-ai. It costs 95 tokens per session (1,475 once invoked), scanned A, original, MIT.

A release workflow for turning the pending Unreleased section of a changelog into a dated version. It follows Semantic Versioning, which uses major, minor, and patch numbers to describe the size and compatibility impact of changes.

In plain words
What is it for?
Use it to prepare a software release, update changelog comparison links, create a version commit, and add an annotated Git tag.
Why use it?
It provides a consistent checklist for checking the repository, choosing a version, updating the changelog, and creating the corresponding Git commit and tag.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: names the AskUserQuestion tool.

This is brayandiazc/project-starter-template-es-ai's own configuration. It tells Claude Code how to work on project-starter-template-es-ai 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 project-starter-template-es-ai configures →

Reuse

Borrowing it

Nothing to install: this file belongs to brayandiazc/project-starter-template-es-ai. 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/brayandiazc/project-starter-template-es-ai/main/.claude/skills/release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/brayandiazc/project-starter-template-es-ai

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/brayandiazc/project-starter-template-es-ai/release/github.svg)](https://agentmods.dev/skills/brayandiazc/project-starter-template-es-ai/release)
Your own site
<a href="https://agentmods.dev/skills/brayandiazc/project-starter-template-es-ai/release"><img src="https://agentmods.dev/badge/skills/brayandiazc/project-starter-template-es-ai/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 release

Your own site · 80×15
<a href="https://agentmods.dev/skills/brayandiazc/project-starter-template-es-ai/release"><img src="https://agentmods.dev/badge/skills/brayandiazc/project-starter-template-es-ai/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,475 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.00095 $0.01475
Opus 5 $0.00048 $0.00737
Sonnet 5 $0.00019 $0.00295
Haiku 4.5 $0.00010 $0.00147

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

Security

Grade A, and why

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 4d 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/release/SKILL.md · 80 lines

How it starts

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

Corta una versión siguiendo Keep a Changelog y Semantic Versioning (ver CHANGELOG.md y CONTRIBUTING.md).

Automatización: al fusionar developmain, el workflow .github/workflows/release.yml detecta la versión fechada más reciente del CHANGELOG y, si no tiene tag, publica el tag y el release de GitHub solo. Esta skill prepara el corte (mover Unreleased → X.Y.Z con fecha y elegir la versión SemVer); el tag/release manual solo hace falta si el workflow no está activo.

Pasos

  1. Precondiciones. Verifica que el árbol esté limpio (git status) y que estés en la rama correcta según CONTRIBUTING.md: con Git Flow el release sale de develop hacia main, salvo un hotfix, que se corta en la propia hotfix/* (ver abajo); sin develop, desde main. Si hay cambios sin commit, detente y avisa.
  2. Leer lo pendiente. Toma las entradas de la sección ## [Unreleased] de CHANGELOG.md. Si está vacía, no hay nada que publicar: dilo y detente.
  3. Proponer la versión. Lee la última versión publicada (tag v* o CHANGELOG) y propone el bump SemVer según el contenido: cambios incompatibles → major; solo Added/Changedminor; solo Fixed/Securitypatch. Deja que la persona confirme o corrija con AskUserQuestion.
  4. Actualizar el CHANGELOG. Mueve las entradas de Unreleased a una nueva sección ## [X.Y.Z] - YYYY-MM-DD (fecha de hoy), deja Unreleased con sus categorías vacías y actualiza los enlaces de comparación del pie del archivo.
  5. Sincronizar la versión del manifiesto. Si el stack tiene un archivo que declara versión, súbela a X.Y.Z en el mismo commit — si no, el proyecto publica v0.4.0 con el manifiesto diciendo 0.1.0. Busca el que aplique y actualiza también su lockfile si el gestor lo regenera:
    • package.json (+ package-lock.json / pnpm-lock.yaml) · *.gemspec o lib/**/version.rb · Cargo.toml (+ Cargo.lock) · pyproject.toml · composer.json · pubspec.yaml · build.gradle · VERSION.
    • Si no hay ninguno (proyecto sin manifiesto versionado), dilo y sigue: el CHANGELOG es la única fuente de la versión.
  6. Commit, sin tag. Crea el commit chore(release): vX.Y.Z (con la coautoría de IA de docs/conventions/ai-agents.md) en una rama chore/corte-vX.Y.Z — recuerda que git-guardrails.sh no deja commitear directo en develop. NO crees ni publiques el tag aquí. release.yml solo publica si la versión no tiene tag: si lo creas tú, el workflow la da por publicada, no crea el release de GitHub, y encima el tag apunta al commit de la rama en vez de al merge en main.
  7. Llevarlo a producción. PR de la rama de corte → develop, y después PR developmain. Al fusionar en main, release.yml crea el tag vX.Y.Z sobre el merge y publica el release con las notas de esa sección del CHANGELOG.
  8. Solo si el workflow no está activo (proyecto sin Actions, o release.yml borrado): entonces sí, tag anotado a mano y gh release create vX.Y.Z --title "vX.Y.Z" --notes "<sección del CHANGELOG>".

Read the full file on GitHub · 80 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. 4d ago Changed · +46 lines 62105308ab0a
  2. 11d ago First seen · 34 lines · 95 tokens per session scan A 74b84e3aaafd

Subscribe to this mod's changes

release is a skill published in the GitHub repository brayandiazc/project-starter-template-es-ai (15 stars, last pushed 5d ago), licensed MIT. It adds 95 tokens to every session and 1,475 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-09-01.

Related

Other skills, from other repositories