소스 정보
- 저장소
- EverMind-AI/EverOS
- 최근 소스 활동
- 2026년 8월 7일 03:01
- 감지된 SKILL.md 언어
- 영어
- 스타
- 12,118
- 포크
- 891
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/EverMind-AI/EverOS --skill release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | release |
| description | Cut a versioned release and publish everos to PyPI via the tag-triggered workflow |
Publish a new version of everos to PyPI. Publishing is automated: pushing a
vX.Y.Z tag triggers .github/workflows/release.yml,
which builds, smoke-tests, and uploads via PyPI Trusted Publishing (OIDC —
no stored token) behind the release environment's manual-approval gate, then
drafts the GitHub Release page from the CHANGELOG.
A release is not finished when PyPI accepts the upload: the GitHub Release page is drafted, never auto-published, and someone has to write its lead summary and click Publish.
main, up to date, with green CI (the tag builds from main's tree).1. Bump the version → pyproject.toml [project] version = "X.Y.Z"
(single source; everos.__version__ reads installed package metadata)
2. Update CHANGELOG.md → move the Unreleased entries under a new
## [X.Y.Z] - <date> heading, and write the release page's prose here
(lead paragraph + `### Upgrade` group — see "The release page")
3. Commit → git commit -m "chore(release): vX.Y.Z"
4. Open a PR, merge to main after green CI
5. Tag main + push → git tag -a vX.Y.Z -m "vX.Y.Z" && git push origin vX.Y.Z
6. Approve → the release.yml run pauses on the `release`
environment; a reviewer approves in the Actions run
7. Verify → https://pypi.org/project/everos/X.Y.Z/
8. Publish the page → the run leaves a DRAFT GitHub Release, already
complete if step 2 was done properly. Read it once, click Publish.
The tag must equal the pyproject.toml version — the workflow refuses to
publish on a mismatch. A stable tag with no matching ## [X.Y.Z] CHANGELOG
section fails the release job for the same reason.
The whole page is written in CHANGELOG.md, during the release PR. Nothing is meant to be composed at publish time — by then the changes are weeks old and the text gets no review. Write the version section like this:
## [X.Y.Z] - 2026-09-01
**What this release is for.** One paragraph, prose, no bullets — it becomes the
lead of the release page. Say what changed for a user, not what was refactored.
### Added
### Changed
### Fixed
### Upgrade
What a reader must know before upgrading: what happens on first startup, which
command recovers a bad state, which pins moved. Omit the group entirely when a
plain `pip install --upgrade` is all there is — 1.1.4 and 1.2.0 have nothing
here. Do not write filler.
CI turns that into the page: everything above ### Upgrade is lifted verbatim
with the group headings demoted to ##, and the Upgrade prose is wrapped in the
boilerplate — pip line above it, compare link below — which is the shape every
release since 1.1.3 has. See
1.2.1.
So publishing is a read-through and a click. If the draft looks wrong, the fix
belongs in CHANGELOG.md on main, not only in the draft — otherwise the two
drift apart and the next release inherits the habit.
While it is a draft, GitHub serves the release at
releases/tag/untagged-<hash>, and that URL keeps serving a stale page after publication with no redirect. Never share it — a reader who opens it later concludes the release never went out. Linkreleases/tag/vX.Y.Zinstead; the job prints both URLs in its step summary.
Publish with the Publish release button in the web UI. Publishing through
the API by flipping draft alone drops the tag: GitHub rebinds the release to
the untagged-<hash> placeholder and creates a git tag by that name against the
default branch (observed on 1.2.2). Pass tag_name if you must do it from the
CLI:
gh api -X PATCH "repos/EverMind-AI/EverOS/releases/<id>" \
-F draft=false -f tag_name=vX.Y.Z -f make_latest=true
Re-running the release job replaces its own draft and leaves an already-published release untouched, so a re-run is always safe.
PEP 440 pre-release tags publish too (PyPI accepts them; pip install everos
ignores them unless --pre): vX.Y.ZrcN, vX.Y.ZaN, vX.Y.ZbN. Set the same
suffix in pyproject.toml version before tagging.
Their release page is drafted as a pre-release and never becomes
/releases/latest. A pre-release does not need its own CHANGELOG section — the
draft falls back to a one-line placeholder body when there is none.
everos → Settings →
Publishing → add: owner EverMind-AI, repo EverOS, workflow
release.yml, environment release.release
with required reviewers, so every publish needs a manual approval.No PyPI API token is ever stored; the workflow mints a short-lived OIDC token at publish time.