A Claude Code plugin providing reusable skills and agents for everyday software engineering tasks.
Skills enforce coding conventions, scaffold new projects, and generate documentation. Agents handle code writing and code review with opinionated best-practice defaults.
Install skillbox from the plugin marketplace:
/plugin marketplace add alexandreroman/skillboxThen enable the plugin for your project:
/plugin enable skillboxAlternatively, add it directly from GitHub:
claude plugins add alexandreroman/skillbox| Skill | Description |
|---|---|
init-project |
Interactive project scaffolding with README, CLAUDE.md, and license generation |
write-readme |
Generate a polished README.md for an existing project |
Loaded automatically when their trigger conditions match the current project.
| Skill | Description |
|---|---|
general-rules |
Language-agnostic rules for containers, CI/CD, security, and operations |
java-rules |
Java 21-25 coding rules: style, records, virtual threads, structured concurrency |
nodejs-typescript-rules |
Node.js / TypeScript rules: tooling, strict config, ESLint v9, Prettier |
spring-boot-rules |
Spring Boot 3.4+ / 4.x rules: configuration, testing, observability, migration |
project-memory |
Persist project decisions, deadlines, and team context across conversations |
| Agent | Description |
|---|---|
code-writer |
Writes, modifies, and refactors source code with simplicity-first style |
code-reviewer |
Read-only code review producing a severity-ranked findings report |
Skills and agents are namespaced under skillbox:.
Invoke a skill from the Claude Code prompt:
/skillbox:init-project
/skillbox:write-readme
Tip
Getting started with a new project — Run
/skillbox:init-project first when bootstrapping
a new repository. It generates a CLAUDE.md that
configures the code-writer and code-reviewer
agents and wires up project memory so that
decisions, deadlines, and team context persist
across conversations.
.claude-plugin/plugin.json Plugin manifest
skills/ One folder per skill (SKILL.md)
agents/ One file per agent (.md)