Sub-skill of github-swarm-issue: Metrics and Analytics.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill metrics-and-analytics --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Metrics And Analytics?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-metrics-and-analytics)More formats (shields.io, HTML) on the badges page.
---
name: github-swarm-issue-metrics-and-analytics
description: 'Sub-skill of github-swarm-issue: Metrics and Analytics.'
version: 1.0.0
category: development
type: reference
scripts_exempt: true
---
# Metrics and Analytics
## Metrics and Analytics
```bash
# Issue resolution metrics
generate_metrics() {
# Get closed issues from last 30 days
gh issue list --state closed --json number,title,createdAt,closedAt,labels | \
jq '{
total_closed: length,
avg_resolution_days: ([.[].createdAt, .[].closedAt] | map(fromdateiso8601) | . as $dates | (($dates[1] - $dates[0]) / 86400)) | add / length,
by_label: group_by(.labels[].name) | map({label: .[0].labels[0].name, count: length})
}'
}
generate_metrics
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.