Agent skill

github-clone

Clone repositories and set up local workspace

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/github-clone

SKILL.md

GitHub Clone Skill

Clone repositories and establish a clean local workspace.

See also: Shared Conventions | Safety Guidelines

Purpose

Set up a local copy of a repository ready for work.

Commands

bash
gh auth status
gh repo clone <owner>/<repo>
gh repo clone <owner>/<repo> -- --depth 1  # shallow clone
git clone <url>

Workflow

  1. Verify authentication

    bash
    gh auth status
    
  2. Clone to workspace

    bash
    cd ~/workspace
    gh repo clone owner/repo
    
  3. Verify clone

    bash
    cd repo
    git status
    git remote -v
    

Policies

  • Clone into ~/workspace/ directory
  • Verify auth status before cloning private repos
  • Use shallow clone (--depth 1) for large repos when full history isn't needed
  • After clone, verify remote is correctly configured

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results