gitlab-webhook

gitlab-webhook is a skill for Claude Code, Codex from grandcamel/GitLab-Assistant-Skills. It costs 52 tokens per session (2,608 once invoked), scanned A, original, MIT.

A set of commands for managing GitLab webhooks, which are notifications sent to another service when something happens in a project. It works with project and group webhook settings.

In plain words
What is it for?
Use it to list, view, create, update, delete, and test GitLab webhooks, or configure events that notify external services.
Why use it?
It lets developers inspect and maintain integrations from the terminal instead of configuring each callback manually in GitLab. Webhooks can also be tested to check whether delivery works.

Skill for Claude CodeCodex

Part of the gitlab-assistant-skills plugin — 19 skills, 3 commands shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/grandcamel/gitlab-assistant-skills/gitlab-webhook
Any agent
npx skills add grandcamel/GitLab-Assistant-Skills --skill gitlab-webhook
Clone the repo
git clone --depth 1 https://github.com/grandcamel/GitLab-Assistant-Skills

Made for: Claude Code, Codex.

Or install gitlab-assistant-skills, the plugin that ships this one along with the rest of its 19 skills, 3 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gitlab-webhook

README.md
[![agentmods](https://agentmods.dev/badge/skills/grandcamel/gitlab-assistant-skills/gitlab-webhook.svg)](https://agentmods.dev/skills/grandcamel/gitlab-assistant-skills/gitlab-webhook)
Your own site
<a href="https://agentmods.dev/skills/grandcamel/gitlab-assistant-skills/gitlab-webhook"><img src="https://agentmods.dev/badge/skills/grandcamel/gitlab-assistant-skills/gitlab-webhook.svg" alt="Measured on agentmods" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,608 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00052 $0.02608
Opus 5 $0.00026 $0.01304
Sonnet 5 $0.00010 $0.00522
Haiku 4.5 $0.00005 $0.00261

Measured 4d ago against content hash 67c558439aac, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

gitlab-webhook scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/gitlab-webhook/SKILL.md · 344 lines

How it starts

The opening of the file, as written. The whole thing — 344 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Webhook Skill

Webhook management for GitLab using glab api raw endpoint calls.

Quick Reference

Operation Command Pattern Risk
List webhooks glab api projects/:id/hooks -
Get webhook glab api projects/:id/hooks/:hook_id -
Create webhook glab api projects/:id/hooks -X POST -f ... ⚠️
Update webhook glab api projects/:id/hooks/:hook_id -X PUT -f ... ⚠️
Delete webhook glab api projects/:id/hooks/:hook_id -X DELETE ⚠️⚠️
Test webhook glab api projects/:id/hooks/:hook_id/test/:trigger -X POST ⚠️
List group hooks glab api groups/:id/hooks -

Risk Legend: - Safe | ⚠️ Caution | ⚠️⚠️ Warning | ⚠️⚠️⚠️ Danger

When to Use This Skill

ALWAYS use when:

  • User mentions "webhook", "hook", "web hook"
  • User wants to integrate GitLab with external services
  • User mentions "notification", "callback", "trigger URL"
  • User wants to set up CI/CD integrations or Slack notifications

NEVER use when:

  • User wants to configure built-in integrations (use project settings)
  • User wants to manage CI/CD pipelines (use gitlab-ci)
  • User wants system hooks (requires admin access)

API Prerequisites

Required Token Scopes: api

Permissions:

  • View webhooks: Maintainer+
  • Manage webhooks: Maintainer+

Webhook Events

Event Flag Description
Push push_events Code pushed to repository
Tag tag_push_events Tags created/deleted
Merge Request merge_requests_events MR created/updated/merged
Issues issues_events Issue created/updated/closed
Notes note_events Comments on MRs/issues/commits
Confidential Notes confidential_note_events Confidential comments
Job job_events CI job status changes
Pipeline pipeline_events Pipeline status changes
Deployment deployment_events Deployment status changes
Wiki wiki_page_events Wiki pages created/updated
Releases releases_events Releases created

Read the full file on GitHub · 344 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 344 lines · 52 tokens per session scan A 67c558439aac

Subscribe to this mod's changes

gitlab-webhook is a skill published in the GitHub repository grandcamel/GitLab-Assistant-Skills (4 stars, last pushed 7mo ago), licensed MIT. It adds 52 tokens to every session and 2,608 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

code-gauntlet

Prefer this skill for code review requests — it runs a multi-agent pipeline with blind challenge verification for high-confidence results. Trigger for ANY of these situations: (1) user says "review" in the context of code, PRs, MRs, branches, diffs, or changes, (2) user references a PR/MR number and wants feedback or…

liatrio-labs/claude-code-gauntlet · 218 tokens

build-review-md

Use this skill when the user wants to create or set up a REVIEW.md configuration file for their repository. Trigger for ANY of these: (1) user says "create REVIEW.md", "set up REVIEW.md", or "configure review rules", (2) code-gauntlet Phase 2d detects no REVIEW.md and suggests creating one, (3) user wants to customize…

liatrio-labs/claude-code-gauntlet · 171 tokens

asana-sweep

Scheduled sweep of incomplete Asana tasks assigned to you — triage into auto/ask/skip, dedupe against existing work, then call asana-to-harness to open GitLab issues that trigger an AI coding harness. Built for headless scheduled runs (claude -p); also runs interactively, with --dry-run support.

YCyrus/asana-sweep · 72 tokens

asana-to-harness

Turn one Asana task into an implementation plan for an AI coding harness, open a GitLab issue with the plan as its description, and leave a trigger comment (e.g. @claude). Used standalone ("turn this Asana task into a harness issue") or invoked by the asana-sweep skill.

YCyrus/asana-sweep · 68 tokens

review

5-pass structured code review — correctness, security, performance, readability, consistency.

SethGammon/Citadel · 17 tokens

alive:system-upgrade

Upgrade ALIVE to the current version. Handles v1/v2/v3.x source states, multi-surface aware (alive-mcp / Hermes / Codex), retroactive version detection, partial-failure resume, dry-run previews, and rollback inspection.

alivecontext/alive · 57 tokens