# Glab Gpg Key

> Manage GPG keys for commit signing including add, list, and delete operations. Use when setting up commit signing, managing GPG keys, or verifying signed commits. Triggers on GPG key, commit signing, signed commits, verify commits.

- Skill: `vince-winkintel/glab-gpg-key` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add vince-winkintel/glab-gpg-key`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vince-winkintel/glab-gpg-key/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: vince-winkintel (https://skillmd.com/u/vince-winkintel)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/vince-winkintel/glab-gpg-key

---


# glab gpg-key

## Overview

```

  Manage GPG keys registered with your GitLab account.
  USAGE
    glab gpg-key <command> [command] [--flags]
  COMMANDS
    add [key-file]   Add a GPG key to your GitLab account.
    delete <key-id>  Deletes a single GPG key specified by the ID.
    get <key-id>     Returns a single GPG key specified by the ID.
    list [--flags]   Get a list of GPG keys for the currently authenticated user.
  FLAGS
    -h --help        Show help for this command.
    -R --repo        Select another repository. Can use either `OWNER/REPO` or `GROUP/NAMESPACE/REPO` format. Also accepts full URL or Git URL.
```

## Quick start

```bash
glab gpg-key --help
```

## Structured output

`glab gpg-key list` and `glab gpg-key get` support `--output json` / `-F json` for structured output, which is useful for agent automation.

```bash
# List GPG keys with JSON output
glab gpg-key list --output json
glab gpg-key list -F json

# Get a specific GPG key with JSON output
glab gpg-key get <key-id> --output json
glab gpg-key get <key-id> -F json
```

## Subcommands

See [references/commands.md](references/commands.md) for full `--help` output.

