Reads and searches GitHub repository documentation and code via gitmcp.io MCP service. Activates when user provides a GitHub URL or asks about a repo.
How this skill is triggered — by the user, by Claude, or both
Slash command
/am-will-codex-skills-5:read-githubThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Access GitHub repository documentation and code via the gitmcp.io MCP service.
Access GitHub repository documentation and code via the gitmcp.io MCP service.
Convert GitHub URLs to gitmcp.io:
github.com/owner/repo → gitmcp.io/owner/repohttps://github.com/karpathy/llm-council → https://gitmcp.io/karpathy/llm-councilThe scripts/gitmcp.py script provides CLI access to repository docs.
python3 scripts/gitmcp.py list-tools owner/repo
Retrieves the full documentation file (README, docs, etc.):
python3 scripts/gitmcp.py fetch-docs owner/repo
Semantic search within repository documentation:
python3 scripts/gitmcp.py search-docs owner/repo "query"
Search code using GitHub Search API (exact match):
python3 scripts/gitmcp.py search-code owner/repo "function_name"
Fetch content from URLs mentioned in documentation:
python3 scripts/gitmcp.py fetch-url owner/repo "https://example.com/doc"
Call any MCP tool directly:
python3 scripts/gitmcp.py call owner/repo tool_name '{"arg": "value"}'
Tool names are dynamically prefixed with the repo name (underscored):
karpathy/llm-council → fetch_llm_council_documentationfacebook/react → fetch_react_documentationmy-org/my-repo → fetch_my_repo_documentationFor any repository, these tools are available:
npx claudepluginhub am-will/codex-skillsReads GitHub repos via gitmcp.io with semantic search across docs and code, accurate file navigation, and markdown output. Replaces raw GitHub URL scraping for LLM consumption.
Queries DeepWiki/GitHub public repository documentation. Ask AI-powered questions about any open-source repo, or read wiki structure and contents for code understanding.
Fetches up-to-date GitHub documentation for libraries, frameworks, and APIs via search and chunk/TOC retrieval for usage, references, configs.