Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

django-componentsDjango 组件

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

441

周安装

18

GitHub Stars

16

下载量

141
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:django-components(Django 组件)
来源仓库:https://github.com/krzysztofsurdy/code-virtuoso
仓库路径:skills/django-components
安装命令:
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill django-components
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill django-components

简介

提供 Django 33 个核心组件的完整参考文档。

  • 涵盖模型定义、QuerySet 操作、迁移管理和视图开发等内容。
  • 包含字段类型、Meta 选项、聚合函数和全文搜索等技术细节。
  • 安装方式:github,通过 npx skills add 命令添加。
  • 适用于 Django 6.0+ 和 Python 3.10+ 环境下的开发参考。

SKILL.md

Django Components

Complete reference for all 33 Django components -- patterns, APIs, configuration, and best practices for Python 3.10+ and Django 6.0.

Component Index

Models & Database

  • Models -- Model definition, field types, Meta options, inheritance, managers -> reference
  • QuerySets -- QuerySet API, field lookups, Q objects, F expressions, aggregation -> reference
  • Migrations -- Migration workflow, operations, data migrations, squashing -> reference
  • Database Functions -- Database functions, conditional expressions, full-text search -> reference

Views & HTTP

  • Views -- Function-based views, shortcuts (render, redirect, get_object_or_404) -> reference
  • Class-Based Views -- ListView, DetailView, CreateView, UpdateView, DeleteView, mixins -> reference
  • URL Routing -- URL configuration, path(), re_path(), namespaces, reverse() -> reference
  • Middleware -- Middleware architecture, built-in middleware, custom middleware -> reference
  • Request & Response -- HttpRequest, HttpResponse, JsonResponse, StreamingHttpResponse -> reference

Templates

  • Templates -- Template language, tags, filters, inheritance, custom template tags -> reference

Forms

  • Forms -- Form class, fields, widgets, ModelForm, formsets, validation -> reference

Admin

  • Admin -- ModelAdmin, list_display, fieldsets, inlines, actions, customization -> reference

Authentication & Security

  • Authentication -- User model, login/logout, permissions, groups, custom user models -> reference
  • Security -- CSRF, XSS, clickjacking, SSL, CSP, cryptographic signing -> reference
  • Sessions -- Session framework, backends, configuration -> reference

Caching

  • Cache -- Cache backends (Redis, Memcached, DB, filesystem), per-view/template caching -> reference

Signals

  • Signals -- Signal dispatcher, built-in signals (pre_save, post_save, etc.) -> reference

Communication

  • Email -- send_mail, EmailMessage, HTML emails, backends -> reference
  • Messages -- Messages framework, levels, storage backends -> reference

Testing

  • Testing -- TestCase, Client, assertions, RequestFactory, fixtures -> reference

Files & Static Assets

  • Files -- File objects, storage API, file uploads, custom storage -> reference
  • Static Files -- Static file configuration, collectstatic, ManifestStaticFilesStorage -> reference

Internationalization

  • I18n -- Translation, localization, timezones, message files -> reference

Serialization & Data

  • Serialization -- Serializers, JSON/XML formats, natural keys, fixtures -> reference
  • Content Types -- ContentType model, generic relations -> reference
  • Validators -- Built-in validators, custom validators -> reference
  • Pagination -- Paginator, Page objects, template integration -> reference

Async & Tasks

  • Async -- Async views, async ORM, sync_to_async, ASGI -> reference
  • Tasks -- Tasks framework, task backends, scheduling -> reference

Configuration & CLI

  • Settings -- Settings reference by category, splitting settings -> reference
  • Management Commands -- Built-in commands, custom commands, call_command -> reference
  • Logging -- Logging configuration, handlers, Django loggers -> reference

Deployment

  • Deployment -- WSGI, ASGI, Gunicorn, Uvicorn, static files, checklist -> reference

Quick Patterns

Define a Model

from django.db import models

