SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/s-kostyaev/ellama --skill changelog명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | changelog |
| description | Use this skill to generate changelog. |
Call shell_command tool with "git --no-pager log --reverse main..HEAD" argument.
Based on the output write changelog in org-mode list format. Use org quoting
(quoted-text) instead of markdown quoting (quoted-text). Every changelog
element should be ended with full stop. Changelog shouldn't be too short or too
long, use detailed description for major changes and concise description for
minor changes. Humanize it before writing using humanize-writing skill.
Call shell_command tools with "git --no-pager tag -l --points-at=main" argument to see previously released version. Based on this information and minority/majority of the changes you can fill version variable. If you are not sure, ask the user using ask_user tool with your variants of the version.
Write it to ./NEWS.org using prepend_file tool with header:
After header should be changelog content. Content MUST ends with single newline. Example:
* Version {version}
- Some change description. Some additional information.
- Major change detailed description. This change improves ~ellama-something~.
Some additional information.
- Third change description.
- Some fix in ~ellama-example-command~ description.
After generating the changelog, update the version in ellama.el, commit the generated release changes with the exact commit message "Bump version", and push.