Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bage2014/study --skill common-spring-boot-init명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
UI设计规范技能,提供设计系统、配色方案、排版规则、无障碍标准等专业UI设计指导
项目规范技能,提供项目结构、文档管理、代码忽略等方面的标准和最佳实践
MCP Apps项目规范 - 后端驱动UI渲染架构。所有页面由后端生成HTML通过MCP协议返回渲染。Invoke when developing or maintaining MCP Apps projects, especially when creating new pages, tools, or stores.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | common-spring-boot-init |
| description | 快速创建 Spring Boot 项目结构,支持多种数据库和依赖配置 |
| trigger | 用户请求创建新的 Spring Boot 项目时 |
| disable-when | 项目已存在或非 Java 技术栈项目 |
| category | backend |
| tags | ["spring","java","backend","project-init"] |
| requires | ["common-db-design"] |
快速创建 Spring Boot 项目结构,支持多种数据库和依赖配置。
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| projectName | String | 是 | 项目名称 |
| groupId | String | 是 | Maven Group ID |
| artifactId | String | 是 | Maven Artifact ID |
| javaVersion | String | 否 | Java 版本(默认 21) |
| database | String | 否 | 数据库类型(h2/mysql/postgresql,默认 h2) |
| dependencies | Array | 否 | 额外依赖(spring-web, spring-data-jpa, spring-ai等) |
{
"status": "SUCCESS",
"projectName": "my-spring-app",
"groupId": "com.example",
"artifactId": "my-spring-app",
"javaVersion": "21",
"database": "h2",
"filesCreated": [
"pom.xml",
"src/main/java/com/example/MySpringAppApplication.java",
"src/main/resources/application.yml",
"src/main/resources/schema.sql",
"src/test/java/com/example/MySpringAppApplicationTests.java"
],
"nextSteps": [
"cd my-spring-app",
"mvn spring-boot:run"
]
}
server:
port: 8080
spring:
datasource:
url: jdbc:h2:mem:example_db
driver-class-name: org.h2.Driver
username: sa
password:
h2:
console:
enabled: true
jpa:
hibernate:
ddl-auto: update
show-sql: true
支持添加自定义依赖模板和项目模板。