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
uv run htmlgraph worktree cleanup
# Force remove all worktrees (including unmerged)
uv run htmlgraph worktree cleanup --force
# Remove specific task worktree
uv run htmlgraph worktree cleanup --task task-001
# See what's still active
uv run htmlgraph worktree status
# Merge completed tasks first
uv run htmlgraph worktree merge <task-id>
# Safe cleanup - only removes merged branches
uv run htmlgraph worktree cleanup
# 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