From research
Techniques for retrieving and investigating remote codebases and their documentation. Use when user provides a GitHub/GitLab URL to look at, asks to follow conventions from a remote repo, asks "how does package/library X implement/handle Y", or references any external repository's code, structure, or patterns. Examples: "follow the conventions in https://github.com/...", "look at how repo X does Y", "check this GitHub link".
How this skill is triggered — by the user, by Claude, or both
Slash command
/research:research-remote-codeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When you need to look at code in a remote repository (GitHub, GitLab, etc.):
When you need to look at code in a remote repository (GitHub, GitLab, etc.):
git clone --depth 1 <url> /tmp/<repo-name>rm -rf /tmp/<repo-name>Do NOT use WebFetch or gh api to read files from remote repos; clone locally instead.
When asked to follow conventions or patterns from a remote repo, clone it, read the relevant files, then apply those patterns to the local project.
npx claudepluginhub economic/epi-skills --plugin researchDelegates repository exploration to a Claude Code CLI subprocess. Supports local paths and remote GitHub/GitLab URLs with read-only access.
Clones a GitHub repo and sets up an interactive study session for reading and analyzing the codebase. Answers questions with source-of-truth evidence from the actual code.