Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/dvf/opinionated-djangonpx agentmods add skills/dvf/opinionated-django/dj-scaffoldWrote 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.
[](https://agentmods.dev/skills/dvf/opinionated-django/dj-scaffold)<a href="https://agentmods.dev/skills/dvf/opinionated-django/dj-scaffold"><img src="https://agentmods.dev/badge/skills/dvf/opinionated-django/dj-scaffold/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.
<a href="https://agentmods.dev/skills/dvf/opinionated-django/dj-scaffold"><img src="https://agentmods.dev/badge/skills/dvf/opinionated-django/dj-scaffold.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00084 | $0.03285 |
| Opus 5 | $0.00042 | $0.01643 |
| Sonnet 5 | $0.00017 | $0.00657 |
| Haiku 4.5 | $0.00008 | $0.00329 |
Grade A, and why
dj-scaffold 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 381 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Scaffold an op-django Project
You are preparing a Django project to use the op-django patterns. After this skill runs, the dj-architecture and dj-signals skills can add features on top without any further setup.
BEFORE WRITING CODE
Figure out which situation you're in:
- Greenfield — no Django project exists yet. You will run
uv initanddjango-admin startproject, then transform the result. - Existing Django project — a
manage.py,settings.py, and at least one app already exist. You will add thesrc/project/shell alongside what's there and relocate files only if asked.
Read pyproject.toml (if present) and locate manage.py and settings.py so you know the project's current layout. Confirm with the user before moving any existing files.
Target Layout
src/
manage.py
project/
__init__.py
settings.py
urls.py
wsgi.py
asgi.py
api/
__init__.py # NinjaAPI() instance, exception handlers, mounts all resource routers
<resource>/
__init__.py # re-exports router
routes.py # handler functions
schemas.py # ninja.Schema input types
types.py # AuthedRequest and other shared typing aliases
ids.py # prefixed ULID generators
services.py # svcs registry + get() helper
signals.py # ReliableSignal base + send_reliable machinery
<app>/
__init__.py
apps.py
admin.py
models/
__init__.py
<entity>.py
dtos/
__init__.py
<entity>.py
repositories/
__init__.py
<entity>.py
services/
__init__.py
<entity>.py
signals.py # optional, defines ReliableSignal instances
receivers.py # optional, @receiver handlers — must be idempotent
tests/
<app>/
test_repo.py
test_service.py
test_api.py
pyproject.toml
Per-app models/, dtos/, repositories/, services/ are packages, not single files — one module per entity.
Step 1: Dependencies
Use uv for everything. Never pip or poetry.
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.
- 11d ago First seen · 381 lines · 84 tokens per session scan A cfc07d2be566
dj-scaffold is a skill published in the GitHub repository dvf/opinionated-django (110 stars, last pushed 27d ago), licensed MIT. It adds 84 tokens to every session and 3,285 once invoked, about $0.0004 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.
Other skills, from other repositories
stripe-projects
Use after E2B sandbox/API access has been provisioned through Stripe Projects and the user needs to use the resulting E2B API key with the E2B CLI, JavaScript SDK, Python SDK, or Code Interpreter SDK.
azure-messaging-webpubsubservice-py
Azure Web PubSub Service SDK for Python. Use for real-time messaging, WebSocket connections, and pub/sub patterns. Triggers: "azure-messaging-webpubsubservice", "WebPubSubServiceClient", "real-time", "WebSocket", "pub/sub".
azure-mgmt-botservice-py
Azure Bot Service Management SDK for Python. Use for creating, managing, and configuring Azure Bot Service resources. Triggers: "azure-mgmt-botservice", "AzureBotService", "bot management", "conversational AI", "bot channels".
backend
Python server code, APIs, async, strict typing.
fastapi-app
Bootstrap a new FastAPI backend with async SQLAlchemy 2.0, asyncpg, Alembic, Pydantic v2, and no deprecated APIs. Use when the user wants to start, scaffold, or set up a new FastAPI service, a Python REST API, an async backend, or asks to "create a new fastapi app" or "new python backend". Handles JWT auth, layered…
azure-appconfiguration-py
Centralized configuration management with feature flags and dynamic settings.