gitlab-scrum

A GitLab task-management guide for Scrum and Kanban work. It uses the `glab` command-line tool to manage issues, labels, milestones, and boards.

In plain words
What is it for?
Create, list, update, assign, label, move, comment on, close, and reopen GitLab issues, including organizing them into sprints or board columns.
Why use it?
It removes the need to perform routine task-tracking actions manually in GitLab's web interface.

Skill for Claude CodeCodex

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/gettalon/talon-plugins/gitlab-scrum
Any agent
npx skills add gettalon/talon-plugins --skill gitlab-scrum
Clone the repo
git clone --depth 1 https://github.com/gettalon/talon-plugins

Made for: Claude Code, Codex.

Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,142 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.00044 $0.01142
Opus 5 $0.00022 $0.00571
Sonnet 5 $0.00009 $0.00228
Haiku 4.5 $0.00004 $0.00114

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

Security

Grade A, and why

gitlab-scrum 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 2d 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.

plugins/talon/skills/gitlab-scrum/SKILL.md · 134 lines

How it starts

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

GitLab Scrum

Manage GitLab issues, labels, milestones, and boards via glab CLI for Scrum/Kanban workflows.

Prerequisites

which glab  # Must be installed
glab auth status  # Must be authenticated

Quick Reference

Issues

# Create issue
glab issue create --title "Title" --description "Body" --label "To Do" --milestone "Sprint Name"

# List issues
glab issue list                          # Open issues
glab issue list --milestone "Sprint X"   # By sprint
glab issue list --label "Doing"          # By status
glab issue list --assignee @me           # My issues

# Update issue
glab issue update <ID> --label "Doing" --unlabel "To Do"  # Move on board
glab issue update <ID> --assignee "username"                # Assign
glab issue update <ID> --milestone "Sprint X"               # Set sprint

# Close / reopen
glab issue close <ID>
glab issue reopen <ID>

# Comment
glab issue note <ID> --message "Comment text"

# View
glab issue view <ID>
glab issue view <ID> --web  # Open in browser

Labels (Board Columns)

# Scrum labels (create once)
glab label create --name "To Do" --color "#F0AD4E"
glab label create --name "Doing" --color "#5CB85C"
glab label create --name "Review" --color "#0033CC"
glab label create --name "Done" --color "#69D100"

# List labels
glab label list

Milestones (Sprints)

# Create sprint
glab milestone create --project <project-path> --title "Sprint 2026-W13" \
  --description "Goals..." --due-date "2026-03-28"

# List sprints
glab milestone list --project <project-path>

# Close sprint
glab api "projects/<encoded-path>/milestones/<ID>" --method PUT --field "state_event=close"

NOTE: --project flag is REQUIRED for milestone commands. Get project path from git remote get-url origin, strip the hostname and .git suffix. Example: iclass/mdm/node-mdm-go

Boards (via API)

# Boards require glab api (no native CLI commands)
PROJECT_PATH=$(git remote get-url origin | sed -E 's|.*://[^/]+/||;s|\.git$||' | sed 's|/|%2F|g')

# Create board
glab api "projects/${PROJECT_PATH}/boards" --method POST --field "name=Scrum Board"

# List boards
glab api "projects/${PROJECT_PATH}/boards"

# Add label list to board (need label ID from `glab label list`)
glab api "projects/${PROJECT_PATH}/boards/<BOARD_ID>/lists" --method POST --field "label_id=<LABEL_ID>"

Read the full file on GitHub · 134 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. 2d ago First seen · 134 lines · 44 tokens per session scan A d1cba4b2a3fe

Subscribe to this mod's changes

gitlab-scrum is a skill published in the GitHub repository gettalon/talon-plugins (6 stars, last pushed 5mo ago), licensed MIT. It adds 44 tokens to every session and 1,142 once invoked, about $0.0002 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

browser

Use this skill when the user says browser, /browser, test in Chrome, inspect a webpage, verify a localhost app, capture screenshots, check console/network errors, run browser QA, or automate browser flows with the Mochi browser MCP.

DevZonayed/Mochi · 50 tokens

browse

Use when asked to interact with a web browser — navigate, click, fill forms, take screenshots, run JavaScript, or read page content. Requires the browser-bridge MCP server and Chrome extension.

adbarc92/mcp-browser-bridge · 42 tokens

NanoBanana-PPT-Skills

Skill "NanoBanana-PPT-Skills" from girish6055/NanoBanana-PPT-Skills, covering ppt generator pro - claude code skill, 📋 元数据, ✨ 功能特性, 核心功能 and 新功能 (v2.0).

girish6055/NanoBanana-PPT-Skills · 0 tokens

codex-browser

Control Chrome or Edge via the ChatGPT desktop app's browser bridge (formerly Codex Desktop). 52 MCP tools for tabs, navigation, DOM, input, CDP, network, file upload, dialog handling, and diagnostics.

DeliciousBuding/codex-browser-bridge · 50 tokens

x402

Set up Browser Use Cloud payments with x402 — pay per request from a crypto wallet (USDC on Base mainnet), no signup or API key. Two setups it works out up front — "just use it" (set up a wallet so you or Claude Code can run cloud browser tasks paid from the wallet — Claude writes and runs throwaway scripts, nothing…

browser-use/browser-use · 175 tokens

browser-use

Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.

browser-use/browser-use · 26 tokens