django-conventions

django-conventions is a skill for Claude Code, Codex from Cypsy1714/cchad. It costs 16 tokens per session (229 once invoked), scanned A, original, MIT.

Guidelines for structuring and reviewing Django applications, a Python web framework.

In plain words
What is it for?
Use them when building or reviewing Django models, views, URLs, settings, database queries, APIs, and migrations.
Why use it?
They help keep business logic organized, database queries efficient, secrets protected, and permissions and migrations handled consistently.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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 skills/cypsy1714/cchad/django-skill
Any agent
npx skills add Cypsy1714/cchad --skill django-skill
Clone the repo
git clone --depth 1 https://github.com/Cypsy1714/cchad

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/cypsy1714/cchad/django-skill.svg)](https://agentmods.dev/skills/cypsy1714/cchad/django-skill)
Your own site
<a href="https://agentmods.dev/skills/cypsy1714/cchad/django-skill"><img src="https://agentmods.dev/badge/skills/cypsy1714/cchad/django-skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 229 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00016 $0.00229
Opus 5 $0.00008 $0.00114
Sonnet 5 $0.00003 $0.00046
Haiku 4.5 $0.00002 $0.00023

Measured 6d ago against content hash 2add48db9b6c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

django-conventions 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 6d 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.

src/cchad/data/skills/django-skill/SKILL.md · 24 lines

What it actually says

Django conventions

Structure

  • Split the project into focused apps; keep each app's models, views, and urls together.
  • Keep views thin. Put business logic in model methods, managers, or a services module.
  • Read settings from the environment (django-environ or os.environ); never commit secrets. Keep DEBUG = False outside local dev.

ORM

  • Avoid N+1 queries: use select_related (FK) and prefetch_related (M2M/reverse).
  • Push filtering into the database with querysets; don't loop in Python over full tables.
  • Add custom Manager/QuerySet methods for reusable queries.
  • Always create and review migrations; never edit the database by hand.

APIs & safety

  • Use Django REST Framework serializers for API input/output and validation.
  • Rely on the ORM and the template auto-escaping to avoid SQL injection and XSS.
  • Enforce permissions in one place, not scattered per view.
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. 6d ago First seen · 24 lines · 16 tokens per session scan A 2add48db9b6c

Subscribe to this mod's changes

django-conventions is a skill published in the GitHub repository Cypsy1714/cchad (1 stars, last pushed 2mo ago), licensed MIT. It adds 16 tokens to every session and 229 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories

fastapi-expert

Use when building or debugging FastAPI services - files importing fastapi, pydantic, or sqlalchemy.ext.asyncio; projects with pyproject.toml using uv/ruff/mypy; mentions of FastAPI, Pydantic v2, APIRouter, Depends, async endpoints, OAuth2/JWT auth, or pytest with httpx. Builds REST APIs, migrates Pydantic v1 to v2…

Aarvion-AI/stackwise-skills · 134 tokens

django-patterns

Django architecture patterns, REST API design with DRF, ORM best practices, caching, signals, middleware, and production-grade Django apps.

affaan-m/ECC · 32 tokens

fastapi-patterns

FastAPI patterns for async APIs, dependency injection, Pydantic request and response models, OpenAPI docs, tests, security, and production readiness.

affaan-m/ECC · 35 tokens

fastapi-templates

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

wshobson/agents · 37 tokens

fastapi

FastAPI best practices and conventions. Use when working with FastAPI APIs and Pydantic models for them. Keeps FastAPI code clean and up to date with the latest features and patterns, updated with new versions. Write new code or refactor and update old code.

ReflexioAI/claude-smart · 57 tokens

cloudflare-workers-multi-lang

Multi-language Workers development with Rust, Python, and WebAssembly. Use when building Workers in languages other than JavaScript/TypeScript, or when integrating WASM modules for performance-critical code.

secondsky/claude-skills · 45 tokens