From java-development
Ensures Java classes, methods, and fields are documented with Javadoc comments following best practices for summaries, @param, @return, @throws, @see, generics, and deprecations.
npx claudepluginhub passelin/marketplace-test --plugin java-developmentThis skill uses the workspace's default tool permissions.
- Public and protected members should be documented with Javadoc comments.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides MCP server integration in Claude Code plugins via .mcp.json or plugin.json configs for stdio, SSE, HTTP types, enabling external services as tools.
@param for method parameters. The description starts with a lowercase letter and does not end with a period.@return for method return values.@throws or @exception to document exceptions thrown by methods.@see for references to other types or members.{@inheritDoc} to inherit documentation from base classes or interfaces.
@param <T> for type parameters in generic types or methods.{@code} for inline code snippets.<pre>{@code ... }</pre> for code blocks.@since to indicate when the feature was introduced (e.g., version number).@version to specify the version of the member.@author to specify the author of the code.@deprecated to mark a member as deprecated and provide an alternative.