Ensures Java classes, methods, and fields are documented with Javadoc comments following best practices for summaries, @param, @return, @throws, @see, generics, and deprecations.
From awesome-copilotnpx claudepluginhub ctr26/dotfiles --plugin awesome-copilotThis skill uses the workspace's default tool permissions.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Uses ctx7 CLI to fetch current library docs, manage AI coding skills (install/search/generate), and configure Context7 MCP for AI editors.
@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.