home / skills / aaaaqwq / agi-super-skills / git-sync

git-sync skill

/skills/git-project/git-sync

This is most likely a fork of the git-sync skill from openclaw
npx playbooks add skill aaaaqwq/agi-super-skills --skill git-sync

Review the files below or copy the command above to add this skill to your agents.

Files (3)
SKILL.md
728 B
---
name: git-sync
description: Automatically syncs local workspace changes to the remote GitHub repository. Use after significant changes or periodically.
tags: [git, sync, backup, version-control]
---

# 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 `.gitignore` and `pre-commit` hooks (ADL-compliant) to prevent secret leakage.
- Checks if there are changes before committing.

## Implementation
Wrapper around `git add . && git commit && git push`.