$npx -y skills add legeling/PromptHub --skill release-syncPromptHub release update skill. Use for /update-readme, version bumps, changelog updates, website sync, GUI screenshot/doc refresh, and multilingual release/documentation alignment.
| 1 | # PromptHub Release Sync |
| 2 | |
| 3 | Use this skill for version bumps, release preparation, changelog or README |
| 4 | updates, website release sync, screenshots, and multilingual release material. |
| 5 | |
| 6 | ## Read First |
| 7 | |
| 8 | 1. `AGENTS.md` |
| 9 | 2. `spec/releases/release-rules.md` |
| 10 | 3. `spec/releases/README.md` and the target version record, when present |
| 11 | 4. `package.json`, workspace package manifests, and the newest relevant |
| 12 | `CHANGELOG.md` section |
| 13 | |
| 14 | Do not treat this skill as a second release-policy source. Stable release |
| 15 | semantics belong in `spec/releases/release-rules.md`; this skill is the |
| 16 | execution procedure. |
| 17 | |
| 18 | ## Establish Scope |
| 19 | |
| 20 | Before editing, identify: |
| 21 | |
| 22 | - target version and release date |
| 23 | - stable, prerelease, historical prerelease, or docs-only update |
| 24 | - affected distributions: desktop, CLI, self-hosted web, worker, mobile |
| 25 | - whether public copy, in-app copy, screenshots, installers, or signing changed |
| 26 | |
| 27 | For non-trivial release work, create or update the matching active change |
| 28 | before implementation. |
| 29 | |
| 30 | ## Source And Sync Order |
| 31 | |
| 32 | 1. Update version-bearing manifests for affected distributions, including the |
| 33 | root and workspace packages when the monorepo version changes. |
| 34 | 2. Update `CHANGELOG.md` and `spec/releases/<version>.md`. |
| 35 | 3. Sync repository-facing documentation: |
| 36 | - `README.md` |
| 37 | - `docs/README.md` |
| 38 | - `docs/README.en.md` |
| 39 | - `docs/README.zh-TW.md` |
| 40 | - `docs/README.ja.md` |
| 41 | - `docs/README.de.md` |
| 42 | - `docs/README.es.md` |
| 43 | - `docs/README.fr.md` |
| 44 | 4. Run `pnpm --dir website sync:release` and inspect: |
| 45 | - `website/src/generated/release.ts` |
| 46 | - `website/src/content/docs/changelog.md` |
| 47 | - `website/src/content/docs/introduction.md` |
| 48 | - `website/src/content/docs/en/introduction.md` |
| 49 | 5. Update non-generated website copy only when the release contract changed: |
| 50 | - `website/src/i18n/ui.ts` |
| 51 | - `website/src/pages/index.astro` |
| 52 | - `website/src/pages/en/index.astro` |
| 53 | 6. When desktop user-facing copy changed, synchronize all locale files under |
| 54 | `apps/desktop/src/renderer/i18n/locales/`. |
| 55 | 7. When visible GUI or feature emphasis changed, inspect and update matching |
| 56 | assets under `docs/imgs/` and `website/public/imgs/`. |
| 57 | 8. Synchronize durable conclusions into `spec/workflow/*`, `spec/knowledge/*`, |
| 58 | `spec/rules/*`, or `spec/adr/*` only when their stable contracts changed. |
| 59 | |
| 60 | ## Release Semantics |
| 61 | |
| 62 | - Stable-facing badges, default downloads, and install instructions continue |
| 63 | to point to the latest stable version when preparing a prerelease. |
| 64 | - Historical prereleases below an existing stable version are manual testing |
| 65 | artifacts, not the default upgrade path. |
| 66 | - Do not document a GUI state without matching current UI evidence or updated |
| 67 | screenshots. |
| 68 | - Do not silently skip localized docs or locale files; record why a surface is |
| 69 | unaffected. |
| 70 | - When mentioning CLI availability, distinguish the CLI/npm distribution from |
| 71 | desktop-bundled behavior. |
| 72 | - Use the website sync command instead of hand-editing generated metadata. |
| 73 | |
| 74 | ## Verification |
| 75 | |
| 76 | Run the lowest relevant checks first, then: |
| 77 | |
| 78 | - `pnpm verify:release:quick` for local release-impacting changes |
| 79 | - `pnpm verify:release` before tagging or publishing a release candidate |
| 80 | - platform signing/notarization checks required by |
| 81 | `spec/releases/release-rules.md` for packaged macOS artifacts |
| 82 | |
| 83 | Record commands, results, skipped surfaces, and residual risks in the active |
| 84 | change `implementation.md`. The quick profile is diagnostic and does not grant |
| 85 | release approval. |
| 86 | |
| 87 | ## Completion Report |
| 88 | |
| 89 | Report: |
| 90 | |
| 91 | - target version and release type |
| 92 | - affected distributions and manifests |
| 93 | - website sync status |
| 94 | - screenshot status |
| 95 | - updated docs and locales |
| 96 | - verification results |
| 97 | - intentionally skipped surfaces and remaining release risk |