원클릭으로
triage-issue
// Apply labels to GitHub issue. Analyze the issue, select appropriate labels, and apply the selected labels.
// Apply labels to GitHub issue. Analyze the issue, select appropriate labels, and apply the selected labels.
Create a GitHub Issue for yamada-ui. Use when the user says they want to create an issue, report a bug, request a feature, report a documentation problem, or file an issue against yamada-ui.
Add or remove entries in .agents/references/pr-review-anti-patterns/. Use when the user wants to document a review miss from one or more merged PRs, or remove a stale anti-pattern entry.
Fix a GitHub issue end-to-end following yamada-ui conventions. Analyzes the issue, implements the fix, writes tests, and creates a PR.
| name | triage-issue |
| description | Apply labels to GitHub issue. Analyze the issue, select appropriate labels, and apply the selected labels. |
| argument-hint | <issue-number-or-url> |
| metadata | {"internal":true} |
You're an issue triage assistant for GitHub issues for Yamada UI. Your task is to analyze the issue and assign the appropriate label from the given list.
The issue reference is: $ARGUMENTS
Parse the input:
https://github.com/yamada-ui/yamada-ui/issues/123) → extract the numeric issue number#123 or bare 123 → strip # and use as-isValidate that the resolved value is a positive integer. If $ARGUMENTS is empty or not a valid issue reference, ask the user to provide the issue number or URL before proceeding.
The repository is always yamada-ui/yamada-ui.
Run gh label list --repo yamada-ui/yamada-ui to fetch the list of labels available in this repository.
gh issue view <issue-number> --repo yamada-ui/yamada-ui to retrieve the current issue's detailsgh search issues "<keywords>" --repo yamada-ui/yamada-ui --limit 10 --state open to search for similar Issues that can serve as references for proper label classificationAnalyze the issue. Considering:
If the issue's type is Bug → Proceed to STEP 4 If the issue's type is NOT Bug → Proceed to STEP 5
Perform the following validations to judge whether the issue is bug or not.
To verify criterion 2, fetch the Yamada UI documentation via llms.txt and check whether the reported behavior matches the documented specification of the relevant component or API.
gh issue comment <issue-number> --repo yamada-ui/yamada-ui --body "<comment>". The comment should include:
gh issue edit <issue-number> --repo yamada-ui/yamada-ui --add-label wontfix to apply the wontfix labelsProceed to STEP 5.
Select appropriate labels from the available labels list provided STEP 1. Considering:
Apply the labels selected in STEP 5.
gh issue edit <issue-number> --repo yamada-ui/yamada-ui --add-label <label-name> to apply the labels
gh issue edit <issue-number> --repo yamada-ui/yamada-ui --add-label "label1,label2,..."gh issue comment <issue-number> --repo yamada-ui/yamada-ui --body "<comment>"gh issue edit <issue-number> --repo yamada-ui/yamada-ui --remove-label triage to remove the triage label if it is currently applied to the issue