Source profileQuality 54/100

github/awesome-copilot/skills/java-docs/SKILL.md

java-docs

Ensure that Java types are documented with Javadoc comments and follow best practices for documentation.

Source repository stars
37,126
Declared platforms
0
Static risk flags
0
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Ensure that Java types are documented with Javadoc comments and follow best practices for documentation.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/github/awesome-copilot --skill "skills/java-docs"
    Safe inspection promptEditorial

    Inspect the Agent Skill "java-docs" from https://github.com/github/awesome-copilot/blob/9933dcad5be5caeb288cebcd370eeeb2fc2f1685/skills/java-docs/SKILL.md at commit 9933dcad5be5caeb288cebcd370eeeb2fc2f1685. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    The source does not provide enough structured workflow evidence for a step-by-step guide.

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score54/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars37,126SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guidecatalog recordEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    github/awesome-copilot
    Skill path
    skills/java-docs/SKILL.md
    Commit
    9933dcad5be5caeb288cebcd370eeeb2fc2f1685
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    Java Documentation (Javadoc) Best Practices

    • Public and protected members should be documented with Javadoc comments.
    • It is encouraged to document package-private and private members as well, especially if they are complex or not self-explanatory.
    • The first sentence of the Javadoc comment is the summary description. It should be a concise overview of what the method does and end with a period.
    • Use @param for method parameters. The description starts with a lowercase letter and does not end with a period.
    • Use @return for method return values.
    • Use @throws or @exception to document exceptions thrown by methods.
    • Use @see for references to other types or members.
    • Use {@inheritDoc} to inherit documentation from base classes or interfaces.
      • Unless there is major behavior change, in which case you should document the differences.
    • Use @param <T> for type parameters in generic types or methods.
    • Use {@code} for inline code snippets.
    • Use <pre>{@code ... }</pre> for code blocks.
    • Use @since to indicate when the feature was introduced (e.g., version number).
    • Use @version to specify the version of the member.
    • Use @author to specify the author of the code.
    • Use @deprecated to mark a member as deprecated and provide an alternative.

    Alternatives

    Compare before choosing