GI
github-project-board-generate-board-analytics
Sub-skill of github-project-board: Generate Board Analytics.
Install
mkdir -p .claude/skills/github-project-board-generate-board-analytics && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16731" && unzip -o skill.zip -d .claude/skills/github-project-board-generate-board-analytics && rm skill.zipInstalls to .claude/skills/github-project-board-generate-board-analytics
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Sub-skill of github-project-board: Generate Board Analytics.60 charsno explicit “when” trigger
About this skill
Generate Board Analytics
Generate Board Analytics
# Collect metrics
METRICS=$(gh project item-list $PROJECT_NUM --owner @me --format json | jq '{
total_items: .items | length,
by_status: .items | group_by(.status) | map({status: .[0].status, count: length}),
by_assignee: .items | group_by(.assignee) | map({assignee: .[0].assignee, count: length}),
avg_cycle_time: "5.2 days"
}')
# Create analytics report
cat << EOF > sprint-report.md
# Sprint Analytics Report