Install
openclaw skills install lookupmark-git-syncManage whitelisted git repositories from chat. Status, log, diff, pull, push with security controls — only approved repos, write commands need confirmation. Repo list configurable via ~/.config/git-sync/repos.json (overrides defaults). Triggers on "git status", "repo status", "push thesis", "pull polito", "check repo", "uncommitted changes", "commit recenti". NOT for: arbitrary git repos, destructive operations (clean, reset --hard).
openclaw skills install lookupmark-git-syncSecure git repository management for whitelisted repos.
# Status of all repos
python3 scripts/git_ctrl.py all
# Status of specific repo
python3 scripts/git_ctrl.py status thesis
python3 scripts/git_ctrl.py status polito
# Recent commits
python3 scripts/git_ctrl.py log thesis -n 20
# Unstaged changes
python3 scripts/git_ctrl.py diff thesis
# Branches
python3 scripts/git_ctrl.py branch thesis
# Fetch (read-only, safe)
python3 scripts/git_ctrl.py fetch thesis
# Pull (requires confirmation)
python3 scripts/git_ctrl.py pull thesis --confirm
# Push (requires confirmation)
python3 scripts/git_ctrl.py push thesis --confirm
| Name | Path |
|---|---|
thesis | ~/Documenti/github/thesis |
polito | ~/Documenti/github/polito |
thesis and polito repos are accessiblestatus, log, diff, branch, fetch run freely--confirm: pull, push, merge, checkout need explicit confirmationclean, reset --hard, push --force are never allowed