Work with GitHub using the gh CLI and git. Create repositories, issues, and PRs; manage CI/CD; push and pull. Automatically uses the user's existing credentials.
# Проверка
gh auth status # ✓ Logged in
git config user.name # Имя пользователя
git config user.email # Email
gh repo create <name> --public|--private --clone
gh repo clone <owner>/<repo>
gh repo fork <owner>/<repo> --clone
gh issue create --title "Title" --body "Description"
gh issue list --state open
gh issue view <number>
gh issue close <number>
gh pr create --title "Title" --body "Description" --base main
gh pr list --state open
gh pr merge <number> --squash
gh workflow list
gh workflow run <name>
gh run list --limit 10
gh run view <run-id> --log
git init && git add . && git commit -m "Initial commit"
gh repo create <name> --public --source=. --push
git checkout -b feature/my-feature
# ... work ...
git push -u origin feature/my-feature
gh pr create --title "feat: description"
git@github.com:Зависимости: gh CLI (https://cli.github.com), git, SSH keys
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer