gh-cr-submit

gh-cr-submit is a skill for Claude Code, Codex from mir-am/skills-agents-ai-coding. It costs 20 tokens per session (4,098 once invoked), scanned A, original, MIT.

A workflow for posting an AI-written code review from a local file to a GitHub pull request. A pull request is a proposed change that others review before it is merged.

In plain words
What is it for?
It helps identify a pull request, find its matching review in .opencode/review/, add a warning that the review was AI-generated, and submit it as a neutral comment.
Why use it?
It avoids manually finding the review file, checking the pull request, and pasting the review into GitHub. It also checks that the GitHub command-line tool and account are ready.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions OpenCode.

Good fit It helps identify a pull request, find its matching review in .opencode/review/, add a warning that the review was AI-generated, and submit it as a neutral comment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mir-am/skills-agents-ai-coding/gh-cr-submit
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.

Any agent
npx skills add mir-am/skills-agents-ai-coding --skill gh-cr-submit
Clone the repo
git clone --depth 1 https://github.com/mir-am/skills-agents-ai-coding

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 gh-cr-submit

README.md
[![agentmods](https://agentmods.dev/badge/skills/mir-am/skills-agents-ai-coding/gh-cr-submit/github.svg)](https://agentmods.dev/skills/mir-am/skills-agents-ai-coding/gh-cr-submit)
Your own site
<a href="https://agentmods.dev/skills/mir-am/skills-agents-ai-coding/gh-cr-submit"><img src="https://agentmods.dev/badge/skills/mir-am/skills-agents-ai-coding/gh-cr-submit/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 gh-cr-submit

Your own site · 80×15
<a href="https://agentmods.dev/skills/mir-am/skills-agents-ai-coding/gh-cr-submit"><img src="https://agentmods.dev/badge/skills/mir-am/skills-agents-ai-coding/gh-cr-submit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,098 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.
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.00020 $0.04098
Opus 5 $0.00010 $0.02049
Sonnet 5 $0.00004 $0.00820
Haiku 4.5 $0.00002 $0.00410

Measured 9d ago against content hash 0531340b911c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

gh-cr-submit 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 9d 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.

skills/gh-cr-submit/SKILL.md · 544 lines

How it starts

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

What I do

  • Extract PR number from user input (supports #123, PR 123, pull request 123)
  • Validate GitHub CLI installed and authenticated
  • Validate GitHub remote exists
  • Verify PR exists on GitHub
  • Get current local branch and PR target branch
  • Handle fork scenarios (cross-repo PRs)
  • Ask user approval if local branch doesn't match PR target
  • Search for review file in .opencode/review/ matching PR number
  • Handle multiple review files (ask user to choose)
  • Read review file content
  • Prepend AI-generated warning header at the very top
  • Submit review as comment (neutral stance) to GitHub PR
  • Report success with PR URL

When to use me

Use this skill when the user asks to submit a code review to a GitHub Pull Request.

Trigger examples:

  • "Submit review for PR #123"
  • "Post the review to PR 456"
  • "Submit code review for pull request 789"
  • "Upload review to PR #123"

Prerequisites

  1. GitHub CLI installed: gh must be available

    • Check: command -v gh >/dev/null 2>&1
    • If not found: "Error: GitHub CLI not found. Install from: https://cli.github.com/"
  2. Authenticated with GitHub: User must be logged in

    • Check: gh auth status
    • If not authenticated: "Error: Not authenticated with GitHub. Run: gh auth login"
  3. GitHub remote: Repository must have a GitHub remote configured

    • Check: gh repo view --json nameWithOwner
    • If fails: "Error: This repository does not have a GitHub remote configured."
  4. Review file exists: Must have review file in .opencode/review/

    • Check: .opencode/review/ directory exists
    • If not: "Error: .opencode/review/ directory not found. Generate a review first using the gh-pr-review skill."

PR Number Extraction

Extract the PR number from user input:

  • Pattern: #?(\d+) (supports with or without #)
  • Examples: "#123" → 123, "PR 456" → 456, "pull request 789" → 789
  • If no number found: "Error: Please provide a valid PR number (e.g., 'submit review for PR #123')."

Read the full file on GitHub · 544 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. 9d ago First seen · 544 lines · 20 tokens per session scan A 0531340b911c

Subscribe to this mod's changes

gh-cr-submit is a skill published in the GitHub repository mir-am/skills-agents-ai-coding (2 stars, last pushed 4mo ago), licensed MIT. It adds 20 tokens to every session and 4,098 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories

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)…

understudy-ai/understudy · 101 tokens

git-workflow

Conventional commits, PR creation, and quality gate verification.

andreibesleaga/GABBE · 15 tokens

review-gate

HARD GATE before PR creation - verifies review artifact exists in issue comments, all findings addressed or tracked, blocks PR creation if requirements not met.

troykelly/claude-skills · 33 tokens

hunk-extensions

Maps the hunkdiff/extension authoring surface for Hunk, the terminal diff viewer — hiding or reordering reviewed files, docked panes, alternate file views, commands and key bindings, dialogs, workspace writes, themes, syntax languages, VCS backends, lifecycle events. Use when writing, debugging, or installing a Hunk…

modem-dev/hunk · 105 tokens

hunk-launch-video

Produces Hunk videos by driving the real TUI headlessly in a PTY, compositing captioned 1080p frames in Chromium, and encoding with ffmpeg. Use for feature demos, workflow explainers, announcements, launch videos, and full-release roundups.

modem-dev/hunk · 60 tokens

hunk-release

Prepares, publishes, verifies, and curates Hunk releases. Use for release metadata, benchmarks, tags, publishing, release videos, backports, or recovery.

modem-dev/hunk · 38 tokens