Loading...
Loading...
Clone, pull, and manage GitHub repositories using SSH authentication. Handles yousufjoyian repos and third-party repos.
npx skill4agent add yousufjoyian/claude-skills github| Setting | Value |
|---|---|
| Username | |
| SSH Key | |
| Default Clone Location | |
yousufjoyian/Pull triclaudeClone my youtube-transcripts repoGet repo living-contractClone anthropics/claude-codePull microsoft/vscodeUpdate triclaude with latest changesPull latest on youtube-transcriptsPush my changes to triclaudegit clone git@github.com:yousufjoyian/<repo>.git /home/yousuf/local_workspaces/<repo>git clone git@github.com:<owner>/<repo>.git /home/yousuf/local_workspaces/<repo>cd /home/yousuf/local_workspaces/<repo> && git pullcd /home/yousuf/local_workspaces/<repo> && git pushcd /home/yousuf/local_workspaces/<repo> && git statusssh -T git@github.comtriclaudeyousufjoyian/triclaudeanthropics/claude-codeanthropics/claude-code/home/yousuf/local_workspaces/<repo>/git pullgit clone| Phrase | Action |
|---|---|
| "pull", "clone", "get repo" | Clone or pull repo |
| "push", "upload" | Push commits |
| "github pull", "fetch from github" | Clone/pull |
| "update repo" | Git pull |
Cloning yousufjoyian/triclaude...
git clone git@github.com:yousufjoyian/triclaude.git /home/yousuf/local_workspaces/triclaude
Cloning into '/home/yousuf/local_workspaces/triclaude'...
remote: Enumerating objects: 245, done.
remote: Counting objects: 100% (245/245), done.
Receiving objects: 100% (245/245), 1.2 MiB | 5.00 MiB/s, done.
Done: /home/yousuf/local_workspaces/triclaude/| Skill | Purpose |
|---|---|
| Local commits with smart staging and message crafting |
git-commit| Issue | Solution |
|---|---|
| Permission denied (publickey) | Run |
| Repository not found | Check repo name/owner spelling |
| Already exists | Use |
| Merge conflicts on pull | Resolve conflicts manually or stash changes |
~/.ssh/github_ed25519eval "$(ssh-agent -s)"
ssh-add ~/.ssh/github_ed25519ssh -T git@github.com
# Expected: Hi yousufjoyian! You've successfully authenticated...