スキル一覧に戻る
BreakerOfStems

github-clone

by BreakerOfStems

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: github-clone description: Clone repositories and set up local workspace

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

  1. Verify authentication

    gh auth status
    
  2. Clone to workspace

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

    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

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です