saaspegasus/pegasus-skills

A collection of skills for working with Django / SaaS Pegasus codebases

0 stars0 forksUpdated Jan 26, 2026
npx skills add saaspegasus/pegasus-skills

README

Pegasus Skills for AI Agents

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

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/Pegasus task and apply the right frameworks and best practices.

Available Skills

SkillDescriptionTriggers
resolve-pegasus-conflictsResolve merge conflicts when upgrading SaaS Pegasus"merge conflicts," "pegasus upgrade," "upgrade conflicts"

Installation

Option 1: CLI Install (Recommended)

Use add-skill to install skills directly:

# Install all skills
npx add-skill saaspegasus/pegasus-skills

# Install specific skills
npx add-skill saaspegasus/pegasus-skills --skill resolve-pegasus-conflicts

# List available skills
npx add-skill saaspegasus/pegasus-skills --list

This automatically installs to your .claude/skills/ directory.

Option 2: Clone and Copy

Clone the entire repo and copy the skills folder:

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

Option 3: Git Submodule

Add as a submodule for easy updates:

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

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

Option 4: 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/Pegasus tasks:

"Help me resolve these merge conflicts from the Pegasus upgrade"
→ Uses resolve-pegasus-conflicts skill

"I just merged main into the pegasus branch and have conflicts"
→ Uses resolve-pegasus-conflicts skill

You can also invoke skills directly:

/resolve-pegasus-conflicts

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]

License

MIT - Use these however you want.

Publisher

saaspegasussaaspegasus

Statistics

Stars0
Forks0
Open Issues0
LicenseMIT License
CreatedJan 26, 2026