class Article(models.Model):
    title = models.CharField(max_length=200)
    slug = models.SlugField(unique=True)
    content = models.TextField()
    published = models.BooleanField(default=False)
    created_at = models.DateTimeField(auto_now_add=True)
    author = models.ForeignKey('auth.User', on_delete=models.CASCADE)

    class Meta:
        ordering = ['-created_at']

    def __str__(self):
        return self.title

Define a URL + View

# urls.py
from django.urls import path
from . import views

urlpatterns = [
    path('articles/<int:pk>/', views.article_detail, name='article_detail'),
]

# views.py
from django.shortcuts import render, get_object_or_404

def article_detail(request, pk):
    article = get_object_or_404(Article, pk=pk)
    return render(request, 'articles/detail.html', {'article': article})

Class-Based View

from django.views.generic import ListView, DetailView

class ArticleListView(ListView):
    model = Article
    queryset = Article.objects.filter(published=True)
    paginate_by = 20

class ArticleDetailView(DetailView):
    model = Article
    slug_field = 'slug'

QuerySet Filtering

from django.db.models import Q, F, Count

# Complex filtering
articles = Article.objects.filter(
    Q(title__icontains='django') | Q(content__icontains='django'),
    published=True,
).exclude(
    author__is_active=False
).annotate(
    comment_count=Count('comments')
).order_by('-created_at')

Form with Validation

from django import forms

class ArticleForm(forms.ModelForm):
    class Meta:
        model = Article
        fields = ['title', 'slug', 'content', 'published']

    def clean_title(self):
        title = self.cleaned_data['title']
        if len(title) < 5:
            raise forms.ValidationError('Title must be at least 5 characters.')
        return title

Cache a View

from django.views.decorators.cache import cache_page

@cache_page(60 * 15)  # 15 minutes
def article_list(request):
    articles = Article.objects.filter(published=True)
    return render(request, 'articles/list.html', {'articles': articles})

Signal Receiver

from django.db.models.signals import post_save
from django.dispatch import receiver

@receiver(post_save, sender=Article)
def notify_on_publish(sender, instance, created, **kwargs):
    if instance.published and created:
        send_notification(instance)

Management Command

from django.core.management.base import BaseCommand

class Command(BaseCommand):
    help = 'Process pending articles'

    def add_arguments(self, parser):
        parser.add_argument('--limit', type=int, default=100)

    def handle(self, *args, **options):
        count = process_articles(limit=options['limit'])
        self.stdout.write(self.style.SUCCESS(f'Processed {count} articles'))

Test Case

from django.test import TestCase

class ArticleTests(TestCase):
    def setUp(self):
        self.article = Article.objects.create(
            title='Test Article',
            slug='test-article',
            content='Content here',
            published=True,
        )

    def test_article_detail_view(self):
        response = self.client.get(f'/articles/{self.article.pk}/')
        self.assertEqual(response.status_code, 200)
        self.assertContains(response, 'Test Article')

Best Practices

  • Target Python 3.10+ and Django 6.0 with type hints where helpful
  • Use class-based views for CRUD; function-based views for custom logic
  • Prefer select_related/prefetch_related to avoid N+1 queries
  • Use F expressions for database-level operations instead of Python
  • Apply migrations atomically -- one logical change per migration
  • Use Django's cache framework with Redis or Memcached in production
  • Write TestCase tests with assertions specific to Django (assertContains, assertRedirects)
  • Use custom user models from the start (AUTH_USER_MODEL)
  • Enable CSRF protection everywhere -- never use @csrf_exempt without good reason
  • Use environment variables for secrets -- never commit SECRET_KEY or database credentials
  • Deploy with Gunicorn/Uvicorn behind a reverse proxy (nginx)
  • Run manage.py check --deploy before every production deployment

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.46%
按下载量换算50

Claude

31.87%
按下载量换算45

Cursor

17.98%
按下载量换算25

Gemini CLI

9.41%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills