At a glance
What it does
A documented DSH workflow skill.
Before you choose it
A documented DSH workflow skill. The supplied skill document describes its workflow and boundaries.
Best for
Users who need a repeatable engineering workflow.
Common tasks
- Follow the documented workflow when its trigger matches the task.
Permissions and data
The skill guides local workflow decisions; external behavior is not independently audited.
Permissions- Uses the documented workflow.
- Data handling was not independently audited.
- External services follow the supplied project instructions.
- Credential requirements were not independently tested.
Limitations
- Runtime compatibility and installation behavior are not established.
What DSHub checked
- The pinned source and skill document were captured.
What DSHub did not check
- Installation and runtime behavior were not tested.
Pinned install
Primary action
This standalone skill does not have a DSH Plugin install action. Use its source documentation for the delivery method.
Maintainer source
Skill instructions
name: dsh-release description: This skill guides Oh-DSH stable application releases from version preparation through GitHub artifact publication and recovery. Use when preparing a vX.Y.Z release, changing package.json for a release, creating or pushing a release tag, monitoring the Release workflow, or recovering from packaging failure.
Oh-DSH Stable Release
This skill covers the application release workflow in
.github/workflows/release.yml. The
runtime-only workflow is separate and must not be used for a stable application
release.
Prepare a release PR
Start from an up-to-date
mainwith a clean worktree. Confirm the target version has no local or remote tag or GitHub Release.Set
package.jsonto the numeric semverX.Y.Z; thevprefix belongs only to the Git tagvX.Y.Z.Validate the invariant before publishing:
VERSION="${VERSION:?set VERSION to the numeric X.Y.Z release}" node scripts/validate-release-tag.mjs \ --tag "v$VERSION" --version "$(node -p "require('./package.json').version")"Run
pnpm run typecheck,pnpm test,pnpm run build, the Agent Notes checks, the bilingual pairing check, andgit diff --check.Commit the version change and any release-process maintenance in English, using
<module>: <subject>with a body that explains why and impact. Open a PR that lists scope, checks, and the exact version/tag pair.Do not create the tag until this PR is merged and
origin/maincontains the validated version.
Cut and monitor the release
Fetch
origin/mainand tags. Derive the release values from the current manifest so this phase does not depend on a previous shell:VERSION="$(node -p "require('./package.json').version")" TAG="v$VERSION"Verify the checked-out
mainis the exact commit to release, the manifest/tag validation passes, and the target tag is absent remotely.Create an annotated tag on that commit and push only that tag:
git tag -a "$TAG" origin/main -m "Oh-DSH Desktop $TAG" git push origin "$TAG"Find the
Releaseworkflow run for the tag withgh run list, then usegh run watch <run-id> --exit-status. Treat each matrix package as pending until the run finishes; inspect failures withgh run view <run-id> --log-failed.On success, verify the GitHub Release and its expected desktop, Web, TUI, runtime, checksum, and updater-metadata assets before reporting completion.
Recover from a packaging failure
Do not delete a tag while its workflow is still running. First capture the run
URL and failed job, confirm the failure is deterministic and source-related,
and confirm no Release or partial published assets require maintainer recovery.
For a source fix, delete only the verified failed tag, create a fix PR from
main, run the relevant checks, and wait for that PR to merge before retagging
the new origin/main commit:
git push origin --delete "$TAG"
git tag -d "$TAG"
Do not force-push or delete an unrelated tag. Reuse the release name only after
the failed tag is verified deleted, the fix PR is merged, and the new
origin/main commit passes version validation. For an infrastructure-only
failure, prefer rerunning the failed workflow when possible. If a Release or
assets already exist, stop and use the repository's maintainer recovery path
instead of deleting history.
Handoff
Report the merged version commit, tag object and target commit, workflow URL, final matrix result, Release URL, asset verification, and any unresolved gap.
Operate deliberately
Install and manage
Prerequisites and target Profile
Target: No native DSH Profile target.
Delivery: Skill Files — https://github.com/hust-open-atom-club/oh-dsh。
Compatibility and access
Requires_host_review: Not established by supplied evidence。
Review compatibility evidence ↗
Risk facts
Review instructions before use.
Evidence ↗Evidence and editorial reviewManifest, Bundle patch, distribution and freshness
Immutable evidence
Review status and source activity
Approved for publication after reviewing the source-linked content and immutable release record. AI assisted with the draft; the publication decision was human.
Human reviewed Aug 29, 2026, 3:16 PM UTC。GitHub facts last checked Aug 29, 2026, 3:11 PM UTC。
No material source change has been recorded since this evidence baseline.