From htmlgraph
Monitor the status of parallel execution across git worktrees. Activate when asked for parallel status, worktree progress, or execution monitoring.
npx claudepluginhub shakestzd/htmlgraphThis skill uses the workspace's default tool permissions.
Use this skill to monitor parallel execution progress across worktrees.
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 to monitor parallel execution progress across worktrees.
Trigger keywords: parallel status, worktree status, execution progress, monitor tasks, check progress
# Show all worktree status
uv run htmlgraph worktree status
# Or use the shell script directly
./scripts/worktree-status.sh
# Table view of all worktrees
uv run htmlgraph worktree status
# Git-level view
git worktree list
# Recent commits across all branches
git for-each-ref --sort=-committerdate refs/heads/ --format='%(refname:short) %(committerdate:relative) %(subject)'
# Show all features and their status
uv run htmlgraph feature list
# Show specific feature
uv run htmlgraph feature show <id>
from htmlgraph import SDK
sdk = SDK()
# Check feature statuses
features = sdk.features.all()
done = [f for f in features if getattr(f, 'status', '') == 'done']
in_progress = [f for f in features if getattr(f, 'status', '') == 'in_progress']
todo = [f for f in features if getattr(f, 'status', '') == 'todo']
print(f"Done: {len(done)} | In Progress: {len(in_progress)} | Todo: {len(todo)}")