skills/allaymc/allaymc-plugin-dev/SKILL.md
Build, update, and troubleshoot AllayMC plugins in Java or other JVM languages. Use when creating a new AllayMC plugin, migrating an existing plugin to a new Allay API version, wiring commands/events/tasks/config, or setting up Gradle and plugin metadata (plugin.json or AllayGradle plugin block).
npx skillsauth add aiskillstore/marketplace allaymc-plugin-devInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create AllayMC plugins using the official Java template and the Allay API. Keep the workflow aligned with the latest Allay API and docs from the bundled references, and default to the template's Java 21 toolchain unless the user requests otherwise.
AllayMC currently does not use annotations such as JSpecify's @Nullable/@NonNull. Unless a method's Javadoc explicitly states that a parameter or return value may be null, treat it as non-null.
references/JavaPluginTemplate for new plugins.build.gradle.kts and plugin main class against the template.group, description, and version in build.gradle.kts.group aligned with the package of the plugin main class.allay {} block:
api to the target Allay API version.plugin.entrance to the fully qualified main class (or short suffix as used in the template).authors and website.plugin.json per the docs in references/Allay/docs/tutorials/create-your-first-plugin.md.org.allaymc.api.plugin.Plugin.onLoad for lightweight setup.onEnable for registrations and runtime wiring.onDisable for cleanup.plugin.entrance/plugin.json entrance consistent.isReloadable and implement reload.references/Allay/api/src/main/java/org/allaymc/api/plugin/Plugin.java.references/Allay/docs/tutorials/register-commands.md.references/Allay/docs/tutorials/register-event-listeners.md.references/Allay/docs/tutorials/schedule-tasks.md.references/Allay/docs/tutorials/use-config.md.references/Allay/docs/tutorials/use-permission.md.references/Allay/docs/tutorials/use-i18n.md.references/Allay/docs/tutorials/use-forms.md.references/Allay/docs/tutorials/persistent-data-container.md.references/Allay/docs/tutorials/block-api.md and references/Allay/docs/tutorials/item-api.md../gradlew runServer for local testing when the AllayGradle plugin is configured../gradlew shadowJar to build the shaded jar.build/libs/*-shaded.jar into the Allay server plugins directory.plugin.entrance (or plugin.json entrance), api/api_version, and the jar location.allay.api version to a valid Allay API release.group and the compiled class name.references/JavaPluginTemplate
build.gradle.kts for Gradle + AllayGradle conventionsREADME.md for template initialization stepssrc/main/java/.../JavaPluginTemplate.java for lifecycle structurereferences/AllayGradle
references/Allay
api/src/main/java/org/allaymc/apidocs/tutorials/*.mddevelopment
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.