Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
django-skills logo

django-skills

django-skills

OtherClaude Codeby saaspegasus

Summary

Skills for Django development: fix type errors, upgrade JavaScript and Python dependencies

Install to Claude Code

/plugin install django-skills@django-skills

Run in Claude Code. Add the marketplace first with /plugin marketplace add saaspegasus/django-skills if you haven't already.

README.md

Django Skills for AI Agents

A collection of AI agent skills for Django projects. Built for developers who want Claude Code (or similar AI coding assistants) to help with Django development, common workflows, and best practices.

These skills are designed to work in SaaS Pegasus projects, but should be generally useful for any Django project with similar underlying tech choices (e.g. uv, Vite).

What are Skills?

Skills are markdown files that give AI agents specialized knowledge and workflows for specific tasks. When you add these to your project, agents like Claude Code can recognize when you're working on a Django task and apply the right frameworks and best practices.

Available Skills

| Skill | Description | Triggers | |-------|-------------|----------| | fix-types | Interactively fix type checking issues in Python code | /fix-types, working on mypy errors | | upgrade-js-deps | Upgrade JavaScript dependencies using npm-check-updates, then run post-upgrade checks | /upgrade-js-deps | | upgrade-python-deps | Upgrade Python dependencies using uv, then run post-upgrade checks | /upgrade-python-deps |

Installation

Option 1: CLI Install (Recommended)

Use the Skills CLI to install skills directly:

# Install all skills
npx skills add saaspegasus/django-skills

# Install specific skills
npx skills add saaspegasus/django-skills --skill skill-name

# List available skills
npx skills add saaspegasus/django-skills --list

# Install globally (available across all projects)
npx skills add saaspegasus/django-skills --global

This automatically installs to your .claude/skills/ directory (or ~/.claude/skills/ for global installs).

Option 2: Claude Code Plugin Marketplace

Claude Code has a built-in plugin marketplace for discovering and installing skills:

# Add the marketplace
/plugin marketplace add saaspegasus/django-skills

# Install all skills from the marketplace
/plugin install django-skills

# Or use the interactive UI
/plugin
# Then go to the Discover tab to browse and install

This integrates with Claude Code's plugin system and supports auto-updates.

Option 3: Clone and Copy

Clone the entire repo and copy the skills folder:

git clone https://github.com/saaspegasus/django-skills.git
cp -r django-skills/skills/* .claude/skills/

Option 4: Git Submodule

Add as a submodule for easy updates:

git submodule add https://github.com/saaspegasus/django-skills.git .claude/django-skills

Then reference skills from .claude/django-skills/skills/.

Option 5: Fork and Customize

1. Fork this repository 2. Customize skills for your specific needs 3. Clone your fork into your projects

Usage

Once installed, just ask Claude Code to help with Django tasks. Skills are automatically triggered based on context.

You can also invoke skills directly:

/skill-name

Skill File Structure

Each skill is a directory containing a SKILL.md file:

skills/
  skill-name/
    SKILL.md

The SKILL.md file follows this format:

---
name: skill-name
description: One-line description for skill selection
---

# Skill Name

[Full instructions for the AI agent]

Contributing

Contributions are welcome! If you have a Django workflow that would benefit from AI assistance, consider adding a skill.

License

MIT - Use these however you want.

Related plugins

Browse all →