django-docs

django-docs is a skill for Claude Code, Codex from pledgeandgrow/pledge-skills. It costs 225 tokens per session (1,901 once invoked), scanned A, original, MIT.

A reference skill for Django 6.0, a Python framework for building web applications.

In plain words
What is it for?
Use it when working with databases and ORM models, migrations, views, URLs, templates, forms, administration, authentication, middleware, testing, caching, security, APIs, or deployment.
Why use it?
It provides organized guidance for Django's common parts, reducing the need to search through documentation while coding.

Skill for Claude CodeCodex

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

Good fit Use it when working with databases and ORM models, migrations, views, URLs, templates, forms, administration, authentication, middleware, testing, caching, security, APIs, or deployment.

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

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-docs

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/pledgeandgrow/pledge-skills/django"><img src="https://agentmods.dev/badge/skills/pledgeandgrow/pledge-skills/django.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 225 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,901 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 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.00225 $0.01901
Opus 5 $0.00112 $0.00950
Sonnet 5 $0.00045 $0.00380
Haiku 4.5 $0.00022 $0.00190

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

Security

Grade A, and why

django-docs 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 10d 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.

skills/django/SKILL.md · 156 lines

How it starts

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

Django 6.0 Reference Skill

Official Documentation: https://docs.djangoproject.com/en/6.0/

This skill ensures Claude always uses the latest Django 6.0 patterns, APIs, and best practices.


Quick Reference

Topic File
Getting Started (install, project structure, settings) getting-started.md
Models (fields, relationships, Meta options, inheritance) models.md
Model Field Reference (all field types, options, validators) model-fields.md
QuerySets (filtering, Q objects, aggregation, F expressions, raw SQL) querysets.md
Migrations (makemigrations, migrate, operations, data migrations) migrations.md
Views (function-based, class-based, decorators, shortcuts) views.md
URL Routing (URLconfs, path converters, reverse, namespaces) urls.md
Templates (DTL syntax, tags, filters, inheritance, custom tags) templates.md
Forms (Form, ModelForm, formsets, validation, widgets) forms.md
Admin Site (registration, ModelAdmin, actions, customization) admin.md
Authentication (users, groups, permissions, backends, password management) authentication.md
Middleware (built-in, custom, order, async) middleware.md
Security (CSRF, XSS, SQL injection, clickjacking, CSP, SSL/HTTPS) security.md
Testing (TestCase, Client, fixtures, mocking, async testing) testing.md
Caching (Redis, Memcached, database, file, per-view, low-level API) caching.md
Settings Reference (core settings, database, middleware, apps) settings.md
Deployment (WSGI, ASGI, static files, checklist, Docker) deployment.md
Internationalization (i18n, localization, time zones, formatting) i18n.md
Async Support (async views, ORM, middleware, testing) async.md
Signals (built-in signals, custom signals, receivers) signals.md
Performance and Optimization (database, caching, profiling) performance.md
Class-Based Views (generic views, mixins, flattened index) class-based-views.md
File Uploads and Storage (FileField, ImageField, storage API) file-uploads.md
Sessions, Messages, Pagination (session backends, messages framework) sessions-messages.md
REST API Patterns (DRF integration, serialization, API design) rest-api.md
Breaking Changes (migration guide from Django 5.x to 6.0) breaking-changes.md
Background Tasks (new Django 6.0 tasks framework) django-tasks.md
PostgreSQL Extensions (ArrayField, HStore, Range, full-text search) postgres.md
Email Framework (send_mail, EmailMessage, backends, attachments) email.md
Multiple Databases (routers, primary/replica, manual selection) multiple-databases.md
Contrib Packages (contenttypes, sitemaps, syndication, sites, flatpages) contrib-packages.md
GeoDjango (GIS, spatial fields, spatial queries, GEOS API) geodjango.md
Database Functions (Cast, Extract, Trunc, Concat, Window functions) database-functions.md
Custom Management Commands (BaseCommand, arguments, testing) management-commands.md
Serialization (JSON, XML, YAML, GeoJSON, natural keys, fixtures) serialization.md
Validators & Exceptions (built-in/custom validators, exception hierarchy) validators-exceptions.md
Apps API & System Checks (AppConfig, app registry, custom checks) apps-api.md
Advanced ORM (Conditional Expressions, Custom Fields, Custom Lookups) advanced-orm.md
Advanced Views (TemplateResponse, CSV, PDF, Conditional Processing) advanced-views.md
Advanced Templates (Custom backends, Jinja2, template API) advanced-templates.md
Logging (loggers, handlers, formatters, AdminEmailHandler) logging.md
Misc (Cryptographic signing, Unicode, Admin docs, Composite PKs) misc.md
Django Utils (cache, dateparse, encoding, html, http, text, timezone, translation) django-utils.md
Composite Primary Keys (Meta.primary_key, migration, relations, forms, admin) composite-pk.md

Read the full file on GitHub · 156 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. 10d ago First seen · 156 lines · 225 tokens per session scan A 8ec1e8bbd864

Subscribe to this mod's changes

django-docs is a skill published in the GitHub repository pledgeandgrow/pledge-skills (10 stars, last pushed 1mo ago), licensed MIT. It adds 225 tokens to every session and 1,901 once invoked, about $0.0011 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.