OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add pluginagentmarketplace/custom-plugin-java --skill java-fundamentals
Master core Java programming - syntax, OOP, collections, streams, and exception handling
npx skills add pluginagentmarketplace/custom-plugin-java --skill java-fundamentals
Master core Java programming with production-quality patterns.
This skill covers Java fundamentals including syntax, OOP, collections, streams API, and exception handling for Java 8-21.
Use when you need to:
| Need | Use | Reason |
|---|---|---|
| Indexed access | ArrayList | O(1) random access |
| Unique elements | HashSet | O(1) contains |
| Sorted unique | TreeSet | O(log n) sorted |
| Key-value pairs | HashMap | O(1) get/put |
| Problem | Cause | Solution |
|---|---|---|
| NullPointerException | Null reference | Use Optional |
| ConcurrentModificationException | Modify during iteration | Iterator.remove() |
| ClassCastException | Wrong type | Use generics |
Skill("java-fundamentals")