gitlab
Create and manage GitLab issues, merge requests, pipelines, and repositories using the glab CLI. Use when asked to open an MR, review a merge request, check CI/CD pipelines, list issues, or manage code review on GitLab.
What this skill does
# GitLab Skill This skill provides GitLab integration using the official `glab` CLI tool. A Python wrapper script produces markdown-formatted output for read/view operations. Action commands (create, merge, close, comment) should use `glab` directly. ## Prerequisites **Install glab CLI**: [installation guide](https://gitlab.com/gitlab-org/cli#installation) ## Authentication ```bash # Authenticate with GitLab glab auth login # Verify authentication glab auth status ``` Supports GitLab.com, GitLab Dedicated, and GitLab Self-Managed instances. See [GitLab CLI Authentication](https://docs.gitlab.com/cli/#authentication) for details. ## Script Usage The wrapper script (`scripts/gitlab.py`) formats output as markdown. Use it for read/view operations to get agent-consumable output. Use `glab` directly for action commands (create, merge, close, comment). See [permissions.md](references/permissions.md) for read/write classification of each command. ```bash # Check glab CLI is installed and authenticated $SKILL_DIR/scripts/gitlab.py check # Issues $SKILL_DIR/scripts/gitlab.py issues list --repo GROUP/REPO $SKILL_DIR/scripts/gitlab.py issues view 123 --repo GROUP/REPO # Merge Requests $SKILL_DIR/scripts/gitlab.py mrs list --repo GROUP/REPO $SKILL_DIR/scripts/gitlab.py mrs view 456 --repo GROUP/REPO # Pipelines $SKILL_DIR/scripts/gitlab.py pipelines list --repo GROUP/REPO $SKILL_DIR/scripts/gitlab.py pipelines view 123456 --repo GROUP/REPO # Repositories $SKILL_DIR/scripts/gitlab.py repos list $SKILL_DIR/scripts/gitlab.py repos view GROUP/REPO ``` All commands support `--limit N` for list commands (default 30). ## Commands (Direct glab Usage) For action commands, use `glab` directly: ### Issues ```bash glab issue list # List issues glab issue view 123 # View issue details glab issue create # Create new issue glab issue note 123 # Add comment glab issue close 123 # Close issue glab issue update 123 --label bug # Edit issue ``` Full reference: [glab issue](https://docs.gitlab.com/cli/commands/glab_issue.html) ### Merge Requests ```bash glab mr list # List merge requests glab mr view 456 # View MR details glab mr create # Create new MR glab mr approve 456 # Approve MR glab mr merge 456 # Merge MR glab mr checkout 456 # Checkout MR branch glab mr diff 456 # View MR diff glab mr note 456 # Add comment to MR ``` Full reference: [glab mr](https://docs.gitlab.com/cli/commands/glab_mr.html) ### Pipelines & CI/CD ```bash glab ci list # List pipelines glab ci view 123456 # View pipeline details glab ci run # Trigger pipeline glab ci trace # Watch pipeline logs glab ci retry 123456 # Retry failed pipeline glab ci status # Show pipeline status ``` Full references: - [glab ci](https://docs.gitlab.com/cli/commands/glab_ci.html) - [glab pipeline](https://docs.gitlab.com/cli/commands/glab_pipeline.html) ### Repositories ```bash glab repo list # List repositories glab repo view GROUP/REPO # View repository glab repo create # Create repository glab repo clone GROUP/REPO # Clone repository glab repo fork GROUP/REPO # Fork repository ``` Full reference: [glab repo](https://docs.gitlab.com/cli/commands/glab_repo.html) ### Releases ```bash glab release list # List releases glab release view v1.0.0 # View release details glab release create v1.0.0 # Create release glab release delete v1.0.0 # Delete release ``` Full reference: [glab release](https://docs.gitlab.com/cli/commands/glab_release.html) ## Examples ### Daily MR Review ```bash # List MRs assigned to you glab mr list --assignee=@me # Review a specific MR $SKILL_DIR/scripts/gitlab.py mrs view 456 glab mr diff 456 glab mr approve 456 # Verify approval was recorded $SKILL_DIR/scripts/gitlab.py mrs view 456 # check approval status ``` ### Create Issue and Link MR ```bash # Create issue glab issue create --title "Bug: Login fails" --description "Description" --label bug # Verify: note the issue number from output # Create MR that closes it (use issue number from above) glab mr create --title "Fix login bug" --description "Closes #123" # Verify MR was created and linked $SKILL_DIR/scripts/gitlab.py mrs view <number> ``` ### Monitor CI Pipeline ```bash # Check current pipeline status glab ci status # Watch pipeline logs in real-time glab ci trace # Retry failed jobs glab ci retry # Verify pipeline restarted $SKILL_DIR/scripts/gitlab.py pipelines list ``` See [common-workflows.md](references/common-workflows.md) for more examples. ## Advanced Usage ### JSON Output for Scripting ```bash # Get JSON output glab issue list --output json # Process with jq glab mr list --output json | jq '.[] | "\(.iid): \(.title)"' ``` ### GitLab API Access For operations not covered by glab commands: ```bash # Make authenticated API request glab api projects/:id/issues # POST request glab api projects/:id/issues -X POST -f title="Issue" -f description="Text" # Process response glab api projects/:id | jq '.star_count' ``` Full reference: [glab api](https://docs.gitlab.com/cli/commands/glab_api.html) ### Aliases for Frequent Operations ```bash # Create shortcuts glab alias set mrs 'mr list --assignee=@me' glab alias set issues 'issue list --assignee=@me' glab alias set pipelines 'ci list' # Use them glab mrs glab issues glab pipelines ``` ## Configuration ```bash # View configuration glab config get # Set default editor glab config set editor vim # Set default Git protocol glab config set git_protocol ssh ``` Configuration stored in `~/.config/glab-cli/config.yml` ## Model Guidance This skill wraps an official CLI. A fast, lightweight model is sufficient. ## Troubleshooting ```bash # Check authentication glab auth status # Re-authenticate glab auth login # Enable debug logging DEBUG=1 glab issue list # Check glab version glab version ``` ## Official Documentation - **GitLab CLI Manual**: <https://docs.gitlab.com/cli/> - **GitLab CLI Repository**: <https://gitlab.com/gitlab-org/cli> - **GitLab API Documentation**: <https://docs.gitlab.com/ee/api/> - **GitLab CI/CD**: <https://docs.gitlab.com/ee/ci/>
Related in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.