Agent skill
clean-code-git-plumbing-for-repos-with-large-pack-files
Sub-skill of clean-code: Git Plumbing for Repos with Large Pack Files (+1).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/workspace-hub/clean-code/git-plumbing-for-repos-with-large-pack-files
SKILL.md
Git Plumbing for Repos with Large Pack Files (+1)
Git Plumbing for Repos with Large Pack Files
git commit hangs indefinitely on repos with pack files ≥4GB (e.g., digitalmodel). Use
plumbing commands instead:
# Standard commit — HANGS on repos with large pack files
git commit -m "message" # ← do NOT use
# Plumbing workflow — always safe regardless of repo size
TREE=$(git write-tree)
PARENT=$(git rev-parse HEAD)
COMMIT=$(git commit-tree "$TREE" -p "$PARENT" -m "your message here")
git update-ref HEAD "$COMMIT"
After this, update the hub-level submodule pointer:
# From workspace-hub root
git add <submodule-dir>
git commit -m "chore: update <submodule> pointer"
Parallel Execution for Multi-Repo God Object Sprints
When splitting files across multiple repos simultaneously:
TeamCreate → spawn agent-repo-A + agent-repo-B in parallel
agent-repo-A: handles one repo (worldenergydata)
agent-repo-B: handles other repo (digitalmodel)
Rules:
- Never run two agents on the SAME repo concurrently (index.lock contention)
- Update hub submodule pointer AFTER each repo agent completes
- agent-repo-B should not start WRK-592 until WRK-591 is committed
(same __init__.py in same repo — sequential within a repo, parallel across repos)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?