redmine-issues
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseRedmine Issue Management Skill
Redmine工单管理技能
Manages issues through integration with the Redmine issue tracking system.
通过与Redmine问题跟踪系统集成来管理工单。
Overview
概述
This skill automatically activates Redmine issue management features. When users request issue-related operations, it uses the appropriate Redmine tools.
此技能会自动激活Redmine工单管理功能。当用户请求与工单相关的操作时,它会调用相应的Redmine工具。
Trigger Conditions
触发条件
Activates for the following requests:
当用户提出以下请求时,技能将被激活:
Issue Creation
工单创建
- "create issue", "register bug", "create task"
- "new ticket", "feature request"
- "create issue", "create bug", "new ticket"
- "创建工单"、"提交Bug"、"创建任务"
- "新ticket"、"功能请求"
- "创建issue"、"创建bug"、"新ticket"
Issue Query
工单查询
- "show my issues", "assigned issues list"
- "open issues", "in-progress tasks"
- "search issues", "find bugs"
- "list my issues", "show open tickets"
- "显示我的工单"、"指派给我的工单列表"
- "未关闭工单"、"进行中的任务"
- "搜索工单"、"查找Bug"
- "列出我的工单"、"显示未关闭ticket"
Issue Update
工单更新
- "change issue status", "update issue"
- "complete issue", "close issue"
- "change assignee", "change priority"
- "update issue", "close ticket"
- "修改工单状态"、"更新工单"
- "完成工单"、"关闭工单"
- "更改经办人"、"修改优先级"
- "更新issue"、"关闭ticket"
Tools Used
使用的工具
redmine_list_issues
redmine_list_issues
Queries the issue list.
Key Parameters:
- : Project ID or identifier
project_id - : "me" or user ID
assigned_to_id - : "open", "closed", "*" or status ID
status_id - : Tracker ID (Bug, Feature, Task, etc.)
tracker_id - : Maximum results (default 25)
limit
Examples:
"show my issues" → assigned_to_id: "me", status_id: "open"
"completed issues" → status_id: "closed"
"all bugs" → tracker_id: 1 (Bug)查询工单列表。
关键参数:
- :项目ID或标识符
project_id - :"me"或用户ID
assigned_to_id - :"open"、"closed"、"*"或状态ID
status_id - :跟踪器ID(Bug、Feature、Task等)
tracker_id - :最大结果数(默认25)
limit
示例:
"show my issues" → assigned_to_id: "me", status_id: "open"
"completed issues" → status_id: "closed"
"all bugs" → tracker_id: 1 (Bug)redmine_get_issue
redmine_get_issue
Queries detailed information for a specific issue.
Key Parameters:
- : Issue ID (required)
id - : Additional information (journals, attachments, relations, etc.)
include
查询特定工单的详细信息。
关键参数:
- :工单ID(必填)
id - :附加信息(日志、附件、关联工单等)
include
redmine_create_issue
redmine_create_issue
Creates a new issue.
Key Parameters:
- : Project ID (required)
project_id - : Issue title (required)
subject - : Issue description
description - : Tracker ID
tracker_id - : Priority ID
priority_id - : Assignee ID
assigned_to_id
创建新工单。
关键参数:
- :项目ID(必填)
project_id - :工单标题(必填)
subject - :工单描述
description - :跟踪器ID
tracker_id - :优先级ID
priority_id - :经办人ID
assigned_to_id
redmine_update_issue
redmine_update_issue
Updates an existing issue.
Key Parameters:
- : Issue ID (required)
id - : Status ID
status_id - : Completion percentage (0-100)
done_ratio - : Add comments
notes
更新现有工单。
关键参数:
- :工单ID(必填)
id - :状态ID
status_id - :完成百分比(0-100)
done_ratio - :添加评论
notes
Workflow Guide
工作流指南
When Creating Issues
创建工单时
- If project ID is missing, first use to confirm
redmine_list_projects - If tracker/priority IDs are needed, use ,
redmine_list_trackersredmine_list_priorities - Create issue with
redmine_create_issue
- 如果缺少project_id,首先使用确认
redmine_list_projects - 如果需要tracker/优先级ID,使用、
redmine_list_trackersredmine_list_priorities - 使用创建工单
redmine_create_issue
When Searching Issues
搜索工单时
- Set filter parameters matching conditions
- Query list with
redmine_list_issues - If needed, confirm details with
redmine_get_issue
- 设置匹配条件的过滤参数
- 使用查询列表
redmine_list_issues - 如果需要,使用确认详细信息
redmine_get_issue
When Updating Issues
更新工单时
- Confirm issue ID (find from list or ask user)
- Confirm fields and values to change
- Update with
redmine_update_issue
- 确认工单ID(从列表中查找或询问用户)
- 确认需要修改的字段和值
- 使用进行更新
redmine_update_issue