solo: Skill for Claude Code

.claude/skills/solo-pr-review/SKILL.md

solo-pr-review is a skill for Claude Code from hiero-ledger/solo. It costs 143 tokens per session (3,825 once invoked), scanned A, original, Apache-2.0.

A pull-request review guide for the Solo TypeScript project. It lists the project's required style, design, command-line, error-handling, compatibility, and storage conventions.

In plain words
What is it for?
It is for reviewing Solo pull requests, branches, or file changes and identifying violations of the project's documented coding and behavior standards.
Why use it?
It helps reviewers apply the project's own rules consistently instead of relying only on general TypeScript practices. It also directs reviewers to the files that define those rules.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

This is hiero-ledger/solo's own configuration. It tells Claude Code how to work on solo 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 solo configures →

Reuse

Borrowing it

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

Made for: Claude Code.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/hiero-ledger/solo/solo-pr-review"><img src="https://agentmods.dev/badge/skills/hiero-ledger/solo/solo-pr-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 143 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,825 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.00143 $0.03825
Opus 5 $0.00072 $0.01912
Sonnet 5 $0.00029 $0.00765
Haiku 4.5 $0.00014 $0.00382

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

Security

Grade A, and why

solo-pr-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 7d 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/solo-pr-review/SKILL.md · 293 lines

How it starts

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

Solo PR Review

Review pull requests in hiero-ledger/solo the way the Solo Team reviews them. This skill encodes the conventions enforced repeatedly across the project so reviews stay consistent whether they're authored by a human or generated here.

When to use

  • The user supplies a PR number, PR URL, branch name, commit range, or file list and asks for a review.
  • The user asks "what would you flag in this change?", "review my branch", or similar.
  • The user is the PR author preparing to push and wants a self-review pass.

Do not use for: greenfield architecture proposals (use architecture-designer), security-only audits (use security-review), or generic non-Solo TypeScript reviews (use code-reviewer).

Required reading before reviewing

Open these before writing any feedback. They are the rulebook — the review must cite them when something is off.

File What it owns
docs/contributing/typescript-code-style.md The full TS style guide (DRY/SOLID, naming, imports, types, etc.)
CLAUDE.md Project-level conventions and gotchas (flags, env vars, etc.)
eslint.config.mjs Enforced lint rules (errors, not warnings)
.prettierrc.json Formatting (120 col, single quotes, etc.)

Core workflow

  1. Establish intent. Read the PR description (and any linked issue) and state the goal in one sentence. If the goal is unclear, stop and ask the author — do not guess.
  2. Inventory the diff. List every file changed and group them: source, tests, workflows, docs, examples, generated. Note the size of each group. Big diffs that touch many groups warrant a structural pass before a line pass.
  3. Structural pass. Walk the checklist in references/solo-review-checklist.md. This catches the recurring issues ( DRY violations, exported functions, generic-flag wording, error-handling drift, missing Windows support, etc.) before getting into line-by-line nits.
  4. Line pass. Read the actual diff. For each finding, decide:
    • Critical — bug, security issue, data loss, broken backwards compatibility, build/CI break.
    • Major — design/architecture issue, DRY/SOLID violation, missing default behavior, cross-platform regression, drift from existing patterns.
    • Minor — naming, comment hygiene, suggestion-block one-liners.
    • Question — something that looks off but might have a reason. Ask before claiming.
  5. Comment-to-implementation pass. For every changed behavioral comment, JSDoc, test name/comment, example, documentation claim, and PR-description assertion, trace the claim to the final source and test behavior. Confirm that APIs, control flow, process boundaries, logging, configuration propagation, and claimed coverage are exactly what the text says. Treat wording left over from an earlier commit or implementation as a finding — not as reliable context — and distinguish a documentation-only mismatch from behavior that is actually broken or concealed by the stale wording.
  6. Test pass. Are there tests? Are they unit (cheap, fast) or did the author reach for E2E/nightly when a unit test would do? Do the tests execute the behavior their names and the PR description claim they cover? Flag missing or overstated unit coverage explicitly.
  7. Verification ledger. Before writing anything, tag every Critical and Major with the evidence actually behind it:
    • executed — you ran a command and read its output. Quote the load-bearing lines in the finding itself.
    • read-in-full — you read the entire file, issue, or rule the claim depends on.
    • inferred — you reasoned from the diff without running or fully reading anything.

Read the full file on GitHub · 293 lines

Files

What ships with it

2 files 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. 7d ago Changed · +47 lines 72f88a657dfb
  2. 10d ago First seen · 246 lines · 143 tokens per session scan A 857c0382f3b1

Subscribe to this mod's changes

solo-pr-review is a skill published in the GitHub repository hiero-ledger/solo (43 stars, last pushed yesterday), licensed Apache-2.0. It adds 143 tokens to every session and 3,825 once invoked, about $0.0007 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-09-01.

Related

Other skills, from other repositories

code-changes

Orchestration workflow for any task that ends in code changes: issue analysis, pull request review, feature implementation, bug fixes, refactors, or fleshing out an idea. MUST be invoked at the start of such a task, before reading or writing any code. Defines how to analyze first, gate on user approval, plan, pick the…

JanDeDobbeleer/oh-my-posh · 88 tokens

clean-abap

Clean ABAP coding standards and best practices. Use when writing ABAP code, reviewing ABAP code, or refactoring ABAP code to ensure it follows SAP's official Clean ABAP style guide. Covers naming conventions, modern language constructs, class/method design, error handling, formatting, comments, and unit testing…

marcellourbani/vscode_abap_remote_fs · 69 tokens

code-review

Review the changed lines of a single file in a pull request for bugs, correctness, error handling, security, and maintainability, and return structured findings.

cloudflare/cloudflare-docs · 34 tokens

reconcile-code-review

Reconcile raw specialist findings against the previous bot review and human PR comments to produce a final classified finding list.

cloudflare/cloudflare-docs · 27 tokens

review-validation

Validate review findings from specialist agents by reading the actual repo file content and checking each finding for accuracy, applicability, and false positives.

cloudflare/cloudflare-docs · 29 tokens

style-guide-review

Review changed MDX/docs files in a pull request against the Cloudflare docs style guide and return structured findings.

cloudflare/cloudflare-docs · 26 tokens