← All skills
Tencent SkillHub Β· Developer Tools

GitHub Intelligence

Analyze any GitHub repository in AI-friendly format. Convert entire repos to single markdown documents, generate architecture diagrams with Mermaid, inspect...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Analyze any GitHub repository in AI-friendly format. Convert entire repos to single markdown documents, generate architecture diagrams with Mermaid, inspect...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/github-tricks.md, scripts/repo_analyzer.py, scripts/repo_to_markdown.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

πŸ” 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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts
  • SKILL.md Primary doc
  • references/github-tricks.md Docs
  • scripts/repo_analyzer.py Scripts
  • scripts/repo_to_markdown.py Scripts