← Back to Skills Marketplace
paul-leo

Jira Workflow

by Paul Leo · GitHub ↗ · v0.1.1
cross-platform ✓ Security Clean
382
Downloads
0
Stars
1
Active Installs
2
Versions
Install in OpenClaw
/install jira-workflow
Description
Jira Cloud 项目管理集成。搜索/创建/更新 Issue,切换状态,添加评论,查看项目和看板。通过 MorphixAI 代理安全访问 Jira API。
README (SKILL.md)

Jira 项目管理

通过 mx_jira 工具管理 Jira Cloud 中的 Issue、项目和工作流。所有操作通过 MorphixAI 代理,无需直接管理 OAuth token。

前置条件

  1. 安装插件: openclaw plugins install openclaw-morphixai
  2. 获取 API Key: 访问 morphix.app/api-keys 生成 mk_xxxxxx 密钥
  3. 配置环境变量: export MORPHIXAI_API_KEY="mk_your_key_here"
  4. 链接账号: 访问 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 账号
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install jira-workflow
  3. After installation, invoke the skill by name or use /jira-workflow
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug jira-workflow
Version 0.1.1
License
All-time Installs 1
Active Installs 1
Total Versions 2
Frequently Asked Questions

What is Jira Workflow?

Jira Cloud 项目管理集成。搜索/创建/更新 Issue,切换状态,添加评论,查看项目和看板。通过 MorphixAI 代理安全访问 Jira API。 It is an AI Agent Skill for Claude Code / OpenClaw, with 382 downloads so far.

How do I install Jira Workflow?

Run "/install jira-workflow" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Jira Workflow free?

Yes, Jira Workflow is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Jira Workflow support?

Jira Workflow is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Jira Workflow?

It is built and maintained by Paul Leo (@paul-leo); the current version is v0.1.1.

💬 Comments