Claude-skill-registry gitlab-tags
Manages GitLab tags. Use for creating, deleting, protecting tags. Triggers: versioning.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/gitlab-tags" ~/.claude/skills/majiayu000-claude-skill-registry-gitlab-tags && rm -rf "$T"
manifest:
skills/data/gitlab-tags/SKILL.mdsource content
Overview
Handles tags and protection.
Available Tools
: Retrieve a list of tags for a specific GitLab project, optionally filtered or sorted or Retrieve details of a specific tag in a GitLab project.get_tags- Parameters:
(str): Optional. - Project ID or pathproject_id
(Optional[str]): Optional. - Name of the tag to retrieve (e.g., 'v1.0.0')name
(Optional[str]): Optional. - Filter tags by search term in namesearch
(Optional[str]): Optional. - Sort tags by criteria (e.g., 'name', 'updated')sort
- Parameters:
: Create a new tag in a GitLab project.create_tag- Parameters:
(str): Optional. - Project ID or pathproject_id
(str): Optional. - Name of the tag to create (e.g., 'v1.0.0')name
(str): Optional. - Reference (e.g., branch or commit SHA) to tagref
(Optional[str]): Optional. - Tag messagemessage
(Optional[str]): Optional. - Release description associated with the tagrelease_description
(Optional[Context]): Optional. - MCP context for progressctx
- Parameters:
: Delete a specific tag in a GitLab project.delete_tag- Parameters:
(str): Optional. - Project ID or pathproject_id
(str): Optional. - Name of the tag to delete (e.g., 'v1.0.0')name
(Optional[Context]): Optional. - MCP context for progressctx
- Parameters:
: Retrieve a list of protected tags in a specific GitLab project, optionally filtered by name.get_protected_tags- Parameters:
(str): Optional. - Project ID or pathproject_id
(Optional[str]): Optional. - Filter tags by namename
- Parameters:
: Retrieve details of a specific protected tag in a GitLab project.get_protected_tag- Parameters:
(str): Optional. - Project ID or pathproject_id
(str): Optional. - Name of the protected tag to retrieve (e.g., 'v1.0.0')name
- Parameters:
: Protect a specific tag in a GitLab project with specified access levels.protect_tag- Parameters:
(str): Optional. - Project ID or pathproject_id
(str): Optional. - Name of the tag to protect (e.g., 'v1.0.0')name
(Optional[str]): Optional. - Access level for creating the tag (e.g., 'maintainer')create_access_level
(Optional[List[Dict]]): Optional. - List of users or groups allowed to create the tagallowed_to_create
(Optional[Context]): Optional. - MCP context for progressctx
- Parameters:
: Unprotect a specific tag in a GitLab project.unprotect_tag- Parameters:
(str): Optional. - Project ID or pathproject_id
(str): Optional. - Name of the tag to unprotect (e.g., 'v1.0.0')name
(Optional[Context]): Optional. - MCP context for progressctx
- Parameters:
Usage Instructions
- Ref for creation.
Examples
- Create:
with project_id="123", name="v1.0", ref="main".create_tag - Protect:
with create_access_level="maintainer".protect_tag
Error Handling
- Tag exists: Delete first.