Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

merge-renovate-pull-requests合并更新拉取请求

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

285

周安装

12

GitHub Stars

公开资料未说明

下载量

39
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:merge-renovate-pull-requests(合并更新拉取请求)
来源仓库:https://github.com/kjetilhartveit/merge-renovate-prs-skill
仓库路径:skills/merge-renovate-pull-requests
安装命令:
npx skills add https://github.com/kjetilhartveit/merge-renovate-prs-skill --skill merge-renovate-pull-requests
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/kjetilhartveit/merge-renovate-prs-skill --skill merge-renovate-pull-requests

简介

merge-renovate-pull-requests 用于围绕 GitHub 仓库、Issue、Pull Request 等提供辅助能力。

  • 适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 使用时需区分只读查询和写入操作,涉及 PR 创建或私有仓库访问时应确认 token 权限和用户授权。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Merge renovate pull requests

When to use:

When doing routinely maintenance and when Renovatebot has created pull requests which are not automatically merged. They pull requests may not have been automatically merged because there's a major version update, the checks failed or other reasons.

Caveats:

  • Do not attempt to process pull requests which are not created by Renovatebot (username might be renovate and author id might be app/renovate).
  • We should only process open pull requests.
  • When updating versions with breaking changes (updating major versions or if the major version is 0) then it's very important to read and understand all the breaking changes and how to update correctly/safely. The breaking changes, and sometimes links to official documentation, can be found in the pull request description or in the changelog of the GitHub repo of the dependency to update. We should follow the official migration guides if available. If the changes are significant, affect the architecture and/or requires migrations on external systems like databases or production systems then we should leave it to the user to resolve it manually. Leave a comment in the pull request explaining this and then abort the current workflow.

Tools:

You may use the GitHub CLI to get fetch pull requests from the GitHub repo, see results from checks etc.

Merge exceptions:

  • eslint / eslint monorepo should not be updated to >= v10 yet because they haven't patched a bug.

Dependency specific update details:

TypeScript v6

  • tsconfig.json:

- Set module to esnext. moduleResolution should probably be bundler. - Set target to esnext (we are a greenfield project, so we can use the latest features). - lib: - We may add esnext to the list (so we can access new APIs like Temporal). - dom.iterable is now included in dom, so if we're already using dom then we don't need to add dom.iterable to the list. - types no longer include all libraries in node_modules/@types so we should make sure node is added to the list. If we get errors about missing types, then we might have to add missing types to the list. - baseUrl can be removed in 99% of instances, especially if it's . (a single dot). - esModuleInterop and allowSyntheticDefaultImports are now always true, so these can probably be removed. - noUncheckedSideEffectImports now defaults to true, so this can probably be removed.

  • module syntax now yields an error, we should rather use namespace. Note that ambient module declaration form is still fully acceptable.
  • Make sure that VSCode is using the TypeScript version of the workspace. .vscode/settings.json should have typescript.tsdk set to the path of the TypeScript version of the workspace (e.g. "typescript.tsdk": "node_modules\\typescript\\lib").
  • Blog post announcing TypeScript 6.0: https://devblogs.microsoft.com/typescript/announcing-typescript-6-0/

- You may read more about the changes in the blog post if needed.

Adding logs of agent merges:

  1. When we want to log agent merges we append the following information to AGENT_MERGE.md (in the root folder of the repo). ` # {agent merge concise title} Date: {date and time} {summary of changes} ## Breaking changes {bullet list of the breaking changes; include a short description of the actual breaking changes and including links to official sources for reading more} ## Pull requests {bullet list with links to pull requests} {comments header and comments if there are any} {separator between entries, use the --- separator} `
  2. Then we commit and push the changes.

Main workflow:

  • Before starting a workflow make sure:

1. You are on the main branch and pull latest git changes. 2. You have installed latest package versions (with e.g. pnpm install). 3. Have created a new branch and PR with an unique name with this format agent-merge-{yyyy}-{MM}-{hh}-{mm}-{ss} (replace placeholders/vars with current date in UTC). - This is the branch/PR you will be working on during the workflow. You should not merge individual updates/commits directly into the main branch, but rather merge the PR into the main branch after all open pull requests have been processed.

  • Commit often when suitable.
  • Do not close processed PRs, these will automatically be handled by renovatebot once the pull request is merged in.
  • Do not delete any branches.

1. Processing open pull requests where all checks passed:

  1. Merge in open pull requests (by renovatebot) where all checks have passed.
  2. Install latest package versions (with e.g. pnpm install).

- Make sure we are using the latest transitive dependencies in case there are merge conflicts.

  1. Run type checking, linting and build. If any of them fails, then we should fix them before proceeding.
  2. Make sure the new branch is pushed, and check the results/checks in CI/GitHub workflow. If the job fails in CI, then we go back to step 3 and try again.

- If we can't fix the errors within a reasonable amount of effort, then leave it to the user to resolve it manually. Leave a comment in the pull request explaining this and then abort the current workflow.

  1. Log agent merges.

2. Processing open pull requests where any checks failed:

  1. We should process open pull requests where any checks have failed one by one.
  2. For each pull request with any failed checks (by renovatebot):

1. Merge in the pull request. 2. Install latest package versions (with e.g. pnpm install). - Make sure we are using the latest transitive dependencies in case there are merge conflicts. 3. Run type checking, linting and build. If any of them fails, then we should fix them before proceeding. 4. Push the fixes and see the results in CI/GitHub workflow. If the job fails in CI, then we go back to step 3 (for the individual pull request) and try again. - If the task is unresolvable (perhaps due to an open issue in the third-party dependency) then we should leave it to the user to resolve it manually. Leave a comment in the pull request explaining this and then abort the current workflow.

  1. Log agent merges.

3. After processing all open pull requests:

  1. After we have processed all open pull requests and checks are passing, then we can merge the new branch into the main branch.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.11%
按下载量换算13

Claude

34.04%
按下载量换算13

Cursor

18.57%
按下载量换算7

Gemini CLI

9.72%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills