Sub-skill of github-swarm-pr: Metrics and Reporting.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill metrics-and-reporting --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Metrics And Reporting?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-metrics-and-reporting)More formats (shields.io, HTML) on the badges page.
---
name: github-swarm-pr-metrics-and-reporting
description: 'Sub-skill of github-swarm-pr: Metrics and Reporting.'
version: 1.0.0
category: development
type: reference
scripts_exempt: true
---
# Metrics and Reporting
## Metrics and Reporting
```bash
# Generate PR swarm report
generate_report() {
local PR_NUM=$1
gh pr view $PR_NUM --json \
title,additions,deletions,reviews,comments,createdAt,updatedAt | \
jq '{
title: .title,
size: (.additions + .deletions),
reviews: (.reviews | length),
comments: (.comments | length),
age_hours: ((now - (.createdAt | fromdateiso8601)) / 3600 | floor)
}'
}
generate_report 123
```
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!