Git add, commit, and push all latest changes to the remote repository.
Scanned 9/19/2026
Install to Claude Code
npx -y skills add eliranwong/biblemate-agentic-workspace --skill sync --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Sync?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/eliranwong-sync)More formats (shields.io, HTML) on the badges page.
---
name: sync
description: Git add, commit, and push all latest changes to the remote repository.
---
# Sync Skill
## Overview
This standalone skill enables the agent to stage, commit, and push all latest workspace changes to the remote Git repository.
## Guidelines & Objectives
When executing this skill:
1. **Analyze Workspace State**: Run a check on the repository using `git status` to see what files have been modified, created, or deleted.
2. **Stage Changes**: Run `git add .` to stage all changes in the current workspace.
3. **Commit Changes**: Create a descriptive commit message that summarizes the main updates. If the user provided a custom commit message (e.g., via the slash command argument), use that message. Otherwise, construct a clean message (e.g., "Sync latest changes" or a list of modified files) and run `git commit -m "<commit_message>"`.
4. **Push to Remote**: Run `git push` to upload the changes to the remote repository.
5. **Verify and Report**: Confirm that the push succeeded and present a clean summary of the synced changes to the user.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!