skill3 CLAUDE.md

skill3 CLAUDE.md is an instructions file for coding agents from PIsberg/skill3. It costs 2,365 tokens per session, scanned A, original, Apache-2.0.

Repository instructions for Skill3, a Java command-line tool that gathers recent technical documentation and uses it to create and check an agent skill. It focuses on changes newer than a target model's knowledge cutoff.

In plain words
What is it for?
Understanding Skill3's purpose, locating its usage and architecture guides, and developing or reviewing its documentation-discovery and skill-generation pipeline.
Why use it?
They explain the project's key design rules and point developers to the right specifications and development documents. This helps preserve topic-independent documentation discovery and avoid hardcoded topic behavior.

Instructions file

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 instructions/pisberg/skill3/claude-md
Clone the repo
git clone --depth 1 https://github.com/PIsberg/skill3

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 skill3 CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/pisberg/skill3/claude-md.svg)](https://agentmods.dev/instructions/pisberg/skill3/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/pisberg/skill3/claude-md"><img src="https://agentmods.dev/badge/instructions/pisberg/skill3/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,365 This file is loaded in full into every session.
When invoked 2,365 The same file — it is already loaded in full.
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 $0.02365 $0.02365
Opus 5 $0.01182 $0.01182
Sonnet 5 $0.00473 $0.00473
Haiku 4.5 $0.00236 $0.00236

Measured 3d ago against content hash 6972328dbebd, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

skill3 CLAUDE.md 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 3d 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.md · 141 lines

How it starts

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

Skill3 — agent briefing

Java 25 CLI that relearns a technical skill for an AI agent: it discovers documentation, scores it for authority and freshness against a target model's knowledge cutoff, synthesizes an Agent Skills SKILL.md with an LLM, and vets both the input corpus and the output skill with NVIDIA SkillSpector.

The two invariants everything else serves

  1. A skill is a post-cutoff delta, not a primer. The target model already knows the topic up to its cutoff; the pipeline gathers only what changed after it. Re-explaining known fundamentals wastes the whole mechanism.
  2. Discovery is topic-agnostic. The model plans the searches. There is no per-topic logic anywhere, and adding some — a hardcoded query suffix, a per-skill branch — is the most common way to break this project without failing a test.

Where things are

I need… Read
What it does, flag by flag docs/USAGE.md
Install, keys, build docs/INSTALL.md
How it is structured, and why docs/ARCHITECTURE.md
The full behavioural spec docs/SPEC.md
Build gates, releases, guardrails docs/DEVELOPMENT.md
Generated structure diagrams docs/diagrams/
Roadmap docs/PLAN.md

Working on it

./gradlew build          # compile + test + Error Prone, PMD, SpotBugs, ArchUnit, JaCoCo gate
./gradlew test           # tests only
./gradlew diagrams       # regenerate docs/diagrams/*.svg from the source
./gradlew run --args="learn --help"

The build runs on a Gradle-provisioned JDK 25 toolchain, so it does not depend on JAVA_HOME. Coverage is gated at 75% instruction / 65% branch.

Things that will bite you

  • Never hand-edit between <!-- VIBETAGS-START --> and <!-- VIBETAGS-END --> in this file, llms.txt or llms-full.txt. Every compile rewrites that region from the @AI* annotations in the Java source. Text outside the markers — including everything above — survives. To change a guardrail, change the annotation.
  • The guardrails below are the safety tier only. Per-element detail lives in .claude/rules/ and loads when you open a matching source file.
  • Layering is enforced, not suggested. An ArchUnit test asserts that model depends on nothing internal, that only Skill3App touches cli, and that the sub-packages stay acyclic. A convenient import in model fails the build.
  • Untrusted data has a defined path. Scraped pages and --input-file content are secret-redacted and scanned before synthesis, fenced as DATA in the prompt, and the output is scanned again. Do not add a shortcut that reaches the model earlier.
  • Absence of findings is never asserted. When SkillSpector is unavailable the scans are skipped and nothing is gated — "not scanned" must never be reported as "clean".

Read the full file on GitHub · 141 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. 3d ago First seen · 141 lines · 2,365 tokens per session scan A 6972328dbebd

Subscribe to this mod's changes

skill3 CLAUDE.md is an instructions file published in the GitHub repository PIsberg/skill3 (5 stars, last pushed 7d ago), licensed Apache-2.0. It adds 2,365 tokens to every session, about $0.0118 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.

Related

Other instructions, from other repositories

vibetags CLAUDE.md

Claude Code instructions for PIsberg/vibetags, covering claude.md, tier-1 invariants, build and test, scoping and hygiene and reference docs (read on demand).

PIsberg/vibetags · 3,044 tokens

vibetags AGENTS.md

AGENTS.md instructions for PIsberg/vibetags, covering vibetags — agent instructions, auto-generated ai rules, generated by vibetags | https://github.com/pisberg/vibetags, do not edit manually and locked files (do not edit).

PIsberg/vibetags · 2,597 tokens

vibetags copilot-instructions.md

Copilot instructions for PIsberg/vibetags, covering github copilot instructions, generated by vibetags | https://github.com/pisberg/vibetags, auto-generated by vibetags. do not edit manually, locked files — do not modify and security audit requirements.

PIsberg/vibetags · 1,730 tokens

vibetags GEMINI.md

Gemini CLI instructions for PIsberg/vibetags, covering gemini.md, auto-generated ai rules, generated by vibetags | https://github.com/pisberg/vibetags, do not edit manually and locked files (do not edit).

PIsberg/vibetags · 1,207 tokens

vibetags com-example-compliance-GdprService.instructions.md

Instructions for PIsberg/vibetags, covering copilot instructions for gdprservice, regulatory compliance, rules for class gdprservice, rules for method exportuserdata and rules for method deletealluserdata.

PIsberg/vibetags · 195 tokens

vibetags com-example-config-ParallelTestSettings.instructions.md

Instructions for PIsberg/vibetags, covering copilot instructions for paralleltestsettings and strict test isolation.

PIsberg/vibetags · 105 tokens