install
source · Clone the upstream repo
git clone https://github.com/athola/skrills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/athola/skrills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/assets/demo-skills/git-workflow" ~/.claude/skills/athola-skrills-git-workflow && rm -rf "$T"
manifest:
assets/demo-skills/git-workflow/SKILL.mdsource content
Git Workflow
Best practices for Git version control.
Commit Guidelines
- Write clear, descriptive commit messages
- Use conventional commit format (feat, fix, docs, etc.)
- Keep commits atomic and focused
- Reference issue numbers when applicable
Branching Strategy
- Use feature branches for new work
- Keep main/master branch stable
- Rebase or merge based on team conventions
- Delete branches after merging
Collaboration
- Pull frequently to stay updated
- Resolve conflicts carefully
- Review diffs before committing
- Use pull requests for code review