submodule-updater
Update Jacktook repository submodules and regenerate the Kodi repository index. Triggered when the user requests to update the repository.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Update Jacktook repository submodules and regenerate the Kodi repository index. Triggered when the user requests to update the repository.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | submodule-updater |
| description | Update Jacktook repository submodules and regenerate the Kodi repository index. Triggered when the user requests to update the repository. |
This skill provides a standardized workflow for updating Jacktook submodules (like plugin.video.jacktook) and synchronizing the Kodi repository.
Navigate to the submodule directory and fetch the latest changes.
git submodule update --remote <submodule_path>
Note: If local changes cause conflicts, you may need to enter the submodule and run git reset --hard origin/main.
Ensure the repository's metadata files match the updated submodule version. Append the new changelog to the packages/jacktook_changelog file, but do not overwrite the existing content.
packages/jacktook_versionpackages/jacktook_changelogRun the repository generator script to update addons.xml, MD5 hashes, and create new ZIP packages.
python3 _repo_generator.py
Stage the updated submodule pointer, the generated ZIPs, and the updated index files.
git add repo/<submodule_name> repo/zips/ packages/jacktook_changelog packages/jacktook_version
main) before regenerating the index.