Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
redhat-contribution-report logo

redhat-contribution-report

maxamillion-agentskill-redhat-contribution-report

analysisClaude Codeby Adam Miller

Summary

Evaluates contributions to OSS projects across PRs, maintainership, governance, roadmap influence, and leadership roles. Supports LDAP org traversal, GitHub org membership, or both as roster sources.

Install to Claude Code

/plugin install redhat-contribution-report@maxamillion-agentskill-redhat-contribution-report

Run in Claude Code. Add the marketplace first with /plugin marketplace add maxamillion/agentskill-redhat-contribution-report if you haven't already.

README.md

Red Hat Open Source Contribution Report

A Claude Code AgentSkill that evaluates Red Hat employee contributions to open source projects.

What It Does

Given an organizational leader's email address and a list of open source projects, this skill:

1. Discovers employees by traversing Red Hat's internal LDAP hierarchy from the specified manager down through all reports 2. Resolves GitHub identities from LDAP attributes (rhatSocialURL), git commit email matching, and GitHub user search 3. Evaluates 5 KPIs per project using parallel sub-agents:

  • PR/Commit Contributions — Code authored or co-authored by Red Hat employees
  • Release Management — Release managers who are Red Hat employees
  • Maintainer/Reviewer/Approver Roles — Red Hat employees in OWNERS, CODEOWNERS, MAINTAINERS files
  • Roadmap Influence — Enhancement proposals and features led by Red Hat employees
  • Leadership Roles — Governance positions (TAC, Steering Committee, Advisory Board) held by Red Hat employees

4. Generates a report with per-employee role identification, per-project KPI scores, cross-project comparison, and confidence tracking

Prerequisites

  • Operating System: RHEL or Fedora Linux
  • Network: Red Hat internal network access (VPN)
  • Kerberos: Valid TGT (kinit your-uid@REDHAT.COM)
  • LDAP Client: openldap-clients package installed
  # Fedora
  sudo dnf install openldap-clients

  # RHEL
  sudo yum install openldap-clients
  • GitHub CLI: gh authenticated with your GitHub account
  sudo dnf install gh
  gh auth login
  • Claude Code: With this plugin installed

Installation

From Marketplace

First, add the marketplace source (inside Claude Code):

/plugin marketplace add maxamillion/agentskill-redhat-contribution-report

Then install the plugin:

/plugin install redhat-contribution-report@maxamillion-agentskill-redhat-contribution-report

From Source

Clone this repository and add it as a local plugin (inside Claude Code):

git clone https://github.com/maxamillion/agentskill-redhat-contribution-report.git
/plugin marketplace add /path/to/agentskill-redhat-contribution-report
/plugin install redhat-contribution-report@maxamillion-agentskill-redhat-contribution-report

Usage

/redhat-contribution-report <manager_email> <project1> [project2] [project3] ...

Examples

Evaluate Red Hat AI Engineering contributions to ML/AI projects:

/redhat-contribution-report manager@redhat.com kubeflow/kubeflow kserve/kserve mlflow/mlflow vllm-project/vllm

Evaluate a single project:

/redhat-contribution-report manager@redhat.com kubernetes/kubernetes

Arguments

| Argument | Required | Description | |----------|----------|-------------| | manager_email | Yes | Email of the org leader whose reports to evaluate (e.g., manager@redhat.com) | | project(s) | Yes (1+) | GitHub repositories in owner/repo format |

Output

Reports are saved to:

reports/YYYY-MM-DD-redhat-contribution-eval.md

Report Contents

  • Executive Summary with overall scores across all projects
  • Employee Roster with GitHub username resolution coverage
  • Per-Project Sections containing:
  • Employee contribution table (name, GitHub username, project roles)
  • 5 KPI evaluations with scores (1-5), evidence, and confidence levels
  • Cross-Project Comparison table
  • Data Quality & Methodology notes

Scoring Scale

Each KPI is scored 1-5:

| Score | Label | |-------|-------| | 5 | Dominant/Primary presence | | 4 | Major contributor | | 3 | Significant contributor | | 2 | Minor/peripheral involvement | | 1 | No involvement found |

Confidence Levels

| Level | Meaning | |-------|---------| | High | Data from authoritative sources (LDAP, GitHub API, governance files) | | Medium | Data from semi-structured sources or email-matched employees | | Low | Data from web search or name-matched employees | | Not Found | Could not find data for this metric |

Architecture

SKILL.md (orchestrator)
  ├── Phase 1: Input parsing & prerequisite checks
  ├── Phase 2: LDAP org traversal (GSSAPI auth)
  ├── Phase 3: GitHub username resolution
  ├── Phase 4: Parallel sub-agents (one per project)
  │     ├── KPI 1: PR/Commit analysis (gh CLI)
  │     ├── KPI 2: Release management (gh CLI)
  │     ├── KPI 3: Governance files (OWNERS, CODEOWNERS, etc.)
  │     ├── KPI 4: Roadmap issues & proposals (gh CLI)
  │     └── KPI 5: Leadership roles (governance docs + web search)
  ├── Phase 5: Result collection & merging
  └── Phase 6: Report generation

File Structure

redhat-contribution-report/
├── .claude-plugin/
│   └── plugin.json                  # Plugin identity
└── skills/
    └── redhat-contribution-report/
        ├── SKILL.md                 # Main orchestrator
        ├── assets/
        │   └── scoring-rubric.json  # KPI scoring thresholds
        └── references/
            ├── LDAP-GUIDE.md        # LDAP connection & traversal docs
            ├── DATA-SOURCES.md      # gh CLI commands by KPI
            ├── REPORT-TEMPLATE.md   # Output format specification
            └── RESEARCH-PROMPTS.md  # Sub-agent prompt templates

License

MIT

Related plugins

Browse all →