Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

gitlab-repoGitLab repo 搜索

Agent Skill

用于围绕 GitLab 项目、Merge Request、Issue、分支、流水线和代码审查流程提供辅助能力。它适合让 Agent 查询项目状态、整理提交差异、辅助检查合并请求或汇总 CI 结果。使用时需要确认项目权限、访问 token 和目标分支范围;涉及合并、推送、改工单或触发流水线时,应先预览影响并核对团队流程。

总安装

2,157

周安装

89

GitHub Stars

1

下载量

705
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/grandcamel/gitlab-assistant-skills --skill gitlab-repo

简介

用于围绕 GitLab 项目、合并请求、Issue、分支和流水线提供辅助能力。

  • 适合查询项目状态、整理提交差异、检查合并请求或汇总 CI 结果。
  • 通过命令行安装并配置访问 token 后,支持对仓库信息的搜索与检索。
  • 涉及合并、推送或改工单时,应先预览影响并核对团队流程。
  • gitlab-repo 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Repository Skill

Repository and project operations for GitLab using the glab CLI.

Quick Reference

OperationCommandRisk
Clone repoglab repo clone <repo>-
Fork repoglab repo fork <repo>⚠️
View repoglab repo view-
Create repoglab repo create⚠️
Search reposglab repo search <query>-
Archive repoglab repo archive⚠️⚠️
Delete repoglab repo delete⚠️⚠️⚠️
List contributorsglab repo contributors-

Risk Legend: - Safe | ⚠️ Caution | ⚠️⚠️ Warning | ⚠️⚠️⚠️ Danger

When to Use This Skill

ALWAYS use when:

  • User wants to clone, fork, or create repositories
  • User mentions "repo", "repository", "project", "clone", "fork"
  • User wants to manage project settings

NEVER use when:

  • User wants to work with specific repo content (use git directly)
  • User wants to manage deploy keys (use gitlab-deploy-key skill)

Available Commands

Clone Repository

glab repo clone <repo> [directory] [options]

Arguments:

  • <repo> - Repository path, URL, or project ID
  • [directory] - Optional local directory name

Options:

FlagDescription
-g, --group=<group>Clone all repos in a group
-p, --preserve-namespaceClone into subdirectory based on namespace
-a, --archived=<bool>Include/exclude archived repos (with -g)
--paginateFetch all pages of projects (with -g)

Examples:

# Clone by path
glab repo clone gitlab-org/cli

# Clone by URL
glab repo clone https://gitlab.com/gitlab-org/cli

# Clone into specific directory
glab repo clone gitlab-org/cli my-glab

# Clone by project ID
glab repo clone 4356677

# Clone preserving namespace structure
glab repo clone gitlab-org/cli -p
# Creates: gitlab-org/cli/

# Clone all repos in a group
glab repo clone -g mygroup --paginate

# Clone only non-archived repos from group
glab repo clone -g mygroup --archived=false --paginate

Fork Repository

glab repo fork <repo> [options]

Options:

FlagDescription
-c, --cloneClone the fork after creating
-n, --name=<name>Name for the forked project
-p, --path=<path>Path for the forked project
--remoteAdd a remote for the fork

Examples:

# Fork a repository
glab repo fork owner/repo

# Fork and clone
glab repo fork owner/repo --clone

# Fork with custom name
glab repo fork owner/repo --name="my-fork"

# Fork and add remote
glab repo fork owner/repo --remote

View Repository

glab repo view [repo] [options]

Options:

FlagDescription
-w, --webOpen repository in browser
-b, --branch=<branch>View specific branch

Examples:

# View current repository info
glab repo view

# View specific repo
glab repo view gitlab-org/cli

# Open in browser
glab repo view --web

# View specific branch
glab repo view --branch=develop

Create Repository

glab repo create [name] [options]

Options:

FlagDescription
-n, --name=<name>Repository name
-d, --description=<desc>Repository description
-g, --group=<group>Create in specific group/namespace
--publicMake repository public
--privateMake repository private
--internalMake repository internal
--readmeInitialize with README
-c, --cloneClone after creation

Examples:

# Create repository interactively
glab repo create

# Create with name and description
glab repo create my-project -d "My awesome project"

# Create public repo in group
glab repo create my-project --group=myteam --public

# Create and clone
glab repo create my-project --clone --readme

Search Repositories

glab repo search <query> [options]

Options:

FlagDescription
-P, --per-page=<n>Results per page
--allGet all results

Examples:

# Search for repos
glab repo search "cli tools"

# Search with more results
glab repo search "gitlab" --per-page=50

Archive Repository

glab repo archive [repo] [options]

Archives a repository (makes it read-only).

Examples:

# Archive current repo
glab repo archive

# Archive specific repo
glab repo archive owner/repo

Delete Repository

glab repo delete [repo] [options]

Warning: This permanently deletes the repository and all its data!

Options:

FlagDescription
-y, --yesSkip confirmation prompt

Examples:

# Delete repo (will prompt for confirmation)
glab repo delete owner/repo

# Delete without confirmation (dangerous!)
glab repo delete owner/repo --yes

List Contributors

glab repo contributors [repo] [options]

Options:

FlagDescription
-P, --per-page=<n>Results per page
--order=<order>Sort order: name, email, commits

Examples:

# List contributors for current repo
glab repo contributors

# List with sorting
glab repo contributors --order=commits

Transfer Repository

glab repo transfer <repo> <new-namespace>

Transfer a repository to another namespace.

Examples:

# Transfer to different group
glab repo transfer myrepo newgroup

Common Workflows

Workflow 1: Fork and Contribute

# 1. Fork the repository
glab repo fork upstream/project --clone

# 2. Add upstream remote
cd project
git remote add upstream https://gitlab.com/upstream/project.git

# 3. Create feature branch
git checkout -b feature/my-change

# 4. Make changes, commit, push
git add . && git commit -m "Add feature"
git push -u origin feature/my-change

# 5. Create MR to upstream
glab mr create --target-branch=main

Workflow 2: Batch Clone Team Repos

# Clone all non-archived repos from team group
glab repo clone -g myteam --archived=false --paginate -p

# This creates:
# myteam/
#   repo1/
#   repo2/
#   ...

Workflow 3: Create New Project

# 1. Create the repository
glab repo create awesome-project \
  -d "An awesome new project" \
  --group=myteam \
  --readme \
  --clone

# 2. Set up the project
cd awesome-project
# Add initial files...

# 3. View it in browser
glab repo view --web

Troubleshooting

IssueCauseSolution
Authentication failedInvalid/expired tokenRun glab auth login
Repo not foundInvalid path or no accessCheck repo path and permissions
Clone failedSSH keys not configuredUse HTTPS or configure SSH keys
Cannot forkAlready forked or no permissionCheck existing forks
Cannot deleteNot owner or maintainerRequest owner to delete

Related Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.51%
按下载量换算257

Claude

28.81%
按下载量换算203

Cursor

17.24%
按下载量换算122

Gemini CLI

10.28%
按下载量换算72

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills