Agent Skillswaybarrios/opencode-power-pack › huggingface-paper-publisher

huggingface-paper-publisher

GitHub

用于在 Hugging Face Hub 发布、管理和关联研究论文。支持从 arXiv 索引、链接模型/数据集、认领作者身份、生成专业 Markdown 研究文章及搜索验证等功能。

skills/huggingface-paper-publisher/SKILL.md waybarrios/opencode-power-pack

Trigger Scenarios

需要在 Hugging Face Hub 发布或管理研究论文 需要将论文与模型或数据集进行关联 需要生成符合规范的学术文章模板

Install

npx skills add waybarrios/opencode-power-pack --skill huggingface-paper-publisher -g -y
More Options

Use without installing

npx skills use waybarrios/opencode-power-pack@huggingface-paper-publisher

指定 Agent (Claude Code)

npx skills add waybarrios/opencode-power-pack --skill huggingface-paper-publisher -a claude-code -g -y

安装 repo 全部 skill

npx skills add waybarrios/opencode-power-pack --all -g -y

预览 repo 内 skill

npx skills add waybarrios/opencode-power-pack --list

SKILL.md

Frontmatter
{
    "name": "huggingface-paper-publisher",
    "license": "Apache-2.0 (modified; see UPSTREAMS.json)",
    "description": "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."
}

Overview

Publish, manage, and link research papers on the Hugging Face Hub — arXiv indexing, model/dataset linking, authorship management, and professional markdown research-article generation.

Integration with the HF Ecosystem

Paper Pages (index/discover), arXiv integration (auto-indexing from arXiv IDs), model/dataset linking via metadata, authorship verification, and a research-article template.

Dependencies

The included scripts/paper_manager.py uses PEP 723 inline dependencies — prefer uv run over manual environment setup. Requires HF_TOKEN (write access) in the environment. All paths in the commands below are relative to this skill's directorycd there first, or use the full path.

Commands Reference

Index a paper from arXiv (or visit https://huggingface.co/papers/{arxiv-id} directly):

uv run scripts/paper_manager.py index --arxiv-id "2301.12345"
uv run scripts/paper_manager.py check --arxiv-id "2301.12345"     # check if already indexed

Link a paper to a model/dataset/space — the Hub extracts the arXiv ID and adds an arxiv:<PAPER_ID> tag, making the repo discoverable from the Paper Page:

uv run scripts/paper_manager.py link \
  --repo-id "username/repo-name" --repo-type "model|dataset|space" \
  --arxiv-id "2301.12345" [--arxiv-ids "id1,id2,id3"] \
  [--citation "Full citation text"] [--create-pr]

Claim authorship (or manually: visit the paper page, click your name, "Claim authorship", await admin verification):

uv run scripts/paper_manager.py claim --arxiv-id "2301.12345" --email "your.email@institution.edu"
uv run scripts/paper_manager.py check-authorship --arxiv-id "2301.12345"

Manage profile visibility (or via account settings → Papers):

uv run scripts/paper_manager.py list-my-papers
uv run scripts/paper_manager.py toggle-visibility --arxiv-id "2301.12345" --show true|false

Create a research article from a template (standard — traditional structure; modern — Distill-inspired, dynamic TOC, responsive; arxiv — arXiv-style; ml-report — ML experiment report):

uv run scripts/paper_manager.py create \
  --template "standard|modern|arxiv|ml-report" --title "Paper Title" \
  [--authors "Author1, Author2"] [--abstract "Abstract text"] [--output "paper.md"]
uv run scripts/paper_manager.py convert --input "paper.md" --output "paper.html" [--style "modern|classic"]

Search, inspect, validate:

uv run scripts/paper_manager.py search --query "transformer attention"
uv run scripts/paper_manager.py info --arxiv-id "2301.12345" --format "json"
uv run scripts/paper_manager.py citation --arxiv-id "2301.12345" --format "bibtex"
uv run scripts/paper_manager.py validate --repo-id "username/model-name" --repo-type "model"

Standard Paper Template Structure

---
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
# 1. Introduction
# 2. Related Work
# 3. Methodology
# 4. Experiments
# 5. Results
# 6. Discussion
# 7. Conclusion
# References

The modern template adds a dynamic table of contents, responsive layout, code highlighting, interactive figures, LaTeX math, and citation/author-affiliation linking.

YAML Metadata for Linked Cards

Model and dataset cards need proper frontmatter for the Hub to extract the arXiv tag correctly:

---
language: [en]
license: apache-2.0
tags: [text-generation, transformers, llm]
library_name: transformers
---

Followed by a # Model Name section referencing [Our Paper](https://arxiv.org/abs/2301.12345) and a ## Citation section with a fenced bibtex block containing the standard @article{...} entry (author, title, journal, year).

Dataset cards follow the same pattern with task_categories/size_categories instead of library_name.

Common Workflows

Publish new research: create the article -> submit to arXiv externally -> index -> link to the model -> claim authorship.

Link an existing paper to multiple repos: check -> index if needed -> link once per model/dataset/space repo-id.

Update a model with a paper reference: hf download user/model README.md -> link with --citation — the script adds YAML metadata if missing, inserts the arXiv link, adds the formatted citation, and preserves existing content.

Batch-link multiple papers to one repo:

for arxiv_id in "2301.12345" "2302.67890"; do
  uv run scripts/paper_manager.py link --repo-id "username/model-name" --repo-type "model" --arxiv-id "$arxiv_id"
done

Best Practices

Index papers as soon as published; keep citations consistent across related repos. Add YAML frontmatter with correct license and task tags to every card. Claim authorship with an institutional email and keep visibility settings current. Link papers to every relevant model/dataset/Space, with BibTeX citations. Use one template consistently within a project, and include code/data links.

Error Handling & Troubleshooting

  • Paper not found: arXiv ID not indexed yet — visit hf.co/papers/{arxiv-id} to trigger indexing.
  • Permission denied: HF_TOKEN lacks write access to the repository.
  • Invalid YAML: malformed frontmatter in the README.
  • Authorship claim failed / not verified: email doesn't match author records, or awaiting admin review.
  • Already claimed: another user has claimed authorship — contact HF support with proof if this is wrong.
  • arXiv tag not appearing: ensure the README includes a properly formatted arXiv URL.
  • Rate limiting: too many API requests in a short time — space out batch operations.

Resources

Version History

  • f198a18 Current 2026-08-16 09:12

Same Skill Collection

skills/agentic-actions-auditor/SKILL.md
skills/agents-md-revise/SKILL.md
skills/ai-slop/SKILL.md
skills/code-architect/SKILL.md
skills/code-explorer/SKILL.md
skills/code-quality/SKILL.md
skills/code-review/SKILL.md
skills/code-reviewer/SKILL.md
skills/codeql/SKILL.md
skills/design-patterns/SKILL.md
skills/differential-review/SKILL.md
skills/feature-dev/SKILL.md
skills/fp-check/SKILL.md
skills/frontend-design/SKILL.md
skills/hf-cli/SKILL.md
skills/hf-cloud-aws-context-discovery/SKILL.md
skills/hf-cloud-python-env-setup/SKILL.md
skills/hf-cloud-sagemaker-deployment-planner/SKILL.md
skills/hf-cloud-sagemaker-iam-preflight/SKILL.md
skills/hf-cloud-sagemaker-production-defaults/SKILL.md
skills/hf-cloud-serving-image-selection/SKILL.md
skills/hf-mem/SKILL.md
skills/huggingface-best/SKILL.md
skills/huggingface-community-evals/SKILL.md
skills/huggingface-datasets/SKILL.md
skills/huggingface-gradio/SKILL.md
skills/huggingface-llm-trainer/SKILL.md
skills/huggingface-local-models/SKILL.md
skills/huggingface-lora-space-builder/SKILL.md
skills/huggingface-papers/SKILL.md
skills/huggingface-spaces/SKILL.md
skills/huggingface-tool-builder/SKILL.md
skills/huggingface-trackio/SKILL.md
skills/huggingface-vision-trainer/SKILL.md
skills/huggingface-zerogpu/SKILL.md
skills/insecure-defaults/SKILL.md
skills/mcp-builder/SKILL.md
skills/paper-summarizer/SKILL.md
skills/sarif-parsing/SKILL.md
skills/security-review/SKILL.md
skills/security-threat-model/SKILL.md
skills/semgrep-rule-creator/SKILL.md
skills/semgrep-rule-variant-creator/SKILL.md
skills/semgrep/SKILL.md
skills/sharp-edges/SKILL.md
skills/skill-creator/SKILL.md
skills/supply-chain-risk-auditor/SKILL.md
skills/train-sentence-transformers/SKILL.md
skills/transformers-js/SKILL.md

Metadata

Files
0
Version
f198a18
Hash
786556dd
Indexed
2026-08-16 09:12

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-16 17:36
浙ICP备14020137号-1 $mapa de visitantes$