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 andresquirogadev/skillsense --skill djangogit clone --depth 1 https://github.com/andresquirogadev/skillsenseWrote 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/andresquirogadev/skillsense/django)<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/django"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/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.
<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/django"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/django.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.00000 | $0.00505 |
| Opus 5 | $0.00000 | $0.00253 |
| Sonnet 5 | $0.00000 | $0.00101 |
| Haiku 4.5 | $0.00000 | $0.00051 |
Grade A, and why
django 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 9d 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 — 45 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Django Skill
You are working on a Django project. Apply these conventions.
Project Structure
- Keep business logic in service modules (
services.py) or domain layers — not in views or models. - Fat models are acceptable for simple queries; avoid putting HTTP-level logic in models.
- Use
apps/directory to organize multiple Django apps within a project.
Models
- Always set
verbose_nameandverbose_name_pluralinMeta. - Use
get_absolute_url()on models that have detail pages. - Use
select_related()for ForeignKey/OneToOne traversal;prefetch_related()for ManyToMany and reverse FK. - Add
db_index=Trueon fields used infilter()/order_by()queries. - Use
F()expressions for atomic updates:Qs.update(count=F('count') + 1). - Use
Q()objects for complexOR/ANDfilters.
Views
- Prefer Class-Based Views (CBV) with mixins for standard CRUD; use function-based views for complex business logic where CBVs add confusion.
- With Django REST Framework: use
ViewSet+Routerfor RESTful APIs; useAPIViewfor custom endpoints. - Use
get_object_or_404(Model, pk=pk)— never catchDoesNotExistmanually in views.
Django REST Framework (DRF)
- Use
ModelSerializerfor simple CRUD; overridecreate()/update()for custom logic. - Use
SerializerMethodFieldfor computed properties. - Keep authentication in
DEFAULT_AUTHENTICATION_CLASSES; usepermission_classesper view or globally. - Use
throttle_classesto rate-limit endpoints.
Security
- Enable
CSRF_COOKIE_SECURE = TrueandSESSION_COOKIE_SECURE = Truein production. - Use
django-environorpydantic-settingsfor environment variable management — never hardcode secrets. - Use Django's built-in
Usermodel orAbstractUser— do not create a custom user model mid-project. - Use parameterized queries (
filter(name=value)) — never.raw()with f-strings.
Migrations
- Run
makemigrationsafter every model change; commit migrations alongside model code. - Use
RunPythonin migrations for data migrations — always provide a reverse function. - Squash migrations periodically for large projects.
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.
- 9d ago First seen · 45 lines · 0 tokens per session scan A 19216756985a
django is a skill published in the GitHub repository andresquirogadev/skillsense (2 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 505 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-31.
Other skills, from other repositories
mainframe-python-backend
Develop, debug, review, or test server-side Python in FastAPI, Django, Flask, and other established services. Use proactively for backend APIs, business rules, persistence, workers, realtime behavior, server integrations, and focused backend tests. Do not use for data or ML pipelines, substantial client-only UI…
async-python-patterns
Master Python asyncio, concurrent programming, and async/await patterns for high-performance applications. Use when building async APIs, concurrent systems, or I/O-bound applications requiring non-blocking operations.
cross-sdk-parity
Keep TypeScript and Python SDK behavior, generated client usage, public API naming, and docs examples aligned. Use when a change affects both SDKs, when generated client pins move, when comparing TS/Python behavior, or when a backend API contract changed. Do not use for single-language internal-only changes.
printing-press
Set up a new integration, connector, or CLI binding for any API. Wrap or generate a ship-ready Go CLI from an OpenAPI, HAR, or Postman spec via the lean research -> generate -> build -> shipcheck loop. Use when the user says build a CLI, wrap this API, set up a new integration, add a connector, integrate with a…
supabase-python
FastAPI with Supabase and SQLAlchemy/SQLModel.
reddit-api
Reddit API with PRAW (Python) and Snoowrap (Node.js).