一键导入
validate-pr
Find vulnerabilities or errors in a merge request (checks, scans, merge blockers) and propose fixes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Find vulnerabilities or errors in a merge request (checks, scans, merge blockers) and propose fixes.
用 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 | validate-pr |
| description | Find vulnerabilities or errors in a merge request (checks, scans, merge blockers) and propose fixes. |
| license | Proprietary |
glab mr list --assignee @me --state opened --output json | jq -r '.[] | "!\(.iid)\t\(.source_branch) -> \(.target_branch)\t\(.updated_at)\t\(.title)\t\(.web_url)"'
Notes:
glab mr list --author @me --state opened --output json | jq -r '.[] | "!\(.iid)\t\(.source_branch) -> \(.target_branch)\t\(.updated_at)\t\(.title)\t\(.web_url)"'
glab mr view <IID> --output json
branch="$(glab mr view <IID> --output json | jq -r '.source_branch')"
glab ci status --branch "${branch}"
If there are failing runs, inspect logs:
glab ci list --branch "${branch}"
Pick the failing pipeline/job and inspect it. For a pipeline overview:
glab ci view -b "${branch}"
For a failed job log:
glab ci trace <JOB_ID>
glab mr diff <IID>
git diff --stat main...HEAD
Vulnerability findings in GitLab may require Ultimate-tier features and API permissions. Best-effort example:
project="$(glab repo view --output json | jq -r '.path_with_namespace')"
glab api "projects/$(python3 -c 'import sys, urllib.parse; print(urllib.parse.quote(sys.argv[1], safe=""))' "${project}")/vulnerability_findings"
If the API call returns 403/404, report that vulnerability findings are not accessible with current permissions or project tier and continue with checks/logs.
Provide: