在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
run-maintenance
// Run standard maintenance chores: pull latest changes and ensure submodules are up to date.
$ git log --oneline --stat
stars:6
forks:2
updated:2026年3月31日 00:11
SKILL.md
// Run standard maintenance chores: pull latest changes and ensure submodules are up to date.
Update CHANGELOG.md with entries for the upcoming release before bumping the version.
Orchestrate ShareX.ImageEditor release flow in strict order: run-maintenance first, update-changelog second (optional if no CHANGELOG), verify build, bump/commit/push/tag, monitor GitHub Actions every 2 minutes, ensure standard release notes, then set pre-release by default (use explicit opt-out for stable). On failures, inspect logs, fix root cause, and retry with the next patch release.
| name | run-maintenance |
| description | Run standard maintenance chores: pull latest changes and ensure submodules are up to date. |
Pull latest changes (including submodules):
git pull --recurse-submodules
Ensure all submodules are initialised and up to date:
git submodule update --init --recursive
Run both steps from the repository root before starting any release flow.