スキル一覧に戻る
kettleofketchup

gitlab-tickets

by kettleofketchup

0🍴 0📅 2026年1月22日
GitHubで見るManusで実行

SKILL.md


GitLab Tickets

Create well-structured GitLab issues through natural conversation using glab CLI.

Prerequisites

  • glab CLI installed and authenticated
  • Run glab auth status to verify

Workflow

1. Understand the Idea

Ask clarifying questions one at a time to understand:

  • What type of work (feature, bug, chore, docs)
  • The core problem or need
  • Key requirements and constraints
  • Acceptance criteria

Prefer multiple-choice questions when possible.

2. Summarize Before Creating

Present a brief summary of the ticket before creating:

**[Title]**
- Bullet points of key details
- Scope and acceptance criteria

Ask: "Does this capture what you want, or should I change something?"

3. Create the Issue

Use glab issue create with structured description:

glab issue create \
  --title "Descriptive title" \
  --label "feature" \
  --description "$(cat <<'EOF'
## Summary
Brief description of the work.

## Details
- Key requirements
- Technical approach (if known)

## Acceptance Criteria
- [ ] Criteria 1
- [ ] Criteria 2
EOF
)"

When issues are related, add links in the description:

  • Related to #N - general relationship
  • Blocks #N - this must be done first
  • Depends on #N - this needs another issue done first

Label Management

Check existing labels: glab label list

Create labels if needed:

glab label create -n "label-name" -c "#hex-color" -d "Description"

Standard labels:

LabelColorPurpose
feature#28a745New functionality
bug#dc3545Something broken
chore#6c757dMaintenance, CI/CD
docs#0366d6Documentation

Breaking Down Work

If an issue is large, offer to break it into smaller tickets:

  • Create an epic/parent issue for the overall feature
  • Create child issues for individual tasks
  • Link children to parent with "Part of #N"

Resuming a Session

To get context when resuming a ticketing session, run scripts/context.sh to see:

  • Current repository
  • Existing labels
  • Recent issues

Commands Reference

glab issue list                    # List open issues
glab issue view <id>               # View issue details
glab issue create                  # Interactive create
glab issue update <id> --label X   # Add label
glab label list                    # List labels

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です