Git & GitHubDocumentedScanned
git-sync
Automatically syncs local workspace changes to the remote GitHub repository.
Share:
Installation
npx clawhub@latest install git-syncView the full skill documentation and source below.
Documentation
Git Sync Skill
Automatically syncs local workspace changes to the remote GitHub repository.
Designed to be called by PCEC cycles or after significant changes.
Tools
git_sync
Commit and push changes.- message (optional): Commit message. Defaults to "Auto-sync: Routine evolution update".
Safety
- Uses
.gitignoreandpre-commithooks (ADL-compliant) to prevent secret leakage. - Checks if there are changes before committing.
Implementation
Wrapper aroundgit add . && git commit && git push.