{
  "schemaVersion": "1.0",
  "item": {
    "slug": "greptile",
    "name": "Greptile",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/iAhmadZain/greptile",
    "canonicalUrl": "https://clawhub.ai/iAhmadZain/greptile",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/greptile",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=greptile",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/greptile.sh"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/greptile"
    },
    "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/greptile",
    "agentPageUrl": "https://openagent3.xyz/skills/greptile/agent",
    "manifestUrl": "https://openagent3.xyz/skills/greptile/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/greptile/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": "Greptile Skill",
        "body": "Query and manage Greptile-indexed repositories via the REST API."
      },
      {
        "title": "Setup",
        "body": "Required environment variables:\n\nGREPTILE_TOKEN — Greptile API token (from https://app.greptile.com)\nGITHUB_TOKEN — GitHub PAT with repo access (alternatively set GREPTILE_GITHUB_TOKEN, or authenticate via gh auth login — the script falls back to gh auth token)"
      },
      {
        "title": "Commands",
        "body": "All commands use scripts/greptile.sh (resolve path relative to this skill directory)."
      },
      {
        "title": "Index a repository",
        "body": "scripts/greptile.sh index owner/repo [branch] [--remote github|gitlab] [--no-reload] [--no-notify]\n\nDefault branch: main. Use --no-reload to skip re-indexing if already processed."
      },
      {
        "title": "Check index status",
        "body": "scripts/greptile.sh status owner/repo [branch] [--remote github|gitlab]\n\nReturns: status (completed/processing/failed), filesProcessed, numFiles."
      },
      {
        "title": "Query a codebase (AI answer + sources)",
        "body": "scripts/greptile.sh query owner/repo [branch] \"How does auth work?\" [--genius] [--remote github|gitlab]\n\n--genius — slower but smarter analysis (good for PR reviews, architecture questions)\nReturns: AI-generated answer + source file references with line numbers"
      },
      {
        "title": "Search a codebase (sources only, no AI answer)",
        "body": "scripts/greptile.sh search owner/repo [branch] \"payment processing\" [--remote github|gitlab]\n\nReturns: ranked list of relevant files, functions, and snippets with line numbers."
      },
      {
        "title": "Tips",
        "body": "Always index a repo before querying/searching it. Check status to confirm indexing is complete.\nUse query --genius for complex questions (architecture, PR review context, cross-file analysis).\nUse search when you just need file locations without an AI explanation.\nFor GitLab repos, pass --remote gitlab.\nPipe output through jq for formatting: scripts/greptile.sh query ... | jq .\nMulti-repo queries: not supported by the wrapper; use the API directly with multiple repositories in the body."
      }
    ],
    "body": "Greptile Skill\n\nQuery and manage Greptile-indexed repositories via the REST API.\n\nSetup\n\nRequired environment variables:\n\nGREPTILE_TOKEN — Greptile API token (from https://app.greptile.com)\nGITHUB_TOKEN — GitHub PAT with repo access (alternatively set GREPTILE_GITHUB_TOKEN, or authenticate via gh auth login — the script falls back to gh auth token)\nCommands\n\nAll commands use scripts/greptile.sh (resolve path relative to this skill directory).\n\nIndex a repository\nscripts/greptile.sh index owner/repo [branch] [--remote github|gitlab] [--no-reload] [--no-notify]\n\n\nDefault branch: main. Use --no-reload to skip re-indexing if already processed.\n\nCheck index status\nscripts/greptile.sh status owner/repo [branch] [--remote github|gitlab]\n\n\nReturns: status (completed/processing/failed), filesProcessed, numFiles.\n\nQuery a codebase (AI answer + sources)\nscripts/greptile.sh query owner/repo [branch] \"How does auth work?\" [--genius] [--remote github|gitlab]\n\n--genius — slower but smarter analysis (good for PR reviews, architecture questions)\nReturns: AI-generated answer + source file references with line numbers\nSearch a codebase (sources only, no AI answer)\nscripts/greptile.sh search owner/repo [branch] \"payment processing\" [--remote github|gitlab]\n\n\nReturns: ranked list of relevant files, functions, and snippets with line numbers.\n\nTips\nAlways index a repo before querying/searching it. Check status to confirm indexing is complete.\nUse query --genius for complex questions (architecture, PR review context, cross-file analysis).\nUse search when you just need file locations without an AI explanation.\nFor GitLab repos, pass --remote gitlab.\nPipe output through jq for formatting: scripts/greptile.sh query ... | jq .\nMulti-repo queries: not supported by the wrapper; use the API directly with multiple repositories in the body."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/iAhmadZain/greptile",
    "publisherUrl": "https://clawhub.ai/iAhmadZain/greptile",
    "owner": "iAhmadZain",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/greptile",
    "downloadUrl": "https://openagent3.xyz/downloads/greptile",
    "agentUrl": "https://openagent3.xyz/skills/greptile/agent",
    "manifestUrl": "https://openagent3.xyz/skills/greptile/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/greptile/agent.md"
  }
}