A-Eyes: Skill for Claude Code

.claude/skills/release/SKILL.md

release is a skill for Claude Code from florian-priegnitz/A-Eyes. It costs 25 tokens per session (383 once invoked), scanned A, original, MIT.

A release-preparation skill for the A-Eyes project that updates the version and changelog, checks the code, builds it, commits the changes, and creates a git tag.

In plain words
What is it for?
Use it for patch, minor, or major releases when you want to verify the project and prepare a tagged release without pushing or publishing it.
Why use it?
It organizes the checks and file updates required before publishing a release.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter.

This is florian-priegnitz/A-Eyes's own configuration. It tells Claude Code how to work on A-Eyes 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 A-Eyes configures →

Reuse

Borrowing it

Nothing to install: this file belongs to florian-priegnitz/A-Eyes. 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/florian-priegnitz/A-Eyes/main/.claude/skills/release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/florian-priegnitz/A-Eyes

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/florian-priegnitz/a-eyes/release/github.svg)](https://agentmods.dev/skills/florian-priegnitz/a-eyes/release)
Your own site
<a href="https://agentmods.dev/skills/florian-priegnitz/a-eyes/release"><img src="https://agentmods.dev/badge/skills/florian-priegnitz/a-eyes/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/florian-priegnitz/a-eyes/release"><img src="https://agentmods.dev/badge/skills/florian-priegnitz/a-eyes/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 383 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.00025 $0.00383
Opus 5 $0.00013 $0.00192
Sonnet 5 $0.00005 $0.00077
Haiku 4.5 $0.00003 $0.00038

Measured 9d ago against content hash b13bdb4ca2f2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, 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 9d 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 · 54 lines

What it actually says

Release A-Eyes

Prepare a new release. This skill is user-invocable only (safety).

Steps

  1. Verify clean working tree:

    git status --porcelain
    

    If dirty, stop and report.

  2. Run full quality checks:

    pnpm lint
    pnpm test
    pnpm build
    

    If any fail, stop and report.

  3. Bump version based on $ARGUMENTS (patch/minor/major):

    pnpm version $ARGUMENTS --no-git-tag-version
    
  4. Read the new version from package.json.

  5. Update docs/CHANGELOG.md:

    • Rename [Unreleased] section to [<version>] - <YYYY-MM-DD>
    • Add a new empty [Unreleased] section above it
    • Add comparison link at bottom: [<version>]: https://github.com/<owner>/<repo>/compare/v<prev>...v<version>
  6. Stage and commit:

    git add package.json pnpm-lock.yaml docs/CHANGELOG.md
    git commit -m "Release v<version>"
    git tag "v<version>"
    
  7. Report the release summary but do NOT push or publish. Tell the user to run:

    git push && git push --tags
    pnpm publish  # if applicable
    
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. 9d ago First seen · 54 lines · 25 tokens per session scan A b13bdb4ca2f2

Subscribe to this mod's changes

release is a skill published in the GitHub repository florian-priegnitz/A-Eyes (0 stars, last pushed 4mo ago), licensed MIT. It adds 25 tokens to every session and 383 once invoked, about $0.0001 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-31.