# Send GitHub PAT to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "github-pat",
    "name": "GitHub PAT",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dannyshmueli/github-pat",
    "canonicalUrl": "https://clawhub.ai/dannyshmueli/github-pat",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/github-pat",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-token",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/gh.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "github-pat",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T18:11:20.437Z",
      "expiresAt": "2026-05-10T18:11:20.437Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-token",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-token",
        "contentDisposition": "attachment; filename=\"github-token-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "github-pat"
      },
      "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/github-pat"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/github-pat",
    "downloadUrl": "https://openagent3.xyz/downloads/github-pat",
    "agentUrl": "https://openagent3.xyz/skills/github-pat/agent",
    "manifestUrl": "https://openagent3.xyz/skills/github-pat/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/github-pat/agent.md"
  }
}
```
## Documentation

### GitHub PAT

Interact with GitHub using Personal Access Tokens. User controls access via PAT scopes.

### Setup

User provides their PAT:

1. Create PAT at github.com/settings/tokens
2. Select scopes (repo for full, public_repo for public only)
3. Provide token to agent

Store in TOOLS.md or pass via --token.

### Commands

# List repos you have access to
python3 scripts/gh.py repos [--token TOKEN]

# Clone a repo
python3 scripts/gh.py clone owner/repo [--token TOKEN]

# Create branch
python3 scripts/gh.py branch <branch-name> [--repo owner/repo]

# Commit and push
python3 scripts/gh.py push "<message>" [--branch branch] [--repo owner/repo]

# Open a pull request
python3 scripts/gh.py pr "<title>" [--body "description"] [--base main] [--head branch]

# Create an issue
python3 scripts/gh.py issue "<title>" [--body "description"] [--repo owner/repo]

# View repo info
python3 scripts/gh.py info owner/repo

### Security Model

User controls access via PAT scopes
No OAuth - no "allow full access" prompts
Least privilege - user creates PAT with minimal needed scopes
Fine-grained PATs supported for specific repo access

### Token Storage

Agent stores token in TOOLS.md under ### GitHub section. Never expose in logs or messages.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dannyshmueli
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T18:11:20.437Z
- Expires at: 2026-05-10T18:11:20.437Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/github-pat)
- [Send to Agent page](https://openagent3.xyz/skills/github-pat/agent)
- [JSON manifest](https://openagent3.xyz/skills/github-pat/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/github-pat/agent.md)
- [Download page](https://openagent3.xyz/downloads/github-pat)