← 返回 Skills 市场
382
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install jira-workflow
功能描述
Jira Cloud 项目管理集成。搜索/创建/更新 Issue,切换状态,添加评论,查看项目和看板。通过 MorphixAI 代理安全访问 Jira API。
使用说明 (SKILL.md)
Jira 项目管理
通过 mx_jira 工具管理 Jira Cloud 中的 Issue、项目和工作流。所有操作通过 MorphixAI 代理,无需直接管理 OAuth token。
前置条件
- 安装插件:
openclaw plugins install openclaw-morphixai - 获取 API Key: 访问 morphix.app/api-keys 生成
mk_xxxxxx密钥 - 配置环境变量:
export MORPHIXAI_API_KEY="mk_your_key_here" - 链接账号: 访问 morphix.app/connections 链接 Jira 账号,或通过
mx_link工具链接(app:jira)
核心操作
查看项目列表
mx_jira:
action: list_projects
max_results: 10
搜索 Issue(JQL)
mx_jira:
action: search_issues
jql: "project = PROJ AND status != Done ORDER BY updated DESC"
max_results: 10
重要: JQL 必须包含限制条件(如
project = X),不能使用无限制查询。
查看 Issue 详情
mx_jira:
action: get_issue
issue_key: "PROJ-123"
创建 Issue
mx_jira:
action: create_issue
project: "PROJ"
summary: "实现用户登录功能"
issue_type: "Task"
description: "实现基于 JWT 的用户登录流程\
\
**验收标准:**\
- 支持邮箱+密码登录\
- 返回 JWT token"
priority: "High"
labels: ["backend", "auth"]
描述支持 Markdown 格式,自动转换为 Jira ADF(Atlassian Document Format)。
更新 Issue
mx_jira:
action: update_issue
issue_key: "PROJ-123"
fields: { "summary": "新标题", "priority": { "name": "High" } }
切换 Issue 状态
mx_jira:
action: transition_issue
issue_key: "PROJ-123"
target_status: "In Progress"
自动查找匹配的 transition,无需手动指定 transition ID。 如果目标状态不可达,会返回所有可用的 transition 列表。
查看可用的状态转换
mx_jira:
action: get_transitions
issue_key: "PROJ-123"
添加评论
mx_jira:
action: add_comment
issue_key: "PROJ-123"
body: "代码已提交到 feature 分支,请 review。\
\
**变更内容:**\
- 添加了登录 API\
- 增加了单元测试"
评论内容支持 Markdown,自动转换为 ADF。
常见工作流
每日 Standup — 查看我的待办
1. mx_jira: get_myself → 获取当前用户 accountId
2. mx_jira: search_issues
jql: "assignee = \x3CaccountId> AND status != Done ORDER BY priority DESC, updated DESC"
创建 Issue 并开始工作
1. mx_jira: create_issue → 获取 issue_key
2. mx_jira: transition_issue, target_status: "In Progress"
3. mx_jira: add_comment, body: "开始开发"
完成 Issue
1. mx_jira: add_comment, body: "开发完成,PR: \x3Curl>"
2. mx_jira: transition_issue, target_status: "Done"
注意事项
- Jira API v3 使用 ADF 格式,本工具自动转换 Markdown/纯文本,无需手动构建 ADF JSON
- JQL 查询必须包含
project = X等限制条件 transition_issue只能转换到当前状态可达的目标状态account_id参数通常省略,工具自动检测已链接的 Jira 账号
安全使用建议
This skill proxies all Jira API calls through MorphixAI and requires only a Morphix API key—verify you trust morphix.app before providing an API key and linking your Jira account. Prefer creating a least-privilege Morphix API key or a dedicated integration account, review the openclaw-morphixai plugin source before installing, and avoid using org-wide admin credentials for this integration.
功能分析
Type: OpenClaw Skill
Name: jira-workflow
Version: 0.1.1
The jira-workflow skill bundle provides standard Jira Cloud project management capabilities (searching, creating, and updating issues) via the MorphixAI proxy service. The instructions in SKILL.md are consistent with the stated purpose, and there is no evidence of malicious intent, data exfiltration, or prompt injection. It relies on a third-party plugin (openclaw-morphixai) and an external service (morphix.app) for API mediation, which is a standard architectural pattern for this type of integration.
能力评估
Purpose & Capability
Name/description state Jira Cloud integration via a MorphixAI proxy; the SKILL.md exclusively uses mx_jira/mx_link and Morphix endpoints and only asks for MORPHIXAI_API_KEY, which is coherent with that purpose.
Instruction Scope
Runtime instructions are constrained to Jira operations (list/search/get/create/update/transition/add_comment) via the mx_jira tool and linking via mx_link; they do not request reading arbitrary system files, unrelated environment variables, or exfiltrating data to unexpected endpoints beyond morphix.app.
Install Mechanism
No install spec or code files are present; the SKILL.md asks the user to install an external OpenClaw plugin (openclaw-morphixai), which matches the use of mx_jira and is a reasonable, proportionate dependency.
Credentials
Only a single environment variable (MORPHIXAI_API_KEY) is required, which aligns with using a third-party proxy service; no unrelated credentials, keys, or local config paths are requested.
Persistence & Privilege
always is false and the skill does not request any elevated or persistent platform-wide privileges. It does instruct installing a separate plugin, but that is scoped and expected for proxying functionality.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install jira-workflow - 安装完成后,直接呼叫该 Skill 的名称或使用
/jira-workflow触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.1
- 增加了详细的前置条件说明,包括插件安装、API Key 获取、环境变量配置和账号链接步骤
- 提供了官方链接以获取 API 密钥和链接 Jira 账号
- 原有功能与使用示例保持一致,未做其他变更
v0.1.0
Initial release of Jira Cloud project management integration via MorphixAI proxy.
- Search, create, update, and transition Jira Issues without direct OAuth management.
- List projects, view project boards, and get issue details.
- Add comments to issues with Markdown support (auto-converted to ADF).
- Secure access via required `MORPHIXAI_API_KEY` environment variable.
- Guides for daily workflows (standup, create/start/complete issue).
- Automated transition lookup and JQL best practice enforcement.
元数据
常见问题
Jira Workflow 是什么?
Jira Cloud 项目管理集成。搜索/创建/更新 Issue,切换状态,添加评论,查看项目和看板。通过 MorphixAI 代理安全访问 Jira API。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 382 次。
如何安装 Jira Workflow?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install jira-workflow」即可一键安装,无需额外配置。
Jira Workflow 是免费的吗?
是的,Jira Workflow 完全免费(开源免费),可自由下载、安装和使用。
Jira Workflow 支持哪些平台?
Jira Workflow 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Jira Workflow?
由 Paul Leo(@paul-leo)开发并维护,当前版本 v0.1.1。
推荐 Skills