Token导航 LogoToken导航TokenDH.com
待分类操作浏览器github未标认证来源可访问许可证需确认审计异常

gitlab-releaseGitLab 发布

Agent Skill

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

总安装

2,036

周安装

84

GitHub Stars

1

下载量

665
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Release Skill

Release operations for GitLab using the glab CLI.

Quick Reference

OperationCommandRisk
List releasesglab release list-
View releaseglab release view <tag>-
Create releaseglab release create <tag>⚠️
Upload assetsglab release upload <tag> <files>⚠️
Download assetsglab release download <tag>-
Delete releaseglab release delete <tag>⚠️⚠️

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

When to Use This Skill

ALWAYS use when:

  • User wants to work with releases
  • User mentions "release", "version", "changelog", "tag" (for releases)
  • User wants to publish or distribute software versions

NEVER use when:

  • User wants to manage git tags directly (use git commands)
  • User wants CI/CD operations (use gitlab-ci instead)

Available Commands

List Releases

glab release list [options]

Options:

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

Examples:

# List all releases
glab release list

# List with more results
glab release list --per-page=50

View Release Details

glab release view <tag> [options]

Options:

FlagDescription
-w, --webOpen release in browser

Examples:

# View release details
glab release view v1.0.0

# Open release in browser
glab release view v1.0.0 --web

Create Release

glab release create <tag> [options]

Options:

FlagDescription
-n, --notes=<notes>Release notes
-F, --notes-file=<file>Read release notes from file
-N, --name=<name>Release name (defaults to tag)
-r, --ref=<ref>Git ref to create tag from (if tag doesn't exist)
-a, --assets-links=<json>JSON array of asset links
--milestone=<titles>Milestone titles to associate

Examples:

# Create simple release
glab release create v1.0.0

# Create with release notes
glab release create v1.0.0 -n "## What's New
- Feature A
- Bug fix B"

# Create with notes from file
glab release create v1.0.0 -F CHANGELOG.md

# Create with name and milestone
glab release create v1.0.0 -N "Version 1.0.0" --milestone="Sprint 5"

# Create from specific commit
glab release create v1.0.0 -r abc123def

Upload Assets

glab release upload <tag> <file>... [options]

Upload files as release assets.

Examples:

# Upload single file
glab release upload v1.0.0 ./dist/app.zip

# Upload multiple files
glab release upload v1.0.0 ./dist/*.tar.gz

# Upload with custom name
glab release upload v1.0.0 ./build/app.exe#windows-binary

Download Assets

glab release download <tag> [options]

Options:

FlagDescription
-D, --dir=<dir>Download directory
-n, --asset-name=<name>Download specific asset by name

Examples:

# Download all assets
glab release download v1.0.0

# Download to specific directory
glab release download v1.0.0 -D ./downloads/

# Download specific asset
glab release download v1.0.0 -n "app.zip"

Delete Release

glab release delete <tag> [options]

Options:

FlagDescription
-y, --yesSkip confirmation
--with-tagAlso delete the associated tag

Warning: This permanently deletes the release.

Examples:

# Delete release (prompts for confirmation)
glab release delete v1.0.0

# Delete release and tag
glab release delete v1.0.0 --with-tag

# Delete without confirmation
glab release delete v1.0.0 --yes

Common Workflows

Workflow 1: Standard Release

# 1. Ensure all changes are merged
glab mr list --state=opened

# 2. Verify CI passes
glab ci status --branch=main

# 3. Create release with changelog
glab release create v1.2.0 -F CHANGELOG.md -N "Version 1.2.0"

# 4. Upload binaries
glab release upload v1.2.0 ./dist/*

Workflow 2: Pre-release

# Create pre-release version
glab release create v2.0.0-beta.1 \
  -n "Beta release for testing. Not for production use."

Workflow 3: Hotfix Release

# 1. Create release from hotfix branch
glab release create v1.0.1 -r hotfix/critical-fix \
  -n "Hotfix release:
- Fixed critical security issue"

# 2. Upload patched binaries
glab release upload v1.0.1 ./dist/*

Release Notes Best Practices

Structure your release notes:

## What's New
- Feature descriptions

## Bug Fixes
- Fix descriptions

## Breaking Changes
- Migration notes

## Contributors
- @username

Troubleshooting

IssueCauseSolution
Authentication failedInvalid/expired tokenRun glab auth login
Tag already existsDuplicate releaseUse different tag or delete existing
Release not foundInvalid tagVerify tag with glab release list
Upload failedFile not foundCheck file path exists

Related Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.52%
按下载量换算236

Claude

28.65%
按下载量换算191

Cursor

20.3%
按下载量换算135

Gemini CLI

9.93%
按下载量换算66

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills