Skip to main content

gtk-osx-moduleset-updater

Compare and update gtk-osx-build JHBuild moduleset XML files from an upstream checkout. Use when Codex needs to list library updates available from another gtk-osx-build repository, apply selected module branch version/module/hash changes, skip named packages, limit scope to root modulesets or modulesets-stable, and create one git commit per package update with a required commit message body.

跳到安装

来源信息

仓库
Xpra-org/gtk-osx-build
最近来源活动
2026年5月7日 14:59
检测到的 SKILL.md 语言
英语
星标
0
分支
2

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
3 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
gtk-osx-moduleset-updater
description
Compare and update gtk-osx-build JHBuild moduleset XML files from an upstream checkout. Use when Codex needs to list library updates available from another gtk-osx-build repository, apply selected module branch version/module/hash changes, skip named packages, limit scope to root modulesets or modulesets-stable, and create one git commit per package update with a required commit message body.
# GTK-OSX Moduleset Updater ## Workflow Use this skill for repeatable update passes between a local gtk-osx-build checkout and an upstream checkout such as `$HOME/projects/gtk-osx-build.upstream`. 1. Confirm the local repo, upstream repo, scope, skips, and commit body from the user request. 2. Run `scripts/moduleset_update.py list` to see upstream-newer branch pins. 3. If asked to apply updates, run `scripts/moduleset_update.py apply` with the same scope and skips. 4. Verify XML parsing and `git status --short` for the affected files. 5. Report commit hashes and any intentionally skipped or untracked modulesets. ## Script Prefer the bundled script instead of hand-editing XML. It parses moduleset files, compares branch `version` values by module id, copies upstream branch attributes into the local file, preserves local child patches/dependencies, and commits one update at a time. List updates from stable modulesets and matching root-level modulesets: ```bash python3 .codex/skills/gtk-osx-moduleset-updater/scripts/moduleset_update.py list \ --local $HOME/projects/gtk-osx-build \ --upstream $HOME/projects/gtk-osx-build.upstream \ --scope root,modulesets-stable ``` Apply updates while skipping packages: ```bash python3 .codex/skills/gtk-osx-moduleset-updater/scripts/moduleset_update.py apply \ --local $HOME/projects/gtk-osx-build \ --upstream $HOME/projects/gtk-osx-build.upstream \ --scope root,modulesets-stable \ --skip openssl,python3 \ --message-body "update merged from https://github.com/jralls/gtk-osx-build" ``` By default the script only modifies tracked files. Use `--include-untracked` only when the user explicitly wants to add a new moduleset file. ## Guardrails - Stage only the moduleset file being updated for each commit. - Do not touch unrelated untracked files in `gtk-osx-build`. - Skip packages exactly by module id, for example `openssl` or `python3`. - Root scope means root-level `*.modules` files that exist in both repositories. - Stable scope means `modulesets-stable/*.modules` files that exist in both repositories. - If a moduleset exists only as an untracked local file, mention it and leave it alone unless explicitly requested. - If a package appears in more than one moduleset, commit each file update separately unless the user asks for a different grouping.
在 GitHub 查看