paper-plugin-dev

paper-plugin-dev is a skill for Claude Code, Codex from ATOMGAMERAGA/Paper-ClaudePlugin. It costs 151 tokens per session (19,344 once invoked), scanned A, original, MIT.

A development guide for Java 21 plugins that run on Paper, a Minecraft server platform based on the Bukkit API.

In plain words
What is it for?
Use it when creating Minecraft server features such as event handlers, commands, inventories, entities, blocks, items, scheduled tasks, or integrations with Paper APIs.
Why use it?
It gives coding agents project setup and API guidance for building plugins compatible with Paper 1.21.x.

Skill for Claude CodeCodex

Part of the paper-plugin-dev plugin — 1 skill 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/atomgameraga/paper-claudeplugin/paper-plugin-dev
Any agent
npx skills add ATOMGAMERAGA/Paper-ClaudePlugin --skill paper-plugin-dev
Clone the repo
git clone --depth 1 https://github.com/ATOMGAMERAGA/Paper-ClaudePlugin

Made for: Claude Code, Codex.

Or install paper-plugin-dev, the plugin that ships this one along with the rest of its 1 skill.

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 paper-plugin-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/atomgameraga/paper-claudeplugin/paper-plugin-dev.svg)](https://agentmods.dev/skills/atomgameraga/paper-claudeplugin/paper-plugin-dev)
Your own site
<a href="https://agentmods.dev/skills/atomgameraga/paper-claudeplugin/paper-plugin-dev"><img src="https://agentmods.dev/badge/skills/atomgameraga/paper-claudeplugin/paper-plugin-dev.svg" alt="Measured on agentmods" height="20"></a>
Per session 151 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 19,344 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 $0.00151 $0.19344
Opus 5 $0.00076 $0.09672
Sonnet 5 $0.00030 $0.03869
Haiku 4.5 $0.00015 $0.01934

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

Security

Grade A, and why

paper-plugin-dev 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.

skills/paper-plugin-dev/SKILL.md · 2,510 lines

How it starts

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

Minecraft Paper Plugin Development — Java 21 & Paper 1.21.x

This skill is a comprehensive reference and rule set that enables Claude to write professional-quality Java 21 plugins for Minecraft Paper servers.


1. PROJECT SETUP

1.1 Gradle (Kotlin DSL) — RECOMMENDED

// settings.gradle.kts
pluginManagement {
    repositories {
        gradlePluginPortal()
        maven("https://repo.papermc.io/repository/maven-public/")
    }
}

// build.gradle.kts
plugins {
    java
    id("com.gradleup.shadow") version "8.3.0"            // Fat JAR (shade)
    id("xyz.jpenilla.run-paper") version "2.3.1"          // Test server
    // If NMS is needed:
    // id("io.papermc.paperweight.userdev") version "2.0.0-beta.19"
}

group = "com.example"
version = "1.0.0"

repositories {
    mavenCentral()
    maven("https://repo.papermc.io/repository/maven-public/")
}

dependencies {
    // API only:
    compileOnly("io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT")
    // If NMS is needed, use instead of API:
    // paperweight.paperDevBundle("1.21.4-R0.1-SNAPSHOT")
}

java {
    toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}

tasks.processResources {
    filteringCharset = "UTF-8"
    filesMatching("plugin.yml") {
        expand("version" to project.version)
    }
}

1.2 Maven

<repositories>
    <repository>
        <id>papermc</id>
        <url>https://repo.papermc.io/repository/maven-public/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>io.papermc.paper</groupId>
        <artifactId>paper-api</artifactId>
        <version>1.21.4-R0.1-SNAPSHOT</version>
        <scope>provided</scope>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.13.0</version>
            <configuration>
                <release>21</release>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-shade-plugin</artifactId>
            <version>3.6.0</version>
        </plugin>
    </plugins>
</build>

Read the full file on GitHub · 2,510 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 · 2,510 lines · 151 tokens per session scan A f5e720dd71bf

Subscribe to this mod's changes

paper-plugin-dev is a skill published in the GitHub repository ATOMGAMERAGA/Paper-ClaudePlugin (4 stars, last pushed 5mo ago), licensed MIT. It adds 151 tokens to every session and 19,344 once invoked, about $0.0008 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 skills, from other repositories

minecraft-plugin-dev

Create, modify, and debug server plugins for current Paper 26.x on Java 25 or legacy Bukkit-derived 1.21.x servers on Java 21. Use for JavaPlugin APIs, events, commands, schedulers, configuration, PDC, and Adventure, not client mods or vanilla datapacks.

Jahrome907/minecraft-agent-skills · 66 tokens

gpt-pro

Operate ChatGPT Pro through Browser Use/Playwright or Computer Use. Use when the user asks Codex to ask GPT Pro, prompt GPT Pro, use ChatGPT Pro, send a prompt to ChatGPT Pro/GPT Pro, or wait for a GPT Pro result. Checks whether Browser Use/Playwright and/or Computer Use are available, asks for a first-run default…

scasella/codex-gpt-pro · 130 tokens

1211-mods-exsample

Minecraft 1.21.1 NeoForge Moddingにおける実践的な実装パターン集。 エネルギー・GUI・ネットワーク・マルチブロック・レシピ・レンダリング・ スペル/AI/スクリプトなどの設計パターンを、16の主要Modの実装から抽出して解説。 Forge 1.20.1 → NeoForge 1.21.1 の移行差分(Data Component・Payload System・ Data Attachment)を加味したNeoForge版パターン集。.

code-onigiri/mc-modding-skill · 135 tokens

libgdx-bitmap-font-text

Use when writing libGDX Java/Kotlin code involving text rendering (BitmapFont, GlyphLayout, BitmapFontCache), NinePatch scalable graphics, DistanceFieldFont, or color markup language. Use when debugging wrong text position, blurry scaled fonts, text measurement, or NinePatch stretching issues.

kyu-n/gdx-claude-skills · 66 tokens

libgdx-android-backend

Use when writing libGDX Java/Kotlin code targeting Android — AndroidApplication launcher, AndroidApplicationConfiguration, AndroidManifest.xml setup, Android lifecycle mapping to libGDX, OpenGL context loss on pause, file access (internal/local/external with permissions), Android input (back button, accelerometer…

kyu-n/gdx-claude-skills · 104 tokens

universal-tween-engine

Use when writing Java code using Universal Tween Engine (package aurelienribon.tweenengine, version 6.3.3) — Tween.to, Tween.from, Tween.set, Tween.call, Tween.mark, Timeline.createSequence, Timeline.createParallel, TweenAccessor, TweenManager, TweenCallback, easing equations (Quad, Cubic, Back, Elastic, Bounce…

kyu-n/gdx-claude-skills · 117 tokens