ソース情報
- リポジトリ
- DataDog/pprof-format
- ソースの最終更新活動
- 2026年6月8日 15:09
- 検出された SKILL.md の言語
- 英語
- スター
- 8
- フォーク
- 4
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/DataDog/pprof-format --skill releaseコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | release |
| description | Create a release proposal for the v2.x branch by cherry-picking commits from main |
| disable-model-invocation | true |
| argument-hint | [version (optional, auto-determined from PR labels)] |
Create a v2.x release proposal. If a version is provided as $ARGUMENTS, use it. Otherwise, determine it automatically (see step 2).
The branch-diff tool must be installed globally:
npm install branch-diff -g
Use the branch-diff tool to list commits on main not yet applied to v2.x:
branch-diff v2.x main
Review the output with the user. Skip:
Confirm the list of commits with the user before proceeding.
If the user didn't provide a version, determine it from PR labels. For each commit being cherry-picked, extract the PR number from the commit message (e.g. (#42)) and check its labels:
gh pr view <number> --json labels --jq '.labels[].name'
semver-minor label, the release is a minor bump.semver-patch label, the release is a patch bump.Get the current version from the tip of v2.x (the most recent version commit message), then compute the next version accordingly. Confirm the version with the user.
In the steps below, $VERSION refers to the determined version number.
Create a git worktree from the current repo, checking out a new branch v$VERSION-proposal based on the v2.x branch:
git worktree add ../pprof-format-v2 -b v$VERSION-proposal v2.x
All subsequent steps run in the worktree directory.
Cherry-pick the agreed-upon commits in chronological order (oldest first):
git cherry-pick <hash1> <hash2> ...
If a cherry-pick has conflicts, stop and resolve with the user.
Bump the version in package.json and package-lock.json using npm, then commit:
npm version $VERSION --no-git-tag-version
git add package.json package-lock.json
git commit -m "v$VERSION"
Push the branch and create a PR targeting v2.x:
git push -u origin v$VERSION-proposal
Create the PR with gh pr create --base v2.x. The PR body should categorize the cherry-picked PRs by type, following this pattern:
# New features
* #NNN
# Improvements
* #NNN
# Bug fixes
* #NNN
# Other (build, dev)
* #NNN
Only include sections that have entries. Reference PR numbers from the original commit messages.