{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gh",
    "name": "gh",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Trumppo/gh",
    "canonicalUrl": "https://clawhub.ai/Trumppo/gh",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gh",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gh",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "agents/openai.yaml"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "gh",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T02:50:10.848Z",
      "expiresAt": "2026-05-19T02:50:10.848Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gh",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gh",
        "contentDisposition": "attachment; filename=\"gh-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gh"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gh"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/gh",
    "agentPageUrl": "https://openagent3.xyz/skills/gh/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gh/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gh/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "Use gh for authenticated GitHub operations from the terminal. Prefer explicit, idempotent commands and report URLs back to the user."
      },
      {
        "title": "Quick checks",
        "body": "Auth status:\n\ngh auth status\n\nCurrent repo context:\n\ngh repo view --json nameWithOwner,url,defaultBranchRef"
      },
      {
        "title": "Repo create (private by default)",
        "body": "gh repo create OWNER/NAME --private --confirm --description \"...\"\n\nIf running inside a local repo, use --source . --remote origin --push."
      },
      {
        "title": "Clone / fork",
        "body": "gh repo clone OWNER/NAME\n\ngh repo fork OWNER/NAME --clone"
      },
      {
        "title": "Issues",
        "body": "List:\n\ngh issue list --limit 20\n\nCreate:\n\ngh issue create --title \"...\" --body \"...\"\n\nComment:\n\ngh issue comment <num> --body \"...\""
      },
      {
        "title": "Pull requests",
        "body": "Create from current branch:\n\ngh pr create --title \"...\" --body \"...\"\n\nList:\n\ngh pr list --limit 20\n\nView:\n\ngh pr view <num> --web\n\nMerge (use explicit method):\n\ngh pr merge <num> --merge"
      },
      {
        "title": "Releases",
        "body": "gh release create vX.Y.Z --title \"vX.Y.Z\" --notes \"...\""
      },
      {
        "title": "Safety notes",
        "body": "Confirm the target repo/owner before destructive actions (delete, force push).\nFor private repos, ensure --private is set on create.\nPrefer --confirm to avoid interactive prompts in automation."
      }
    ],
    "body": "GitHub CLI (gh)\nOverview\n\nUse gh for authenticated GitHub operations from the terminal. Prefer explicit, idempotent commands and report URLs back to the user.\n\nQuick checks\nAuth status:\ngh auth status\n\nCurrent repo context:\ngh repo view --json nameWithOwner,url,defaultBranchRef\n\nCore workflows\nRepo create (private by default)\ngh repo create OWNER/NAME --private --confirm --description \"...\"\n\n\nIf running inside a local repo, use --source . --remote origin --push.\n\nClone / fork\ngh repo clone OWNER/NAME\n\ngh repo fork OWNER/NAME --clone\n\nIssues\nList:\ngh issue list --limit 20\n\nCreate:\ngh issue create --title \"...\" --body \"...\"\n\nComment:\ngh issue comment <num> --body \"...\"\n\nPull requests\nCreate from current branch:\ngh pr create --title \"...\" --body \"...\"\n\nList:\ngh pr list --limit 20\n\nView:\ngh pr view <num> --web\n\nMerge (use explicit method):\ngh pr merge <num> --merge\n\nReleases\ngh release create vX.Y.Z --title \"vX.Y.Z\" --notes \"...\"\n\nSafety notes\nConfirm the target repo/owner before destructive actions (delete, force push).\nFor private repos, ensure --private is set on create.\nPrefer --confirm to avoid interactive prompts in automation."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Trumppo/gh",
    "publisherUrl": "https://clawhub.ai/Trumppo/gh",
    "owner": "Trumppo",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gh",
    "downloadUrl": "https://openagent3.xyz/downloads/gh",
    "agentUrl": "https://openagent3.xyz/skills/gh/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gh/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gh/agent.md"
  }
}