用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/esoltys/luminous --skill release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | release |
| description | Cut a Luminous release by working through docs/RELEASE_CHECKLIST.md |
Cut release $ARGUMENTS.
docs/RELEASE_CHECKLIST.md is the source of truth — it's actively maintained. Re-read it before starting. If anything below has drifted from it, the checklist wins — follow the checklist, but also tell the user what changed and that this file needs updating to match. Work through it in order:
pwd and git status --porcelain — confirm we're in a dedicated release
worktree (not the main checkout) and it's clean. Abort and tell the user if not. git fetch origin.git log <last-tag>..main --oneline; confirm every user-facing fix has a linked,
bug-labeled issue — file one retroactively (and link the PR) if it's missing.docs/user-guide/luminous-user-guide-*.dc.html) for any
user-facing changes — these are externally managed, don't hand-edit them, regenerate/export the
usual way. Regenerate screenshots for changed views (bun run take-screenshots, or
--name=<entry> for just one) and read the resulting PNGs to confirm they're correct. Write
docs/release-notes/vX.Y.Z.md.bun run check, bun run test:run, cargo test (from src-tauri/),
cargo clippy --all-targets (from src-tauri/ — zero warnings, including pre-existing ones),
the smoke test (cargo test --test smoke_test -- --ignored --nocapture, from src-tauri/), and
a manual exercise of bun run tauri dev (import/scan, playback, playlists, tag editing,
equalizer, plus anything specific to this release). Confirm the Security Audit and CodeQL
workflows are green on main.bun run release <version> (no --push — that would push straight to main and
bypass review) to bump the version, run its own checks, commit, and tag locally on the release
branch.main using the repo PR template. NEVER push
directly to main. If it's a version-bump-only PR, list the issues/PRs it covers in the
description.main's merge commit, so it must be deleted and
recreated on main before pushing):
git checkout main && git pull
git tag -d vX.Y.Z
git tag -a vX.Y.Z -m "Release vX.Y.Z"
git push origin vX.Y.Z
gh run watch <run-id> --exit-status for both platforms and report back on the signed Linux + Windows bundles.docs/release-notes/vX.Y.Z.md,
remind the user to toggle "Create a discussion for this release" before publishing, and walk
through (don't run unprompted) the Microsoft Store submission trigger + certification-status
check, installing the build on a real machine per platform, verifying the in-app updater, and
closing/linking the resolved GitHub issues.Before calling the release done, confirm all three hold (CLAUDE.md's Definition of Done): the
release workflow is green, the pushed tag matches package.json/Cargo.toml, and the GitHub
release has the expected artifacts (including a .msix/.msixbundle).