api-contract-review
Review REST API contracts for HTTP semantics, versioning, backward compatibility, and response consistency. Use when user asks "review API", "check endpoints",…
Triage and categorize GitHub issues with priority labels. Use when user says "triage issues", "check issues", "review open issues", or during regular maintenance of GitHub issue backlog.
$ npx -y skills add decebals/claude-code-java --skill issue-triage --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/issue-triageContext preview
The summary Claude sees to decide when to auto-load this skill.
Triage and categorize GitHub issues with priority labels. Use when user says "triage issues", "check issues", "review open issues", or during regular maintenance of GitHub issue backlog.
name: issue-triage description: Triage and categorize GitHub issues with priority labels. Use when user says "triage issues", "check issues", "review open issues", or during regular maintenance of GitHub issue backlog. license: MIT
Efficiently triage GitHub issues for Java projects with categorization and prioritization.
**Recommended**: GitHub MCP server configured for optimal token usage
claude mcp add github --transport http \ https://api.githubcopilot.com/mcp/
**Alternative**: Use `gh` CLI (less token-efficient)
**With GitHub MCP** (recommended):
Tool: list_issues
Parameters: {
"state": "open",
"sort": "updated",
"per_page": 10
}**With gh CLI**:
gh issue list --state open --limit 10 --json number,title,labels,body,url
Analyze issue content and assign category:
**Indicators**:
**Actions**:
**Example**:
Issue #234: "NPE when loading plugin from directory" - Stack trace: ✅ - Reproduction steps: ✅ - Version info: ✅ → Label: bug, high-priority
**Indicators**:
**Actions**:
**Indicators**:
**Actions**:
**Search for similar issues**:
**Actions**:
**Indicators**:
**Actions**:
**Criteria**:
**Actions**:
**Examples**:
- "SQL injection vulnerability in plugin loader" - "All plugins fail to load after upgrade" - "ClassLoader leak causes OutOfMemoryError"
**Criteria**:
**Actions**:
**Examples**:
- "Plugin dependencies not resolved correctly" - "Hot reload crashes application"
**Criteria**:
**Actions**:
**Examples**:
- "Improve error message for invalid plugin" - "Add plugin lifecycle listener"
**Criteria**:
**Actions**:
**Examples**:
- "Add more examples to README" - "Typo in JavaDoc"
Thanks for reporting this issue! To investigate further, could you provide: - Java version (java -version) - Library version - Minimal reproducible example - Full stack trace (if applicable) - Configuration files (if relevant) This will help us diagnose and fix the issue faster.
Thanks for reporting! This is being tracked in #123. Closing as duplicate. Feel free to add any additional context or information to the original issue.
Thank you for the suggestion. After consideration, this doesn't align with the project's current direction because [reason]. Consider [alternative approach] instead, which might better serve your use case. If you feel strongly about this, please open a discussion in our [forum/discussions] to gather community feedback.
Confirmed! This is a valid bug. I've added it to milestone X.Y and labeled it as [priority]. Contributions welcome if anyone wants to tackle it! Reproduction verified with: - Java 17 - Version 3.10.0 - Ubuntu 22.04
Interesting idea! This aligns with our goal of [project goal]. I've labeled this as 'enhancement' for further discussion. Community feedback welcome - upvote with 👍 if you'd find this useful. Some questions to consider: - [question 1] - [question 2]
To achieve this, you can [solution]. Example: \`\`\`java [code example] \`\`\` Also check our documentation: [link] Let me know if this solves your issue!
# Process multiple issues in one prompt "Triage issues #234-243, categorize and prioritize"
**Savings**: ~60%
Agent Skills for Java projects, following the open Agent Skills specification This project is not affiliated with Anthropic.
Review REST API contracts for HTTP semantics, versioning, backward compatibility, and response consistency. Use when user asks "review API", "check endpoints",…
Analyze Java project architecture at macro level - package structure, module boundaries, dependency direction, and layering. Use when user asks "review…
Generate changelogs from git commits. Use when user says "generate changelog", "update changelog", "what changed since last release", or before preparing a new…
Clean Code principles (DRY, KISS, YAGNI), naming, function design and readability. Use when code is hard to read, with long methods, unclear names, duplication…
Review Java concurrency code for thread safety, race conditions, deadlocks, and modern patterns (Virtual Threads, CompletableFuture, @Async). Use when user…
Common design patterns with Java examples (Factory, Builder, Strategy, Observer, Decorator, etc.). Use when user asks "implement pattern", "use factory",…