django-ticket-triage

Solid

Analyze a Django Trac ticket and produce a triage recommendation report — duplicate search, related PRs, forum threads, and the affected source code. Use when the user gives a Django ticket number, or asks whether a ticket is valid, a duplicate, or ready for a triage stage.

Data & Documents 17 stars 1 forks Updated 2 weeks ago MIT

Install

View on GitHub

Quality Score: 82/100

Stars 20%
42
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Django Ticket Triage Analyze a Django Trac ticket and recommend a triage stage. **Prerequisites**: - `python3` (standard library only; no extra Python packages required) - `gh` — GitHub CLI ([install](https://cli.github.com/)). Run `gh auth login` to authenticate. - Django source code — `git clone https://github.com/django/django.git` in 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`) **GitHub access**: use the `gh` CLI for every GitHub lookup, not WebFetch. `gh` goes through the authenticated API and returns structured JSON; fetching a github.com URL returns rendered HTML that has to be scraped and breaks whenever the page layout changes. - For commits: `gh api repos/<owner>/django/commits/<sha>` - For PRs: `gh pr view <number> --repo django/django` or `gh api repos/django/django/pulls/<number>` - See `references/gh-examples.md` for more examples. **Note**: `./scripts/` paths are relative to this SKILL.md file. Use the actual resolved path when executing. --- ## Step 1: Fetch Ticket Details ```bash python3 ./scripts/trac.py get $ARGUMENTS ``` Identify the following: - **Basic info**: summary, reporter, owner, component, version - **Status**: status, resolution, triage_stage, ...

Details

Author
2ykwang
Repository
2ykwang/agent-skills
Created
6 months ago
Last Updated
2 weeks ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category