springboot-init-skill

springboot-init-skill is a skill for Claude Code, Codex from jiushiwon/wg-skills. It costs 229 tokens per session (3,458 once invoked), scanned A, original, Apache-2.0.

A guided setup tool for creating a Spring Boot web service, where Spring Boot is a Java framework for building server applications. It detects or installs needed tools and can generate a project with web, database, login, file-upload, streaming, and API-documentation pieces.

In plain words
What is it for?
Use it to initialize a Spring Boot project, choose MySQL, PostgreSQL, MongoDB, or no database, add JWT login, create upload endpoints, enable Server-Sent Events streaming, and generate Swagger API documentation.
Why use it?
It reduces the many manual setup decisions needed before a Java web project can run, especially for someone new to Java.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to initialize a Spring Boot project, choose MySQL, PostgreSQL, MongoDB, or no database, add JWT login, create upload endpoints, enable Server-Sent Events streaming, and generate Swagger API documentation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jiushiwon/wg-skills/springboot-init-skill
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add jiushiwon/wg-skills --skill springboot-init-skill
Clone the repo
git clone --depth 1 https://github.com/jiushiwon/wg-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for springboot-init-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/jiushiwon/wg-skills/springboot-init-skill/github.svg)](https://agentmods.dev/skills/jiushiwon/wg-skills/springboot-init-skill)
Your own site
<a href="https://agentmods.dev/skills/jiushiwon/wg-skills/springboot-init-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/springboot-init-skill/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for springboot-init-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/jiushiwon/wg-skills/springboot-init-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/springboot-init-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 229 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,458 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 137
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00229 $0.03458
Opus 5 $0.00114 $0.01729
Sonnet 5 $0.00046 $0.00692
Haiku 4.5 $0.00023 $0.00346

Measured 9d ago against content hash 6687627f3777, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

springboot-init-skill scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/generate_project.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl http://localhost:8080/api/sse/chat
vibeCoding/backend/java/springboot-init-skill/SKILL.md · 208 lines

How it starts

The opening of the file, as written. The whole thing — 208 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Spring Boot Init Skill

面向完全不懂 Java 编程的小白,一键生成标准化、开箱即用的 Spring Boot Web 服务骨架。

与 java-backend-skill 的区别

维度 java-backend-skill 本 skill
目标用户 后端开发者 零基础小白
环境安装 用户自己装 自动检测 + 自动安装
启动方式 mvn spring-boot:run 一条命令:./restart.sh [dev|prod]
SSE 支持 内置 SSE 流式框架(WebFlux)
文件上传 基础 增强版 /api/upload 单文件 + /api/uploads 多文件
默认数据库 PostgreSQL MySQL(可选 PG / MongoDB / 无数据库)
ORM Spring Data JPA Spring Data JPA(不变)
鉴权 Spring Security 6 + JWT(jjwt 0.12.x)
文档 springdoc-openapi 2(Swagger UI)
响应包装 手动 ResponseBodyAdvice 自动包装 { code, message, data }
脚本 只生成 restart.sh / restart.bat(dev/prod 双模式)
Swagger 有 + 增强注释 + 中文说明
交互次数 多个技术问题 最多 3 个问题
文件数 ~30 ~25

不重复造轮子:统一响应信封、错误码、JWT 规范与 backend-convention-skill 对齐,模板已内置于本 skill(references/api-contract-template.mdreferences/project-guide-template.md),生成项目不依赖 backend-convention-skill 文件;关系型 DB 配置引用 database-skill;前端联动规范引用 frontend-request-skill。本 skill 在它们之上增加「小白友好」的完整封装。

依赖

  • backend-convention-skill:响应信封 { code, message, data }、错误码(-1001 校验 / -2000 系统)、JWT Bearer、api-contract、project-guide 规范对齐(模板已内置本 skill)
  • database-skill:MySQL / PostgreSQL / MongoDB 选型规则、表前缀 wg、连接参数
  • java-backend-skill:Spring Boot 骨架基础结构与 pom 依赖参考
  • frontend-request-skill:前端请求层规范,确保后端生成的接口契约可直接被前端消费

核心能力清单(11 项)

# 能力 说明
1 环境探测 自动检测 JDK 版本(>=17)、Maven、操作系统类型
2 自动安装 创建项目结构、生成 pom.xml、Maven wrapper、.bat UTF-8 BOM 编码
3 一键启动/重启 ./restart.sh [dev|prod]:环境搭建、编译、安全停旧进程、启动、输出日志命令
4 开发模式 ./restart.sh dev 热重载(spring-boot-devtools),日志 logs/dev.log
5 生产模式 ./restart.sh prod 后台运行,日志 logs/app.log
6 SSE 流式 内置 Spring WebFlux ServerSentEvent,示例端点 /api/sse/chat
7 文件上传 内置 /api/upload 单文件与 /api/uploads 多文件上传
8 统一响应 ResponseBodyAdvice 自动包装 { code, message, data }
9 全局异常 @RestControllerAdvice 统一处理 BusinessException / 校验异常 / 兜底异常
10 JWT 鉴权 Spring Security 6 + jjwt 0.12.x:注册 / 登录 / 刷新令牌 / 当前用户注入
11 安全头 内置 Spring Security 配置:X-Frame-Options / X-Content-Type-Options / CSRF 关闭(API)

Read the full file on GitHub · 208 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 208 lines · 229 tokens per session scan A 6687627f3777

Subscribe to this mod's changes

springboot-init-skill is a skill published in the GitHub repository jiushiwon/wg-skills (97 stars, last pushed 2d ago), licensed Apache-2.0. It adds 229 tokens to every session and 3,458 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

wxjava-module-selector

A decision guide for choosing the correct WxJava Maven module, dependency management file, and example for a WeChat use case. WxJava is a Java software development kit for services such as official accounts, mini programs, and payments.

binarywang/WxJava · 86 tokens

wxjava-api-contributor

A contributor guide for adding or maintaining official WeChat API support in WxJava, a Java software development kit. It covers services, request and response data objects, data conversion, HTTP handling, starter configuration, and regression tests.

binarywang/WxJava · 68 tokens

azure-communication-callautomation-java

Build call automation workflows with Azure Communication Services Call Automation Java SDK. Use when implementing IVR systems, call routing, call recording, DTMF recognition, text-to-speech, or AI-powered call flows.

microsoft/skills · 49 tokens

azure-communication-chat-java

Build real-time chat applications with Azure Communication Services Chat Java SDK. Use when implementing chat threads, messaging, participants, read receipts, typing notifications, or real-time chat features.

microsoft/skills · 41 tokens

azure-communication-common-java

Azure Communication Services common utilities for Java. Use when working with CommunicationTokenCredential, user identifiers, token refresh, or shared authentication across ACS services.

microsoft/skills · 35 tokens

azure-communication-sms-java

Send SMS messages with Azure Communication Services SMS Java SDK. Use when implementing SMS notifications, alerts, OTP delivery, bulk messaging, or delivery reports.

microsoft/skills · 36 tokens