SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/pan94u/forge --skill code-generation명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Planning Mode skill for guided execution of large tasks. Provides structured task decomposition, user confirmation, per-task verification, retry logic, and quality summary.
Git 工作流 — 版本控制、提交规范、分支管理、.gitignore 治理
Structured bug diagnosis and repair workflow using the 5-Whys root cause analysis method. Ensures fixes include tests, documentation, and knowledge capture.
| name | code-generation |
| description | 代码生成 — design-first 生成、约定遵循、增量编码、测试同步生成。 |
| stage | development |
| type | delivery-skill |
| version | 2.0 |
| scope | platform |
| category | delivery |
./gradlew compileKotlin 或等效命令)读设计 → 生成清单 → 数据层 → 服务层 → API 层 → 测试 → 编译验证 → Baseline 检查
| 设计元素 | 代码产出 | 测试产出 |
|---|---|---|
| Entity 类图 | Entity + Value Object | Entity 单元测试 |
| Repository 接口 | Repository 接口 + 实现 | Repository 集成测试 |
| Service 序列图 | Service 类 + 方法 | Service 单元测试 |
| Controller 端点 | Controller + DTO + Mapper | Controller 集成测试 |
| 错误场景 | Exception 类 + Handler | 错误处理测试 |
| 数据库 Schema | Migration 脚本 | Migration 验证测试 |
scripts/compile_check.py — 检测常见编译错误(括号匹配、缺失声明)scripts/import_check.py — 检测未使用 import 和通配符 importscripts/naming_check.py — 检测命名规范违规(PascalCase/camelCase/UPPER_SNAKE)