minecraft-agent-skills: Skill for Claude Code

.agents/skills/minecraft-modding/SKILL.md

minecraft-modding is a skill for Claude Code, Codex from Jahrome907/minecraft-agent-skills. It costs 66 tokens per session (4,307 once invoked), scanned A, original, MIT.

A guide to creating and maintaining Minecraft mods for the NeoForge, Fabric, Forge, or Architectury mod loaders across specified Minecraft versions. A mod loader is the software that lets custom game code run.

In plain words
What is it for?
Use it to create, change, debug, or migrate loader-based Minecraft gameplay code and assets for the supported platforms and versions.
Why use it?
It helps avoid mixing incompatible Minecraft versions, Java versions, mappings, and build setups.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions Codex.

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

Reuse

Borrowing it

Nothing to install: this file belongs to Jahrome907/minecraft-agent-skills. 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/Jahrome907/minecraft-agent-skills/main/.agents/skills/minecraft-modding/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Jahrome907/minecraft-agent-skills

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 minecraft-modding

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/jahrome907/minecraft-agent-skills/minecraft-modding"><img src="https://agentmods.dev/badge/skills/jahrome907/minecraft-agent-skills/minecraft-modding.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,307 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. Third-party audits
  • Socket pass 10 May 2026
  • Snyk pass 10 May 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00066 $0.04307
Opus 5 $0.00033 $0.02153
Sonnet 5 $0.00013 $0.00861
Haiku 4.5 $0.00007 $0.00431

Measured 3d ago against content hash 5ec1b6df094e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

minecraft-modding 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/check-build.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.agents/skills/minecraft-modding/SKILL.md · 476 lines

How it starts

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

Minecraft Modding Skill

Overview

This skill guides Codex through developing open-source Minecraft mods. Target platforms:

Platform MC Version Java Build System
NeoForge 26.x current; 1.21.11 examples retained Java 25 current; Java 21 on 1.21.x Gradle + ModDevGradle
Forge 1.20.1 legacy lane Java 17 Gradle + ForgeGradle 6
Fabric 26.x current; 1.21.11 examples retained Java 25 current; Java 21 on 1.21.x Gradle + Fabric Loom
Architectury (multiloader) 26.x or 1.21.x Match Minecraft Gradle + Architectury Loom

Always confirm the platform and Minecraft version from gradle.properties or build.gradle before writing any mod-specific code.

Minecraft 26.1 introduced Java 25 and unobfuscated game executables. For 26.x projects, start from the current loader generator or example mod and preserve its build layout. Do not copy the 1.21.11 mapping, Loom plugin, remapping task, or Java 21 snippets in this skill into a 26.x project. Fabric 26.x uses the non-remapping Loom path and official names; NeoForge 26.x should start from the current NeoForge generator. Treat the detailed API references here as the legacy 1.21.x lane unless a section explicitly says 26.x.

Routing Boundaries

  • Use when: the task is Java/Kotlin mod code, registry/event work, networking, datagen wiring, and loader APIs.
  • Do not use when: the task is command-only vanilla logic (minecraft-commands-scripting) or pure datapacks (minecraft-datapack).
  • Do not use when: the task targets Paper/Bukkit plugins (minecraft-plugin-dev).

1. Identifying the Platform

# NeoForge project signature
grep -r "net.neoforged" gradle.properties build.gradle settings.gradle 2>/dev/null | head -5

# Forge 1.20.1 project signature
grep -r "net.minecraftforge" gradle.properties build.gradle settings.gradle 2>/dev/null | head -5

# Fabric project signature
grep -r "fabric" gradle.properties build.gradle settings.gradle 2>/dev/null | head -5

# Read mod ID and version
cat gradle.properties

Read the full file on GitHub · 476 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 Changed · +31 lines 5ec1b6df094e
  2. 10d ago First seen · 445 lines · 66 tokens per session scan A 4e7d69bf8a9f

Subscribe to this mod's changes

minecraft-modding is a skill published in the GitHub repository Jahrome907/minecraft-agent-skills (135 stars, last pushed 4d ago), licensed MIT. It adds 66 tokens to every session and 4,307 once invoked, about $0.0003 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

minecraft-modpack-server

Host modded Minecraft servers (CurseForge, Modrinth).

NousResearch/hermes-agent · 19 tokens

ashfox

Create, refine, animate, and visually review Minecraft-style block and pixel assets in the ashfox Web Workbench. Use for ashfox modeling and export preparation, not repository development or direct Blockbench editing.

sigee-min/ashfox · 44 tokens

img2blockbench

Reconstruct a Minecraft-style creature, character, prop, or vehicle concept as a native Blockbench model using an optional provider-selected 3D mesh, agent vision, and deterministic compilation. Use when Codex should turn PNG, JPEG, or WebP artwork, optionally accompanied by a textured GLB or GLTF from any image-to-3D…

orca-gamedev/img2blockbench · 106 tokens

setup-fabric

Step 1 of 4 of the Minecraft Java MCP setup. Install Minecraft Java Edition with the Fabric loader — either a single-player client or a headless dedicated server — as the foundation the MCP mod runs inside. Use when the user wants to set up Minecraft Java for AI/MCP control from scratch, or asks how to get Fabric…

chapmanjw/minecraft-java-fabric-claude-plugin · 80 tokens

setup-mod

Step 2 of 4 of the Minecraft Java MCP setup. Download the minecraft-java MCP mod jar and its matching Fabric API jar and install both into the Minecraft mods folder. Use when the user has Minecraft Java with the Fabric loader ready and needs the MCP mod and Fabric API installed.

chapmanjw/minecraft-java-fabric-claude-plugin · 60 tokens

survey-research

Researches real-world buildings, cities, landmarks, vehicles, and mechanisms so they can be represented faithfully as Minecraft structures. Use when a build request references a real or historical thing and the exec-plan or exec-blueprint skill needs accurate proportions, layouts, materials, or details. Part of the…

chapmanjw/minecraft-java-fabric-claude-plugin · 66 tokens