원클릭으로
changelog-format
CHANGELOG.md format reference and examples for the SimpleORM project.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
CHANGELOG.md format reference and examples for the SimpleORM project.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | changelog-format |
| description | CHANGELOG.md format reference and examples for the SimpleORM project. |
| user-invocable | false |
Rules are in
.claude/rules/changelog.md— this skill provides format reference and examples.
# Changelog
## [Unreleased]
### Added
- **FeatureName** - Descricao breve da feature (`arquivo.pas`)
### Changed
- **ChangeName** - Descricao da mudanca
### Deprecated
- **DeprecatedName** - Descricao e alternativa
### Removed
- **RemovedName** - O que foi removido
### Fixed
- **BugName** - Descricao do que foi corrigido
---
## [X.Y.Z] - YYYY-MM-DD
...
| Type of Change | Section |
|---|---|
| New files/features/attributes | Added |
| Behavior changes / refactoring | Changed |
| Deprecated code | Deprecated |
| Deleted code | Removed |
| Bug fixes | Fixed |
### Added
- **SimpleSerializer** - Serializador Entity <-> JSON via RTTI usando atributos `[Campo]` (`SimpleSerializer.pas`)
- **Unique** - Novo atributo de validacao para impedir valores duplicados (`SimpleValidator.pas`)
### Fixed
- **SQL Injection** - Metodo `Delete(aField, aValue)` agora usa query parametrizada
### Changed
- **EndTransaction** - Agora delega para `Commit` em todos os drivers
Validates all SimpleORM Delphi source files for Delphi 10.2 Tokyo+ compatibility. Checks inline vars, unit scoping, generics E2506, uses completeness, memory safety, .dpr structure, and conditional compilation. Run anytime to "lint" the project.
Delphi project file structure reference — .dpr vs .pas, .dproj, .res, .dfm. Templates for console and VCL projects.
Coding conventions and patterns for the SimpleORM Delphi project. Automatically loaded when writing or modifying Delphi code.
SimpleORM entity-to-database mapping via RTTI attributes. Complete reference for all attributes, property types, and relationship setup.
Horse/ExpxHorse integration patterns for SimpleORM — server auto-routing, client REST driver, serialization examples.
The exact iSimpleQuery interface contract that all query drivers must implement. Reference for creating or reviewing drivers.