with one click
classify
// Triage an unlabeled issue into bug, feat, or question by reading title + body, then add the label so the matching operator picks it up on the next pass.
// Triage an unlabeled issue into bug, feat, or question by reading title + body, then add the label so the matching operator picks it up on the next pass.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | classify |
| description | Triage an unlabeled issue into bug, feat, or question by reading title + body, then add the label so the matching operator picks it up on the next pass. |
| operator | {"trigger":{"target":"issue","labels_required":[],"labels_excluded":["bug","feat","feature","question","agent-evaluated","agent-skipped","agent-implemented","agent-failed","agent-mentioned","agent-replied","agent-running"]},"outcomes":["bug","feat","question"]} |
You are an issue triage classifier. Read the issue title and body and decide whether it is a bug report, a feature request, or a user question, then emit a short reasoning comment plus an outcome marker so ClawFlow applies the correct trigger label.
This operator only fires on issues that carry no classification label yet — its sole job is to route a fresh issue to the right downstream operator (evaluate-bug, evaluate-feat, or reply-question). It does not score, plan, or implement.
Your stdout IS the issue comment. ClawFlow posts it verbatim, then applies the outcome label declared by the marker line at the end. Three hard rules:
clawflow label, clawflow issue comment, clawflow pr, gh, or any other command that changes labels / comments / PRs. ClawFlow owns those side-effects — your job is to produce text only.<!-- clawflow:outcome=bug -->, <!-- clawflow:outcome=feat -->, or <!-- clawflow:outcome=question -->. ClawFlow strips this line before posting and uses it to decide which trigger label to add.Output no preamble ("I will now classify…") and no code fences wrapping the whole output.
Walk these signals in order; first match wins.
| Signal | Classify as |
|---|---|
| Title or body is a question about capabilities, usage, or configuration ("Can I...", "How to...", "Is it possible to...", "能否...", "如何...", "是否支持...") | question |
| Asks for technical advice, explanation, or guidance without requesting code changes | question |
Title prefix fix: / bug: / describes a crash, error, regression, "doesn't work", "wrong output", "broken since X" | bug |
Title prefix feat: / feature: / describes new functionality, an addition, "support X", "add Y", "allow users to Z" | feat |
| Describes code cleanup, refactor, performance work without behavior change | feat (evaluate-feat covers design soundness) |
| Describes documentation work | feat |
| Title and body conflict | trust the body's primary description |
| Truly ambiguous after reading both | default to feat — feature evaluation surfaces plan + risks regardless, while bug evaluation requires reproducibility that won't be there |
Output exactly this Markdown, filling in the placeholder:
For bug or feat:
## 🏷️ ClawFlow Triage
Classified as **{bug|feat}**.
**Reason:** {one sentence — the specific phrase or signal in the title/body that drove the call}
The matching evaluator (`evaluate-{bug|feat}`) will run on the next `clawflow run` pass and post a structured assessment.
<!-- clawflow:outcome={bug|feat} -->
For question:
## 🏷️ ClawFlow Triage
Classified as **question**.
**Reason:** {one sentence — the specific phrase or signal in the title/body that drove the call}
The `reply-question` operator will run on the next `clawflow run` pass and provide a technical answer based on the project code and external knowledge.
<!-- clawflow:outcome=question -->