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

django-frameworkDjango framework 测试

Agent Skill

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

总安装

10,145

周安装

356

GitHub Stars

5

下载量

5,045
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/pluginagentmarketplace/custom-plugin-python --skill 'Django Framework'

简介

用于辅助 Django 项目开发、ORM 查询与测试覆盖。

  • 适合梳理模型关系、生成迁移文件或修复断言失败。
  • 需确认 settings.py 配置与数据库连接正常。
  • 避免在生产环境直接运行 raw SQL。django-framework 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装前请核实是否会修改 manage.py 入口逻辑。

SKILL.md

Django Framework

Overview

Master Django, the high-level Python web framework that encourages rapid development and clean, pragmatic design. Learn to build secure, scalable web applications with Django's batteries-included approach.

Learning Objectives

  • Build full-stack web applications using Django MVC pattern
  • Design and implement database models with Django ORM
  • Implement user authentication and authorization
  • Create RESTful APIs with Django REST Framework
  • Deploy Django applications to production

Core Topics

1. Django Basics & Project Structure

  • Django project setup and configuration
  • Understanding MVT (Model-View-Template) pattern
  • URL routing and views
  • Django settings and environment variables
  • Static files and media handling

Code Example:

# myapp/views.py
from django.shortcuts import render
from django.http import JsonResponse
from .models import Product

def product_list(request):
    products = Product.objects.all()
    return render(request, 'products/list.html', {'products': products})

def product_api(request):
    products = Product.objects.values('id', 'name', 'price')
    return JsonResponse(list(products), safe=False)

2. Django ORM & Database Models

  • Model definition and field types
  • Relationships (ForeignKey, ManyToMany, OneToOne)
  • QuerySets and database queries
  • Migrations and schema management
  • Database optimization (select_related, prefetch_related)

Code Example:

# models.py
from django.db import models
from django.contrib.auth.models import User

class Category(models.Model):
    name = models.CharField(max_length=100)
    slug = models.SlugField(unique=True)
    created_at = models.DateTimeField(auto_now_add=True)

    class Meta:
        verbose_name_plural = "Categories"

    def __str__(self):
        return self.name

class Product(models.Model):
    name = models.CharField(max_length=200)
    description = models.TextField()
    price = models.DecimalField(max_digits=10, decimal_places=2)
    category = models.ForeignKey(Category, on_delete=models.CASCADE)
    created_by = models.ForeignKey(User, on_delete=models.SET_NULL, null=True)
    is_active = models.BooleanField(default=True)
    created_at = models.DateTimeField(auto_now_add=True)
    updated_at = models.DateTimeField(auto_now=True)

    def __str__(self):
        return self.name

# Efficient querying
products = Product.objects.select_related('category', 'created_by').filter(is_active=True)

3. Authentication & Authorization

  • User registration and login
  • Password management
  • Session management
  • Permissions and groups
  • Custom user models
  • Social authentication

Code Example:

# views.py
from django.contrib.auth import authenticate, login, logout
from django.contrib.auth.decorators import login_required, permission_required
from django.shortcuts import redirect, render

def login_view(request):
    if request.method == 'POST':
        username = request.POST['username']
        password = request.POST['password']
        user = authenticate(request, username=username, password=password)
        if user is not None:
            login(request, user)
            return redirect('dashboard')
    return render(request, 'login.html')

@login_required
def dashboard(request):
    return render(request, 'dashboard.html')

@permission_required('products.add_product')
def add_product(request):
    # Only users with 'add_product' permission can access
    return render(request, 'products/add.html')

4. Django REST Framework

  • Serializers and validation
  • ViewSets and routers
  • Authentication (JWT, Token)
  • Permissions and throttling
  • Pagination and filtering

Code Example:

# serializers.py
from rest_framework import serializers
from .models import Product, Category

class CategorySerializer(serializers.ModelSerializer):
    class Meta:
        model = Category
        fields = ['id', 'name', 'slug']

class ProductSerializer(serializers.ModelSerializer):
    category = CategorySerializer(read_only=True)
    category_id = serializers.IntegerField(write_only=True)

    class Meta:
        model = Product
        fields = ['id', 'name', 'description', 'price', 'category', 'category_id', 'created_at']

# views.py
from rest_framework import viewsets
from rest_framework.permissions import IsAuthenticatedOrReadOnly

class ProductViewSet(viewsets.ModelViewSet):
    queryset = Product.objects.all()
    serializer_class = ProductSerializer
    permission_classes = [IsAuthenticatedOrReadOnly]

    def get_queryset(self):
        queryset = super().get_queryset()
        category = self.request.query_params.get('category')
        if category:
            queryset = queryset.filter(category__slug=category)
        return queryset

Hands-On Practice

Project 1: Blog Application

Build a full-featured blog with user authentication.

Requirements:

  • User registration and login
  • Create, edit, delete posts
  • Comments system
  • Categories and tags
  • Search functionality
  • Admin interface

Key Skills: Django models, views, forms, authentication

Project 2: E-commerce API

Create a RESTful API for an e-commerce platform.

Requirements:

  • Product catalog with categories
  • Shopping cart management
  • Order processing
  • User authentication with JWT
  • API documentation
  • Rate limiting

Key Skills: Django REST Framework, serializers, authentication

Project 3: Task Management System

Build a collaborative task management application.

Requirements:

  • User registration and teams
  • Create and assign tasks
  • Task status tracking
  • File attachments
  • Real-time notifications
  • Permission-based access

Key Skills: Complex models, permissions, file handling

Assessment Criteria

  • Set up Django projects with proper structure
  • Design normalized database schemas
  • Implement CRUD operations efficiently
  • Secure applications with authentication
  • Build RESTful APIs following best practices
  • Write Django tests (unit and integration)
  • Deploy to production environment

Resources

Official Documentation

Learning Platforms

Tools

Next Steps

After mastering Django, explore:

  • FastAPI - Modern, fast web framework
  • Celery - Asynchronous task queue
  • Docker - Containerization for deployment
  • AWS/Heroku - Cloud deployment platforms

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

27.07%
按下载量换算1,366

OpenCode

24.2%
按下载量换算1,221

Gemini CLI

16.42%
按下载量换算828

Antigravity

13.18%
按下载量换算665

windsurf

8.33%
按下载量换算420

trae

3.35%
按下载量换算169

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills