Back to list
lxfactorl

github-expert

by lxfactorl

0🍴 0📅 Jan 23, 2026

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

CategoryToolsUse Case
Discoverysearch_repositories, search_code, search_issues, search_usersFinding repos, code snippets, bugs, or people
Readingget_file_contents, list_branches, list_commits, get_commitExploring codebase state and history
Issuesissue_read, issue_write, mcp_github_add_issue_commentManaging feature requests and bug reports
PRslist_pull_requests, pull_request_read, create_pull_request, pull_request_review_writeCode review and merging changes
Writecreate_or_update_file, push_files, create_branchModifying 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:

  1. Check Base: get_file_contents to ensure you have latest state.
  2. Create Branch: create_branch(repo: "...", branch: "feature/login")
  3. Commit Changes: create_or_update_file or push_files
  4. 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_issues to check for duplicates.
  • Context Awareness: Use get_file_contents to read CONTRIBUTING.md if available.
  • Precision: When searching code, scope to org: or repo: to reduce noise.
  • Reviews: Use pull_request_read with method: "get_review_comments" to understand PR history before commenting.

Score

Total Score

50/100

Based on repository quality metrics

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

Reviews

💬

Reviews coming soon