Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/morphicai/openclaw-morphixai/gitlab-workflownpx skills add Morphicai/openclaw-morphixai --skill gitlab-workflowgit clone --depth 1 https://github.com/Morphicai/openclaw-morphixaiWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00052 | $0.03445 |
| Opus 5 | $0.00026 | $0.01723 |
| Sonnet 5 | $0.00010 | $0.00689 |
| Haiku 4.5 | $0.00005 | $0.00345 |
Grade A, and why
gitlab-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 432 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitLab 工作流
通过 mx_gitlab 工具管理 GitLab 项目。严格遵守团队规范。
前置条件
- 安装插件:
openclaw plugins install openclaw-morphixai - 获取 API Key: 访问 morphix.app/api-keys 生成
mk_xxxxxx密钥 - 配置环境变量:
export MORPHIXAI_API_KEY="mk_your_key_here" - 链接账号: 访问 morphix.app/connections 链接 GitLab 账号,或通过
mx_link工具链接(app:gitlab)
参数命名规范(重要)
mx_gitlab 工具所有 action 的参数命名:
| 参数 | 说明 |
|---|---|
project |
项目 ID(数字字符串)或路径(group/repo),不是 project_id |
mr_iid |
MR 在项目内的序号,不是 merge_request_iid |
pipeline_id |
Pipeline 的全局 ID |
description 字段换行格式
⚠️
description字段必须使用真实换行符,不要使用\n字面量字符串。错误示例(在 GitLab 上会显示为
\n):description: "改动\n- 修复 bug\n- 新增功能"正确示例(使用 YAML 多行字符串):
description: | ## 改动 - 修复 bug - 新增功能 ## 测试 - 单元测试通过
代码审查策略(优先级顺序)
获取 MR 代码变更时,按以下顺序尝试:
✅ 优先:本地 git(推荐)
本地仓库 + git 命令是最可靠的代码审查方式:
- 无需额外认证(使用本地已有凭证)
- 无响应体大小限制(任意规模的 diff)
- 速度快,工具丰富(log、diff、show、blame)
第一步:查找本地仓库路径
# nodes.run — 在本机执行
find ~/www -maxdepth 4 -type d -name '<仓库名>'
# 例:find ~/www -maxdepth 4 -type d -name 'tanka-2b-web'
第二步:fetch 最新数据
# nodes.run — 工作目录切换到仓库路径
cd ~/www/<项目路径> && git fetch origin
第三步:获取 MR 的 commits(需要知道源分支和目标分支)
# 查看 MR 分支间的 commit 列表
git log origin/<target-branch>..origin/<source-branch> --oneline
# 示例(MR: feat/zoom-v2/main → uat-tanka-oh)
git log origin/uat-tanka-oh..origin/feat/zoom-v2/main --oneline
第四步:获取文件变更统计
git diff --stat origin/<target-branch>...origin/<source-branch>
# 示例
git diff --stat origin/uat-tanka-oh...origin/feat/zoom-v2/main
第五步:获取具体文件的 diff
# 全量 diff(大 MR 慎用,建议指定文件)
git diff origin/<target-branch>...origin/<source-branch>
# 指定文件 diff(推荐)
git diff origin/<target-branch>...origin/<source-branch> -- src/path/to/file.ts
# 只看特定目录
git diff origin/<target-branch>...origin/<source-branch> -- src/components/
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 432 lines · 52 tokens per session scan A 4306f1d03d9b
gitlab-workflow is a skill published in the GitHub repository Morphicai/openclaw-morphixai (0 stars, last pushed 3mo ago), licensed MIT. It adds 52 tokens to every session and 3,445 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
auto-perf-optimize
Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.
chat-perf
Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…