django-ticket-triage
Installation
SKILL.md
Analyze Django ticket and provide triage recommendations.
Prerequisites:
python3(standard library only; no extra Python packages required)gh— GitHub CLI (install). Rungh auth loginto authenticate.- Django source code —
git clone https://github.com/django/django.gitin the working directory (for Step 5: source code analysis)
Before starting, verify python3 and gh are available. If gh is missing, show the install link and stop.
If django/ directory is missing, warn the user and skip Step 5 (source code browsing).
Arguments:
$ARGUMENTS: Trac ticket number (required, e.g.,36812,2750)
IMPORTANT:
- DO NOT use WebFetch or Fetch for GitHub URLs. ALWAYS use the
ghCLI command instead. - For commits:
gh api repos/<owner>/django/commits/<sha> - For PRs:
gh pr view <number> --repo django/djangoorgh api repos/django/django/pulls/<number> - See
references/gh-examples.mdfor more examples.