원클릭으로
add-stacked-pr-breadcrumbs
Generate a stacked PR breadcrumbs block to add at the beginning of a PR body
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate a stacked PR breadcrumbs block to add at the beginning of a PR body
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Capture notes into your daily journal using the jrnl CLI
Create a Google Task via the IFTTT JSON webhook
Create a git commit using the message format below
Split working tree changes into up to five atomic commits, each with a message generated using the git-commit skill
Use Bun's shell API ($ from "bun") when writing or editing scripts that run shell commands in src/. Use when adding or changing subprocess/shell usage under src/, or when the user asks for shell execution in this project. Prefer Bun Shell over child_process or execSync.
Polish text by refining clarity, coherence, and conciseness
SOC 직업 분류 기준
| name | add-stacked-pr-breadcrumbs |
| description | Generate a stacked PR breadcrumbs block to add at the beginning of a PR body |
| disable-model-invocation | true |
Generate a stacked PR breadcrumbs block to add at the beginning of a PR body.
Use git branch-tree to figure out the branch hierarchy. Then lookup corresponding PR numbers for each branch and generate the breadcrumbs in this exact format:
> [!IMPORTANT]
> This is a stacked PR:
> - #<base_pr>
> - #<current_pr> :point_left:
> - #<child_pr>
Use gh to add the generated breadcrumbs block to the PR. If the PR already has a breadcrumbs block, replace it with the new one. Use a temp file for the PR body to ensure correct format.
:point_left: at the end> [!IMPORTANT] callout> This is a stacked PR:#> to maintain the blockquote formatIf the user provides: base PR #948, then #950, and current PR #951
Output:
> [!IMPORTANT]
> This is a stacked PR:
> - #948
> - #950
> - #951 :point_left:
If the user provides: base PR #948, current PR #950
Output:
> [!IMPORTANT]
> This is a stacked PR:
> - #948
> - #950 :point_left: