django-models

A set of rules for writing Django models, which define the structure of data stored by a Django application.

In plain words
What is it for?
Use it when creating models for customers, orders, payments, or other application data in Django.
Why use it?
It promotes consistent database names, field types, documentation, ordering, and handling of financial values.

Cursor rule for Cursor

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 rules/technickai/ai-coding-config/django-models
Clone the repo
git clone --depth 1 https://github.com/TechNickAI/ai-coding-config

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 391 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 $0.00000 $0.00391
Opus 5 $0.00000 $0.00196
Sonnet 5 $0.00000 $0.00078
Haiku 4.5 $0.00000 $0.00039

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

Security

Grade A, and why

django-models 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 2d 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.

.cursor/rules/django/django-models.mdc · 67 lines

What it actually says

Django Models

Core Requirements

For every model, we:

  • Use explicit db_table names (pluralized)
  • Include helpful docstrings
  • Use proper field types for financial data (DecimalField for money)
  • Use help_text only when the field purpose isn't immediately clear
  • Add verbose_names where they improve readability

Model Structure

from django.db import models
from decimal import Decimal

class Order(models.Model):
    """Represents a customer order

    Tracks order details, payment status, and fulfillment
    """

    customer = models.ForeignKey('Customer', on_delete=models.CASCADE)
    created_at = models.DateTimeField(auto_now_add=True)
    total_amount = models.DecimalField(
        max_digits=18,
        decimal_places=2,
        help_text="Total order amount in USD"
    )
    status = models.CharField(max_length=20, default='pending')

    class Meta:
        db_table = "orders"
        verbose_name_plural = "orders"
        ordering = ['-created_at']

    def __str__(self):
        return f"Order #{self.id} - {self.customer}"

    @property
    def is_complete(self) -> bool:
        return self.status == 'fulfilled'

Financial Fields

We always use DecimalField for amounts: max_digits=18, decimal_places=8 for crypto, max_digits=18, decimal_places=2 for fiat.

Query Optimization

We use select_related() for foreign keys, prefetch_related() for reverse relations, and add indexes for frequently queried fields.

Field Guidelines

We use auto_now_add=True for creation timestamps, auto_now=True for update timestamps, and blank=True, null=True for truly optional fields.

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. 2d ago First seen · 67 lines · 0 tokens per session scan A d7b7fa44328b

Subscribe to this mod's changes

django-models is a cursor rule published in the GitHub repository TechNickAI/ai-coding-config (24 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 391 tokens. 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.