원클릭으로
pauls-gerrit
Gerrit helpers for fetching unresolved comments and CL diffs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Gerrit helpers for fetching unresolved comments and CL diffs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Extract distilled page content as Markdown using Chromium's on-device ML page content annotation.
Fetch a URL using Playwright and convert its content to Markdown.
Run a Google Search and capture the AI response/Overview.
Set up or debug npm Trusted Publishing (OIDC) from GitHub Actions. Handles permissions, metadata validation, and provenance.
Paul's modern stack conventions for new projects (pnpm, native node test, esbuild, buildless-types). Consult when starting a new project or repository.
How to effectively use QMD (Quick Markdown Search) to pull in extra relevant context, run multi-query searches, extract high-scoring chunk IDs, and fetch their contents. Use this skill when asked to search across a large markdown knowledge base, run QMD queries, or retrieve deep context using the qmd CLI.
| name | pauls-gerrit |
| description | Gerrit helpers for fetching unresolved comments and CL diffs. |
This skill provides scripts to interact with Gerrit (specifically Chromium Gerrit) to fetch unresolved comments for the current branch and to download CL patches/diffs.
Get a list of unresolved comment threads for the current git branch. The branch must be configured with gerritissue and gerritserver (which is standard if you use g4 or Gerrit integration).
node agents/skills/pauls-gerrit/scripts/get-unresolved.ts
This script will:
Fetch the raw patch/diff for a specific CL.
node agents/skills/pauls-gerrit/scripts/get-cl-diff.ts <CL_URL_OR_ID>
Example:
node agents/skills/pauls-gerrit/scripts/get-cl-diff.ts 6976658
# Or with URL
node agents/skills/pauls-gerrit/scripts/get-cl-diff.ts https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6976658
If run without arguments, it will attempt to fallback to the gerritissue configured for the current git branch.