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 AmariahAK/atlarix-skills --skill djangogit clone --depth 1 https://github.com/AmariahAK/atlarix-skillsWrote 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/amariahak/atlarix-skills/django)<a href="https://agentmods.dev/skills/amariahak/atlarix-skills/django"><img src="https://agentmods.dev/badge/skills/amariahak/atlarix-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.
<a href="https://agentmods.dev/skills/amariahak/atlarix-skills/django"><img src="https://agentmods.dev/badge/skills/amariahak/atlarix-skills/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.00003 | $0.00401 |
| Opus 5 | $0.00002 | $0.00200 |
| Sonnet 5 | $0.00001 | $0.00080 |
| Haiku 4.5 | $0.00000 | $0.00040 |
Grade A, and why
Django Patterns 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 8d 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.
What it actually says
Django Patterns
When to use this skill
Use this skill when working on Django apps/APIs and you want safe model design, query performance awareness, and clean view/service structure.
Core patterns
Settings and environments
- keep secrets out of repo
- separate settings for dev/staging/prod
- validate required env vars on startup
Models: constraints + indexes
- use DB constraints for invariants
- add indexes for common filters/joins
- avoid “magic” implicit behavior without tests
Query performance (avoid N+1)
- use
select_related/prefetch_relatedintentionally - avoid per-row queries in loops
Views: thin, services: thick
- views/DRF viewsets should parse input and return responses
- business logic belongs in services/domain modules
Migrations
- additive first
- backfill safely
- enforce constraints in later migrations
Testing
- unit tests for pure logic
- integration tests for ORM queries and views
Atlarix tool notes
- Explore: locate settings, apps, and urls; map core models and their relations.
- Build: run
pytest/manage.py test; keep migrations small and reversible. - Debug: inspect stack traces; reproduce failing query patterns.
- Review: check query count and migration safety.
Common mistakes to avoid
- N+1 queries hidden in serializers/templates
- Fat models with unrelated responsibilities
- Unsafe migrations on large tables
Mini-checklist
- Constraints/indexes intentional
- Query count sane
- Views thin, services clear
- Migrations safe
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.
- 8d ago First seen · 61 lines · 3 tokens per session scan A 650fd299980c
Django Patterns is a skill published in the GitHub repository AmariahAK/atlarix-skills (2 stars, last pushed 5d ago), licensed Apache-2.0. It adds 3 tokens to every session and 401 once invoked, about $0.0000 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-09-03.
Other skills, from other repositories
django
Build Django models, views, routes, and admin features; review ORM queries, migrations, and deployment settings.
python-sdk
Implement or modify Python SDK behavior under python/composio, including tools, toolkits, sessions, auth configs, connected accounts, client integration, and shared Python models. Use for Python core runtime/API work; pair with python-testing and cross-sdk-parity when TypeScript must match.
typescript-sdk
Implement or modify TypeScript SDK behavior in @composio/core or shared TypeScript packages, including tools, toolkits, sessions, auth configs, connected accounts, modifiers, and generated SDK surfaces. Use for TS runtime/API work; pair with typescript-testing for verification and cross-sdk-parity when Python must…
stripe-projects
Use when the user wants to provision infrastructure or third-party services using Stripe Projects. Triggers: "I need a database", "set up auth", "add caching", "give me a Postgres", "provision Redis", "I need hosting", "add a vector DB", "get me an API key for X", "get credentials for X", "sign up for a service", "set…
supabase-node
Express/Hono with Supabase and Drizzle ORM.
nodejs-backend
Node.js backend patterns with Express/Fastify, repositories.