{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gitload",
    "name": "gitload",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/waldekmastykarz/gitload",
    "canonicalUrl": "https://clawhub.ai/waldekmastykarz/gitload",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gitload",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gitload",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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": "gitload",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T02:28:29.223Z",
      "expiresAt": "2026-05-19T02:28:29.223Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gitload",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gitload",
        "contentDisposition": "attachment; filename=\"gitload-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gitload"
      },
      "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/gitload"
    },
    "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/gitload",
    "agentPageUrl": "https://openagent3.xyz/skills/gitload/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gitload/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gitload/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": "gitload",
        "body": "Download files, folders, or entire repos from GitHub URLs using the gitload CLI."
      },
      {
        "title": "When to Use",
        "body": "Use gitload when:\n\nDownloading a specific folder from a repo (not the whole repo)\nFetching a single file from GitHub\nDownloading repo contents without git history\nCreating a ZIP archive of GitHub content\nAccessing private repos with authentication\n\nDo NOT use gitload when:\n\nFull git history is needed (use git clone instead)\nThe repo is already cloned locally\nWorking with non-GitHub repositories"
      },
      {
        "title": "Prerequisites",
        "body": "Run gitload via npx (no install needed):\n\nnpx gitload-cli https://github.com/user/repo\n\nOr install globally:\n\nnpm install -g gitload-cli"
      },
      {
        "title": "Download entire repo",
        "body": "gitload https://github.com/user/repo\n\nCreates a repo/ folder in the current directory."
      },
      {
        "title": "Download a specific folder",
        "body": "gitload https://github.com/user/repo/tree/main/src/components\n\nCreates a components/ folder with just that folder's contents."
      },
      {
        "title": "Download a single file",
        "body": "gitload https://github.com/user/repo/blob/main/README.md"
      },
      {
        "title": "Download to a custom location",
        "body": "gitload https://github.com/user/repo/tree/main/src -o ./my-source"
      },
      {
        "title": "Download contents flat to current directory",
        "body": "gitload https://github.com/user/repo/tree/main/templates -o ."
      },
      {
        "title": "Download as ZIP",
        "body": "gitload https://github.com/user/repo -z ./repo.zip"
      },
      {
        "title": "Using gh CLI (recommended)",
        "body": "gitload https://github.com/user/private-repo --gh\n\nRequires prior gh auth login."
      },
      {
        "title": "Using explicit token",
        "body": "gitload https://github.com/user/repo --token ghp_xxxx"
      },
      {
        "title": "Using environment variable",
        "body": "export GITHUB_TOKEN=ghp_xxxx\ngitload https://github.com/user/repo\n\nToken priority: --token > GITHUB_TOKEN > --gh"
      },
      {
        "title": "URL Formats",
        "body": "gitload accepts standard GitHub URLs:\n\nRepo root: https://github.com/user/repo\nFolder: https://github.com/user/repo/tree/branch/path/to/folder\nFile: https://github.com/user/repo/blob/branch/path/to/file.ext"
      },
      {
        "title": "Scaffold from a template folder",
        "body": "gitload https://github.com/org/templates/tree/main/react-starter -o ./my-app\ncd my-app && npm install"
      },
      {
        "title": "Grab example code",
        "body": "gitload https://github.com/org/examples/tree/main/authentication"
      },
      {
        "title": "Download docs for offline reading",
        "body": "gitload https://github.com/org/project/tree/main/docs -z ./docs.zip"
      },
      {
        "title": "Fetch a single config file",
        "body": "gitload https://github.com/org/configs/blob/main/.eslintrc.json -o ."
      },
      {
        "title": "Options Reference",
        "body": "OptionDescription-o, --output <dir>Output directory (default: folder named after URL path)-z, --zip <path>Save as ZIP file at the specified path-t, --token <token>GitHub personal access token--ghUse token from gh CLI--no-colorDisable colored output-h, --helpDisplay help-V, --versionOutput version"
      },
      {
        "title": "Error Handling",
        "body": "If gitload fails:\n\n404 errors: Verify the URL exists and is accessible\nRate limit errors: Add authentication with --gh or --token\nPermission errors: For private repos, ensure token has repo scope\nNetwork errors: Check internet connectivity"
      },
      {
        "title": "Notes",
        "body": "gitload downloads content via GitHub's API, not git protocol\nNo git history is preserved (use git clone if history is needed)\nLarge repos may take time; consider downloading specific folders\nOutput directory is created if it doesn't exist"
      }
    ],
    "body": "gitload\n\nDownload files, folders, or entire repos from GitHub URLs using the gitload CLI.\n\nWhen to Use\n\nUse gitload when:\n\nDownloading a specific folder from a repo (not the whole repo)\nFetching a single file from GitHub\nDownloading repo contents without git history\nCreating a ZIP archive of GitHub content\nAccessing private repos with authentication\n\nDo NOT use gitload when:\n\nFull git history is needed (use git clone instead)\nThe repo is already cloned locally\nWorking with non-GitHub repositories\nPrerequisites\n\nRun gitload via npx (no install needed):\n\nnpx gitload-cli https://github.com/user/repo\n\n\nOr install globally:\n\nnpm install -g gitload-cli\n\nBasic Usage\nDownload entire repo\ngitload https://github.com/user/repo\n\n\nCreates a repo/ folder in the current directory.\n\nDownload a specific folder\ngitload https://github.com/user/repo/tree/main/src/components\n\n\nCreates a components/ folder with just that folder's contents.\n\nDownload a single file\ngitload https://github.com/user/repo/blob/main/README.md\n\nDownload to a custom location\ngitload https://github.com/user/repo/tree/main/src -o ./my-source\n\nDownload contents flat to current directory\ngitload https://github.com/user/repo/tree/main/templates -o .\n\nDownload as ZIP\ngitload https://github.com/user/repo -z ./repo.zip\n\nAuthentication (for private repos or rate limits)\nUsing gh CLI (recommended)\ngitload https://github.com/user/private-repo --gh\n\n\nRequires prior gh auth login.\n\nUsing explicit token\ngitload https://github.com/user/repo --token ghp_xxxx\n\nUsing environment variable\nexport GITHUB_TOKEN=ghp_xxxx\ngitload https://github.com/user/repo\n\n\nToken priority: --token > GITHUB_TOKEN > --gh\n\nURL Formats\n\ngitload accepts standard GitHub URLs:\n\nRepo root: https://github.com/user/repo\nFolder: https://github.com/user/repo/tree/branch/path/to/folder\nFile: https://github.com/user/repo/blob/branch/path/to/file.ext\nCommon Patterns\nScaffold from a template folder\ngitload https://github.com/org/templates/tree/main/react-starter -o ./my-app\ncd my-app && npm install\n\nGrab example code\ngitload https://github.com/org/examples/tree/main/authentication\n\nDownload docs for offline reading\ngitload https://github.com/org/project/tree/main/docs -z ./docs.zip\n\nFetch a single config file\ngitload https://github.com/org/configs/blob/main/.eslintrc.json -o .\n\nOptions Reference\nOption\tDescription\n-o, --output <dir>\tOutput directory (default: folder named after URL path)\n-z, --zip <path>\tSave as ZIP file at the specified path\n-t, --token <token>\tGitHub personal access token\n--gh\tUse token from gh CLI\n--no-color\tDisable colored output\n-h, --help\tDisplay help\n-V, --version\tOutput version\nError Handling\n\nIf gitload fails:\n\n404 errors: Verify the URL exists and is accessible\nRate limit errors: Add authentication with --gh or --token\nPermission errors: For private repos, ensure token has repo scope\nNetwork errors: Check internet connectivity\nNotes\ngitload downloads content via GitHub's API, not git protocol\nNo git history is preserved (use git clone if history is needed)\nLarge repos may take time; consider downloading specific folders\nOutput directory is created if it doesn't exist"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/waldekmastykarz/gitload",
    "publisherUrl": "https://clawhub.ai/waldekmastykarz/gitload",
    "owner": "waldekmastykarz",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gitload",
    "downloadUrl": "https://openagent3.xyz/downloads/gitload",
    "agentUrl": "https://openagent3.xyz/skills/gitload/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gitload/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gitload/agent.md"
  }
}