スキル一覧に戻る
shwilliamson

github-workflow

by shwilliamson

Claude code automation

3🍴 1📅 2026年1月13日
GitHubで見るManusで実行

SKILL.md


name: github-workflow description: Manages GitHub workflow including issues, PRs, labels, and reviews. Use when working with GitHub issues, creating PRs, or coordinating reviews.

GitHub Workflow Skill

Guidance for managing the development workflow through GitHub.

Issue State Labels

LabelDescriptionWhen to Apply
readyNo blocking dependenciesIssue can be picked up
in-progressCurrently being implementedDeveloper starts work
blockedWaiting on dependenciesHas unresolved blockers
needs-reviewPR open, awaiting reviewsPR created
gh issue edit {n} --add-label "in-progress" --remove-label "ready"
gh issue edit {n} --add-label "needs-review" --remove-label "in-progress"

Dependency Tracking

In issue body:

## Dependencies
Depends on #12 (User authentication)
Depends on #15 (Database schema)

Parse dependencies:

gh issue view {n} --json body --jq '.body' | grep -oE "Depends on #[0-9]+" | grep -oE "[0-9]+"
gh issue view {dep} --json state --jq '.state'

Agent Identification

All GitHub interactions must include an agent identifier header.

Format: **[Agent Name]** at the start of every issue body, PR description, and comment.

Standardized Review Comments

Since all agents share the same GitHub user, reviews use standardized comments:

Approval:

✅ APPROVED - [Role]
[Summary]

Changes Requested:

❌ CHANGES REQUESTED - [Role]
[Issues to address]

Required Reviews Per PR

ReviewWhen Required
ArchitectAlways
DesignerIf UI changes
TesterAlways

Review Templates

Architect

gh pr comment {n} --body "**[Architect]**

✅ APPROVED - Architect

Clean architecture. LGTM."

Designer

gh pr comment {n} --body "**[Designer]**

✅ APPROVED - Designer

UI looks good. Accessibility met."

# Or if not applicable:
gh pr comment {n} --body "**[Designer]** N/A - No UI changes."

Tester

gh pr comment {n} --body "**[Tester]**

✅ APPROVED - Tester

**Tests:** All passing
**Manual:** Completed

Ready for merge."

Product Owner (Merge)

gh pr comment {n} --body "**[Product Owner]**

All required reviews complete:
- ✅ Architect
- ✅ Tester

Proceeding with merge."

gh pr merge {n} --squash --delete-branch

PR Approval Verification

Before merge:

  1. ✅ APPROVED - Architect present
  2. ✅ APPROVED - Tester present
  3. ✅ APPROVED - Designer present (if UI)
  4. No outstanding ❌ CHANGES REQUESTED
  5. CI/tests passing
gh pr view {n} --comments  # Check for approval comments

Labels

Priority

LabelDescription
priority:highWork first
priority:mediumNormal
priority:lowWork last

Type

LabelDescription
featureNew functionality
bugBug fix
enhancementImprovement

Common Commands

# Issues
gh issue list --state open --label "ready"
gh issue view {n}
gh issue edit {n} --add-label "in-progress"

# PRs
gh pr create --title "..." --body "..."
gh pr view {n} --comments
gh pr merge {n} --squash --delete-branch

# Milestones
gh issue edit {n} --milestone "v1.0"

スコア

総合スコア

60/100

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

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

0/5

レビュー

💬

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