Agent skill

h-index-guide

Understanding and calculating research impact metrics

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill h-index-guide --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/literature/metadata/h-index-guide/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# H-Index and Research Impact Metrics Guide Understand, calculate, and responsibly interpret bibliometric indicators including h-index, impact factor, and related metrics. ## Core Bibliometric Indicators ### H-Index The h-index (Hirsch index) is defined as: a researcher has an h-index of h if h of their papers have each been cited at least h times. **Example**: If a researcher has published 20 papers with citation counts [120, 80, 55, 40, 22, 18, 15, 12, 10, 8, 5, 3, 2, 2, 1, 1, 0, 0, 0, 0], their h-index is 10 (10 papers with at least 10 citations each). ```python def calculate_h_index(citation_counts): """Calculate h-index from a list of citation counts.""" sorted_counts = sorted(citation_counts, reverse=True) h = 0 for i, count in enumerate(sorted_counts): if count >= i + 1: h = i + 1 else: break return h # Example citations = [120, 80, 55, 40, 22, 18, 15, 12, 10, 8, 5, 3, 2, 2, 1, 1, 0, 0, 0, 0] print(f"h-index: {calculate_h_index(citations)}") # Output: 10 ``` ### Related Author-Level Metrics | Metric | Definition | Advantage | |--------|-----------|-----------| | **h-index** | h papers with >= h citations | Simple, robust to outliers | | **i10-index** | Number of papers with

What's inside
Steps it walks through
  1. Core Bibliometric Indicators
  2. H-Index
  3. Related Author-Level Metrics
  4. Journal-Level Metrics
  5. Journal Impact Factor (JIF)
  6. Looking Up Journal Metrics
  7. Calculating Your Own H-Index
  8. From Google Scholar
  9. From OpenAlex
  10. Responsible Use of Metrics
  11. Known Limitations
  12. DORA Declaration
  13. Best Practices for Reporting
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the h-index-guide skill do?

Understanding and calculating research impact metrics

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill h-index-guide --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going