Tags
Creators
Details
1.4.0+spigot
Compatibility
Changes
CraftyAI 1.4.0 is a major update focused on surroundings scan feedback, stability on newer Minecraft versions, expanded loader compatibility, and a significantly higher free tier token quota.
Surroundings scans and agentic feedback
- Fixed surroundings scans returning only a placeholder message or nothing at all. Crafty now processes the detected entity, mob, block, and biome data from the scan harness and returns a natural chat summary of what was found nearby.
- Fixed an issue where repeated scan triggers during harness execution caused the action loop to abort.
Free tier quota and connectivity
- Raised the free tier token limit from 50,000 to 500,000 tokens per day.
- Decoupled server startup handshakes and heartbeats from daily chat token limits. Servers will no longer fail to connect or auto-mint keys if daily tokens are exhausted.
In-game settings menu
- Fixed a client crash when clicking Save & close on Minecraft 26.x caused by upstream changes to screen fields.
- Reorganized the in-game settings screen (keybind M or via the mod list) into tabs for General, Connection, and Providers.
- Fixed settings persistence issues so configuration changes reliably save across game sessions.
- Added a one-click Auto-Mint Free Key button in the menu header for instant setup without copying keys manually.
Version and loader support
- Added support for Minecraft 26.3 on Fabric and NeoForge, including updates for the revised input handling system.
- Shipped dedicated jars for each target version: 1.20.4, 1.20.5, 1.20.6, 1.21 through 1.21.11, 26.1, 26.2, and 26.3.
- Supported loaders include Fabric, Forge, and NeoForge, as well as the Paper/Spigot server plugin.
Actions and permissions
- Action runs now inspect actual command execution results before planning subsequent steps instead of assuming commands succeeded.
- Fixed OP permission checks in survival mode so operators can run authorized commands without needing creative mode.
- Actions requiring confirmation now pause for player approval, and active runs can be cancelled at any time with
/craftyclient cancel.
Installation
- Client mods go in your
.minecraft/modsfolder. Install only the jar that matches your exact loader and Minecraft version. - Server plugin (
craftyai-spigot-1.4.0.jar) goes in your server'splugins/folder. - Keybinds: M opens the settings menu, V triggers an surroundings scan. Both can be rebound in Minecraft's Controls menu.
- Chat command:
/crafty ask <question>or/crafty status.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:XOFIR6bb:gDh11SDF"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:XOFIR6bb:gDh11SDF"
}

