Assess, validate, and route community-filed issues for human disposition and roadmap placement. Takes a specific issue number or processes a confirmed batch of issues labeled state:triage-needed. Investigates reported behavior, separates objective findings from product decisions, and prepares validated issues for a human yes/no decision. Trigger keywords - triage issue, triage, assess issue, review incoming issue, triage issues.
73
90%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Establish the facts a human needs to decide whether OpenShell should address an issue and, if so, where it belongs on the roadmap. Triage does not authorize work, sequence it, or produce an implementation plan.
gh CLI must be authenticated (gh auth status)state:validated, state:accepted, and state:needs-info must exist. Report missing labels to the operator; do not create them implicitly.Triage establishes technical validity; it does not decide whether valid work belongs on the roadmap. Agents must never:
state:accepted.roadmap label, or recommend a specific roadmap item.agent:plan-requested or agent:implementation-requested.OpenShell has no priority:* labels. Sequencing comes from association with an item on the OpenShell Roadmap, and that association is a maintainer decision.
state:validated means the factual assessment is complete and awaits human disposition. A human declines by closing the issue as not planned with a rationale, or accepts by applying state:accepted, placing the issue on the roadmap, or doing both as documented in CONTRIBUTING.md. Accepted work may remain human-owned. A maintainer can queue deeper agent investigation or planning with agent:plan-requested, or a user can directly ask an agent to work on a specific issue.
The optional agent:* workflow controls unattended queue pickup: agent:plan-requested queues planning, and agent:implementation-requested queues implementation after plan review. A direct user instruction separately authorizes the phase it requests. The agent warns about missing or incomplete expected lifecycle and workflow labels, then continues without changing them.
All comments posted by this skill must begin with the following marker line:
> **📋 triage-agent**This marker distinguishes triage comments from human comments and from other skills (🏗️ build-from-issue-agent, 🔒 security-review-agent, etc.).
This skill supports two modes:
triage issue 250
triage issue #250Assess one specific issue. Proceed to Step 1 with the given issue number.
triage issuesBatch mode requires a confirmation gate before processing. This prevents accidental mass-commenting on a public repository.
Step 1: Preview. Query all matching issues and display a summary:
gh issue list --label "state:triage-needed" --state open --json number,title --jq '.[] | "#\(.number) \(.title)"'Present the results to the user:
Found N issues with state:triage-needed:
#250 Bug: sandbox fails to start with VM driver
#312 Feature: add --output yaml to sandbox list
... (show up to 10, then "and N more")
This will post a triage comment on each issue.Step 2: Confirm. Ask the user for explicit confirmation before proceeding. Use AskUserQuestion with options "Proceed with all N issues", "Let me pick specific issues", and let them provide custom input. Do not proceed without confirmation.
Step 3: Process. Only after confirmation, run the full triage workflow (Steps 1-7 below) for each issue. Report a summary at the end listing each issue and its classification.
Strip any leading # from the issue number and fetch the issue.
gh issue view <id> --json title,body,state,labels,author,commentsIf the issue is closed, report that and stop.
Search the issue comments for the triage agent marker (> **📋 triage-agent**).
state:accepted, or placed it on the roadmap, do not undo or reinterpret that decision.Check for a substantive User Story, Problem Statement, Impact / Why This Matters, and Acceptance Criteria. The impact should explain the consequences of the current behavior and any insufficient workaround. For bug reports, also identify the reproduction steps and relevant environment. For feature requests, review the Proposed Design and Alternatives Considered. Reporter-supplied diagnostics and agent output are optional and must not be used as an intake gate.
If the report contains enough context to understand and assess the need, continue. If a required section lacks material information, classify it as needs-information, request only the exact missing information, remove state:triage-needed, and add state:needs-info.
security-report and direct the operator to SECURITY.md.Proceed to Step 4 for reports requiring technical validation.
Before deeper diagnosis, determine whether the report may already be fixed in a newer release.
gh release list --limit 10gh release view <tag>If the issue targets an older OpenShell release and a newer release or merged PR appears to address the same behavior:
fixed-in-release. If the causal link is uncertain, request a retest instead of declaring the issue fixed.Assess the report by investigating the codebase. Use the principal-engineer-reviewer sub-agent via the Task tool:
Prompt the sub-agent with:
- The full issue title and body
- Instructions to evaluate with a skeptical lens:
1. What persona and desired capability does the user story establish?
2. Does the problem statement match current product behavior?
3. Does the impact explain the consequences, current workaround, and why that workaround is insufficient?
4. Are the acceptance criteria specific, observable, and consistent with the user story?
5. Can the described workflow be reproduced or otherwise validated from the information given?
6. Does the current product support the requested outcome, and what component owns the behavior?
7. Is the report best classified as a bug, feature request, support request, or another category?
8. If this is a feature request, is the proposed design technically coherent and feasible? Do not decide whether the project should accept it.
9. Are there any open or closed issues that duplicate this?
10. What uncertainty remains, and what exact evidence would resolve it?Based on the sub-agent's analysis, also attempt to validate the report directly:
debug-openshell-cluster skill's known failure patternsdebug-inference skill's known failure patternsopenshell-cli skill's command referenceRecord impact signals for the human decision: affected users and scope, regression status, workaround availability, severity evidence, and evidence quality. Do not convert those facts into a roadmap or sequencing recommendation.
Based on the investigation, classify the issue into one of these categories:
| Classification | Meaning | Agent action |
|---|---|---|
| validated-bug | Evidence confirms a real defect | Add relevant area/topic labels; replace triage/needs-info state with state:validated; leave open |
| validated-feature | The proposal is technically coherent and feasible | Add relevant area/topic labels; replace triage/needs-info state with state:validated; leave open |
| needs-investigation | The report is credible but needs a deeper spike | Add spike if available; replace triage/needs-info state with state:validated; leave open for a human decision on whether to invest in the spike |
| needs-information | Critical reproduction or environment evidence is missing | Replace state:triage-needed with state:needs-info; request the exact missing evidence |
| cannot-reproduce | A faithful attempt did not reproduce, but the report may still be valid | Replace state:triage-needed with state:needs-info; document the attempt and request discriminating evidence |
| fixed-in-release | A concrete released change fixes the reported behavior | Explain the fix and version; close only when the causal link is clear, otherwise request a retest |
| duplicate | Another open or closed issue is the canonical report | Link the canonical issue and close |
| expected-behavior | Code and documentation establish that the behavior is intentional | Explain the behavior and close |
| support-request | The report asks for usage help rather than tracking work | Provide the support route and close |
| wrong-repository | Another repository owns the affected component | Link the correct tracker and close |
| security-report | The report may contain a vulnerability | Avoid further public analysis and direct the operator to SECURITY.md for safe handling |
Do not use validated-feature to imply roadmap acceptance. Do not use expected-behavior to decline a technically valid feature request.
Post a structured comment with the triage marker:
> **📋 triage-agent**
>
> ## Triage Assessment
>
> **Classification:** <validated-bug | validated-feature | needs-investigation>
>
> ### Summary
> <What was established and confidence in the evidence.>
>
> ### Investigation
> <Reproduction results, code/release evidence, affected components, and duplicates.>
>
> ### Impact Signals
> - **Affected users/scope:** <facts or unknown>
> - **Regression:** <yes/no/unknown>
> - **Workaround:** <available/unavailable/unknown>
> - **Evidence quality:** <high/medium/low with reason>
>
> ### Human Decision Required
> Decide whether OpenShell should address this issue. If yes, apply
> `state:accepted`, associate it with a roadmap item, or do both, and decide
> whether the work remains human-owned. Either action records acceptance;
> roadmap placement additionally records sequencing.
> To queue investigation or planning for an unattended agent, also apply
> `agent:plan-requested`. You can instead directly ask an agent to use
> `create-spike` or `build-from-issue` on this issue; the agent will warn about
> missing expected workflow labels and continue without changing them. If no,
> close it as not planned and record the rationale.For other outcomes, replace the impact and decision sections with the exact information request, objective resolution, or safe routing guidance.
Keep exactly one intake/triage state among state:triage-needed, state:needs-info, and state:validated. Remove state:triage-needed after every completed assessment. Never apply state:accepted, any agent:* label, or the roadmap label during triage. Never close a validated issue.
Community issue filed
|
[GitHub Action: instant gate check]
|
triage-issue
|
state:validated
|
human decline OR state:accepted / roadmap placement
|
create-spike (if deeper investigation is approved)
|
human queues planning with agent:plan-requested
OR directly requests planning
|
build-from-issue (creates implementation plan)
|
human queues implementation with agent:implementation-requested
OR directly requests implementation
|
implementationagent:plan-requested to pick up planning and agent:implementation-requested to pick up implementation.Triage is the assessment layer. It does not sequence work, accept it onto the roadmap, plan, or build.
69a05eb
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.