From gitlab
View and manage GitLab CI/CD pipelines and jobs using glab. Use this skill when the user wants to check pipeline status, view job logs, retry failed jobs, or manage CI/CD workflows.
npx claudepluginhub tanyagray/claude --plugin gitlabThis skill uses the workspace's default tool permissions.
Use the `glab` CLI to manage GitLab CI/CD pipelines and jobs.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Use the glab CLI to manage GitLab CI/CD pipelines and jobs.
# List recent pipelines
glab ci list
# Filter by status
glab ci list --status running
glab ci list --status failed
glab ci list --status success
# View current branch pipeline
glab ci view
# View a specific pipeline
glab ci view 12345
# View in web browser
glab ci view --web
# Get detailed pipeline status (interactive)
glab ci status
# View pipeline with job details
glab ci view
# Trigger a pipeline on current branch
glab ci run
# Trigger with variables
glab ci run --variables "DEPLOY_ENV=staging,DEBUG=true"
# Trigger on a specific branch
glab ci run --branch main
# Retry a failed pipeline
glab ci retry 12345
# Cancel a running pipeline
glab ci cancel 12345
# View logs for a specific job
glab ci trace <job-id>
# Stream live job output
glab ci trace <job-id>
# Retry a specific failed job
glab ci retry <pipeline-id> --job <job-name>
# Download job artifacts
glab ci artifact <job-id>
# Validate .gitlab-ci.yml
glab ci lint
# Lint a specific file
glab ci lint .gitlab-ci.yml
glab ci status for a quick overview of the current pipelineglab ci view for an interactive pipeline viewglab ci trace <job-id> to see the logsglab ci lint to validate CI configuration before pushingglab mr pipelines <mr-id> to check MR-specific pipelines