6.1k★glab-completion – OpenClaw Skill
glab-completion is an OpenClaw Skills integration for design workflows. Use when working with glab completion commands.
Skill Snapshot
| name | glab-completion |
| description | Use when working with glab completion commands. OpenClaw Skills integration. |
| owner | vince-winkintel |
| repository | vince-winkintel/gitlab-ci-skillspath: glab-completion |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @vince-winkintel/gitlab-ci-skills:glab-completion |
| last updated | Feb 7, 2026 |
Maintainer

name: glab-completion description: Use when working with glab completion commands.
glab completion
Overview
This command outputs code meant to be saved to a file, or immediately
evaluated by an interactive shell. To load completions:
### Bash
To load completions in your current shell session:
```shell
source <(glab completion -s bash)
To load completions for every new session, run this command one time:
Linux
glab completion -s bash > /etc/bash_completion.d/glab
macOS
glab completion -s bash > /usr/local/etc/bash_completion.d/glab
Zsh
If shell completion is not already enabled in your environment you must
enable it. Run this command one time:
echo "autoload -U compinit; compinit" >> ~/.zshrc
To load completions in your current shell session:
source <(glab completion -s zsh); compdef _glab glab
To load completions for every new session, run this command one time:
Linux
glab completion -s zsh > "${fpath[1]}/_glab"
macOS
For older versions of macOS, you might need this command:
glab completion -s zsh > /usr/local/share/zsh/site-functions/_glab
The Homebrew version of glab should install completions automatically.
fish
To load completions in your current shell session:
glab completion -s fish | source
To load completions for every new session, run this command one time:
glab completion -s fish > ~/.config/fish/completions/glab.fish
PowerShell
To load completions in your current shell session:
glab completion -s powershell | Out-String | Invoke-Expression
To load completions for every new session, add the output of the above command
to your PowerShell profile.
When installing glab through a package manager, however, you might not need
more shell configuration to support completions.
For Homebrew, see brew shell completion
USAGE
glab completion [--flags]
FLAGS
-h --help Show help for this command.
--no-desc Do not include shell completion description.
-s --shell Shell type: bash, zsh, fish, powershell. (bash)
## Quick start
```bash
glab completion --help
Subcommands
This command has no subcommands.
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install glab-completion?
Run openclaw add @vince-winkintel/gitlab-ci-skills:glab-completion in your terminal. This installs glab-completion into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/vince-winkintel/gitlab-ci-skills. Review commits and README documentation before installing.
