Agent SkillsRobdel12/OrbitDock › orbitdock-release-notes

orbitdock-release-notes

GitHub

标准化 OrbitDock 发布说明,支持 GitHub 标签版本和 TestFlight 构建版本两种模式。通过 gh 和 git 获取提交统计与差异信息,生成结构化的发布日志,仅在平台差异显著时区分原生应用说明。

.codex/skills/orbitdock-release-notes/SKILL.md Robdel12/OrbitDock

Trigger Scenarios

编写或更新 GitHub 发布说明 生成 TestFlight 构建日志 使用 gh 命令编辑发布内容

Install

npx skills add Robdel12/OrbitDock --skill orbitdock-release-notes -g -y
More Options

Non-standard path

npx skills add https://github.com/Robdel12/OrbitDock/tree/main/.codex/skills/orbitdock-release-notes -g -y

Use without installing

npx skills use Robdel12/OrbitDock@orbitdock-release-notes

指定 Agent (Claude Code)

npx skills add Robdel12/OrbitDock --skill orbitdock-release-notes -a claude-code -g -y

安装 repo 全部 skill

npx skills add Robdel12/OrbitDock --all -g -y

预览 repo 内 skill

npx skills add Robdel12/OrbitDock --list

SKILL.md

Frontmatter
{
    "name": "orbitdock-release-notes",
    "description": "Standardize OrbitDock changelogs using two modes: (1) GitHub tag release notes with the stable long-form template (`Quick start`, `OrbitDock vX`, `Highlights`, `Important release notes`, `Full changelog`) and (2) TestFlight build-train changelogs based on build-marker commits like `🔖 v0.7.0-b7` to `🔖 v0.7.0-b8` that are not tags. Use when editing releases with `gh`, generating TestFlight notes, or producing native-app notes with optional platform nuance when it is genuinely meaningful."
}

OrbitDock Release Notes

Overview

Write and update OrbitDock release notes in a consistent, high-signal format. Use gh and git as the source of truth before publishing edits. For OrbitDock Native TestFlight notes, assume one shared app experience first and only split by platform when the diff proves a meaningful user-facing difference.

Modes

Choose one mode before gathering inputs:

  • tag-release mode: Stable GitHub release notes for tagged versions (for example, v0.10.0 -> v0.11.0).
  • build-train mode: TestFlight changelogs for emoji build markers that are commit subjects, not tags (for example, 🔖 v0.7.0-b7 -> 🔖 v0.7.0-b8).

Gather Inputs

Tag-release mode

Collect these inputs:

  • Target tag (for example, v0.11.0).
  • Previous stable tag for compare link (for example, v0.10.0).
  • Existing body and assets:
    • gh release view <tag> --repo Robdel12/OrbitDock --json body,assets,name,tagName,url
  • Compare stats for the intro paragraph:
    • gh api repos/Robdel12/OrbitDock/compare/<prev>...<tag> --jq '{total_commits,ahead_by,files:(.files|length),insertions:([.files[].additions]|add),deletions:([.files[].deletions]|add)}'
  • Optional deeper signal for highlight themes:
    • gh api repos/Robdel12/OrbitDock/compare/<prev>...<tag> --jq '.commits[].commit.message'

Build-train mode (TestFlight)

Collect these inputs:

  • Source marker and destination marker (for example, 🔖 v0.7.0-b7 and 🔖 v0.7.0-b8).
  • Resolve marker commit SHAs:
    • BASE_SHA=$(git rev-list --all --max-count=1 --grep='^🔖 v0\\.7\\.0-b7')
    • HEAD_SHA=$(git rev-list --all --max-count=1 --grep='^🔖 v0\\.7\\.0-b8')
  • Confirm range stats:
    • git diff --shortstat "$BASE_SHA..$HEAD_SHA"
    • git log --oneline --no-merges "$BASE_SHA..$HEAD_SHA"
  • Optional release lookup by display name (if needed):
    • gh api repos/Robdel12/OrbitDock/releases --paginate --jq '.[] | select(.name=="🔖 v0.7.0-b8") | {name,tag_name,target_commitish,published_at,url}'

