一键导入
update-pr
Push branch commits and update the existing PR body safely (prefer REST API)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Push branch commits and update the existing PR body safely (prefer REST API)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create git commits using goji rules from .goji.json (type/scope/emoji/signoff) with path-based heuristics.
Skill para registrar worklogs en Jira usando el issue key derivado del branch actual y una descripcion basada en los commits del branch.
Skill para listar issues no terminadas asignadas al usuario en Jira usando `jasper.toml`, elegir una y crear un branch `feature/<ISSUE-KEY>`.
Skill para generar un reporte de implementacion para el issue de Jira derivado del branch actual usando un template y un resumen basado en commits, y publicarlo como comentario.
Skill para crear issues de tipo epic y/o task en Jira Cloud a partir de un archivo Markdown y luego completar componentes, labels y issue keys.
Create consistent releases and changelogs
| name | update-pr |
| description | Push branch commits and update the existing PR body safely (prefer REST API) |
| triggers | ["Use the skill `github-update-pr`","Refresh the existing pull request description","Update the PR body to match the latest diff"] |
| license | Proprietary |
.github/PULL_REQUEST_TEMPLATE.md using the current main...HEAD diff.gh pr update (fallback to gh api).Use this when you already have a PR open and need to refresh its description to match the latest branch changes.
task validategit diff main...HEAD --statgit diff main...HEADgit log main...HEAD --onelinegit push -u origin HEADgit pushgh pr view "$(git rev-parse --abbrev-ref HEAD)" --json number,title,urlgh pr list --head "$(git rev-parse --abbrev-ref HEAD)" --json number,title,url.github/PULL_REQUEST_TEMPLATE.md) and fill:
main...HEAD diff (group by area; reference key paths)task validategh pr edit <PR_NUMBER> --body "$(cat <<'EOF'
<filled template body>
EOF
)"
owner="$(gh repo view --json owner --jq '.owner.login')"
repo="$(gh repo view --json name --jq '.name')"
gh api "repos/${owner}/${repo}/pulls/<PR_NUMBER>" \
--method PATCH \
--field body="$(cat <<'EOF'
<filled template body>
EOF
)"