원클릭으로
cc-describe-pr
Generate PR Description
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate PR Description
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Manage and configure Omarchy Linux systems. Use when user asks about Omarchy, Hyprland, themes, keybindings, system config, or any omarchy-* commands.
Use when building or modifying Datastar-powered UI — SSE streams, templ components, form handlers, signals, morph patterns, loading indicators. Enforces the Tao of Datastar (backend is source of truth, CQRS, fat morph, signals sparingly). Use for any work touching .templ files, SSE handlers, or Datastar attributes.
Create or fix static HTML slide decks powered by Datastar signals. Use when asked to make "datastar slides", "HTML slide deck", "slide deck with Datastar buttons", "arrow-key slides", or fix broken Datastar slide navigation. Covers v1 colon attribute syntax, local UI signals, keyboard handlers, dot indicators, and compact slide layout.
Address GitHub PR review comments in pi. Use when asked to handle PR comments, respond to review feedback, fix review comments, reply to GitHub PR comments, or work through unresolved review threads. Fetches comments with gh, batches triage with the user, applies fixes on the correct branch, and replies on GitHub using pi's /answer flow.
Research Codebase
Build and customize pi itself (not end-user task execution). Use when asked to create or modify pi config, extensions, AGENTS.md behavior, skills/prompts/themes loading, package wiring, or integration surfaces for external tools/services.
| name | cc-describe-pr |
| description | Generate PR Description |
You are tasked with generating a comprehensive pull request description following the repository's standard template.
Read the PR description template:
pull_request_template.md exists in the root of the repository (fall back to ~/dotfiles/pull_request_template.md)Identify the PR to describe:
gt branch infoCheck for existing description:
thoughts/shared/prs/{number}_description.md already existsGather comprehensive PR information:
git diff $(gt parent) --name-only
db/, proto/, api/, workflows/, pkg/ or frontend/apps directoriespkg/proto, frontend/packages/protoAnalyze the changes thoroughly: (ultrathink about the code changes, their architectural implications, and potential impacts)
IMPORTANT: Ask the engineer questions of how they have manually verified the changes
Get metadata
git config user.name to get the git username for the pr description directoryGenerate the description:
Save and sync the description:
thoughts/{git_username}/prs/{number}_description.mdUpdate the PR:
gh api repos/premiumlabs/monorepo/pulls/{number} --method PATCH --field body="$(cat /full/path/to/thoughts/{git_username}/prs/{number}_description.md)"
cat