소스 정보
- 저장소
- EstebanRivera08/eSDIva
- 최근 소스 활동
- 2026년 9월 3일 07:18
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/EstebanRivera08/eSDIva --skill release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | release |
| description | Create a new eSDIva release (version bump, commit, tag, push, build, release notes) |
| argument-hint | <new-version> |
| disable-model-invocation | true |
Perform a full eSDIva release. The new version string is: $ARGUMENTS
Follow these steps in order. Do not push, or take any other irreversible action, until explicitly confirmed by the user. The PyPI upload (Step 10) is done by the user, never by you.
If no version was provided, ask the user for the version string (e.g. 0.2.0).
Read the current version from pyproject.toml. Find the most recent tag:
git describe --tags --abbrev=0
This fails when no tag exists yet — that is fine, treat the previous tag as absent and use the root commit as the range start in Step 6.
Recommend a version that matches the change set, and say why: for 0.x, any
break in a public contract (a changed return convention, a dependency moved into
an extra, a renamed argument) is a minor bump, not a patch. State the breaking
changes explicitly so the user can overrule the number.
pyproject.tomlReplace version = "OLD" with version = "NEW".
That is the only version reference in the repo. The citation in README.md and
docs/citing.md points at the paper, not the software release — do not add a
version or bump a year there.
uv sync
just pre-commit
Fix any failures before continuing.
Stage only pyproject.toml and uv.lock.
Commit message:
chore: bump version to vNEW
Collect the commit list since the previous tag, excluding the version bump commit itself:
git log vPREV..HEAD~1 --oneline # when a previous tag exists
git log HEAD~1 --oneline # first release: everything up to the bump
Group by prefix into sections (omit empty sections):
| Commit prefix | Section heading |
|---|---|
feat | New features |
fix | Bug fixes |
docs | Documentation |
refactor, perf | Improvements |
test, chore, style | Other |
Put any breaking change first, under Breaking changes, with the migration a user has to perform — not just what changed.
Use the grouped list as SUMMARY in the tag message below:
eSDIva vNEW
SUMMARY (bullet list, one line per commit, strip the conventional commit prefix)
Create the tag:
git tag -a vNEW -m "$(cat <<'EOF'
<the message above>
EOF
)"
just build
Check that dist/ holds exactly the new .whl and .tar.gz — a stale artifact
from an older version left in dist/ will be uploaded by twine upload dist/*.
Show the user:
git show HEADgit tag -n99 vNEWls dist/Then ask: "Ready to push commit and tag to origin? (yes / no)"
Do not push until the user explicitly says yes.
Hand the user the commands; do not run them.
git push origin main
git push origin vNEW
Hand the user the command; do not run it. PyPI refuses a re-upload of a version that already exists, so a mistake here costs a version number.
just publish # twine upload dist/*
Remind them that pip install esdiva then resolves to the highest version, so
0.2.0 supersedes 0.1.0 for new installs while esdiva==0.1.0 stays available.
Generate and display the following for the user to paste into the GitHub release UI. Use the same grouped commit list from Step 6 (omit Other unless notable).
## What's new in vNEW
### Breaking changes
- ...
### New features
- ...
### Bug fixes
- ...
### Documentation
- ...
### Improvements
- ...