by decebals
Reusable AI development infrastructure for Java projects, optimized for Claude Code
# Add to your Claude Code skills
git clone https://github.com/decebals/claude-code-javaGuides for using ai agents skills like claude-code-java.
Last scanned: 5/13/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-13T06:48:26.292Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}claude-code-java is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by decebals. Reusable AI development infrastructure for Java projects, optimized for Claude Code. It has 723 GitHub stars.
Yes. claude-code-java passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/decebals/claude-code-java" and add it to your Claude Code skills directory (see the Installation section above).
claude-code-java is primarily written in Shell. It is open-source under decebals on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-code-java against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
Agent Skills for Java projects, following the open Agent Skills specification
This project is not affiliated with Anthropic.
A collection of reusable skills (structured markdown files that give an AI agent domain knowledge and workflows), plus project templates, MCP server configurations, and setup scripts.
The skills follow the Agent Skills specification, an open format read by a growing number of agents. They are developed and tested with Claude Code, and every skill is validated against the spec in CI.
Who is this for? Java developers who want consistent, high-quality AI assistance for common tasks like code reviews, testing, commits, and architecture decisions.
An agent picks a skill from its name and description and nothing else. With eighteen of them the descriptions compete, and the failure is quiet: the wrong skill loads and answers plausibly anyway, so nobody notices.
scripts/eval-routing.sh runs a set of prompts against the same list an agent receives and
reports where one lands somewhere other than expected. It found a real defect the first
time it ran: "this class does too much, split it" reached clean-code rather than
solid-principles. Sharpening three descriptions took the set from 17 of 18 prompts routed
correctly to 20 of 20.
Every skill has at least one case, enforced by scripts/validate-skills.sh so the cases
cannot fall behind the skills. The check runs against any OpenAI-compatible endpoint,
including a local model. See docs/SCRIPTS.md.
AI-powered development workflows with focus on:
git clone https://github.com/decebals/claude-code-java.git ~/projects/claude-code-java
cd ~/projects/claude-code-java
chmod +x scripts/*.sh
./scripts/setup-project.sh ~/projects/your-java-project
This creates .claude/ with symlinked skills, generates CLAUDE.md, and configures settings.
Prefer manual setup? Just copy or symlink the skills you want:
mkdir -p your-project/.claude/skills
# Copy specific skills
cp -r ~/projects/claude-code-java/skills/java-code-review your-project/.claude/skills/
# Or symlink all skills
ln -s ~/projects/claude-code-java/skills/* your-project/.claude/skills/
cd ~/projects/your-java-project
claude
# Skills load automatically based on context, or invoke directly:
> /git-commit
> /java-code-review
Skills are automatically loaded by Claude Code based on context.
| Skill | Trigger Examples |
|---|---|
| git-commit | "commit these changes", "create commit" |
| changelog-generator | "generate changelog", "what changed since release" |
| issue-triage | "triage issues", "check open issues" |
| Skill | Trigger Examples |
|---|---|
| java-code-review | "review this code", "check this PR" |
| api-contract-review | "review API", "check REST endpoints" |
| concurrency-review | "check thread safety", "review async code" |
| performance-smell-detection | "check performance", "find slow code" |
| test-quality | "add tests", "improve coverage" |
| maven-dependency-audit | "check dependencies", "audit deps" |
| security-audit | "security review", "check OWASP", "vulnerabilities" |
| Skill | Trigger Examples |
|---|---|
| architecture-review | "review architecture", "check package structure" |
| solid-principles | "check SOLID", "single responsibility" |
| design-patterns | "use factory pattern", "implement strategy" |
| clean-code | "clean this code", "refactor" |
| Skill | Trigger Examples |
|---|---|
| spring-boot-patterns | "create controller", "Spring Boot help" |
| java-migration | "upgrade to Java 21", "migrate from Java 8" |
| jpa-patterns | "N+1 problem", "LazyInitializationException" |
| logging-patterns | "add logging", "debug this flow", "analyze logs" |
See skills/README.md for full documentation and docs/SCRIPTS.md for setup script options.
claude-code-java/
├── README.md # This file
├── LICENSE # MIT license
├── .gitignore # Git ignore rules
├── .claude/
│ └── skills/ # 18 reusable skills (see Available Skills above)
├── docs/ # Guidelines and best practices
│ ├── DESIGN_PRINCIPLES.md # Core philosophy
│ ├── RED_FLAGS.md # Warning signs to watch for
│ ├── SAFE_WORKFLOWS.md # Step-by-step safe workflows
│ ├── SCRIPTS.md # Scripts documentation
│ ├── SKILL_GUIDELINES.md # How to create new skills
│ └── TESTING.md # Testing strategy
├── templates/
│ ├── CLAUDE.md.template # Template for projects
│ ├── mcp-config.json.template # MCP configuration template
│ ├── MCP_CONFIG.md.template # MCP documentation template
│ └── settings.json.template # Claude Code settings (pre-approved commands)
└── scripts/
├── setup-project.sh # Full project setup (orchestrator)
├── link-skills.sh # Symlink skills to project
├── generate-claude-md.sh # Generate CLAUDE.md
├── configure-mcp.sh # Configure MCP servers
└── test-all.sh # Run all tests
Track these to validate effectiveness:
scripts/validate-skills.sh and the reference validatorThese skills are not just for code generation — they are also used as the single source of truth for automated code review via skill-review, a reusable GitHub Actions workflow that evaluates pull requests against the same skills that Claude Code uses during development.
Same skills. From generation to review. See skill-review-sandbox for a working example.
Skills are evolving based on real-world usage. Try them, open issues, share what works.
See docs/ for detailed guides:
MIT License - Use freely, modify as needed.