スキル一覧に戻る
stevendejongnl

manage-tickets

by stevendejongnl

A step-by-step guide execution app for Android and iOS. Follow timed procedures with automatic notifications and progress tracking.

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

SKILL.md


name: manage-tickets description: Commands for viewing, assigning, and updating ticket status on the Guidr GitHub Projects board. Includes workflows for starting, progressing, and completing tickets.

Manage Tickets Skill

Commands for viewing, assigning, and updating ticket status on the Guidr GitHub Projects board.

View Issues

# View a specific issue
gh issue view 123

# List all open issues
gh issue list --state open

# List issues assigned to you
gh issue list --assignee @me

# List issues by status (requires project context)
gh issue list --label "status: in-progress"

# List issues with details
gh issue list --json number,title,assignees,projectItems

Assign Yourself to an Issue

# Assign yourself
gh issue edit 123 --add-assignee @me

# Assign another person
gh issue edit 123 --add-assignee username

# Remove assignee
gh issue edit 123 --remove-assignee @me

Update Issue Status

# Move to "In Progress"
gh issue edit 123 --add-project "Guidr" --project-field "Status" --project-value "In Progress"

# Move to "Done"
gh issue edit 123 --add-project "Guidr" --project-field "Status" --project-value "Done"

# Move to "Todo"
gh issue edit 123 --add-project "Guidr" --project-field "Status" --project-value "Todo"

Add Comments and Updates

# Add a comment to track progress
gh issue comment 123 --body "Progress update: completed step 1"

# Add a comment with code example
gh issue comment 123 --body "Fixed in commit abc123. See the changes here: \`\`\`typescript\n...\n\`\`\`"

# Reference issue in commit
# Use "Closes #123" or "Fixes #123" in commit message to auto-link
# In commit message (auto-links the issue)
git commit -m "feat: add timer feature

Closes #123"

# Update issue with commit reference
gh issue comment 123 --body "Fixed in commit $(git rev-parse --short HEAD)"

Common Workflows

Starting work on a ticket:

gh issue edit 123 --add-assignee @me
gh issue edit 123 --add-project "Guidr" --project-field "Status" --project-value "In Progress"

Finishing a ticket:

# Reference in PR description: "Closes #123"
# After PR merge, status auto-updates to "Done" (if using Closes)
# Or manually update:
gh issue edit 123 --add-project "Guidr" --project-field "Status" --project-value "Done"

Requesting help on a ticket:

gh issue comment 123 --body "Blocked: waiting for @someone's input on architecture decision"

Project Board

Board URL: https://github.com/users/stevendejongnl/projects/3

Statuses: Todo → In Progress → Done

Tips

  • Always assign yourself before starting work
  • Keep status updated during development
  • Use issue comments to track blockers and progress
  • Include issue number in commit messages for automatic linking
  • Use "Closes #123" in PR descriptions for automatic status closure

スコア

総合スコア

55/100

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

SKILL.md

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

+20
LICENSE

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

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

0/5
言語

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

+5
タグ

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

0/5

レビュー

💬

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