J

java-docs

by @githubv
4.5(299)

Java型がJavadocコメントで文書化され、ドキュメント作成のベストプラクティスに従っていることを確認します。

javadocjava-documentationapi-documentationcode-commentstechnical-writingGitHub
インストール方法
npx skills add github/awesome-copilot --skill java-docs
compare_arrows

Before / After 効果比較

1
使用前

Javaコードは規範的なJavadocコメントを欠いており、ドキュメントの欠落や品質の低下を招いています。これにより、コードの理解と保守が困難になり、新規メンバーの立ち上がりが遅れ、チームの協力効率が低下します。

使用後

Javadocのベストプラクティスに従うことで、すべてのJava型が適切にドキュメント化されます。これにより、コードの可読性が大幅に向上し、保守コストが削減され、チームの協力がよりスムーズかつ効率的になります。

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.

ユーザーレビュー (0)

レビューを書く

効果
使いやすさ
ドキュメント
互換性

レビューなし

統計データ

インストール数9.7K
評価4.5 / 5.0
バージョン
更新日2026年5月21日
比較事例1 件

ユーザー評価

4.5(299)
5
23%
4
51%
3
23%
2
2%
1
0%

この Skill を評価

0.0

対応プラットフォーム

🔧Claude Code
🔧OpenClaw
🔧OpenCode
🔧Codex
🔧Gemini CLI
🔧GitHub Copilot
🔧Amp
🔧Kimi CLI

タイムライン

作成2026年3月16日
最終更新2026年5月21日