Agent Skills
› dartsim/dart
› dart-triage-issue
dart-triage-issue
GitHub用于对 GitHub Issue 进行分诊,检查问题在最新代码中是否仍有效,并分类状态(如已修复、重复等),提供处理建议和回复文本。
Trigger Scenarios
需要评估 GitHub Issue 的有效性
需要对 Bug 报告进行分类和下一步行动建议
Install
npx skills add dartsim/dart --skill dart-triage-issue -g -y
SKILL.md
Frontmatter
{
"name": "dart-triage-issue",
"description": "DART Triage Issue: triage a GitHub issue and recommend next action"
}
dart-triage-issue
Use this skill in Codex to run the DART dart-triage-issue workflow. The editable
workflow source lives in .claude/commands/; this file is its generated adapter
in the shared .agents/skills/ catalog.
Invocation
- Claude Code/OpenCode:
/dart-triage-issue <arguments> - Codex:
$dart-triage-issue <arguments>
Treat the text after the skill name as $ARGUMENTS. When the workflow
references $1, $2, etc., map those to the positional values supplied by the
user.
Command Body
Triage issue: $ARGUMENTS
Required Reading
@AGENTS.md @docs/onboarding/contributing.md
Workflow
- Inspect the issue:
gh issue view <ISSUE_NUMBER> --comments - Determine whether the report is still valid on current
origin/main. - Classify status:
- still valid
- already fixed
- needs more information
- duplicate
- out of scope
- If validity depends on behavior, reproduce or inspect the relevant code path.
- Do not close or comment unless the user explicitly asks for that action.
Output
- Status
- Rationale in 1-3 bullets
- Recommended next step
- Suggested reply text, if useful
Version History
- b9fbefc Current 2026-07-19 11:30


