Install
$ agentstack add skill-vrallev-agent-skills-git-update ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Git Update
Workflow
Use scripts/git_update.sh from the repository the user wants to update:
bash /Users/ralf/.codex/skills/git-update/scripts/git_update.sh
The script:
- Runs
git fetch --prune. - If
origin/masterexists, updates localmaster. - If
origin/mainexists, updates localmain. - Creates a missing local branch at the matching remote branch without checking it out.
- Rebases existing local branch commits onto the matching remote branch in a temporary detached worktree, then updates the local branch ref.
Safety Rules
- Do not check out
mainormasterin the caller's working tree. - Do not stash, reset, clean, or otherwise rewrite the caller's staged or unstaged changes.
- If a rebase conflict or other error occurs, leave the caller's working tree untouched and do not move the local branch ref.
- If local commits exist that are not on the remote branch, keep them by rebasing them onto the remote branch instead of force-aligning the local branch to origin.
- In Codex sandboxed environments,
git fetch --prunemay fail when writing.git/FETCH_HEADor other Git metadata. Treat that as an expected sandbox permission issue, not as working-tree risk; rerun the same script with the appropriate escalation/approval.
Notes
- The usual result is that local
mainormasterpoints at the same commit asorigin/mainororigin/master. - When local commits are present, the local branch may intentionally remain ahead of origin after the rebase.
- If neither
origin/mainnororigin/masterexists, report that there is nothing to update after the fetch.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: vRallev
- Source: vRallev/agent-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.