django-reviewer

django-reviewer is a skill for Claude Code from vintasoftware/django-ai-plugins. It costs 69 tokens per session (1,255 once invoked), scanned A, original, no licence file.

A review guide for Django, a Python web framework, and Python code. It checks changed code against project conventions and common Django patterns.

In plain words
What is it for?
Use it after Django code changes or when you explicitly want a review. It reports findings and only makes edits when you clearly ask for them.
Why use it?
It helps find unclear or hard-to-maintain code and common problems in Django’s database layer (ORM) or Django REST Framework (DRF) without changing behavior.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the django-reviewer plugin — 1 skill, 1 agent shipped together

Good fit Use it after Django code changes or when you explicitly want a review. It reports findings and only makes edits when you clearly ask for them.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vintasoftware/django-ai-plugins/django-reviewer
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 vintasoftware/django-ai-plugins --skill django-reviewer
Clone the repo
git clone --depth 1 https://github.com/vintasoftware/django-ai-plugins

Made for: Claude Code.

Or install django-reviewer, the plugin that ships this one along with the rest of its 1 skill, 1 agent.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/vintasoftware/django-ai-plugins/django-reviewer/github.svg)](https://agentmods.dev/skills/vintasoftware/django-ai-plugins/django-reviewer)
Your own site
<a href="https://agentmods.dev/skills/vintasoftware/django-ai-plugins/django-reviewer"><img src="https://agentmods.dev/badge/skills/vintasoftware/django-ai-plugins/django-reviewer/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 django-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/skills/vintasoftware/django-ai-plugins/django-reviewer"><img src="https://agentmods.dev/badge/skills/vintasoftware/django-ai-plugins/django-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,255 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 unknown 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.00069 $0.01255
Opus 5 $0.00034 $0.00628
Sonnet 5 $0.00014 $0.00251
Haiku 4.5 $0.00007 $0.00126

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

Security

Grade A, and why

django-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 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.

plugins/django-reviewer/portable-skills/django-reviewer/SKILL.md · 148 lines

The source is not reproduced here

No licence file

A repository with no LICENSE is all rights reserved by default, so the body is not copied here. The metadata, the measurements and the link are.

Read it on GitHub

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 · 148 lines · 69 tokens per session scan A b30bbcde32e1

Subscribe to this mod's changes

django-reviewer is a skill published in the GitHub repository vintasoftware/django-ai-plugins (136 stars, last pushed 1mo ago), with no licence file. It adds 69 tokens to every session and 1,255 once invoked, about $0.0003 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

branch-review

Review a branch before merge [target] [level].

hamr0/liteagents · 0 tokens

source-grounding

Verify version-sensitive facts against live authoritative sources before asserting them in code or answers. Triggers on: "/source-grounding", "source-grounding", "sourcing". Standing rule — always active via CLAUDE.md. Invoke for deep verification work (API signatures, CVEs, model IDs, auth flows, deprecated patterns…

HetCreep/CoalMine · 74 tokens

drift-canary

Compatibility and schema drift canary — checks for database schema migration safety, breaking API contract changes, serializable payload mismatches, and backward compatibility drift. Triggers on keywords: "/drift-canary", "drift-canary", "contract drift", "breaking changes". Use when changing DB schemas, API…

HetCreep/CoalMine · 78 tokens

go-clean-architecture

Use when scaffolding or refactoring a Go service into a framework-agnostic clean (hexagonal) architecture: Domain, Usecase, Repository, Delivery layers, inward dependency rule, 'framework/database is a detail'. Apply when untangling a monolith or checking whether business logic is testable without HTTP or DB.

muratmirgun/gophers · 70 tokens

go-code-review

Invoke this skill to systematically review a Go change against community style standards before merging. Walks the diff topic by topic — formatting, errors, naming, concurrency, interfaces, data structures, security, declarations, functions, style, logging, imports, generics, testing — flagging issues with line…

muratmirgun/gophers · 85 tokens

go-database

Use when writing, reviewing, or debugging Go code that talks to a SQL database (PostgreSQL, MySQL, MariaDB, SQLite). Covers library choice (database/sql, sqlx, sqlc, pgx, GORM trade-offs), parameterized queries, context propagation, NULL handling, scanning, transactions and isolation, connection pool tuning, and…

muratmirgun/gophers · 98 tokens