{
  "schemaVersion": "1.0",
  "item": {
    "slug": "a6-github-intel",
    "name": "GitHub Intelligence",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/aiwithabidi/a6-github-intel",
    "canonicalUrl": "https://clawhub.ai/aiwithabidi/a6-github-intel",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/a6-github-intel",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=a6-github-intel",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/github-tricks.md",
      "scripts/repo_analyzer.py",
      "scripts/repo_to_markdown.py"
    ],
    "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/a6-github-intel"
    },
    "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/a6-github-intel",
    "agentPageUrl": "https://openagent3.xyz/skills/a6-github-intel/agent",
    "manifestUrl": "https://openagent3.xyz/skills/a6-github-intel/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/a6-github-intel/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": "🔍 GitHub Intelligence",
        "body": "Analyze any GitHub repository in AI-friendly format. Convert repos to markdown, generate architecture diagrams, understand structure and patterns."
      },
      {
        "title": "Features",
        "body": "Analyze repo structure — file tree, README, language breakdown, recent activity\nGenerate architecture diagrams — Mermaid flowcharts from codebase structure\nConvert repo to markdown — entire repository as a single AI-readable document\nInspect language breakdown — percentage by language with file counts\nTrack recent activity — latest commits, contributors, release history\nGitHub URL tricks — hidden features, API shortcuts, search operators\nControl analysis depth — configurable directory traversal depth\nLimit file count — cap files for large repos\nRead-only guarantee — never executes code from repositories\nPublic API access — no token needed (optional token for higher rate limits)"
      },
      {
        "title": "Requirements",
        "body": "VariableRequiredDescriptionGITHUB_TOKEN❌Optional — increases rate limit from 60 to 5000 req/hr. Get from GitHub Settings"
      },
      {
        "title": "Quick Start",
        "body": "PY=~/.openclaw/workspace/.venv/bin/python3\n\n# Analyze a repository\n$PY skills/github-intel/scripts/repo_analyzer.py https://github.com/anthropics/claude-code\n\n# Convert repo to single markdown\n$PY skills/github-intel/scripts/repo_to_markdown.py https://github.com/openai/openai-python\n\n# Deep analysis\n$PY skills/github-intel/scripts/repo_analyzer.py https://github.com/user/repo --depth 3"
      },
      {
        "title": "Repo Analyzer",
        "body": "# Basic analysis\n$PY scripts/repo_analyzer.py https://github.com/owner/repo\n\n# Deep directory traversal\n$PY scripts/repo_analyzer.py https://github.com/owner/repo --depth 3\n\n# With authentication for higher rate limits\nGITHUB_TOKEN=ghp_xxx $PY scripts/repo_analyzer.py https://github.com/owner/repo"
      },
      {
        "title": "Repo to Markdown",
        "body": "# Convert full repo\n$PY scripts/repo_to_markdown.py https://github.com/owner/repo\n\n# Limit files for large repos\n$PY scripts/repo_to_markdown.py https://github.com/owner/repo --max-files 50\n\n# Output to file\n$PY scripts/repo_to_markdown.py https://github.com/owner/repo > repo.md"
      },
      {
        "title": "Output Format (Analyzer)",
        "body": "# Repository: owner/repo\n\n## Structure\n├── src/\n│   ├── index.ts\n│   └── ...\n├── README.md\n└── package.json\n\n## README\n[Full README content]\n\n## Language Breakdown\n- TypeScript: 78.2%\n- JavaScript: 15.1%\n- Shell: 6.7%\n\n## Architecture (Mermaid)\ngraph TD\n  A[CLI Entry] --> B[Command Parser]\n  ...\n\n## Recent Activity\n- 2 days ago: feat: add streaming support\n- 5 days ago: fix: handle timeout errors"
      },
      {
        "title": "References",
        "body": "FileDescriptionreferences/github-tricks.mdURL hacks, API shortcuts, search operators"
      },
      {
        "title": "Script Reference",
        "body": "ScriptDescription{baseDir}/scripts/repo_analyzer.pyFull repository analysis with diagrams{baseDir}/scripts/repo_to_markdown.pyConvert repo to single markdown document"
      },
      {
        "title": "⚠️ Security",
        "body": "This tool is READ-ONLY. It NEVER:\n\nExecutes code from repositories\nRuns scripts, makefiles, or build commands\nEvaluates any content from repos\nWrites to any repository\n\nAll analysis is static file reading only."
      },
      {
        "title": "Data Policy",
        "body": "This skill fetches public data from GitHub's API. No data is stored locally beyond the analysis output.\n\nBuilt by M. Abidi\n\nLinkedIn · YouTube · GitHub · Book a Call"
      }
    ],
    "body": "🔍 GitHub Intelligence\n\nAnalyze any GitHub repository in AI-friendly format. Convert repos to markdown, generate architecture diagrams, understand structure and patterns.\n\nFeatures\nAnalyze repo structure — file tree, README, language breakdown, recent activity\nGenerate architecture diagrams — Mermaid flowcharts from codebase structure\nConvert repo to markdown — entire repository as a single AI-readable document\nInspect language breakdown — percentage by language with file counts\nTrack recent activity — latest commits, contributors, release history\nGitHub URL tricks — hidden features, API shortcuts, search operators\nControl analysis depth — configurable directory traversal depth\nLimit file count — cap files for large repos\nRead-only guarantee — never executes code from repositories\nPublic API access — no token needed (optional token for higher rate limits)\nRequirements\nVariable\tRequired\tDescription\nGITHUB_TOKEN\t❌\tOptional — increases rate limit from 60 to 5000 req/hr. Get from GitHub Settings\nQuick Start\nPY=~/.openclaw/workspace/.venv/bin/python3\n\n# Analyze a repository\n$PY skills/github-intel/scripts/repo_analyzer.py https://github.com/anthropics/claude-code\n\n# Convert repo to single markdown\n$PY skills/github-intel/scripts/repo_to_markdown.py https://github.com/openai/openai-python\n\n# Deep analysis\n$PY skills/github-intel/scripts/repo_analyzer.py https://github.com/user/repo --depth 3\n\nCommands\nRepo Analyzer\n# Basic analysis\n$PY scripts/repo_analyzer.py https://github.com/owner/repo\n\n# Deep directory traversal\n$PY scripts/repo_analyzer.py https://github.com/owner/repo --depth 3\n\n# With authentication for higher rate limits\nGITHUB_TOKEN=ghp_xxx $PY scripts/repo_analyzer.py https://github.com/owner/repo\n\nRepo to Markdown\n# Convert full repo\n$PY scripts/repo_to_markdown.py https://github.com/owner/repo\n\n# Limit files for large repos\n$PY scripts/repo_to_markdown.py https://github.com/owner/repo --max-files 50\n\n# Output to file\n$PY scripts/repo_to_markdown.py https://github.com/owner/repo > repo.md\n\nOutput Format (Analyzer)\n# Repository: owner/repo\n\n## Structure\n├── src/\n│   ├── index.ts\n│   └── ...\n├── README.md\n└── package.json\n\n## README\n[Full README content]\n\n## Language Breakdown\n- TypeScript: 78.2%\n- JavaScript: 15.1%\n- Shell: 6.7%\n\n## Architecture (Mermaid)\ngraph TD\n  A[CLI Entry] --> B[Command Parser]\n  ...\n\n## Recent Activity\n- 2 days ago: feat: add streaming support\n- 5 days ago: fix: handle timeout errors\n\nReferences\nFile\tDescription\nreferences/github-tricks.md\tURL hacks, API shortcuts, search operators\nScript Reference\nScript\tDescription\n{baseDir}/scripts/repo_analyzer.py\tFull repository analysis with diagrams\n{baseDir}/scripts/repo_to_markdown.py\tConvert repo to single markdown document\n⚠️ Security\n\nThis tool is READ-ONLY. It NEVER:\n\nExecutes code from repositories\nRuns scripts, makefiles, or build commands\nEvaluates any content from repos\nWrites to any repository\n\nAll analysis is static file reading only.\n\nData Policy\n\nThis skill fetches public data from GitHub's API. No data is stored locally beyond the analysis output.\n\nBuilt by M. Abidi\n\nLinkedIn · YouTube · GitHub · Book a Call"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/aiwithabidi/a6-github-intel",
    "publisherUrl": "https://clawhub.ai/aiwithabidi/a6-github-intel",
    "owner": "aiwithabidi",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/a6-github-intel",
    "downloadUrl": "https://openagent3.xyz/downloads/a6-github-intel",
    "agentUrl": "https://openagent3.xyz/skills/a6-github-intel/agent",
    "manifestUrl": "https://openagent3.xyz/skills/a6-github-intel/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/a6-github-intel/agent.md"
  }
}