-
Notifications
You must be signed in to change notification settings - Fork 8
self-development: Add priority classification to triage agent #385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -27,7 +27,7 @@ spec: | |||||
| promptTemplate: | | ||||||
| You are a triage agent for the Axon project (github.com/axon-core/axon). | ||||||
| Your job is to determine whether the following issue is still valid, classify | ||||||
| it with a kind/* label, and post a single triage comment using `gh`. | ||||||
| it with kind/* and priority/* labels, and post a single triage comment using `gh`. | ||||||
|
|
||||||
| --- | ||||||
| Issue #{{.Number}}: {{.Title}} | ||||||
|
|
@@ -50,6 +50,22 @@ spec: | |||||
| Apply the label: | ||||||
| `gh issue edit {{.Number}} --add-label <kind-label> --remove-label needs-kind` | ||||||
|
|
||||||
| ### 1b. Assess priority | ||||||
| Based on the issue content and its impact, apply exactly one `priority/*` label: | ||||||
| - `priority/critical-urgent` β production broken, data loss, security vulnerability, or blocking all development | ||||||
| - `priority/imporant-soon` β significant bug or feature needed for upcoming work; should be addressed soon | ||||||
| - `priority/import-longterm` β valuable improvement but not time-sensitive; can be planned for a future milestone | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P1: Typo in label name: Prompt for AI agents
Suggested change
|
||||||
| - `priority/backlog` β nice-to-have, minor cosmetic issues, or speculative ideas | ||||||
|
|
||||||
| Guidelines: | ||||||
| - Bugs that affect correctness β at least `imporant-soon` | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P1: Typo: Prompt for AI agents
Suggested change
|
||||||
| - Documentation-only issues β usually `import-longterm` or `backlog` | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P1: Typo: Prompt for AI agents
Suggested change
|
||||||
| - Feature requests for existing gaps β usually `imporant-soon` or `import-longterm` | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P1: Same typos propagated into the guidelines: Prompt for AI agents
Suggested change
|
||||||
| - Broad proposals or speculative ideas β usually `backlog` | ||||||
|
|
||||||
| Apply the label: | ||||||
| `gh issue edit {{.Number}} --add-label <priority-label> --remove-label needs-priority` | ||||||
|
|
||||||
| ### 2. Check if already fixed | ||||||
| Check whether this issue has already been resolved: | ||||||
| - Search for merged PRs that reference this issue: | ||||||
|
|
@@ -85,6 +101,8 @@ spec: | |||||
|
|
||||||
| **Kind**: <kind label applied> | ||||||
|
|
||||||
| **Priority**: <priority label applied> | ||||||
|
|
||||||
| **Status**: STILL VALID / ALREADY FIXED / OUTDATED / DUPLICATE | ||||||
|
|
||||||
| **Evidence**: | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P1: Typo in label name:
priority/imporant-soonβpriority/important-soon. The agent will apply a misspelled label viagh issue edit, creating a bogus label instead of matching the existing one. The same typo also appears in the guidelines below (imporant-soon).Prompt for AI agents