Github

GitHub integration for repository operations

futurewithvibe Updated

File contents

GitHub Integration

Integrate with GitHub repositories for various operations.

Available Tools

  • bash: Execute git commands
  • web_fetch: Fetch GitHub API data

Common Operations

Clone Repository

git clone https://github.com/user/repo.git

Check Status

git status

Create Branch

git checkout -b feature-branch

Commit Changes

git add .
git commit -m "Commit message"

Push Changes

git push origin branch-name

GitHub API

Use web_fetch with GitHub API:

  • https://api.github.com/repos/{owner}/{repo}
  • https://api.github.com/repos/{owner}/{repo}/issues
  • https://api.github.com/repos/{owner}/{repo}/pulls

Include GITHUB_TOKEN in Authorization header for authenticated requests.

futurewithvibe/openclaw-python/tree/main/skills/github commit efcbd300c9

Frequently asked questions

npx skillmds@latest add futurewithvibe/github