dev-guide-pr-review-deliverables

dev-guide-pr-review-deliverables is a skill for Claude Code, Codex from Lingtai-AI/lingtai. It costs 78 tokens per session (1,763 once invoked), scanned A, original, Apache-2.0.

A guide for making a code change ready for review, including checks, an explanation for human reviewers, and independent review passes.

In plain words
What is it for?
Use it to check a pull request, create a self-contained HTML explanation, clean up its description, and record test and review results.
Why use it?
It brings the validation and documentation needed before asking maintainers to review or merge a pull request, which is a proposed code change.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code; mentions Codex.

Good fit Use it to check a pull request, create a self-contained HTML explanation, clean up its description, and record test and review results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lingtai-ai/lingtai/pr-review-deliverables
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 Lingtai-AI/lingtai --skill pr-review-deliverables
Clone the repo
git clone --depth 1 https://github.com/Lingtai-AI/lingtai

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 dev-guide-pr-review-deliverables

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/lingtai-ai/lingtai/pr-review-deliverables"><img src="https://agentmods.dev/badge/skills/lingtai-ai/lingtai/pr-review-deliverables.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,763 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 76
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.00078 $0.01763
Opus 5 $0.00039 $0.00881
Sonnet 5 $0.00016 $0.00353
Haiku 4.5 $0.00008 $0.00176

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

Security

Grade A, and why

dev-guide-pr-review-deliverables 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 13d 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.

tui/internal/preset/skills/lingtai-dev-guide/reference/pr-review-deliverables/SKILL.md · 147 lines

How it starts

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

PR Review & Deliverables

Nested lingtai-dev-guide reference. Read this after the top-level router sends you here to prepare a PR for review, build its human-facing explainer, and run review gates before asking for a merge.

It consolidates the PR-review-gate, HTML-explainer, deliverable-template, and release-style-audit practices, covering preparing and reviewing PRs and their human deliverables. Release publication is outside this bundled guide — use the dedicated release owner available in the maintainer's environment.

Core principle

A PR is review-ready only when (1) the diff is clean and validated, (2) a self-contained HTML explainer tells the human the story, and (3) the change has passed at least one independent review pass. Opening, editing, and merging PRs are external side effects: do them only after an explicit maintainer authorization for that side effect.

1. PR readiness gate

  • Clean diff: git diff --check (no trailing whitespace / conflict markers).
  • Targeted tests for the changed area pass; record commands and results.
  • If you touched utility/dev-guide skills, the nested-reference tests and the root router catalog/routing table were updated in the same commit.
  • Anatomy travels with code: any moved/renamed/split file cited by an ANATOMY.md is updated in the same commit.
  • No secrets, tokens, or private absolute paths in the diff or the explainer.
  • A self-contained HTML explainer exists (see §3).

Known repo pitfalls: docs/stars/stars.csv may use CRLF intentionally — do not "normalize" it; and portal tests may need frontend assets built first (npm --prefix portal/web run build).

2. Independent review passes (gates, not permission)

Run at least one independent, read-only review pass before merge. Strongest first:

  1. Multi-model / daemon review. Generate a diff prompt and have a read-only daemon (Claude Code / Codex) or a second model review correctness, scope, and regressions. Save the review as an artifact so it is auditable. Run API-backed reviewers with keys from the environment (<API_KEY_ENV>), never inline.
  2. Claude review gate. A focused Claude Code review of the diff for correctness bugs and reuse/simplification cleanups.
  3. Self review against the readiness gate (§1).

Read the full file on GitHub · 147 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. 13d ago First seen · 147 lines · 78 tokens per session scan A c9ac2a7aa857

Subscribe to this mod's changes

dev-guide-pr-review-deliverables is a skill published in the GitHub repository Lingtai-AI/lingtai (677 stars, last pushed yesterday), licensed Apache-2.0. It adds 78 tokens to every session and 1,763 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.