dvf

9 mods across 2 repositories, 128 stars between them.

dj-architecture

01

dvf/opinionated-django

Skill Claude CodeCodex

Implement a Django feature following the opinionated architecture — prefixed ULID IDs, repository pattern, Pydantic DTOs, svcs service locator, project-scoped django-ninja API, Celery reliable signals, and layered tests. Use when the user asks to add a new entity, endpoint, app, or business logic in a Django project…

109 18d ago A 78 tokens original MIT

dj-lint

02

dvf/opinionated-django

Skill Claude CodeCodex

Run linting, formatting, and static type checks on a Django project using ruff and pyrefly, and fix any issues found. Use after making code changes, before committing, or whenever the user asks to lint, format, or type-check the codebase.

109 18d ago A 58 tokens original MIT

dj-models

03

dvf/opinionated-django

Skill Claude CodeCodex

Structure Django models with proper Meta classes, verbose names, and optimized indexes. Use when creating or reviewing Django models to ensure consistent ordering, correct verbosename/verbosenameplural, and database indexes aligned to actual query patterns. Also registers every model in the admin with a clean…

109 18d ago A 63 tokens original MIT

dj-prefixed-ulids

04

dvf/opinionated-django

Skill Claude CodeCodex

Use Stripe-style prefixed ULID primary keys (e.g. prd01jq3v...) for every Django model instead of integers or UUIDs. Use when setting up a new model, reviewing a schema that still uses auto-increment or UUID primary keys, or when the user mentions IDs, slugs, public identifiers, or referential debugging. Produces…

109 18d ago A 102 tokens original MIT

dj-pytest

05

dvf/opinionated-django

Skill Claude CodeCodex

Set up and write pytest tests for an op-django project — pytest-django configuration, two-sided Celery testing (patched dispatch sites + plain-function task bodies, never eager mode), freezegun for time-sensitive logic, shared conftest fixtures for DTOs and svcs overrides, and the three-layer test convention…

109 18d ago A 114 tokens original MIT

dj-scaffold

06

dvf/opinionated-django

Skill Claude CodeCodex

Set up a Django project into the op-django layout so the architecture, signals, and settings skills have a foundation to build on. Use when starting a new project from scratch, or when converting an existing Django project to follow this opinionated structure. Creates the src/project/ shell (ids, services registry…

109 18d ago A 84 tokens original MIT

dj-services

07

dvf/opinionated-django

Skill Claude CodeCodex

Structure Django business logic as plain services that receive their dependencies via constructor injection, and wire them through an svcs registry so they can be resolved anywhere — views, Celery tasks, management commands, tests. Use when adding a new service, refactoring fat views or model methods into a service…

109 18d ago A 80 tokens original MIT

dj-settings

08

dvf/opinionated-django

Skill Claude CodeCodex

Organize Django settings.py into clearly sectioned blocks with banner-style headers. Use proactively whenever modifying src/project/settings.py — adding new settings, removing settings, or restructuring sections.

109 18d ago A 38 tokens original MIT

dj-signals

09

dvf/opinionated-django

Skill Claude CodeCodex

Add reliable signals (async side-effects via Celery) to a Django feature. Use when a business operation needs to trigger post-commit work like notifications, cache invalidation, analytics, or cross-service coordination — any time the user mentions side-effects, events, or async processing tied to a business action.

109 18d ago A 65 tokens original MIT