Only gather platform-specific signal when the diff or the user suggests meaningful divergence:

  • Native file list in range:
    • git diff --name-only "$BASE_SHA..$HEAD_SHA" -- OrbitDockNative/OrbitDock
  • Compile-guard signal:
    • git diff "$BASE_SHA..$HEAD_SHA" -- OrbitDockNative/OrbitDock | rg '#if os\\((iOS|macOS)\\)|#elseif os\\((iOS|macOS)\\)'
  • UIKit/AppKit signal:
    • git diff "$BASE_SHA..$HEAD_SHA" -- OrbitDockNative/OrbitDock | rg 'import (UIKit|AppKit)'

If the native changes are broadly shared, stop there and write one universal note instead of forcing a platform breakdown.

Build Release Body

Tag-release mode

Follow references/release-template.md. Match the recent stable OrbitDock release style used for releases like v0.8.0, v0.9.0, v0.10.0, and newer:

  • Quick start
  • OrbitDock vX.Y.Z
  • Intro paragraph with compare range and release characterization
  • Highlights
  • Important release notes
  • Full changelog

For server-heavy releases, keep the same structure but center the narrative on server/runtime behavior, attached binaries, upgrade implications, and operational changes instead of client UI detail.

Build-train mode (TestFlight)

Follow references/testflight-template.md. Keep this concise and outcome-focused; TestFlight notes should be easy to skim in-app. Output must be plain text only for TestFlight.

Rules:

  • Keep section order and heading levels stable.
  • Write highlights as grouped themes with 2-4 bullets each.
  • Keep claims grounded in compare data and observable file/commit changes.
  • Include only real attached server asset names in Quick start.
  • Use a full compare URL in ## Full changelog.
  • For stable tag releases, keep the body aligned with the established long-form release shape instead of switching to ad hoc Highlights / Detailed Changes / Notes sections.
  • For build-train notes, always include the marker range (🔖 ... -> 🔖 ...) and avoid tag language unless tags are truly involved.
  • For native TestFlight notes, treat OrbitDock Native as one universal app by default.
  • Add platform-specific callouts only when the range shows meaningful user-facing divergence beyond normal responsive/layout polish.
  • Responsive layout tuning, modal presentation differences, and compile-guarded plumbing alone are not enough reason to create separate platform sections.
  • For TestFlight output, remove markdown syntax (no #, ##, ###, -, or backticks in final copy).
  • For TestFlight output, remove emoji from user-facing text. If marker commits include an emoji prefix, strip it in the changelog text (for example, 🔖 v0.7.0-b8 -> v0.7.0-b8).

Publish and Verify

  1. Write notes to a temporary file.
  2. Apply with:
    • gh release edit <tag> --repo Robdel12/OrbitDock --notes-file <path>
  3. Verify with:
    • gh release view <tag> --repo Robdel12/OrbitDock --json body,url
  4. Confirm the page URL and final body text in the output.

TestFlight mode:

  1. Resolve marker SHAs and verify both exist.
  2. Generate a copy/paste plain-text note from the template.
  3. Default to a short "App-wide details" section for native TestFlight notes.
  4. Add a brief platform-specific callout only when the range contains meaningful iPhone/iPad-only or Mac-only behavior.
  5. If there is no meaningful divergence, omit platform notes entirely instead of adding "no platform-specific changes" filler.

Guardrails

  • Do not invent features that are not visible in commit/file history.
  • Do not drop Quick start or Full changelog when targeting the v0.8.0/v0.9.0 style.
  • Do not collapse stable release notes into a short changelog when the established release format is the long-form template.
  • Do not leave stale version text from prior releases.
  • Prefer plain language over marketing-heavy copy.
  • Keep release channel notes accurate (stable vs nightly).
  • Do not assume build markers are tags; treat them as commit anchors unless verified otherwise.
  • Do not claim iOS-only or macOS-only changes without file or compile-guard evidence.
  • Do not force iOS/macOS sections for native notes when the app behavior is effectively shared.
  • Do not turn minor responsive tweaks or windowing differences into separate platform narratives.
  • Do not include markdown formatting in final TestFlight text.
  • Do not include emojis in final TestFlight text.

References

Version History

  • 6926bc3 Current 2026-07-25 08:33

Same Skill Collection

.codex/skills/api-transport-architecture/SKILL.md
.codex/skills/design-system/SKILL.md
.codex/skills/orbitdock-memory-profiling/SKILL.md
.codex/skills/rust-server-architecture/SKILL.md
.agents/design-system/SKILL.md

Metadata

Files
0
Version
6926bc3
Hash
00671a14
Indexed
2026-07-25 08:33

Accueil - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-27 17:34
浙ICP备14020137号-1 $Carte des visiteurs$