# Send GitHub Intelligence 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": "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": {
    "downloadUrl": "/downloads/a6-github-intel",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=a6-github-intel",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/github-tricks.md",
      "scripts/repo_analyzer.py",
      "scripts/repo_to_markdown.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "a6-github-intel",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T17:53:34.309Z",
      "expiresAt": "2026-05-10T17:53:34.309Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=a6-github-intel",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=a6-github-intel",
        "contentDisposition": "attachment; filename=\"a6-github-intel-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "a6-github-intel"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### 🔍 GitHub Intelligence

Analyze any GitHub repository in AI-friendly format. Convert repos to markdown, generate architecture diagrams, understand structure and patterns.

### Features

Analyze repo structure — file tree, README, language breakdown, recent activity
Generate architecture diagrams — Mermaid flowcharts from codebase structure
Convert repo to markdown — entire repository as a single AI-readable document
Inspect language breakdown — percentage by language with file counts
Track recent activity — latest commits, contributors, release history
GitHub URL tricks — hidden features, API shortcuts, search operators
Control analysis depth — configurable directory traversal depth
Limit file count — cap files for large repos
Read-only guarantee — never executes code from repositories
Public API access — no token needed (optional token for higher rate limits)

### Requirements

VariableRequiredDescriptionGITHUB_TOKEN❌Optional — increases rate limit from 60 to 5000 req/hr. Get from GitHub Settings

### Quick Start

PY=~/.openclaw/workspace/.venv/bin/python3

# Analyze a repository
$PY skills/github-intel/scripts/repo_analyzer.py https://github.com/anthropics/claude-code

# Convert repo to single markdown
$PY skills/github-intel/scripts/repo_to_markdown.py https://github.com/openai/openai-python

# Deep analysis
$PY skills/github-intel/scripts/repo_analyzer.py https://github.com/user/repo --depth 3

### Repo Analyzer

# Basic analysis
$PY scripts/repo_analyzer.py https://github.com/owner/repo

# Deep directory traversal
$PY scripts/repo_analyzer.py https://github.com/owner/repo --depth 3

# With authentication for higher rate limits
GITHUB_TOKEN=ghp_xxx $PY scripts/repo_analyzer.py https://github.com/owner/repo

### Repo to Markdown

# Convert full repo
$PY scripts/repo_to_markdown.py https://github.com/owner/repo

# Limit files for large repos
$PY scripts/repo_to_markdown.py https://github.com/owner/repo --max-files 50

# Output to file
$PY scripts/repo_to_markdown.py https://github.com/owner/repo > repo.md

### Output Format (Analyzer)

# Repository: owner/repo

## Structure
├── src/
│   ├── index.ts
│   └── ...
├── README.md
└── package.json

## README
[Full README content]

## Language Breakdown
- TypeScript: 78.2%
- JavaScript: 15.1%
- Shell: 6.7%

## Architecture (Mermaid)
graph TD
  A[CLI Entry] --> B[Command Parser]
  ...

## Recent Activity
- 2 days ago: feat: add streaming support
- 5 days ago: fix: handle timeout errors

### References

FileDescriptionreferences/github-tricks.mdURL hacks, API shortcuts, search operators

### Script Reference

ScriptDescription{baseDir}/scripts/repo_analyzer.pyFull repository analysis with diagrams{baseDir}/scripts/repo_to_markdown.pyConvert repo to single markdown document

### ⚠️ Security

This tool is READ-ONLY. It NEVER:

Executes code from repositories
Runs scripts, makefiles, or build commands
Evaluates any content from repos
Writes to any repository

All analysis is static file reading only.

### Data Policy

This skill fetches public data from GitHub's API. No data is stored locally beyond the analysis output.

Built by M. Abidi

LinkedIn · YouTube · GitHub · Book a Call
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aiwithabidi
- 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-03T17:53:34.309Z
- Expires at: 2026-05-10T17:53:34.309Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/a6-github-intel)
- [Send to Agent page](https://openagent3.xyz/skills/a6-github-intel/agent)
- [JSON manifest](https://openagent3.xyz/skills/a6-github-intel/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/a6-github-intel/agent.md)
- [Download page](https://openagent3.xyz/downloads/a6-github-intel)