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.
npx skills add Jignesh-Ponamwar/skills-mcp --skill django-web-frameworkgit clone --depth 1 https://github.com/Jignesh-Ponamwar/skills-mcpWrote 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/jignesh-ponamwar/skills-mcp/django-web-framework)<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/django-web-framework"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/django-web-framework/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/jignesh-ponamwar/skills-mcp/django-web-framework"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/django-web-framework.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00031 | $0.02124 |
| Opus 5 | $0.00015 | $0.01062 |
| Sonnet 5 | $0.00006 | $0.00425 |
| Haiku 4.5 | $0.00003 | $0.00212 |
Grade A, and why
django-web-framework 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.
How it starts
The opening of the file, as written. The whole thing — 388 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Django Web Framework
Getting Started
Django is a high-level Python web framework that follows the Model-View-Template (MVT) pattern.
Project Setup
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install Django
pip install django
# Create new project
django-admin startproject myproject
cd myproject
# Create new app
python manage.py startapp myapp
Models (Database Layer)
Define your database schema using Django models:
# myapp/models.py
from django.db import models
class Blog(models.Model):
title = models.CharField(max_length=200)
content = models.TextField()
author = models.CharField(max_length=100)
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)
published = models.BooleanField(default=False)
class Meta:
ordering = ['-created_at']
def __str__(self):
return self.title
Migrations
Track database schema changes:
# Create migrations
python manage.py makemigrations
# Apply migrations
python manage.py migrate
# Show migration plan
python manage.py showmigrations
Views (Business Logic)
Django supports class-based and function-based views:
Function-Based Views
# myapp/views.py
from django.shortcuts import render, get_object_or_404
from django.http import JsonResponse
from .models import Blog
def blog_list(request):
blogs = Blog.objects.filter(published=True)
return render(request, 'blog/list.html', {'blogs': blogs})
def blog_detail(request, pk):
blog = get_object_or_404(Blog, pk=pk)
return render(request, 'blog/detail.html', {'blog': blog})
Class-Based Views
from django.views import View
from django.views.generic import ListView, DetailView
from .models import Blog
class BlogListView(ListView):
model = Blog
template_name = 'blog/list.html'
context_object_name = 'blogs'
paginate_by = 10
def get_queryset(self):
return Blog.objects.filter(published=True)
class BlogDetailView(DetailView):
model = Blog
template_name = 'blog/detail.html'
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.
- 10d ago First seen · 388 lines · 31 tokens per session scan A a011a4b3c70c
django-web-framework is a skill published in the GitHub repository Jignesh-Ponamwar/skills-mcp (7 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 31 tokens to every session and 2,124 once invoked, about $0.0002 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.
Other skills, from other repositories
async-python-patterns
Comprehensive guidance for implementing asynchronous Python applications using asyncio, concurrent programming patterns, and async/await for building high-performance, non-blocking systems.
django-pro
Master Django 5.x with async views, DRF, Celery, and Django Channels. Build scalable web applications with proper architecture, testing, and deployment. Use PROACTIVELY for Django development, ORM optimization, or complex Django patterns.
fastapi-pro
Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and Pydantic V2. Master microservices, WebSockets, and modern Python async patterns. Use PROACTIVELY for FastAPI development, async optimization, or API architecture.
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.
python-programming-expert
Expert-level skill for Python programming (Python 3.13/3.14+). Covers type safety, generic syntax (PEP 695), async/await TaskGroups, FastAPI 0.115+, Pydantic v2, uv package manager, Ruff, and pytest in English and Indonesian.
azure-mgmt-apicenter-py
Azure API Center Management SDK for Python. Use for managing API inventory, metadata, and governance across your organization.