chore(triage-skill): Add GitHub parsing python util script#19405
chore(triage-skill): Add GitHub parsing python util script#19405
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
| num = data.get("number") | ||
| title = _sanitize_title(data.get("title", "")) | ||
| state = data.get("state", "") | ||
| print(f"#{num} {state} {title}") |
There was a problem hiding this comment.
Inconsistent field ordering between output format functions
Low Severity
_format_single_issue outputs fields as #{num} {state} {title} while _format_search_items outputs {num} {title} {state} — the order of state and title is swapped between the two functions. The SKILL.md documentation describes the expected output as "issue number, title, and state," which matches the search format but contradicts the single-issue format. This inconsistency makes the output harder to parse reliably by the AI consumer.
Additional Locations (1)
Codecov Results 📊Generated by Codecov Action |
size-limit report 📦
|
node-overhead report 🧳Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.
|


No description provided.