agentsclimarketplace

Git workflow

Skill fabioc-aloha/Alex_ACT_Edition/.github/skills/git-workflow

ACT-Edition brain template for AI coding assistants — critical thinking, epistemic calibration, and structured reasoning

Install
npx -y skills add fabioc-aloha/Alex_ACT_Edition --skill git-workflow

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Apply consistent git practices for branch hygiene, safe commits, and recovery from common mishaps (lost commits, bad merges, accidental pushes). Use when authoring or reviewing a git workflow, recovering broken local state, or sequencing a commit/push that needs explicit user approval before destructive steps.

SKILL.md

4.7 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it

Git Workflow Skill

Consistent git practices, recovery patterns, and safe operations.

⚠️ Staleness Warning

Git core is stable, but GitHub features (Actions, CLI, Copilot integration) evolve.

Refresh triggers:

  • GitHub CLI major updates
  • GitHub Actions runner changes
  • New git features (e.g., git switch, git restore)
  • GitHub Copilot CLI integration

Last validated: May 2026 (Git 2.45+, GitHub CLI 2.x)

Check current state: Git Release Notes, GitHub CLI


Decision Table

ScenarioCommandNotes
Undo last commit, keep changesgit reset --soft HEAD~1Safe, preserves work
Restore single filegit checkout HEAD -- path/to/fileDiscards file changes
Restore entire foldergit checkout HEAD -- .github/Discards folder changes
Before risky operationgit add -A; git commit -m "checkpoint"Always checkpoint first
Discard all uncommittedgit reset --hard HEADDestructive, no recovery
Reset to remote stategit reset --hard origin/mainDestructive, syncs to remote
Save work temporarilygit stashgit stash popFor quick context switch
Isolated experimental workgit worktree add ../feature branchAgent-friendly isolation

Commit Message Convention

type(scope): brief description

- Detail 1
- Detail 2

Types: feat, fix, refactor, docs, chore, test, style

Examples:

feat(skills): add git-workflow skill
fix(sync): resolve race condition in background sync
refactor(skills): migrate domain-knowledge to skills architecture
docs(readme): update installation instructions
chore(deps): bump typescript to 5.3

Before Risky Operations

# ALWAYS commit before risky operations
git add -A; git commit -m "checkpoint: before [risky thing]"

# For extra safety, tag it
git tag "safe-point-$(date +%Y-%m-%d-%H%M)"

Recovery Patterns

Undo Last Commit (keep changes)

git reset --soft HEAD~1

Restore Single File

git checkout HEAD -- path/to/file

Restore Folder

git checkout HEAD -- .github/

Hard Reset to Known Good State

git reset --hard HEAD           # Discard all uncommitted changes
git reset --hard origin/main    # Reset to remote state
git reset --hard <tag-name>     # Reset to tagged state

Find Last Good Commit

git log --oneline -20           # Recent history
git log --oneline .github/ -10  # History for specific folder

Branching Strategy

main
 └── feature/short-description
 └── fix/issue-number
 └── release/v3.7.0

Rules:

  • main is always deployable
  • Feature branches for experimental work
  • Merge via PR when possible, direct commit for small fixes
  • Delete branches after merge

Conflict Resolution

  1. Pull before push: git pull --rebase origin main
  2. If conflicts: Resolve in editor, then git add . + git rebase --continue
  3. If stuck: git rebase --abort to start over

Stashing

git stash                       # Save work-in-progress
git stash pop                   # Restore and delete stash
git stash list                  # See all stashes
git stash drop                  # Delete top stash

Worktrees (Agent Isolation)

VS Code background agents use git worktree to isolate changes. Understanding worktrees is useful when debugging agent sessions.

# Create a worktree for isolated work
git worktree add ../project-feature feature-branch

# List all worktrees
git worktree list

# Remove a worktree (prune stale links)
git worktree remove ../project-feature
git worktree prune

VS Code integration (1.109+):

  • git.worktreeIncludeFiles — copy gitignored files (e.g., .env) into agent worktrees
  • Background agents auto-commit at end of each turn within their worktree
  • Check Agent Sessions view to see which worktree an agent is using

Anti-Patterns

  • git push --force on shared branches
  • ❌ Committing secrets or credentials
  • ❌ Giant commits with unrelated changes
  • ❌ Vague messages like "fix stuff" or "update"

Would Revise If

Revise if the recovery patterns produce data loss in a real recovery scenario, or if the 'safe operations' classification labels a destructive op as safe and that op runs without confirmation.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.