GI

github-project-board-generate-board-analytics

Generates a sprint analytics report from GitHub project metrics.

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.zip

Installs 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
Beginner

Key capabilities

  • Collect GitHub project items
  • Calculate total items
  • Group items by status
  • Group items by assignee
  • Generate a Markdown report
  • Calculate average cycle time

How it works

The skill collects GitHub project items, processes them to calculate metrics like total items, status distribution, and assignee workload, and then formats these into a Markdown report.

Inputs & outputs

You give it
a GitHub project number and owner
You get back
a Markdown sprint analytics report

When to use github-project-board-generate-board-analytics

  • Review sprint progress
  • Analyze team workload
  • Calculate average cycle time

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

When not to use it

  • When the user does not need analytics for a GitHub project board
  • When the user needs to modify project items directly

Limitations

  • The skill is a sub-skill of github-project-board.
  • The skill generates analytics, it does not modify project data.

How it compares

This skill automates the collection and reporting of GitHub project board metrics, providing a structured analytics report rather than requiring manual data extraction and calculation.

Compared to similar skills

github-project-board-generate-board-analytics side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
github-project-board-generate-board-analytics (this skill)04moReviewBeginner
retro05moReviewIntermediate
prompt-analysis84moReviewBeginner
bv32moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry