← スキル一覧に戻る

github-operations
by amit-sw
⭐ 0🍴 0📅 2025年12月24日
SKILL.md
name: github-operations description: Use when Codex must inspect or update GitHub resources (issues, PRs, workflows) through the official remote GitHub MCP server.
GitHub Operations
Purpose
Provide actionable steps for reviewing pull requests, triaging issues, syncing branches, and triggering GitHub workflows using the GitHub-hosted MCP server defined in servers/github.
Setup Checklist
- Ensure
mcp.jsonincludes thegithubentry pointing to${GITHUB_MCP_ENDPOINT}with the${GITHUB_MCP_TOKEN}Authorization header. - Confirm scopes on
${GITHUB_MCP_TOKEN}coverrepo,workflow, andread:org. - Keep repository context synchronized locally so file diffs referenced by the server make sense inside this workspace.
Core Workflow
- Plan – summarize the GitHub objective (e.g., “merge PR #42 after lint passes”) and list the API actions needed (
pullRequest.get,reviews.create, etc.). - Execute – call the MCP tools exposed by the server (issue search, PR diff, workflow dispatch). Prefer batched queries to avoid rate limits.
- Validate – re-fetch the entity to confirm the state transition (PR merged, labels applied, workflow run queued).
- Document – record actions inside the user message or repository docs when follow-up by humans is required.
Operational Notes
- Rate limits from GitHub are enforced at the server; when a call is throttled, wait 5 seconds and retry once.
- Use read-only queries when gathering context for other skills (e.g., fetching PR details before a filesystem refactor) to minimize write noise.
- Treat
${GITHUB_MCP_TOKEN}as a production credential—store it in.env.localand do not log it.
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です