← 返回 Skills 市场
paul-leo

Github Workflow

作者 Paul Leo · GitHub ↗ · v0.1.1
cross-platform ✓ 安全检测通过
2189
总下载
1
收藏
16
当前安装
2
版本数
在 OpenClaw 中安装
/install github-workflow
功能描述
GitHub 集成。管理仓库、Issue、Pull Request 和 GitHub Actions 工作流。通过 MorphixAI 代理安全访问 GitHub API。
使用说明 (SKILL.md)

GitHub 集成

通过 mx_github 工具管理 GitHub 仓库、Issue、PR 和 CI/CD 工作流。

前置条件

  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 链接 GitHub 账号,或通过 mx_link 工具链接(app: github

核心操作

查看当前用户

mx_github:
  action: get_user

列出仓库

mx_github:
  action: list_repos
  sort: "updated"
  per_page: 10

查看仓库详情

mx_github:
  action: get_repo
  repo: "owner/repo-name"

Issue 操作

列出 Issue(不含 PR):

mx_github:
  action: list_issues
  repo: "owner/repo"
  state: "open"
  per_page: 10

创建 Issue:

mx_github:
  action: create_issue
  repo: "owner/repo"
  title: "Bug: 登录页面加载异常"
  body: "## 问题描述\
登录页面在 Safari 中无法正常加载\
\
## 复现步骤\
1. 打开 Safari\
2. 访问登录页"
  labels: ["bug", "frontend"]
  assignees: ["username"]

更新 Issue:

mx_github:
  action: update_issue
  repo: "owner/repo"
  issue_number: 42
  state: "closed"

Pull Request 操作

列出 PR:

mx_github:
  action: list_pulls
  repo: "owner/repo"
  state: "open"

创建 PR:

mx_github:
  action: create_pull
  repo: "owner/repo"
  title: "feat: 添加用户登录功能"
  head: "feature/user-login"
  base: "main"
  body: "## 改动内容\
- 实现了 JWT 登录\
- 添加了单元测试"

GitHub Actions

查看工作流运行:

mx_github:
  action: list_workflow_runs
  repo: "owner/repo"
  per_page: 5

触发工作流:

mx_github:
  action: trigger_workflow
  repo: "owner/repo"
  workflow_id: "deploy.yml"
  ref: "main"
  inputs: { "environment": "staging" }

常见工作流

创建 Feature PR

1. mx_github: create_pull
     repo: "owner/repo", title: "feat: xxx", head: "feature/xxx", base: "main"
2. mx_github: list_workflow_runs  → 检查 CI 状态

查看项目 Issue 和 PR 概况

1. mx_github: list_issues, repo: "owner/repo", state: "open"
2. mx_github: list_pulls, repo: "owner/repo", state: "open"

注意事项

  • repo 参数格式为 "owner/repo"(如 "paul-leo/mini-tanka"
  • list_issues 自动过滤掉 PR(GitHub API 的 /issues 端点会返回 PR)
  • trigger_workflow 需要仓库有对应的 workflow 文件和 workflow_dispatch 触发器
  • account_id 参数通常省略,工具自动检测已链接的 GitHub 账号
安全使用建议
This skill appears coherent, but take these precautions before installing: 1) Verify the source/trustworthiness of the openclaw-morphixai plugin (no homepage/source provided in the manifest). 2) Limit the MORPHIXAI_API_KEY to the minimal scopes needed (prefer a dedicated service token or read-only scopes where possible). 3) Review what GitHub account is linked via morphix.app and avoid linking high-privilege or org-wide personal accounts. 4) Understand that requests go through MorphixAI (morphix.app) — check their privacy/security policies. 5) If you need stronger assurance, ask the publisher for the plugin repository or homepage and audit the plugin's code and permissions before granting the API key.
功能分析
Type: OpenClaw Skill Name: github-workflow Version: 0.1.1 The skill bundle provides standard documentation and instructions for integrating GitHub workflows via the MorphixAI platform. It defines legitimate actions for managing repositories, issues, pull requests, and GitHub Actions using the `mx_github` tool. No evidence of malicious intent, data exfiltration, or prompt injection was found in SKILL.md or _meta.json.
能力评估
Purpose & Capability
Name/description advertise GitHub integration via MorphixAI proxy; the only required environment variable is MORPHIXAI_API_KEY and the SKILL.md explicitly references morphix.app and mx_github/mx_link tools — these are proportionate and expected.
Instruction Scope
SKILL.md contains only instructions to install the MorphixAI plugin, set the MORPHIXAI_API_KEY, link a GitHub account, and call mx_github actions (list repos, create issues/PRs, trigger workflows). It does not instruct reading unrelated files, other env vars, or transmitting data to unexpected endpoints.
Install Mechanism
This is an instruction-only skill with no install spec or code files. The doc asks the user to install an OpenClaw plugin (openclaw-morphixai) manually — expected and low risk from this manifest alone.
Credentials
Only MORPHIXAI_API_KEY is required, which is consistent with using a MorphixAI proxy. No unrelated secrets or config paths are requested. Note: that API key will be able to perform GitHub actions via the proxy, so its scope and trustworthiness should be considered.
Persistence & Privilege
always is false and there are no config path changes. The skill allows normal autonomous invocation (disable-model-invocation: false), which is standard — be aware an autonomously-invoked agent could use the MorphixAI key to access repo data if the key is granted broad scopes.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install github-workflow
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /github-workflow 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.1
- 新增前置条件说明,包括插件安装、API Key 获取和配置、以及 GitHub 账号链接的详细步骤 - 前置条件部分现在提供了具体链接和命令,提升集成指引清晰度 - 其余说明与操作示例保持不变
v0.1.0
Initial release of GitHub integration skill. - Manage repositories, issues, pull requests, and GitHub Actions workflows via MorphixAI proxy. - Provides commands for listing and managing repos, issues, and PRs. - Supports creating and updating issues, as well as creating and listing pull requests. - Allows viewing and triggering GitHub Actions workflows. - Requires setup of MORPHIXAI_API_KEY environment variable and user account linking.
元数据
Slug github-workflow
版本 0.1.1
许可证
累计安装 17
当前安装数 16
历史版本数 2
常见问题

Github Workflow 是什么?

GitHub 集成。管理仓库、Issue、Pull Request 和 GitHub Actions 工作流。通过 MorphixAI 代理安全访问 GitHub API。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2189 次。

如何安装 Github Workflow?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install github-workflow」即可一键安装,无需额外配置。

Github Workflow 是免费的吗?

是的,Github Workflow 完全免费(开源免费),可自由下载、安装和使用。

Github Workflow 支持哪些平台?

Github Workflow 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Github Workflow?

由 Paul Leo(@paul-leo)开发并维护,当前版本 v0.1.1。

💬 留言讨论