python-reviewer

python-reviewer is an agent for coding agents from YousefNabil-SOC/claude-apex. It costs 43 tokens per session (821 once invoked), scanned A, a copy of python-reviewer, MIT.

A Python code review guide that checks changed Python files for style, type annotations, security risks, error handling, and speed concerns. It uses common Python checks such as PEP 8, which is the standard style guide for Python.

In plain words
What is it for?
Use it when reviewing Python changes, especially for checking SQL and command injection, unsafe file paths, secrets, weak cryptography, exception handling, type hints, and Python-specific code patterns.
Why use it?
It helps catch unsafe code, unclear types, poor error handling, and inconsistent Python style before they cause problems. It also focuses the review on files that were recently changed.

Agent

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.

agentmods
npx agentmods add agents/yousefnabil-soc/claude-apex/python-reviewer
Clone the repo
git clone --depth 1 https://github.com/YousefNabil-SOC/claude-apex

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 python-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/yousefnabil-soc/claude-apex/python-reviewer.svg)](https://agentmods.dev/agents/yousefnabil-soc/claude-apex/python-reviewer)
Your own site
<a href="https://agentmods.dev/agents/yousefnabil-soc/claude-apex/python-reviewer"><img src="https://agentmods.dev/badge/agents/yousefnabil-soc/claude-apex/python-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 821 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 91% copy Near-identical to another mod 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 $0.00043 $0.00821
Opus 5 $0.00022 $0.00411
Sonnet 5 $0.00009 $0.00164
Haiku 4.5 $0.00004 $0.00082

Measured 3d ago against content hash e2cf12989299, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

python-reviewer 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 3d 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.

Origin

This is a copy

91% identical to python-reviewer — 5 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

agents/python-reviewer.md · 99 lines

How it starts

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

You are a senior Python code reviewer ensuring high standards of Pythonic code and best practices.

When invoked:

  1. Run git diff -- '*.py' to see recent Python file changes
  2. Run static analysis tools if available (ruff, mypy, pylint, black --check)
  3. Focus on modified .py files
  4. Begin review immediately

Review Priorities

CRITICAL — Security

  • SQL Injection: f-strings in queries — use parameterized queries
  • Command Injection: unvalidated input in shell commands — use subprocess with list args
  • Path Traversal: user-controlled paths — validate with normpath, reject ..
  • Eval/exec abuse, unsafe deserialization, hardcoded secrets
  • Weak crypto (MD5/SHA1 for security), YAML unsafe load

CRITICAL — Error Handling

  • Bare except: except: pass — catch specific exceptions
  • Swallowed exceptions: silent failures — log and handle
  • Missing context managers: manual file/resource management — use with

HIGH — Type Hints

  • Public functions without type annotations
  • Using Any when specific types are possible
  • Missing Optional for nullable parameters

HIGH — Pythonic Patterns

  • Use list comprehensions over C-style loops
  • Use isinstance() not type() ==
  • Use Enum not magic numbers
  • Use "".join() not string concatenation in loops
  • Mutable default arguments: def f(x=[]) — use def f(x=None)

HIGH — Code Quality

  • Functions > 50 lines, > 5 parameters (use dataclass)
  • Deep nesting (> 4 levels)
  • Duplicate code patterns
  • Magic numbers without named constants

HIGH — Concurrency

  • Shared state without locks — use threading.Lock
  • Mixing sync/async incorrectly
  • N+1 queries in loops — batch query

MEDIUM — Best Practices

  • PEP 8: import order, naming, spacing
  • Missing docstrings on public functions
  • print() instead of logging
  • from module import * — namespace pollution
  • value == None — use value is None
  • Shadowing builtins (list, dict, str)

Diagnostic Commands

Read the full file on GitHub · 99 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. 3d ago First seen · 99 lines · 43 tokens per session scan A e2cf12989299

Subscribe to this mod's changes

python-reviewer is an agent published in the GitHub repository YousefNabil-SOC/claude-apex (2 stars, last pushed 2mo ago), licensed MIT. It adds 43 tokens to every session and 821 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to python-reviewer, differing in 5 lines, and is treated as a copy.

Related

Other agents, from other repositories

workplace-strategist

Workplace strategy consultant. Translates headcount and work styles into space programs — occupancy compliance, zone allocation, room schedules. Use for office sizing, space programming, lease-fit validation, or reprogramming an existing floor.

AlpacaLabsLLC/skills-for-architects · 51 tokens

compliance

You are the Compliance agent. Your job is license, privacy, and regulatory review: check dependency licenses, data-handling, and control coverage against GDPR/SOC2-style requirements.

WrongStack/WrongStack · 0 tokens

compliance-auditor

Agent "compliance-auditor" from WrongStack/WrongStack, covering working rules and output.

WrongStack/WrongStack · 0 tokens

accessibility-expert

WCAG compliance, screen reader compatibility, and inclusive design patterns. Use when auditing accessibility, fixing a11y issues, or designing inclusive UIs.

travisjneuman/.claude · 35 tokens

network-engineer

Expert network engineer specializing in modern cloud networking, security architectures, and performance optimization. Masters multi-cloud connectivity, service mesh, zero-trust networking, SSL/TLS, global load balancing, and advanced troubleshooting. Handles CDN optimization, network automation, and compliance. Use…

HermeticOrmus/LibreUIUX-Claude-Code · 71 tokens

cloud-architect

Expert cloud architect specializing in AWS/Azure/GCP multi-cloud infrastructure design, advanced IaC (Terraform/OpenTofu/CDK), FinOps cost optimization, and modern architectural patterns. Masters serverless, microservices, security, compliance, and disaster recovery. Use PROACTIVELY for cloud architecture, cost…

HermeticOrmus/LibreUIUX-Claude-Code · 75 tokens