/install git-hub-issus
Git Ops Skill
Local git operations for managing project code.
Branch Naming Convention
For new features/issues, create branches with pattern:
feature/issue-{number}-{brief-description}
For bug fixes:
fix/issue-{number}-{brief-description}
Standard Workflow
Start new feature from an issue
cd /path/to/project
git checkout main
git pull origin main
git checkout -b feature/issue-1-add-dark-mode
After coding is done
git add -A
git commit -m "feat: add dark mode support (closes #1)"
git push -u origin feature/issue-1-add-dark-mode
Create PR/MR after push
- GitHub: use
githubskill →gh pr create - GitLab: use
gitlab-opsskill →glab mr create
Common Commands
# Status
git status
git log --oneline -10
git diff
git diff --staged
# Branch management
git branch -a
git checkout main
git checkout -b feature/xxx
git branch -d old-branch
# Sync
git pull origin main
git fetch --all
git rebase main
# Stash
git stash
git stash pop
git stash list
Known Project Paths
| Project | Path | Remote |
|---|---|---|
| yeahmobiEverything | /Users/zhujinqi/Documents/javacode/learn/yeahmobiEverything | GitHub (zhulaoqi) |
| ad-pex-ai | TBD | GitLab (ad-pex/ad-pex-ai) |
Commit Message Convention
Use conventional commits:
feat:new featurefix:bug fixrefactor:code refactoringstyle:UI/style changesdocs:documentationchore:maintenance
Notes
- Always pull latest before creating new branches
- Never force push to main/master
- Ask user before any destructive operations (reset --hard, force push)
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install git-hub-issus - After installation, invoke the skill by name or use
/git-hub-issus - Provide required inputs per the skill's parameter spec and get structured output
What is git-hub-issus?
Local git operations for project management. Use when: (1) creating branches for new features/issues, (2) committing and pushing code, (3) pulling latest cha... It is an AI Agent Skill for Claude Code / OpenClaw, with 746 downloads so far.
How do I install git-hub-issus?
Run "/install git-hub-issus" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is git-hub-issus free?
Yes, git-hub-issus is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does git-hub-issus support?
git-hub-issus is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created git-hub-issus?
It is built and maintained by zhulaoqi (@zhulaoqi); the current version is v1.0.0.