Claude-skill-registry gitlab-pipelines
Manages GitLab pipelines. Use for listing, running pipelines. Triggers: CI triggers.
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-pipelines" ~/.claude/skills/majiayu000-claude-skill-registry-gitlab-pipelines && rm -rf "$T"
manifest:
skills/data/gitlab-pipelines/SKILL.mdsource content
Overview
Handles pipeline execution.
Available Tools
: Retrieve a list of pipelines for a specific GitLab project, optionally filtered by scope, status, or ref or details of a specific pipeline in a GitLab project..get_pipelines- Parameters:
(str): Optional. - Project ID or pathproject_id
(Optional[int]): Optional. - Pipeline IDpipeline_id
(Optional[str]): Optional. - Filter pipelines by scope (e.g., 'running', 'branches')scope
(Optional[str]): Optional. - Filter pipelines by status (e.g., 'success', 'failed')status
(Optional[str]): Optional. - Filter pipelines by reference (e.g., branch or tag name)ref
(Optional[str]): Optional. - Filter pipelines by source (e.g., 'push', 'schedule')source
(Optional[str]): Optional. - Filter pipelines updated after this date (ISO 8601 format)updated_after
(Optional[str]): Optional. - Filter pipelines updated before this date (ISO 8601 format)updated_before
- Parameters:
: Run a pipeline for a specific GitLab project with a given reference (e.g., branch or tag).run_pipeline- Parameters:
(str): Optional. - Project ID or pathproject_id
(str): Optional. - Reference (e.g., branch or tag) to run the pipeline onref
(Optional[Dict[str, str]]): Optional. - Dictionary of pipeline variablesvariables
(Optional[Context]): Optional. - MCP context for progressctx
- Parameters:
Usage Instructions
- Use ref for branch/tag.
Examples
- Run:
with project_id="123", ref="main".run_pipeline - List:
with project_id="123", status="running".get_pipelines
Error Handling
- Failed triggers: Check config.