Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计异常

github-repo-managementGitHub repo management 开发

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

公开资料未说明

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:github-repo-management(GitHub repo management 开发)
来源仓库:https://github.com/fanthus/agent-skills
仓库路径:skills/github-repo-management
安装命令:
npx skills add https://github.com/fanthus/agent-skills --skill github-repo-management
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/fanthus/agent-skills --skill github-repo-management

简介

面向 GitHub 仓库全生命周期管理的自动化技能。

  • 涵盖分支、提交、Issue 等核心协作元素处理。
  • 适用于开发流程标准化与团队协作优化。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 写入类操作依赖正确的 OAuth token 授权机制。
  • github-repo-management 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitHub Repository Management

Rules

  • Secrets: Do not echo, log, or include any token or secret in output, commands, or file contents. GitHub MCP handles auth.
  • Destructive actions: Ask for confirmation before git push --force, git branch -D, deleting a repo, or overwriting remote history.
  • Default branch: Prefer main; use master only when the repo already uses it.
  • Commits: Use Conventional Commits (e.g. feat:, fix:, docs:).

Capabilities

  • Run git commands locally (init, add, commit, push, branch, checkout, etc.).
  • Operate on GitHub via GitHub MCP only: create repos, get repo info, list/create/merge PRs, manage branches. Do not use REST API or GITHUB_TOKEN directly.

Create a repo

When the user asks to "create a repo" or "create a GitHub repository":

  1. Create on GitHub (GitHub MCP only):

- Use GitHub MCP create_repository (or equivalent) with name, optional description, private (default from user intent).

  1. Set origin locally (if already in a git repo): git remote add origin https://github.com/<owner>/<repo>.git If origin exists and should point to the new repo, ask before changing it.
  2. If no local repo yet: git init git remote add origin https://github.com/<owner>/<repo>.git
  3. First push (after at least one commit): git push -u origin main Use main unless the GitHub repo was created with a different default branch.

Push code

When the user asks to "push code" or "push to GitHub":

  1. Ensure git repo exists: Run git status. If not a repo, ask whether to git init and set remote.
  2. Check remote: git remote -v. If no origin, ask for repo URL or create repo first.
  3. Commit cleanly:

- git status to see changes. - Stage: git add <paths> or git add -A if user intends all changes. - Commit with a conventional message: git commit -m "type(scope): description". - If there are uncommitted changes and user said "push", offer to commit first; do not force-push without asking.

  1. Push: git push origin <branch>. Default branch is main. If upstream not set: git push -u origin main.

Get repo info

When the user asks to "get repo info", "repo details", or "show repository":

  1. Identify repo: From git remote get-url origin (owner/repo) or user-provided owner/name.
  2. Fetch via GitHub MCP: Use MCP tools to get repository details (e.g. get repo, list branches, list PRs). Summarize: name, description, default branch, visibility, stars/forks if available, clone URL.

Branches

  • Create branch: git checkout -b <branch-name> then push: git push -u origin <branch-name>.
  • Switch branch: git checkout <branch> or git switch <branch>.
  • Delete branch: Local git branch -d <branch>; remote delete only after user confirmation: git push origin --delete <branch>.

Pull requests

  • Open PR: Use GitHub MCP to create a pull request (head, base default main, title, body).
  • List PRs: Use GitHub MCP to list PRs; summarize by number, title, state, author.
  • Merge: Use GitHub MCP to merge; confirm with user before merging.

Conventional commit messages

Use this format: type(scope): short description.

TypeUse for
featNew feature
fixBug fix
docsDocumentation only
styleFormatting, no code change
refactorCode change, no feature/fix
testAdding or updating tests
choreBuild, tooling, deps

Examples:

  • feat(auth): add login endpoint
  • fix(api): correct date parsing
  • docs: update README setup steps

Summary checklist

  • GitHub operations: GitHub MCP only (no REST API, no GITHUB_TOKEN in commands).
  • Confirm before force push, branch delete, or repo delete.
  • Default branch: main.
  • All commits: conventional style.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.61%
按下载量换算39

Claude

27.98%
按下载量换算29

Cursor

17.98%
按下载量换算19

Gemini CLI

9.48%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills