← スキル一覧に戻る

github-expert
by lxfactorl
⭐ 0🍴 0📅 2026年1月23日
SKILL.md
name: github-expert description: Complete toolset for GitHub repository management. Search code, manage issues/PRs, browse files, and perform git operations remotely. Use this skill to navigate codebases, track tasks, review code, and contribute changes via pull requests effectively. compatibility: Requires github-mcp-server
GitHub Expert
Tools Overview
| Category | Tools | Use Case |
|---|---|---|
| Discovery | search_repositories, search_code, search_issues, search_users | Finding repos, code snippets, bugs, or people |
| Reading | get_file_contents, list_branches, list_commits, get_commit | Exploring codebase state and history |
| Issues | issue_read, issue_write, mcp_github_add_issue_comment | Managing feature requests and bug reports |
| PRs | list_pull_requests, pull_request_read, create_pull_request, pull_request_review_write | Code review and merging changes |
| Write | create_or_update_file, push_files, create_branch | Modifying code and content remotely |
Common Workflows
1. Repository Exploration
Before working, get context:
// Find relevant repo
search_repositories(query: "topic:dotnet org:my-org")
// specific repo contents
get_file_contents(owner: "my-org", repo: "my-repo", path: "README.md")
list_branches(owner: "my-org", repo: "my-repo")
2. Code Search (Global & Local)
Use search_code to find usage patterns across the organization or within a repo.
// Find call sites of a deprecated function
search_code(query: "MyDeprecatedFunction org:my-org")
// Find implementation of an interface
search_code(query: "interface IMyService repo:my-org/backend")
3. Issue Management
Read context before acting:
// Search for existing bugs
search_issues(query: "is:issue is:open crash repo:my-org/app")
// Get full thread including comments
issue_read(owner: "my-org", repo: "app", issue_number: 123)
// Comment on issue
add_issue_comment(owner: "my-org", repo: "app", issue_number: 123, body: "Fixed in PR #456")
4. Pull Request Workflow
Standard contribution flow:
- Check Base:
get_file_contentsto ensure you have latest state. - Create Branch:
create_branch(repo: "...", branch: "feature/login") - Commit Changes:
create_or_update_fileorpush_files - Open PR:
create_pull_request(
owner: "my-org",
repo: "app",
title: "feat: Add login",
head: "feature/login",
base: "main",
body: "Implements OAuth2..."
)
Best Practices
- Search First: Before creating an issue, use
search_issuesto check for duplicates. - Context Awareness: Use
get_file_contentsto readCONTRIBUTING.mdif available. - Precision: When searching code, scope to
org:orrepo:to reduce noise. - Reviews: Use
pull_request_readwithmethod: "get_review_comments"to understand PR history before commenting.
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です