# Git Sync

> Automatically syncs local workspace changes to the remote GitHub repository. Use after significant changes or periodically.

- Skill: `s3yed/git-sync` (Agent Skill)
- Install (CLI): `npx skillmds@latest add s3yed/git-sync`
- Raw SKILL.md: https://api.skillmd.com/api/skills/s3yed/git-sync/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: S3YED (https://skillmd.com/u/s3yed)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/s3yed/git-sync

---


# 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`.
