vibetags: Skill for Claude Code

.claude/skills/vibetags-usage/SKILL.md

vibetags-usage is a skill for Claude Code, Codex from PIsberg/vibetags. It costs 289 tokens per session (21,016 once invoked), scanned A, original, MIT.

A setup and usage guide for VibeTags, a Java annotation processor that reads source-code annotations and creates guardrail files for AI coding platforms. The annotations are removed at compile time, so they do not run in the application.

In plain words
What is it for?
Use it to add VibeTags annotations, configure Maven, set up AI guardrails, and work with annotations such as @AILocked, @AIContext, and @AITestDriven.
Why use it?
It explains the two required VibeTags packages and how to configure them. This avoids setups where annotations fail to compile or compile without generating the expected files.

Skill for Claude CodeCodex

Written for Claude Code and Codex: installed under .claude/, but also reads ~/.codex or $CODEX_HOME. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is PIsberg/vibetags's own configuration. It tells Claude Code and Codex how to work on vibetags 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 vibetags configures →

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/me/myproject.

Reuse

Borrowing it

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

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 vibetags-usage

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/pisberg/vibetags/vibetags-usage"><img src="https://agentmods.dev/badge/skills/pisberg/vibetags/vibetags-usage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 289 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 21,016 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.00289 $0.21016
Opus 5 $0.00144 $0.10508
Sonnet 5 $0.00058 $0.04203
Haiku 4.5 $0.00029 $0.02102

Measured yesterday against content hash 713b35a06b1d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

vibetags-usage 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 yesterday.

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.claude/skills/vibetags-usage/SKILL.md · 1,665 lines

How it starts

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

VibeTags Usage Guide

VibeTags is a compile-time Java annotation processor that generates AI platform-specific guardrail files from source annotations. Zero runtime overhead — all annotations have RetentionPolicy.SOURCE.

Quick Setup

1. Add the two artifacts

VibeTags ships as two artifacts and you need both. Depending on only one of them is the most common "VibeTags is broken" report, and neither failure produces a useful error:

Artifact Belongs on Gives you If you omit it
vibetags-annotations the compile classpath the 44 @AI* annotation types you write in source cannot find symbol on every @AI*
vibetags-processor the annotation-processor path the processor that reads them and writes the guardrail files compiles green, generates nothing

Maven. Annotations as an ordinary dependency, processor on annotationProcessorPaths:

<dependencies>
    <dependency>
        <groupId>se.deversity.vibetags</groupId>
        <artifactId>vibetags-annotations</artifactId>
        <version>1.3.2</version>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <annotationProcessorPaths>
                    <path>
                        <groupId>se.deversity.vibetags</groupId>
                        <artifactId>vibetags-processor</artifactId>
                        <version>1.3.2</version>
                    </path>
                </annotationProcessorPaths>
            </configuration>
        </plugin>
    </plugins>
</build>

Do not declare vibetags-processor as a plain <scope>provided</scope> dependency instead of the block above. Since JDK 23, javac no longer discovers processors sitting on the class path, so that shape compiles cleanly and writes no files: no error, no warning. If the processor has to stay on the class path, add <proc>full</proc> to the compiler plugin's configuration.

Read the full file on GitHub · 1,665 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. yesterday Changed · +15 lines 713b35a06b1d
  2. 2d ago Changed f455ae0cf9a1
  3. 6d ago Changed ef019b0929cf
  4. 6d ago Changed d1242beb1d77
  5. 10d ago First seen · 1,650 lines · 289 tokens per session scan A 7170c05ff399

Subscribe to this mod's changes

vibetags-usage is a skill published in the GitHub repository PIsberg/vibetags (15 stars, last pushed yesterday), licensed MIT. It adds 289 tokens to every session and 21,016 once invoked, about $0.0014 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.

Related

Other skills, from other repositories

spring-boot-development

Comprehensive Spring Boot development skill covering auto-configuration, dependency injection, REST APIs, Spring Data, security, and enterprise Java applications.

manutej/luxor-claude-marketplace · 31 tokens

spring-boot-engineer

Generates Spring Boot 3.x configurations, creates REST controllers, implements Spring Security 6 authentication flows, sets up Spring Data JPA repositories, and configures reactive WebFlux endpoints. Use when building Spring Boot 3.x applications, microservices, or reactive Java applications; invoke for Spring Data…

eric861129/SKILLS_All-in-one · 91 tokens

java-architect

Use when building, configuring, or debugging enterprise Java applications with Spring Boot 3.x, microservices, or reactive programming. Invoke to implement WebFlux endpoints, optimize JPA queries and database performance, configure Spring Security with OAuth2/JWT, or resolve authentication issues and async processing…

eric861129/SKILLS_All-in-one · 67 tokens

java-boilerplate

Gera automaticamente getters, setters, construtores, toString, equals e hashCode para classes Java. Triggers on: /java-boilerplate, 'gerar métodos java', 'criar getters setters'.

chidekina/aria-superpowers · 48 tokens

opencli-sitemap-author

Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.

jackwener/OpenCLI · 67 tokens

omh-code-review

This is a Hermes-native code-review workflow skill.

rlaope/oh-my-hermes · 46 tokens