repo-explore
Installation
SKILL.md
Repo Exploration
Workflow
- Clone the repo to a temp directory
- Explore the codebase to gather context
- Report findings to the user
- Cleanup the temp directory
Clone
# Shallow clone to /tmp (default branch)
git clone --depth 1 <repo_url> /tmp/repo-explore-<basename>
# Shallow clone with specific branch or tag
git clone --depth 1 --branch <tag_or_branch> <repo_url> /tmp/repo-explore-<basename>