qa-verify

A read-only release audit that compares GitHub quality-assurance and bug issues with the commits meant to fix them. GitHub is a platform for hosting code, tracking issues, and reviewing changes.

In plain words
What is it for?
Use it before releasing a version to check the matching GitHub milestone's QA or bug issues against fixes on the main branch.
Why use it?
It helps find release issues with no fix, incomplete fixes, or fixes that do not match the reported problem before a build is published.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/heegyeong/composesample/qa-verify
Any agent
npx skills add HeeGyeong/ComposeSample --skill qa-verify
Clone the repo
git clone --depth 1 https://github.com/HeeGyeong/ComposeSample

Made for: Claude Code, Codex.

Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,322 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00084 $0.03322
Opus 5 $0.00042 $0.01661
Sonnet 5 $0.00017 $0.00664
Haiku 4.5 $0.00008 $0.00332

Measured 2d ago against content hash 853c9dabaa92, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

qa-verify scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/qa-verify/SKILL.md · 161 lines

How it starts

The opening of the file, as written. The whole thing — 161 lines — stays where its author put it; the contents beside it link to each section on GitHub.

qa-verify — 릴리즈 QA 감사 하네스 (GitHub)

릴리즈의 GitHub QA 이슈 목록 ↔ fix 커밋을 대조해, 수정 누락(NO_FIX)·불완전(INCOMPLETE)·증상 불일치(MISMATCH)를 빌드 배포 전에 검출하는 read-only 감사 하네스입니다. 릴리즈/빌드를 올리기 직전에 돌리는 것이 자연스러운 사용 시점입니다.

역할 경계: 이 하네스는 "각 이슈의 수정이 존재하고, 보고된 증상을 해결하는가"(이슈-수정 대응 여부)만 본다.

  • diff 안의 새 버그/품질 문제 탐색은 하지 않는다/code-review 의 영역.
  • 같은 패턴의 전파 탐색은 하지 않는다/find-similar-bugs 의 영역. INCOMPLETE 이슈가 나오면 보고서에서 /find-similar-bugs #NNNN 실행을 권고만 한다 (자동 연쇄 실행 금지).

호출: /qa-verify [버전]

  • 예: /qa-verify v1.2.0
  • 버전은 GitHub milestone 으로 매핑한다. 생략 시 현재 체크아웃된 git 태그/브랜치명에서 추출 → 그것도 모호하면 열린 milestone 목록을 보여주고 사용자에게 확인.

GitHub 매핑 규약 (ComposeSample 기준)

  • 버전 = milestone. QA 이슈 = 해당 milestone + qa(없으면 bug) 라벨이 붙은 이슈.
  • 커밋 매핑 기준 ref = main. ComposeSample 은 release 브랜치 없이 main 에 직접 커밋·푸시하므로 release 브랜치를 찾지 않는다.
  • 인증은 gh CLI 가 담당한다(토큰을 직접 다루지 않음). milestone/label 운영을 하지 않는 저장소라면 이 하네스는 감사할 이슈가 없어 빈 보고서를 낸다.

오케스트레이터 절차 (메인 루프가 따른다)

1. 버전 결정

$ARGUMENTS 의 버전(milestone 명) → 없으면 git describe --tags --abbrev=0 또는 git branch --show-current 에서 추출 → 그것도 모호하면 gh api repos/{owner}/{repo}/milestones --jq '.[].title' 로 열린 milestone 을 보여주고 사용자에게 확인.

2. QA 이슈 수집 (인라인)

  • 인증: gh auth status 로 로그인 상태를 확인한다. 인증돼 있지 않으면 즉시 중단하고 gh auth login 안내 (이슈 목록 없이는 진행 불가). gh CLI 가 없으면 설치 안내 후 중단.
  • 조회 (읽기 전용 — 이슈 생성/수정/코멘트/라벨 변경 등 쓰기 호출 절대 금지):
    gh issue list --milestone "{version}" --label "qa" --state all \
      --json number,title,body,labels,state --limit 100
    
    qa 라벨 결과가 0건이면 라벨을 bug 로, 그래도 0건이면 라벨 없이 milestone 만으로 재시도하고 그 사실을 사용자에게 알린다. 100건 초과 시 gh 페이지네이션을 위해 --limit 을 올려 전부 수집한다.
  • 보안: 토큰 등 자격증명을 출력/로그/보고서에 노출하지 않는다 (gh 가 인증을 관리하므로 토큰을 직접 다루지 않지만, 혹시 노출되는 값이 있으면 마스킹).

3. 이슈↔커밋 매핑 (인라인)

이슈마다 git log --grep "#NNNN" --pretty="%H %s" origin/main (origin/main 이 없으면 현재 브랜치) 로 fix 커밋을 수집한다. (GitHub 의 squash-merge 메시지·일반 커밋 메시지의 #NNNN 참조를 잡는다.)

  • 커밋 0건 이슈 → NO_FIX 로 즉시 분류 (에이전트 불필요 — 인라인 처리).
  • 커밋이 있는 이슈만 Workflow 로 넘긴다: items = [{ issue:{number,title,body,labels,state}, commits:[{hash,subject}] }]

Read the full file on GitHub · 161 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 161 lines · 84 tokens per session scan A 853c9dabaa92

Subscribe to this mod's changes

qa-verify is a skill published in the GitHub repository HeeGyeong/ComposeSample (11 stars, last pushed 2d ago), licensed MIT. It adds 84 tokens to every session and 3,322 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

git-workflow-and-versioning

Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple parallel streams. Use when cutting a release, choosing a semantic version bump…

addyosmani/agent-skills · 74 tokens

release

Cut a Symphony release by bumping the committed version, landing it, tagging the merged commit, and verifying the Burrito release workflow. Use when asked to release, tag, or retag Symphony.

openai/symphony · 42 tokens

release-notes

Draft concise release notes.

ollama/ollama · 9 tokens

greptimedb-release

Runbook for publishing a new GreptimeDB version (tag + GitHub release + docs release-note PR) on the upstream GreptimeTeam/greptimedb repo. Use when asked to "release" / "publish" a GreptimeDB version (e.g. v1.1.0, v1.0.3).

GreptimeTeam/greptimedb · 75 tokens

refresh-arm-sdk-release

WORKFLOW SKILL — Prepares Azure.ResourceManager SDK refresh pull requests in azure-sdk-for-net. WHEN: "prepare sdk refresh", "refresh Azure.ResourceManager package", "update ARM SDK from autorest tag", "refresh changelog dependencies". INVOKES: git and GitHub pull request tools for branch, commit, push, and PR…

Azure/azure-sdk-for-net · 91 tokens

store-update

在 CCX Desktop 发布后下载 Store MSIX 并生成发布公告。用户提到 Store 上架、MSIX、从 GitHub Release 下载 store.msix、发布后同步 Windows Store、从 release 填写商店更新内容时必须使用此技能。该技能会下载最新 GitHub Release 的 amd64/arm64 MSIX,校验 sha256,从 Release body 生成 Store listing releaseNotes 预览,并输出手动上传指引。.

BenedictKing/ccx · 100 tokens