
Minecraft Agent Skills: AI-Powered Development for 26.x and Beyond
minecraft-agent-skills (Jahrome907/minecraft-agent-skills)
Minecraft AI agent skills and dual-target plugin bundle for Codex and Claude Code.
AI coding assistants keep getting better at general tasks, but Minecraft development has its own weird quirks - version-specific APIs, multiloader gymnastics, datapack syntax that changes every snapshot. So this project hands Codex and Claude Code a curated skillset so they stop hallucinating Forge 1.12 patterns when you're targeting 26.2.
What This Project Does
Think of it as a cheat sheet bundle for AI agents. Thirteen focused skills cover the full spectrum: NeoForge and Fabric modding, Paper/Spigot plugins, vanilla datapacks, command scripting, world generation, resource packs, even server operations with WorldEdit and EssentialsX. Each skill encodes current best practices, version-specific gotchas, and working code patterns. The agent reads the relevant skill before it writes a single line, so you get a Paper plugin that actually compiles instead of one that imports Bukkit classes removed in 2018.
Legacy lanes exist for 1.21.x and Forge 1.20.1. The maintainer explicitly preserves those paths rather than forcing everything to the bleeding edge. Real talk, that matters if you're maintaining a long-running server or a modpack stuck on an older loader.
Why You'd Use It Instead of Raw Prompting
Raw prompting works fine for "make me a diamond sword item." It falls apart on "set up a multiloader Architecury project with shared code and separate NeoForge/Fabric entry points, plus a GitHub Action that publishes to Modrinth and CurseForge." That's a real skill in this bundle - minecraft-multiloader and minecraft-ci-release handle it together. The skills also know current pack metadata formats, GameTest structure paths (corrected in the latest release), and MockBukkit testing patterns.
Server admins get minecraft-server-admin, minecraft-worldedit-ops, and minecraft-essentials-ops. But that trio covers hosting, tuning, backups, proxies, safe WorldEdit selections, schematics, brushes, and EssentialsX configuration including economy and moderation. If you run a community server - maybe something like CraftMC with its 60 concurrent players - these skills let an agent write maintenance scripts that won't corrupt your world.
How to Install (Three Ways)
The project adapts to whichever AI host you use. For Codex, copy the .agents/ directory into your project root. There's also a .codex/ compatibility layer if your setup expects that path. For Claude Code, drop the skills into .claude/ or use the plugin route:
claude --plugin-dir ./plugins/minecraft-codex-skillsThe plugin bundle includes .agents/plugins/marketplace.json and the plugins/minecraft-codex-skills/ directory. Keep both under the same project root, open the plugins surface in Codex, and install minecraft-codex-skills. One gotcha: minecraft-imagegen needs a host with image-generation support. Codex provides that natively; other hosts may not.
Uninstalling is clean - delete the copied skill directories or remove the plugin entry. No persistent config files, no injected bytecode, nothing left behind in your Minecraft installation.
Standout Skills Worth Knowing
minecraft-modding covers NeoForge, Fabric, and Forge 1.20.1. And it knows the registration differences, event bus changes, and data-driven systems that shifted between versions. minecraft-datapack handles functions, loot tables, advancements, and predicates with current syntax - predicates in particular trip up agents trained on 1.16 examples. minecraft-world-generation tackles biomes, dimensions, structures, and features using the modern codec/registry system, not the old JSON-only approach.
minecraft-testing wires up JUnit, MockBukkit, and GameTests. The latest release added Paper and MockBukkit examples, which is huge because testing server-side logic without a running server used to mean spinning up a full integration test. Now an agent can generate a unit test that runs in seconds. minecraft-ci-release produces GitHub Actions workflows that build, sign, and publish to Modrinth and CurseForge with proper changelog handling.
Tips, Pitfalls, and What Trips People Up
First: the skills are markdown files read by the agent at runtime. They don't execute code themselves. If your agent host doesn't support loading external skill files, the bundle won't work - check your host's documentation. Second: the Node tooling (npm run sync:skills and npm run check) is only for maintainers updating the bundle. You don't need Node installed to use the skills once copied.
Third: version targeting matters. The skills default to current 26.x development (26.2 as of the v2.5.2 release, Java 25). If you're on 1.21.x or Forge 1.20.1, you need to tell the agent explicitly - "use the 1.21 lane" - or it'll assume latest. Fourth: minecraft-imagegen will silently fail or produce placeholder output on hosts without image generation. Codex handles it; Claude Code currently doesn't.
Finally, this is an MIT-licensed open source project with 128 stars. That's healthy for a niche dev-tool but not a guarantee of long-term maintenance. The maintainer (Jahrome907) pushes updates aligned with Minecraft snapshots - the changelog mentions 26.2 multiloader validation and Node 24-compatible pinned Actions. Check the repo before starting a major project.
Alternatives in the Same Space
There's minecraft-bukkit-pro on MCP.Directory - a single skill focused on Bukkit/Spigot/Paper plugin development with event-driven architecture and performance optimization. It's narrower but deeper on the plugin side. You could run both: the agent-skills bundle for breadth, Bukkit-Pro when you need advanced plugin internals.
For pure modding, some developers maintain private prompt libraries tuned to their codebase. So that works if you're a studio with consistent targets. For solo devs or small teams jumping between modding, plugins, datapacks, and server ops, this bundle's breadth wins. The multiloader and CI skills alone replace hours of YAML wrangling.
One last thing: if you're configuring a server that uses Votifier for vote rewards, our Votifier Tester lets you verify the connection before you ask an agent to wire up the listener. And for whitelist management across environments, the Whitelist Creator generates formatted files instantly.
Lead writer at minecraft.how. Long-time Minecraft player running a small SMP server, testing every build, mod, and seed before writing about it.
Frequently Asked Questions
Does this work with GitHub Copilot or only Codex and Claude Code?
Can I use just one skill without installing the whole bundle?
What Minecraft versions are supported in the latest release?
Is there a cost or license restriction for commercial projects?
How often do the skills get updated for new Minecraft snapshots?
Have a Question or Tip about this Guide?Community Q&A
Ask a question or help other players below. Join the discussion and share your Minecraft tips!


