一键导入
release
Prepare and execute an Eventum release - changelog, version bump, verification, PR, tag, GitHub release, announcement.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Prepare and execute an Eventum release - changelog, version bump, verification, PR, tag, GitHub release, announcement.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Implement a GitHub issue end-to-end - understand, plan, branch, implement with tests, verify, review, document, finalize.
Create a new Eventum content pack generator end-to-end - research the data source, build, validate, self-review, document, present to the user, publish a hub page to the docs site.
Use when scanning what competitors and adjacent tools are shipping or discussing - to surface trends worth adopting and popular topics Eventum can credibly join for audience growth.
Create a new MDX documentation page for the Eventum docs site - research, plan, write, verify, review.
Add a new input, event, or output plugin to Eventum - research, plan, branch, implement, verify, review, document, finalize.
基于 SOC 职业分类
| name | release |
| description | Prepare and execute an Eventum release - changelog, version bump, verification, PR, tag, GitHub release, announcement. |
2.0.3).eventum (develop -> master) and ../docs (release/<version> -> master).v<version> on eventum master, pushed only after both PRs merge.CHANGELOG.md - existing version sections set the formatting convention.Cutting a new versioned release of eventum (PyPI package + Docker image).
Not for: docs-only updates, content-pack changes (independent flow under ../content-packs/).
Seven steps. Steps 1, 5, and 7 are user checkpoints. Step 4 sends work back to step 2 or 3 on failure.
Verify the release environment:
develop with a clean working tree.__version__ from eventum/__init__.py. Confirm the requested <version> is greater than it, and keep the current value as <previous> for step 7's full-changelog link.v<version> does not exist (git tag --list 'v<version>').Confirm the version bump with the user before continuing.
Two artifacts across two repos, each in its own voice:
eventum on develop - rename ## Unreleased in CHANGELOG.md to ## <version> (<date>) in YYYY-MM-DD form. When no Unreleased section exists, build the section from git log <latest-tag>..HEAD. Always re-check the resulting list against git log <latest-tag>..HEAD even when an Unreleased section was already present - small fixes often land without a CHANGELOG entry. Fill gaps, polish wording. Technical voice, for developers.../docs - new page at content/docs/changelog/<version>.mdx, registered in content/docs/changelog/meta.json. User-facing voice: describe what changed for the end user (not developer) - not a one-to-one copy of the CHANGELOG entry. Commits land on a dedicated branch in step 6.eventum/__init__.py: __version__ = '<version>'.uv run ruff check .
uv run ruff format --check .
uv run mypy eventum/
uv run pytest
cd ../docs && pnpm build
All green is required to advance. On failure, fix in step 2 or 3 and re-run; if three cycles do not converge, stop and surface to the user.
Show the user:
Wait for explicit go-ahead before proceeding.
Two PRs, both targeting master:
In eventum:
git add -A && git commit -m "chore: bump version to <version>"
git push origin develop
gh pr create --base master --head develop --title "Release <version>"
In ../docs (branch off master):
git switch master && git pull
git switch -c release/<version>
git add -A && git commit -m "docs: changelog for <version>"
git push -u origin release/<version>
gh pr create --base master --head release/<version> --title "docs: changelog for <version>"
Report both PR URLs.
After the user confirms both PRs were merged:
eventum: fetch and switch to master, verify the version bump landed.develop.Tag:
git tag -a v<version> -m "Release <version>"
git push origin v<version>
GitHub release:
gh release create v<version> --title "Eventum <version>" --notes "..."
Full changelog link to append to the release notes:
**Full Changelog**: https://github.com/eventum-generator/eventum/compare/v<previous>...v<version>
Announcement discussion (Announcements category ID DIC_kwDOKpjxBc4CfS4C):
gh api graphql -f query='
mutation {
createDiscussion(input: {
repositoryId: "<repo-node-id>",
categoryId: "DIC_kwDOKpjxBc4CfS4C",
title: "Eventum <version> Released",
body: "..."
}) {
discussion { url }
}
}'
Repo node ID is stable across releases - fetch once:
gh api graphql -f query='{ repository(owner: "eventum-generator", name: "eventum") { id } }'