OpenAllay Skills
This is the public catalog for community-distributed OpenAllay Skills.
Skills are focused instructions for a particular Minecraft task: diagnosing a missing recipe, explaining a machine, following quest progression, searching a guide book, or using an explicitly enabled experimental capability. OpenAllay's core JavaScript object model is intentionally not duplicated here.
Install in Minecraft
Open OpenAllay Settings → Skills → Community, refresh the catalog, select a compatible Skill, and install it. You can also import a Skill directory or ZIP from the same page.
Installed Skills remain ordinary Markdown packages under OpenAllay's configuration directory. They can be inspected and locally overridden without changing this repository.
Repository layout
skills/<skill-name>/SKILL.mdcontains Agent Skills-compatible instructions.references/contains progressively loaded supporting documents.packages/contains deterministic ZIP archives consumed by OpenAllay.package-metadata.jsoncontains player-facing names, descriptions, and publishers displayed before installation.catalog.jsonis the strict schema-2 catalog used by the game.schema/catalog.schema.jsondocuments the catalog contract.
Contributing
Each Skill must:
- solve a genuinely vertical task rather than restating OpenAllay's core JavaScript API;
- use a lowercase kebab-case directory matching its
name; - declare its package version as the quoted string metadata key
openallay/version, matchingpackage-versions.json; - add concise player-facing metadata in
package-metadata.json; - declare only tools that OpenAllay exposes;
- keep executable scripts, network access, arbitrary paths, and permissions out of the package;
- put optional deep material in
references/and tell the Agent when to load it; - avoid benchmark-specific answers or examples that hard-code one test result.
After editing a Skill, bump its version in package-versions.json and run:
node scripts/build-catalog.mjs
node scripts/build-catalog.mjs --check
The quality workflow verifies package structure, deterministic archives, checksums, catalog ordering, and the published JSON schema.
License
OpenAllay Skills are distributed under the MIT License.
No comments yet
Be the first to share your take.