From htmlgraph
Clean up git worktrees and branches after parallel execution completes. Activate when asked to clean up worktrees, remove branches, or finalize parallel work.
npx claudepluginhub shakestzd/htmlgraphThis skill uses the workspace's default tool permissions.
Use this skill after parallel execution completes to clean up worktrees and branches.
Provides Ktor server patterns for routing DSL, plugins (auth, CORS, serialization), Koin DI, WebSockets, services, and testApplication testing.
Conducts multi-source web research with firecrawl and exa MCPs: searches, scrapes pages, synthesizes cited reports. For deep dives, competitive analysis, tech evaluations, or due diligence.
Provides demand forecasting, safety stock optimization, replenishment planning, and promotional lift estimation for multi-location retailers managing 300-800 SKUs.
Use this skill after parallel execution completes to clean up worktrees and branches.
Trigger keywords: cleanup, clean up worktrees, remove branches, finalize, finish parallel
# Remove all merged worktrees
git worktree prune
# Force remove all worktrees (including unmerged)
git worktree prune
# Remove specific task worktree
git worktree remove <path>
# See what's still active
git worktree list
# Merge completed tasks first
git merge <branch> --no-edit
# Safe cleanup - only removes merged branches
git worktree prune
# Or use the shell script directly
./scripts/worktree-cleanup.sh
# Confirm no stale worktrees remain
git worktree list
# Run full quality gates
uv run ruff check --fix && uv run ruff format && uv run mypy src/ && uv run pytest