dograh: Skill for Claude Code

.agents/skills/review-pr/SKILL.md

review-pr is a skill for Claude Code, Codex from dograh-hq/dograh. It costs 109 tokens per session (2,705 once invoked), scanned A, original, BSD-2-Clause.

A review guide for checking Dograh pull requests, branch changes, or pasted patches for project-specific security and correctness problems.

In plain words
What is it for?
It helps assess whether changes are safe to merge by checking relevant files, comparing them with repository patterns, and reporting concrete findings with file and line references.
Why use it?
It focuses attention on risks that generic code checks may miss, such as missing organization access controls, unsafe webhooks, and incorrect database access.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is dograh-hq/dograh's own configuration. It tells Claude Code and Codex how to work on dograh 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 dograh configures →

About the project

Dograh is an open-source, self-hostable platform for building voice AI agents that combine speech recognition, language models, and speech synthesis. Teams use its visual workflow builder and telephony integrations to create and operate voice agents while choosing their own providers and infrastructure.

dograh-hq/dograh · 5,621 stars · on GitHub · app.dograh.com

Reuse

Borrowing it

Nothing to install: this file belongs to dograh-hq/dograh. 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/dograh-hq/dograh/main/.agents/skills/review-pr/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dograh-hq/dograh

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 review-pr

README.md
[![agentmods](https://agentmods.dev/badge/skills/dograh-hq/dograh/review-pr/github.svg)](https://agentmods.dev/skills/dograh-hq/dograh/review-pr)
Your own site
<a href="https://agentmods.dev/skills/dograh-hq/dograh/review-pr"><img src="https://agentmods.dev/badge/skills/dograh-hq/dograh/review-pr/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 review-pr

Your own site · 80×15
<a href="https://agentmods.dev/skills/dograh-hq/dograh/review-pr"><img src="https://agentmods.dev/badge/skills/dograh-hq/dograh/review-pr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 109 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,705 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.00109 $0.02705
Opus 5 $0.00055 $0.01352
Sonnet 5 $0.00022 $0.00541
Haiku 4.5 $0.00011 $0.00270

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

Security

Grade A, and why

review-pr 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 11d 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.

.agents/skills/review-pr/SKILL.md · 282 lines

How it starts

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

Reviewing PRs (dograh)

This skill is for reviewing any PR, including PRs written by maintainers. Focus on Dograh-specific regression risks. Skip generic lint, formatting, and type-check comments unless they connect to one of the repo-specific issues below.

The main failure modes in this repo are:

  • Missing org scoping on request-reachable reads or writes
  • Authless routes or websockets
  • Trusting unsigned webhook fields
  • SQL written outside api/db/*_client.py
  • Per-worker cache state updated without worker sync
  • UI calls that bypass the generated SDK
  • Migrations that are not safe on existing production data

How to drive the review

  1. Get the diff:
    • GitHub PR: gh pr diff <N> or gh pr view <N> --json files,additions,deletions
    • Local branch: git diff origin/main...HEAD
  2. Bucket changed files into the sections below.
  3. Run only the sections relevant to the changed files.
  4. Report findings as <file>:<line> -> <problem> -> <correct pattern>.

Freshness rule

Treat this file as review policy and navigation, not as a frozen inventory.

  • If the current repo conflicts with this skill, trust the repo and mention the drift.
  • Do not rely on static allowlists or exact line numbers from this file.
  • Review against the code in the PR and the current local repo, not against old prose.

File to section map

Path pattern in diff Sections to run
api/routes/*.py 1, 2, 8
api/db/*_client.py, api/db/models.py 2, 3
api/services/**/*.py 2, 3, 4
api/tasks/*.py 2, 3, 5
api/alembic/versions/*.py 6
api/mcp_server/**, api/services/workflow/mcp_*.py 1, 2, 7
ui/** 9
api/constants.py, anything os.getenv 10
api/tests/** 11
api/schemas/*.py 12

Read the full file on GitHub · 282 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. 11d ago First seen · 282 lines · 109 tokens per session scan A 623fc749a2f9

Subscribe to this mod's changes

review-pr is a skill published in the GitHub repository dograh-hq/dograh (5,621 stars, last pushed yesterday), licensed BSD-2-Clause. It adds 109 tokens to every session and 2,705 once invoked, about $0.0005 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

Interact with GitHub (issues, PRs, repos, releases) using the gh CLI. Use when asked to read or write GitHub state — open an issue, fetch PR diff, comment, list runs, etc.

Team-Commonly/commonly · 49 tokens

github

Full GitHub CLI control — issues, PRs, code reviews, repo management. Uses gh CLI with auth detection, rate limiting, and templates. Triggers on: github, issue, pull request, PR, code review, repo, branch, label, assignee, milestone, release, workflow, actions.

adolfousier/opencrabs · 0 tokens

review-preflight

Review tooling for a PR: review-preflight prints REVIEW.md's criteria and the PR's live gate state before a review; ci-triage maps a PR's failing checks to already-filed issues.

sonichi/sutando · 45 tokens

reviewing-personhog-protocol

The full review process for personhog coordination-protocol changes — leases, fencing, handoffs, supervisors, failure budgets, warming, and changelog semantics. Use before pushing or requesting review on any personhog protocol changeset, when asked for an exhaustive or careful review of personhog code, and after any…

PostHog/posthog · 111 tokens

repo-readiness-audit

Use when a user asks whether an identified repository is ready for further development, release work, a new feature, handoff, or a new contributor, requiring a disciplined read-only audit before an evidence-backed verdict.

asimons81/hermes-field-kit · 48 tokens

twin-pr-triage

Scan open pull requests, assess risk and complexity, and build a prioritized review queue. Used by digital twin personas to reduce PR review cognitive load.

CoWork-OS/CoWork-OS · 36 tokens