From gitlab
Create, view, manage, and close GitLab issues using glab. Use this skill when the user wants to work with GitLab issues — creating, listing, commenting, or closing them.
npx claudepluginhub tanyagray/claude --plugin gitlabThis skill uses the workspace's default tool permissions.
Use the `glab` CLI to manage GitLab issues.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Use the glab CLI to manage GitLab issues.
# List open issues
glab issue list
# Filter issues
glab issue list --assignee @me
glab issue list --label "bug"
glab issue list --milestone "v1.0"
glab issue list --state closed
glab issue list --search "login error"
glab issue list --confidential
# Interactive creation
glab issue create
# Create with options
glab issue create --title "Bug: Login fails" --description "Steps to reproduce..."
# Create with labels and assignees
glab issue create --title "Add dark mode" --label "feature,ui" --assignee user1
# Create with milestone
glab issue create --title "Fix auth" --milestone "v2.0"
# Create confidential issue
glab issue create --title "Security: XSS vulnerability" --confidential
# View issue details
glab issue view 42
# View in web browser
glab issue view 42 --web
# View with comments
glab issue view 42 --comments
# Add a comment
glab issue note 42 --message "I can reproduce this on Linux"
# Update title
glab issue update 42 --title "Updated title"
# Add labels
glab issue update 42 --label "priority::high,team::backend"
# Assign to someone
glab issue update 42 --assignee user1
# Set milestone
glab issue update 42 --milestone "v2.0"
glab issue close 42
glab issue reopen 42
# Create a branch linked to an issue
glab issue create-branch 42
# With a custom branch name
glab issue create-branch 42 --branch "fix/login-issue-42"
# View project board
glab issue board view
$ARGUMENTS to reference a specific issue number if providedRelates to #N or Closes #N in descriptions--confidential for security-related issues