plugins marketplace
← All plugins

github

v0.1.6

Inspect repositories, triage pull requests and issues, debug CI, and publish changes through a hybrid GitHub connector and CLI workflow.

Codex4 skills1 MCP serverstreamable-http

by OpenAIMIT5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/github/ inside the repository.

Layout

plugins/github/
├── .codex-plugin/plugin.json
├── skills/gh-address-comments/SKILL.md
├── skills/gh-fix-ci/SKILL.md
├── skills/github/SKILL.md
├── skills/yeet/SKILL.md
└── .mcp.json

Skills4

gh-address-commentsskills/gh-address-comments/SKILL.md

Address actionable GitHub pull request review feedback. Use when the user wants to inspect unresolved review threads, requested changes, or inline review comments on a PR, then implement selected fixes. Use the GitHub app for PR metadata and flat comment reads, and use the bundled GraphQL script via `gh` whenever thread-level state, resolution status, or inline review context matters.

gh-fix-ciskills/gh-fix-ci/SKILL.md

Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions. Use the GitHub app from this plugin for PR metadata and patch context, and use `gh` for Actions check and log inspection before implementing any approved fix.

githubskills/github/SKILL.md

Triage and orient GitHub repository, pull request, and issue work through the connected GitHub app. Use when the user asks for general GitHub help, wants PR or issue summaries, or needs repository context before choosing a more specific GitHub workflow.

yeetskills/yeet/SKILL.md

Publish local changes to GitHub by confirming scope, committing intentionally, pushing the branch, and opening a draft PR through the GitHub app from this plugin, with `gh` used only as a fallback where connector coverage is insufficient.

MCP servers1

githubstreamable-http
url
https://api.githubcopilot.com/mcp/

Manifests1

plugins/github/.codex-plugin/plugin.json
{
  "name": "github",
  "version": "0.1.6",
  "description": "Inspect repositories, triage pull requests and issues, debug CI, and publish changes through a hybrid GitHub connector and CLI workflow.",
  "author": {
    "name": "OpenAI",
    "email": "support@openai.com",
    "url": "https://openai.com/"
  },
  "homepage": "https://github.com/",
  "repository": "https://github.com/openai/plugins",
  "license": "MIT",
  "keywords": [
    "github",
    "pull-request",
    "code-review",
    "issues",
    "ci",
    "actions"
  ],
  "skills": "./skills/",
  "apps": "./.app.json",
  "mcpServers": "./.mcp.json",
  "interface": {
    "displayName": "GitHub",
    "shortDescription": "Triage PRs, issues, CI, and publish flows",
    "longDescription": "Use GitHub to inspect repositories, review pull requests, address feedback, debug failing Actions checks, and prepare code changes for review through a connector-first workflow with targeted CLI fallbacks.",
    "developerName": "OpenAI",
    "category": "Developer Tools",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://github.com/",
    "privacyPolicyURL": "https://docs.github.com/site-policy/privacy-policies/github-general-privacy-statement",
    "termsOfServiceURL": "https://docs.github.com/en/site-policy/github-terms/github-terms-of-service",
    "defaultPrompt": [
      "Inspect PRs, triage issues, debug failing checks, and prepare code changes for review"
    ],
    "composerIcon": "./assets/github-small.svg",
    "logo": "./assets/logo.png",
    "screenshots": [],
    "brandColor": "#24292F"
  }
}