GitHub Copilot · Arazzo Workflow

GitHub Copilot Team Metrics Report

Version 1.0.0

Pull organization-wide Copilot metrics, then drill into a specific team's aggregated metrics.

1 workflow 1 source API 1 provider
View Spec View on GitHub AgentsArtificial IntelligenceCode GenerationCode ReviewCoding AgentsCustom InstructionsDeveloper ToolsExtensionsIDEMachine-LearningMCPMetricsProductivityArazzoWorkflows

Provider

github-copilot

Workflows

team-metrics-report
Org-wide Copilot metrics, then branch into a single team's metrics.
Retrieves aggregated org Copilot metrics, branches to end when no metric days were returned, and otherwise fetches the supplied team's aggregated metrics for the same date window.
2 steps inputs: org, since, teamSlug, until outputs: orgActiveUsers, teamActiveUsers, teamEngagedUsers
1
getOrgMetrics
Retrieve aggregated Copilot metrics for the whole organization broken down by language and IDE editor. Requires at least five members with active licenses; reflects previous-day data.
2
getTeamMetrics
Retrieve aggregated Copilot metrics for the specified team within the organization for the same date window. Requires at least five team members with active licenses.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: GitHub Copilot Team Metrics Report
  summary: Pull organization-wide Copilot metrics, then drill into a specific team's aggregated metrics.
  description: >-
    A comparison flow that contrasts organization-wide Copilot adoption against
    a single team. The workflow first retrieves aggregated Copilot metrics for
    the whole organization, then branches: when the organization returned at
    least one day of metrics it drills into the supplied team's aggregated
    metrics for the same window, otherwise it ends. Every step spells out its
    request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-4280.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-4280.30
      capability_name: Product Usage Analytics
      spec: github-copilot-copilot-metrics-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: copilotMetricsApi
  url: ../openapi/github-copilot-copilot-metrics-api-openapi.yml
  type: openapi
workflows:
- workflowId: team-metrics-report
  summary: Org-wide Copilot metrics, then branch into a single team's metrics.
  description: >-
    Retrieves aggregated org Copilot metrics, branches to end when no metric
    days were returned, and otherwise fetches the supplied team's aggregated
    metrics for the same date window.
  inputs:
    type: object
    required:
    - org
    - teamSlug
    properties:
      org:
        type: string
        description: The organization name (case-insensitive).
      teamSlug:
        type: string
        description: The slug of the team to drill into.
      since:
        type: string
        description: Show metrics since this date (ISO 8601 YYYY-MM-DD, max 100 days back).
      until:
        type: string
        description: Show metrics until this date (ISO 8601 YYYY-MM-DD).
  steps:
  - stepId: getOrgMetrics
    description: >-
      Retrieve aggregated Copilot metrics for the whole organization broken down
      by language and IDE editor. Requires at least five members with active
      licenses; reflects previous-day data.
    operationId: getCopilotMetricsForOrganization
    parameters:
    - name: org
      in: path
      value: $inputs.org
    - name: since
      in: query
      value: $inputs.since
    - name: until
      in: query
      value: $inputs.until
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      orgFirstDay: $response.body#/0/date
      orgActiveUsers: $response.body#/0/total_active_users
      orgEngagedUsers: $response.body#/0/total_engaged_users
    onSuccess:
    - name: orgHasMetrics
      type: goto
      stepId: getTeamMetrics
      criteria:
      - context: $response.body
        condition: $.length > 0
        type: jsonpath
    - name: orgNoMetrics
      type: end
      criteria:
      - context: $response.body
        condition: $.length == 0
        type: jsonpath
  - stepId: getTeamMetrics
    description: >-
      Retrieve aggregated Copilot metrics for the specified team within the
      organization for the same date window. Requires at least five team members
      with active licenses.
    operationId: getCopilotMetricsForTeam
    parameters:
    - name: org
      in: path
      value: $inputs.org
    - name: team_slug
      in: path
      value: $inputs.teamSlug
    - name: since
      in: query
      value: $inputs.since
    - name: until
      in: query
      value: $inputs.until
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      teamFirstDay: $response.body#/0/date
      teamActiveUsers: $response.body#/0/total_active_users
      teamEngagedUsers: $response.body#/0/total_engaged_users
  outputs:
    orgActiveUsers: $steps.getOrgMetrics.outputs.orgActiveUsers
    teamActiveUsers: $steps.getTeamMetrics.outputs.teamActiveUsers
    teamEngagedUsers: $steps.getTeamMetrics.outputs.teamEngagedUsers

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/github-copilot-team-metrics-report-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.