Agent skill
github-clone
Clone repositories and set up local workspace
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
gh auth status
gh repo clone <owner>/<repo>
gh repo clone <owner>/<repo> -- --depth 1 # shallow clone
git clone <url>
Workflow
-
Verify authentication
bashgh auth status -
Clone to workspace
bashcd ~/workspace gh repo clone owner/repo -
Verify clone
bashcd 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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?