ai-dial-chat: Skill for Claude Code

.claude/skills/address-current-branch-review/SKILL.md

address-current-branch-review is a skill for Claude Code, Codex from epam/ai-dial-chat. It costs 59 tokens per session (1,393 once invoked), scanned A, original, Apache-2.0.

A workflow for handling unresolved comments on the GitHub pull request linked to the current Git branch. It determines which comments require code changes and checks the resulting fixes.

In plain words
What is it for?
Use it to inspect review threads, classify comments, implement required fixes, and verify those fixes. Posting replies is supported only when explicitly requested after pushing the changes.
Why use it?
It separates actionable review feedback from comments that do not require changes. It also prevents review replies from being posted before the fixes are pushed and visible in the pull request.

Skill for Claude CodeCodex

Written for Claude Code and Codex: installed under .claude/, but also agents/openai.yaml present. Also seen: mentions AGENTS.md.

This is epam/ai-dial-chat's own configuration. It tells Claude Code and Codex how to work on ai-dial-chat itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ai-dial-chat configures →

Reuse

Borrowing it

Nothing to install: this file belongs to epam/ai-dial-chat. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/epam/ai-dial-chat/development/.claude/skills/address-current-branch-review/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/epam/ai-dial-chat

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for address-current-branch-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/epam/ai-dial-chat/address-current-branch-review/github.svg)](https://agentmods.dev/skills/epam/ai-dial-chat/address-current-branch-review)
Your own site
<a href="https://agentmods.dev/skills/epam/ai-dial-chat/address-current-branch-review"><img src="https://agentmods.dev/badge/skills/epam/ai-dial-chat/address-current-branch-review/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for address-current-branch-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/epam/ai-dial-chat/address-current-branch-review"><img src="https://agentmods.dev/badge/skills/epam/ai-dial-chat/address-current-branch-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,393 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00059 $0.01393
Opus 5 $0.00030 $0.00696
Sonnet 5 $0.00012 $0.00279
Haiku 4.5 $0.00006 $0.00139

Measured 12d ago against content hash 1474670c1ded, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

address-current-branch-review 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 12d 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/address-current-branch-review/SKILL.md · 119 lines

How it starts

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

Address Current Branch Review

Process current-branch review feedback: inspect thread state, decide whether code must change, and verify any fix. Treat posting review replies as a separate, explicitly authorized action after push.

Reply Authorization Gate

  • A request to fix, handle, address, or process review comments authorizes code changes only. It does not authorize posting GitHub comments.
  • Post replies only when the user separately and explicitly asks to reply or answer the review comments.
  • Before posting a fix reply, verify that the relevant commit is pushed and included in the PR head. Local working-tree changes or unpushed commits are never sufficient.
  • If the fix is not visible in the PR, do not post. Tell the user to push first.
  • Replies must describe the current PR state as already updated or fixed. Never post wording such as “prepared locally,” “will appear after push,” or any other future-tense visibility disclaimer.

Workflow

  1. Read repository instructions before editing.

    • Read root AGENTS.md and openspec/config.yaml.
    • Invoke nx-workspace before exploring project ownership or targets.
    • Apply any area-specific skill required by the touched files.
  2. Resolve the current pull request.

    • Read the current branch and origin repository from local git.
    • Prefer the GitHub app to find the open PR whose head matches the branch.
    • Use gh pr view only when the GitHub app cannot resolve it.
    • Stop if there is no unique open PR for the branch.
  3. Load thread-aware review data.

    • Use the GitHub app review-thread action to get is_resolved, is_outdated, path, line, and replies.
    • Fetch flat PR comments for numeric comment IDs only when the user explicitly asked to post replies.
    • Ignore resolved, outdated, approval-only, informational, bot-only, and duplicate threads.
    • Do not assume flat comments represent thread resolution state.
  4. Prevent duplicate work.

    • Read every reply already present in the thread.
    • Skip a thread if the requested change is already present in the current code and an adequate answer was already posted.
    • If code is fixed but unanswered, report that status. Post the missing reply only after explicit reply authorization and the push check.

Read the full file on GitHub · 119 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 119 lines · 59 tokens per session scan A 1474670c1ded

Subscribe to this mod's changes

address-current-branch-review is a skill published in the GitHub repository epam/ai-dial-chat (504 stars, last pushed today), licensed Apache-2.0. It adds 59 tokens to every session and 1,393 once invoked, about $0.0003 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

github

GitHub via gh CLI: PRs, issues, reviews, repos, auth.

NousResearch/hermes-agent · 19 tokens

github

GitHub operations via gh CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing run logs. NOT for: complex web UI interactions requiring manual browser flows (use browser tooling when available)…

opensquilla/opensquilla · 101 tokens

issue-to-pr-resolver

Implement a GitHub issue end-to-end — create a worktree branch, implement the feature with tests, create a draft PR, then iteratively resolve all CI failures and review comments until the PR is clean. Use when you need to fully implement a GitHub issue from start to merge-ready. Triggers on "implement issue", "resolve…

homeassistant-ai/ha-mcp · 85 tokens

my-pr-checker

Manage your own GitHub pull requests — check CI status, inline review comments, PR-level comments, resolve review threads, fix issues, and iterate until all checks pass and threads are resolved. Use for managing your own PRs (not external contributions). Triggers on "check my PR", "check PR", "/my-pr-checker ".

homeassistant-ai/ha-mcp · 75 tokens

meta-codereview-current-diff

Read the current uncommitted diff, run three independent reviewers (safety + tests-coverage + style) in parallel, then arbitrate a single BLOCK / BLOCKWITHOVERRIDE / PASSWITHNOTES verdict. Use before commit when you want a multi-perspective second-opinion instead of a single-reviewer agent loop.

opensquilla/opensquilla · 73 tokens

goal-pr

Drive a pull request to a clean state and merge it: run the review-pr skill, fix every mid-or-above finding, and repeat until no mid-or-above findings remain, then merge. Use when the user wants to finish a PR by reviewing, fixing, and merging it, or triggers on "the goal-pr skill".

dyoshikawa/rulesync · 74 tokens