MCP HubMCP Hub
스킬 목록으로 돌아가기

release-plannotator

backnotprop
업데이트됨 2 days ago
6 조회
5,598
382
5,598
GitHub에서 보기
메타design

정보

릴리스 플래노테이터 스킬은 기여자 명시 릴리스 노트 초안 작성, 패키지 간 버전 업데이트, 태그 기반 파이프라인 실행을 통해 플래노테이터 릴리스 프로세스를 자동화합니다. 이 스킬은 의존성 순서 기반 빌드를 처리하며, 릴리스 준비, 릴리스 노트 작성 또는 버전 업데이트 시 사용해야 합니다. "출시하자", "릴리스 준비해 줘", "새 버전 출시할 때야"와 같은 문구로 실행할 수 있습니다.

빠른 설치

Claude Code

추천
기본
npx skills add backnotprop/plannotator -a claude-code
플러그인 명령대체
/plugin add https://github.com/backnotprop/plannotator
Git 클론대체
git clone https://github.com/backnotprop/plannotator.git ~/.claude/skills/release-plannotator

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Plannotator Release

The process has four phases. Phase 1 (release notes) is where most of the work happens — present the draft for review before proceeding to later phases.

Phase 1: Draft Release Notes

This is the most important phase. The release notes are the public face of each version and the primary way the community sees their contributions recognized.

Step 1: Determine scope

  1. Find the latest release tag: git tag --sort=-v:refname | head -1
  2. Determine the new version number. Ask the user if unclear (patch, minor, or major).
  3. Gather all changes since the last tag:
    • git log --oneline <last-tag>..HEAD for commit history
    • git log --merges --oneline <last-tag>..HEAD for merged PRs
  4. For each PR, use gh pr view <number> --json title,author,body,closedIssues,labels to get details.

Step 2: Research contributors

This is critical. Every person who participated in the release gets credit — not just PR authors.

For each PR and linked issue, collect:

  • PR authors — the person who wrote the code
  • Issue reporters — who filed the bug or feature request
  • Issue commenters — who participated in the discussion with useful context
  • Discussion creators — who started relevant GitHub Discussions
  • Feature requestors — check the linked "closes #N" issues and their authors

Use the GitHub API via gh:

# Get issue details including author
gh issue view <number> --json author,title,body

# Get issue comments to find participants
gh api repos/backnotprop/plannotator/issues/<number>/comments --jq '.[].user.login'

# Get PR review comments
gh api repos/backnotprop/plannotator/pulls/<number>/comments --jq '.[].user.login'

Step 3: Write the release notes

Read the reference release notes in references/ for the canonical template structure. These are real release notes from previous versions — match their tone, structure, and level of detail.

  • release-notes-v0.13.0.md — large release, 14 PRs, 3 first-time contributors, "New Contributors" + narrative "Contributors" section
  • release-notes-v0.12.0.md — large community release, 14 PRs, 10 external, detailed narrative "Contributors" section
  • release-notes-v0.13.1.md — small patch release, 2 PRs, no external authors, "Community" section focused on issue reporters

Pay attention to how each reference handles contributor crediting differently. Pick the pattern that fits the release's contributor profile — a release with many external PRs warrants a narrative "Contributors" section; a patch driven by issue reports uses a lighter "Community" section.

Write the file to the repo root as RELEASE_NOTES_v<VERSION>.md.

