G

Knowledge Pack Files

GitHub Platform Knowledge Pack Files

Browse the source files that power the GitHub Platform MCP server knowledge pack.

Available free v1.0.0 Browser LLM
$ sidebutton install github.com
Download ZIP
github_browser_create_issue.yaml
826 B
schema_version: 1
version: "1.0.0"
last_verified: "2026-02-09"
id: github_browser_create_issue
title: "Browser: Create Issue"
description: "Navigate to GitHub new issue form, fill in title and body, and submit"
category:
  level: task
  domain: engineering
  reusable: true
params:
  repo: string
  title: string
  body: string
steps:
  - type: browser.navigate
    url: "{{env.GITHUB_BROWSER_URL}}/{{repo}}/issues/new"

  - type: browser.wait
    selector: "#issue_title"
    timeout: 10000

  - type: browser.type
    selector: "#issue_title"
    text: "{{title}}"

  - type: browser.type
    selector: "#issue_body"
    text: "{{body}}"

  - type: browser.click
    selector: "button[type='submit']:has-text('Submit new issue'), .btn-primary"

  - type: browser.wait
    ms: 2000

  - type: browser.snapshot
    as: result