Publish and manage research papers on Hugging Face Hub. Supports creating paper pages, linking papers to models/datasets, claiming authorship, and generating professional markdown-based research articles.
/plugin marketplace add huggingface/skills/plugin install hugging-face-paper-publisher@huggingface-skillsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
examples/example_usage.mdreferences/quick_reference.mdscripts/paper_manager.pytemplates/arxiv.mdtemplates/ml-report.mdtemplates/modern.mdtemplates/standard.mdThis skill provides comprehensive tools for AI engineers and researchers to publish, manage, and link research papers on the Hugging Face Hub. It streamlines the workflow from paper creation to publication, including integration with arXiv, model/dataset linking, and authorship management.
1.0.0
The skill includes Python scripts in scripts/ for paper publishing operations.
uv add huggingface_hub pyyaml requests markdown python-dotenvHF_TOKEN environment variable with Write-access tokensource .venv/bin/activateAdd a paper to Hugging Face Paper Pages from arXiv.
Basic Usage:
python scripts/paper_manager.py index \
--arxiv-id "2301.12345"
Check If Paper Exists:
python scripts/paper_manager.py check \
--arxiv-id "2301.12345"
Direct URL Access:
You can also visit https://huggingface.co/papers/{arxiv-id} directly to index a paper.
Add paper references to model or dataset README with proper YAML metadata.
Add to Model Card:
python scripts/paper_manager.py link \
--repo-id "username/model-name" \
--repo-type "model" \
--arxiv-id "2301.12345"
Add to Dataset Card:
python scripts/paper_manager.py link \
--repo-id "username/dataset-name" \
--repo-type "dataset" \
--arxiv-id "2301.12345"
Add Multiple Papers:
python scripts/paper_manager.py link \
--repo-id "username/model-name" \
--repo-type "model" \
--arxiv-ids "2301.12345,2302.67890,2303.11111"
With Custom Citation:
python scripts/paper_manager.py link \
--repo-id "username/model-name" \
--repo-type "model" \
--arxiv-id "2301.12345" \
--citation "$(cat citation.txt)"
When you add an arXiv paper link to a model or dataset README:
arxiv:<PAPER_ID> is automatically added to the repositoryVerify your authorship on papers published on Hugging Face.
Start Claim Process:
python scripts/paper_manager.py claim \
--arxiv-id "2301.12345" \
--email "your.email@institution.edu"
Manual Process:
https://huggingface.co/papers/{arxiv-id}Check Authorship Status:
python scripts/paper_manager.py check-authorship \
--arxiv-id "2301.12345"
Control which verified papers appear on your public profile.
List Your Papers:
python scripts/paper_manager.py list-my-papers
Toggle Visibility:
python scripts/paper_manager.py toggle-visibility \
--arxiv-id "2301.12345" \
--show true
Manage in Settings: Navigate to your account settings → Papers section to toggle "Show on profile" for each paper.
Generate a professional markdown-based research paper using modern templates.
Create from Template:
python scripts/paper_manager.py create \
--template "standard" \
--title "Your Paper Title" \
--output "paper.md"
Available Templates:
standard - Traditional scientific paper structuremodern - Clean, web-friendly format inspired by Distillarxiv - arXiv-style formattingml-report - Machine learning experiment reportGenerate Complete Paper:
python scripts/paper_manager.py create \
--template "modern" \
--title "Fine-Tuning Large Language Models with LoRA" \
--authors "Jane Doe, John Smith" \
--abstract "$(cat abstract.txt)" \
--output "paper.md"
Convert to HTML:
python scripts/paper_manager.py convert \
--input "paper.md" \
--output "paper.html" \
--style "modern"
Standard Research Paper Sections:
---
title: Your Paper Title
authors: Jane Doe, John Smith
affiliations: University X, Lab Y
date: 2025-01-15
arxiv: 2301.12345
tags: [machine-learning, nlp, fine-tuning]
---
# Abstract
Brief summary of the paper...
# 1. Introduction
Background and motivation...
# 2. Related Work
Previous research and context...
# 3. Methodology
Approach and implementation...
# 4. Experiments
Setup, datasets, and procedures...
# 5. Results
Findings and analysis...
# 6. Discussion
Interpretation and implications...
# 7. Conclusion
Summary and future work...
# References
Modern Template Features:
Index Paper:
python scripts/paper_manager.py index --arxiv-id "2301.12345"
Link to Repository:
python scripts/paper_manager.py link \
--repo-id "username/repo-name" \
--repo-type "model|dataset|space" \
--arxiv-id "2301.12345" \
[--citation "Full citation text"] \
[--create-pr]
Claim Authorship:
python scripts/paper_manager.py claim \
--arxiv-id "2301.12345" \
--email "your.email@edu"
Manage Visibility:
python scripts/paper_manager.py toggle-visibility \
--arxiv-id "2301.12345" \
--show true|false
Create Research Article:
python scripts/paper_manager.py create \
--template "standard|modern|arxiv|ml-report" \
--title "Paper Title" \
[--authors "Author1, Author2"] \
[--abstract "Abstract text"] \
[--output "filename.md"]
Convert Markdown to HTML:
python scripts/paper_manager.py convert \
--input "paper.md" \
--output "paper.html" \
[--style "modern|classic"]
Check Paper Status:
python scripts/paper_manager.py check --arxiv-id "2301.12345"
List Your Papers:
python scripts/paper_manager.py list-my-papers
Search Papers:
python scripts/paper_manager.py search --query "transformer attention"
When linking papers to models or datasets, proper YAML frontmatter is required:
Model Card Example:
---
language:
- en
license: apache-2.0
tags:
- text-generation
- transformers
- llm
library_name: transformers
---
# Model Name
This model is based on the approach described in [Our Paper](https://arxiv.org/abs/2301.12345).
## Citation
```bibtex
@article{doe2023paper,
title={Your Paper Title},
author={Doe, Jane and Smith, John},
journal={arXiv preprint arXiv:2301.12345},
year={2023}
}
**Dataset Card Example:**
```yaml
---
language:
- en
license: cc-by-4.0
task_categories:
- text-generation
- question-answering
size_categories:
- 10K<n<100K
---
# Dataset Name
Dataset introduced in [Our Paper](https://arxiv.org/abs/2301.12345).
For more details, see the [paper page](https://huggingface.co/papers/2301.12345).
The Hub automatically extracts arXiv IDs from these links and creates arxiv:2301.12345 tags.
Workflow 1: Publish New Research
# 1. Create research article
python scripts/paper_manager.py create \
--template "modern" \
--title "Novel Fine-Tuning Approach" \
--output "paper.md"
# 2. Edit paper.md with your content
# 3. Submit to arXiv (external process)
# Upload to arxiv.org, get arXiv ID
# 4. Index on Hugging Face
python scripts/paper_manager.py index --arxiv-id "2301.12345"
# 5. Link to your model
python scripts/paper_manager.py link \
--repo-id "your-username/your-model" \
--repo-type "model" \
--arxiv-id "2301.12345"
# 6. Claim authorship
python scripts/paper_manager.py claim \
--arxiv-id "2301.12345" \
--email "your.email@edu"
Workflow 2: Link Existing Paper
# 1. Check if paper exists
python scripts/paper_manager.py check --arxiv-id "2301.12345"
# 2. Index if needed
python scripts/paper_manager.py index --arxiv-id "2301.12345"
# 3. Link to multiple repositories
python scripts/paper_manager.py link \
--repo-id "username/model-v1" \
--repo-type "model" \
--arxiv-id "2301.12345"
python scripts/paper_manager.py link \
--repo-id "username/training-data" \
--repo-type "dataset" \
--arxiv-id "2301.12345"
python scripts/paper_manager.py link \
--repo-id "username/demo-space" \
--repo-type "space" \
--arxiv-id "2301.12345"
Workflow 3: Update Model with Paper Reference
# 1. Get current README
huggingface-cli download username/model-name README.md
# 2. Add paper link
python scripts/paper_manager.py link \
--repo-id "username/model-name" \
--repo-type "model" \
--arxiv-id "2301.12345" \
--citation "Full citation for the paper"
# The script will:
# - Add YAML metadata if missing
# - Insert arXiv link in README
# - Add formatted citation
# - Preserve existing content
Paper Indexing
Metadata Management
Authorship
Repository Linking
Research Articles
Batch Link Papers:
# Link multiple papers to one repository
for arxiv_id in "2301.12345" "2302.67890" "2303.11111"; do
python scripts/paper_manager.py link \
--repo-id "username/model-name" \
--repo-type "model" \
--arxiv-id "$arxiv_id"
done
Extract Paper Info:
# Get paper metadata from arXiv
python scripts/paper_manager.py info \
--arxiv-id "2301.12345" \
--format "json"
Generate Citation:
# Create BibTeX citation
python scripts/paper_manager.py citation \
--arxiv-id "2301.12345" \
--format "bibtex"
Validate Links:
# Check all paper links in a repository
python scripts/paper_manager.py validate \
--repo-id "username/model-name" \
--repo-type "model"
Issue: "Paper not found on Hugging Face"
hf.co/papers/{arxiv-id} to trigger indexingIssue: "Authorship claim not verified"
Issue: "arXiv tag not appearing"
Issue: "Cannot link to repository"
Issue: "Template rendering errors"
This skill complements tfrere's research article template by providing:
You can use tfrere's template for writing, then use this skill to publish and link the paper on Hugging Face Hub.
Pattern 1: New Paper Publication
# Write → Publish → Index → Link
python scripts/paper_manager.py create --template modern --output paper.md
# (Submit to arXiv)
python scripts/paper_manager.py index --arxiv-id "2301.12345"
python scripts/paper_manager.py link --repo-id "user/model" --arxiv-id "2301.12345"
Pattern 2: Existing Paper Discovery
# Search → Check → Link
python scripts/paper_manager.py search --query "transformers"
python scripts/paper_manager.py check --arxiv-id "2301.12345"
python scripts/paper_manager.py link --repo-id "user/model" --arxiv-id "2301.12345"
Pattern 3: Author Portfolio Management
# Claim → Verify → Organize
python scripts/paper_manager.py claim --arxiv-id "2301.12345"
python scripts/paper_manager.py list-my-papers
python scripts/paper_manager.py toggle-visibility --arxiv-id "2301.12345" --show true
Python Script Example:
from scripts.paper_manager import PaperManager
pm = PaperManager(hf_token="your_token")
# Index paper
pm.index_paper("2301.12345")
# Link to model
pm.link_paper(
repo_id="username/model",
repo_type="model",
arxiv_id="2301.12345",
citation="Full citation text"
)
# Check status
status = pm.check_paper("2301.12345")
print(status)
Planned features for future versions:
Use when working with Payload CMS projects (payload.config.ts, collections, fields, hooks, access control, Payload API). Use when debugging validation errors, security issues, relationship queries, transactions, or hook behavior.