Structure

  1. X/Twitter follow link — first line, always the same:

    Follow [@plannotator](https://x.com/plannotator) on X for updates
    
  2. "Missed recent releases?" collapsible table — copy from the previous release's notes, then:

    • Add the previous release (the one you're succeeding) as the newest row
    • Keep roughly 10-12 rows; drop the oldest if needed
    • Each row: version link + comma-separated feature highlights (short phrases)
  3. "What's New in vX.Y.Z" — the heart of the notes

    • Open with 1-3 sentences summarizing the release theme and scope. Mention how many PRs, how many from external contributors, any first-timers.
    • Each major feature/fix gets its own ### subsection with:
      • A descriptive heading (not the PR title verbatim — rephrase for clarity)
      • 1-4 paragraphs explaining what changed and why it matters. Be specific and concrete. Describe the problem that existed before, what the change does, and how users experience it.
      • Credit line at the bottom: PR link, linked issues with closing [#N], and contributor attribution
    • Minor changes go under ### Additional Changes as bold-titled bullets
  4. Install / Update — standard block, read from the previous release notes and reuse verbatim

  5. "What's Changed" — bullet list of every PR in the release:

    - feat: descriptive PR title by @author in [#N](url)
    
  6. "New Contributors" — if any first-time contributors:

    - @username made their first contribution in [#N](url)
    
  7. "Contributors" or "Community" — narrative section recognizing everyone who participated:

    • PR authors get a sentence about what they built
    • Issue reporters and commenters get listed with what they reported/discussed
    • Group community issue reporters in a bullet list at the end
  8. Full Changelog link:

    **Full Changelog**: https://github.com/backnotprop/plannotator/compare/<prev-tag>...<new-tag>
    

Writing guidelines

  • Narrative over noise. Write in clear, readable prose. Not marketing-speak, not changelog-dump. Explain what changed and why someone should care, in plain language.
  • Bullets where they help. Use bullet lists for enumerating discrete items (additional changes, contributor lists). Use paragraphs for explaining features.
  • No cliches or buzzwords. Don't say "exciting", "game-changing", "seamless", "powerful". Just describe what happened.
  • No punchlines. Don't end sections with a clever quip or a summary zinger. Let the feature speak for itself.
  • Speak through practical benefit. Describe what changed and what it means for the user in concrete, reliable terms. Not aspirational, not hype — just what it does.
  • Don't overuse em dashes. One or two per release is fine. If you notice them stacking up, restructure the sentence instead.
  • Grammatical structure matters. Vary sentence structure. Active voice. Concrete subjects and verbs.
  • Contributor tags. Use @username — bare at-mentions, not markdown links like [@user](url). GitHub renders bare @mentions with avatar icons in release notes. This is important for community recognition.
  • Every contributor counts. Everyone who filed an issue, left a comment that shaped a decision, or participated in a discussion gets mentioned. This project's community is its lifeblood.

Step 4: Present for review

Write the draft to RELEASE_NOTES_v<VERSION>.md in the repo root and tell the user it's ready for review. Do not git add or commit this file — release notes are kept untracked by design. Wait for their feedback before proceeding to Phase 2.


Phase 2: Version Bump

Bump the version string in these 7 files (and only these — other package.json files use stub versions):

FileField
package.json (root)"version"
apps/opencode-plugin/package.json"version"
apps/pi-extension/package.json"version"
apps/hook/.claude-plugin/plugin.json"version"
apps/copilot/plugin.json"version"
openpackage.yml (root)version:
packages/server/package.json"version"

Read each file, confirm the current version matches expectations, then update all 7 atomically.

Do not bump the VS Code extension (apps/vscode-extension/package.json) — it has independent versioning.


Phase 3: Build

Run builds in dependency order:

bun run build:review    # 1. Code review editor (standalone Vite build)
bun run build:hook      # 2. Plan review + hook server (copies review's built HTML into hook dist)
bun run build:opencode  # 3. OpenCode plugin (copies built HTML from hook + review)
bun run build:pi        # 4. Pi extension (chains review → hook → pi internally, safe to run after 1-2)

build:pi chains review and hook internally, so after steps 1-2 it only runs the pi-specific build.

Verify all builds succeed before proceeding.

Pi Parity Gate

After builds pass, audit the Pi extension to ensure all server-side imports resolve in the published package. This catches missing files before they reach npm.

  1. Check imports vs files array. Trace all local imports (starting with ./ or ../) from index.ts, server.ts, tool-scope.ts, and every file in server/. Verify each target is covered by a pattern in the files array of apps/pi-extension/package.json.

  2. Check vendor.sh covers all shared/ai imports. Every ../generated/*.js import in the server files must have a corresponding entry in vendor.sh's copy loops. If a new shared module or AI module was added to packages/shared/ or packages/ai/ and is imported by Pi's server code, it must be added to vendor.sh.

  3. Dry-run the pack. Run cd apps/pi-extension && bun pm pack --dry-run and verify the output includes every file the server imports. Look specifically for any newly added files since the last release.

  4. Quick smoke test. Confirm generated/ contains all expected files after build, especially any new ones (e.g., a new shared module added in this release cycle).

If anything is missing, fix it before proceeding to Phase 4. Common fixes:

  • Add the file to vendor.sh's copy loop
  • Add the file or directory to the files array in package.json
  • Add an import path fix (Pi uses ../generated/ not @plannotator/shared or @plannotator/ai)

Phase 4: Commit, Tag, and Release

  1. Commit the version bump:

    chore: bump version to X.Y.Z
    

    Stage only the 7 version-bumped files. Do not stage the release notes file (it's untracked by design).

  2. Create and push the tag:

    git tag vX.Y.Z
    git push origin main
    git push origin vX.Y.Z
    

    The v* tag push triggers the release pipeline (.github/workflows/release.yml).

  3. The pipeline handles everything else:

    • Runs tests
    • Cross-compiles binaries for 6 platforms (macOS ARM64/x64, Linux x64/ARM64, Windows x64/ARM64)
    • Compiles paste service binaries (same 6 platforms)
    • Generates SLSA build provenance attestations for all 12 binaries via actions/attest-build-provenance (signed through Sigstore, recorded in Rekor)
    • Creates the GitHub Release with all binaries attached
    • Publishes @plannotator/opencode and @plannotator/pi-extension to npm with provenance

    Note on immutable releases: The repo has GitHub Immutable Releases enabled, so once the v* tag is pushed and the release is created, the tag→commit and tag→asset bindings are permanent. You cannot delete and re-create a tag to "fix" a bad release — you must ship a new version. Release notes remain editable (see step 5), but everything else is locked.

  4. Monitor the pipeline: Watch the release workflow run until it completes:

    gh run list --workflow=release.yml --limit=1
    gh run view <run-id> --log
    

    Verify:

    • All jobs pass (test, build, release, npm-publish)
    • The GitHub Release was created with all binary artifacts
    • npm packages published successfully (check with npm view @plannotator/opencode version and npm view @plannotator/pi-extension version)

    If anything fails, investigate the logs and report to the user before retrying.

  5. Replace the release notes: Once the release is live and verified, replace the auto-generated notes body with the drafted release notes:

    gh release edit vX.Y.Z --notes-file RELEASE_NOTES_v<VERSION>.md
    

Checklist

Before tagging, verify:

  • All 7 version files bumped consistently
  • Release notes drafted and reviewed
  • bun run build:review succeeded
  • bun run build:hook succeeded
  • bun run build:opencode succeeded
  • bun run build:pi succeeded (or pi-specific build step)
  • Version bump committed
  • Pi parity gate passed (imports, vendor.sh, dry-run pack)
  • No stale build artifacts (clean builds, no cache issues — run bun install first if dependencies changed)

After tagging, verify:

  • Release workflow completed (all 4 jobs green)
  • GitHub Release created with all binaries
  • npm packages published at correct version
  • Release notes replaced via gh release edit

GitHub 저장소

backnotprop/plannotator
경로: .agents/skills/release
0
agentsclaude-codecode-reviewcodexobsidianopencode

연관 스킬

content-collections

메타

이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.

스킬 보기

polymarket

메타

이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.

스킬 보기

creating-opencode-plugins

메타

이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.

스킬 보기

sglang

메타

SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.

스킬 보기