{"id":"92f9aff7-7332-4bee-b65d-ecac13e93500","shortId":"8zpsPq","kind":"skill","title":"hugging-face-paper-publisher","tagline":"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.","description":"# Overview\n\n## When to Use\nUse this skill when a user wants to publish, link, index, or manage research papers on the Hugging Face Hub.\nThis 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.\n\n## Integration with HF Ecosystem\n- **Paper Pages**: Index and discover papers on Hugging Face Hub\n- **arXiv Integration**: Automatic paper indexing from arXiv IDs\n- **Model/Dataset Linking**: Connect papers to relevant artifacts through metadata\n- **Authorship Verification**: Claim and verify paper authorship\n- **Research Article Template**: Generate professional, modern scientific papers\n\n# Version\n1.0.0\n\n# Dependencies\nThe included script uses PEP 723 inline dependencies. Prefer `uv run` over\nmanual environment setup.\n\n- huggingface_hub>=0.26.0\n- pyyaml>=6.0.3\n- requests>=2.32.5\n- markdown>=3.5.0\n- python-dotenv>=1.2.1\n\n# Core Capabilities\n\n## 1. Paper Page Management\n- **Index Papers**: Add papers to Hugging Face from arXiv\n- **Claim Authorship**: Verify and claim authorship on published papers\n- **Manage Visibility**: Control which papers appear on your profile\n- **Paper Discovery**: Find and explore papers in the HF ecosystem\n\n## 2. Link Papers to Artifacts\n- **Model Cards**: Add paper citations to model metadata\n- **Dataset Cards**: Link papers to datasets via README\n- **Automatic Tagging**: Hub auto-generates arxiv:<PAPER_ID> tags\n- **Citation Management**: Maintain proper attribution and references\n\n## 3. Research Article Creation\n- **Markdown Templates**: Generate professional paper formatting\n- **Modern Design**: Clean, readable research article layouts\n- **Dynamic TOC**: Automatic table of contents generation\n- **Section Structure**: Standard scientific paper organization\n- **LaTeX Math**: Support for equations and technical notation\n\n## 4. Metadata Management\n- **YAML Frontmatter**: Proper model/dataset card metadata\n- **Citation Tracking**: Maintain paper references across repositories\n- **Version Control**: Track paper updates and revisions\n- **Multi-Paper Support**: Link multiple papers to single artifacts\n\n# Usage Instructions\n\nThe skill includes Python scripts in `scripts/` for paper publishing operations.\n\n### Prerequisites\n- Run scripts with `uv run` (dependencies are resolved from the script header)\n- Set `HF_TOKEN` environment variable with Write-access token\n\n> **All paths are relative to the directory containing this SKILL.md\nfile.**\n> Before running any script, first `cd` to that directory or use the full\npath.\n\n\n### Method 1: Index Paper from arXiv\n\nAdd a paper to Hugging Face Paper Pages from arXiv.\n\n**Basic Usage:**\n```bash\nuv run scripts/paper_manager.py index \\\n  --arxiv-id \"2301.12345\"\n```\n\n**Check If Paper Exists:**\n```bash\nuv run scripts/paper_manager.py check \\\n  --arxiv-id \"2301.12345\"\n```\n\n**Direct URL Access:**\nYou can also visit `https://huggingface.co/papers/{arxiv-id}` directly to index a paper.\n\n### Method 2: Link Paper to Model/Dataset\n\nAdd paper references to model or dataset README with proper YAML metadata.\n\n**Add to Model Card:**\n```bash\nuv run scripts/paper_manager.py link \\\n  --repo-id \"username/model-name\" \\\n  --repo-type \"model\" \\\n  --arxiv-id \"2301.12345\"\n```\n\n**Add to Dataset Card:**\n```bash\nuv run scripts/paper_manager.py link \\\n  --repo-id \"username/dataset-name\" \\\n  --repo-type \"dataset\" \\\n  --arxiv-id \"2301.12345\"\n```\n\n**Add Multiple Papers:**\n```bash\nuv run scripts/paper_manager.py link \\\n  --repo-id \"username/model-name\" \\\n  --repo-type \"model\" \\\n  --arxiv-ids \"2301.12345,2302.67890,2303.11111\"\n```\n\n**With Custom Citation:**\n```bash\nuv run scripts/paper_manager.py link \\\n  --repo-id \"username/model-name\" \\\n  --repo-type \"model\" \\\n  --arxiv-id \"2301.12345\" \\\n  --citation \"$(cat citation.txt)\"\n```\n\n#### How Linking Works\n\nWhen you add an arXiv paper link to a model or dataset README:\n1. The Hub extracts the arXiv ID from the link\n2. A tag `arxiv:<PAPER_ID>` is automatically added to the repository\n3. Users can click the tag to view the Paper Page\n4. The Paper Page shows all models/datasets citing this paper\n5. Papers are discoverable through filters and search\n\n### Method 3: Claim Authorship\n\nVerify your authorship on papers published on Hugging Face.\n\n**Start Claim Process:**\n```bash\nuv run scripts/paper_manager.py claim \\\n  --arxiv-id \"2301.12345\" \\\n  --email \"your.email@institution.edu\"\n```\n\n**Manual Process:**\n1. Navigate to your paper's page: `https://huggingface.co/papers/{arxiv-id}`\n2. Find your name in the author list\n3. Click your name and select \"Claim authorship\"\n4. Wait for admin team verification\n\n**Check Authorship Status:**\n```bash\nuv run scripts/paper_manager.py check-authorship \\\n  --arxiv-id \"2301.12345\"\n```\n\n### Method 4: Manage Paper Visibility\n\nControl which verified papers appear on your public profile.\n\n**List Your Papers:**\n```bash\nuv run scripts/paper_manager.py list-my-papers\n```\n\n**Toggle Visibility:**\n```bash\nuv run scripts/paper_manager.py toggle-visibility \\\n  --arxiv-id \"2301.12345\" \\\n  --show true\n```\n\n**Manage in Settings:**\nNavigate to your account settings → Papers section to toggle \"Show on profile\" for each paper.\n\n### Method 5: Create Research Article\n\nGenerate a professional markdown-based research paper using modern templates.\n\n**Create from Template:**\n```bash\nuv run scripts/paper_manager.py create \\\n  --template \"standard\" \\\n  --title \"Your Paper Title\" \\\n  --output \"paper.md\"\n```\n\n**Available Templates:**\n- `standard` - Traditional scientific paper structure\n- `modern` - Clean, web-friendly format inspired by Distill\n- `arxiv` - arXiv-style formatting\n- `ml-report` - Machine learning experiment report\n\n**Generate Complete Paper:**\n```bash\nuv run scripts/paper_manager.py create \\\n  --template \"modern\" \\\n  --title \"Fine-Tuning Large Language Models with LoRA\" \\\n  --authors \"Jane Doe, John Smith\" \\\n  --abstract \"$(cat abstract.txt)\" \\\n  --output \"paper.md\"\n```\n\n**Convert to HTML:**\n```bash\nuv run scripts/paper_manager.py convert \\\n  --input \"paper.md\" \\\n  --output \"paper.html\" \\\n  --style \"modern\"\n```\n\n### Paper Template Structure\n\n**Standard Research Paper Sections:**\n```markdown\n---\ntitle: Your Paper Title\nauthors: Jane Doe, John Smith\naffiliations: University X, Lab Y\ndate: 2025-01-15\narxiv: 2301.12345\ntags: [machine-learning, nlp, fine-tuning]\n---\n\n# Abstract\nBrief summary of the paper...\n\n# 1. Introduction\nBackground and motivation...\n\n# 2. Related Work\nPrevious research and context...\n\n# 3. Methodology\nApproach and implementation...\n\n# 4. Experiments\nSetup, datasets, and procedures...\n\n# 5. Results\nFindings and analysis...\n\n# 6. Discussion\nInterpretation and implications...\n\n# 7. Conclusion\nSummary and future work...\n\n# References\n```\n\n**Modern Template Features:**\n- Dynamic table of contents\n- Responsive design for web viewing\n- Code syntax highlighting\n- Interactive figures and charts\n- Math equation rendering (LaTeX)\n- Citation management\n- Author affiliation linking\n\n### Commands Reference\n\n**Index Paper:**\n```bash\nuv run scripts/paper_manager.py index --arxiv-id \"2301.12345\"\n```\n\n**Link to Repository:**\n```bash\nuv run scripts/paper_manager.py link \\\n  --repo-id \"username/repo-name\" \\\n  --repo-type \"model|dataset|space\" \\\n  --arxiv-id \"2301.12345\" \\\n  [--citation \"Full citation text\"] \\\n  [--create-pr]\n```\n\n**Claim Authorship:**\n```bash\nuv run scripts/paper_manager.py claim \\\n  --arxiv-id \"2301.12345\" \\\n  --email \"your.email@edu\"\n```\n\n**Manage Visibility:**\n```bash\nuv run scripts/paper_manager.py toggle-visibility \\\n  --arxiv-id \"2301.12345\" \\\n  --show true|false\n```\n\n**Create Research Article:**\n```bash\nuv run scripts/paper_manager.py create \\\n  --template \"standard|modern|arxiv|ml-report\" \\\n  --title \"Paper Title\" \\\n  [--authors \"Author1, Author2\"] \\\n  [--abstract \"Abstract text\"] \\\n  [--output \"filename.md\"]\n```\n\n**Convert Markdown to HTML:**\n```bash\nuv run scripts/paper_manager.py convert \\\n  --input \"paper.md\" \\\n  --output \"paper.html\" \\\n  [--style \"modern|classic\"]\n```\n\n**Check Paper Status:**\n```bash\nuv run scripts/paper_manager.py check --arxiv-id \"2301.12345\"\n```\n\n**List Your Papers:**\n```bash\nuv run scripts/paper_manager.py list-my-papers\n```\n\n**Search Papers:**\n```bash\nuv run scripts/paper_manager.py search --query \"transformer attention\"\n```\n\n### YAML Metadata Format\n\nWhen linking papers to models or datasets, proper YAML frontmatter is required:\n\n**Model Card Example:**\n```yaml\n---\nlanguage:\n  - en\nlicense: apache-2.0\ntags:\n  - text-generation\n  - transformers\n  - llm\nlibrary_name: transformers\n---\n\n# Model Name\n\nThis model is based on the approach described in [Our Paper](https://arxiv.org/abs/2301.12345).\n\n## Citation\n\n```bibtex\n@article{doe2023paper,\n  title={Your Paper Title},\n  author={Doe, Jane and Smith, John},\n  journal={arXiv preprint arXiv:2301.12345},\n  year={2023}\n}\n```\n```\n\n**Dataset Card Example:**\n```yaml\n---\nlanguage:\n  - en\nlicense: cc-by-4.0\ntask_categories:\n  - text-generation\n  - question-answering\nsize_categories:\n  - 10K<n<100K\n---\n\n# Dataset Name\n\nDataset introduced in [Our Paper](https://arxiv.org/abs/2301.12345).\n\nFor more details, see the [paper page](https://huggingface.co/papers/2301.12345).\n```\n\nThe Hub automatically extracts arXiv IDs from these links and creates `arxiv:2301.12345` tags.\n\n### Integration Examples\n\n**Workflow 1: Publish New Research**\n```bash\n# 1. Create research article\nuv run scripts/paper_manager.py create \\\n  --template \"modern\" \\\n  --title \"Novel Fine-Tuning Approach\" \\\n  --output \"paper.md\"\n\n# 2. Edit paper.md with your content\n\n# 3. Submit to arXiv (external process)\n# Upload to arxiv.org, get arXiv ID\n\n# 4. Index on Hugging Face\nuv run scripts/paper_manager.py index --arxiv-id \"2301.12345\"\n\n# 5. Link to your model\nuv run scripts/paper_manager.py link \\\n  --repo-id \"your-username/your-model\" \\\n  --repo-type \"model\" \\\n  --arxiv-id \"2301.12345\"\n\n# 6. Claim authorship\nuv run scripts/paper_manager.py claim \\\n  --arxiv-id \"2301.12345\" \\\n  --email \"your.email@edu\"\n```\n\n**Workflow 2: Link Existing Paper**\n```bash\n# 1. Check if paper exists\nuv run scripts/paper_manager.py check --arxiv-id \"2301.12345\"\n\n# 2. Index if needed\nuv run scripts/paper_manager.py index --arxiv-id \"2301.12345\"\n\n# 3. Link to multiple repositories\nuv run scripts/paper_manager.py link \\\n  --repo-id \"username/model-v1\" \\\n  --repo-type \"model\" \\\n  --arxiv-id \"2301.12345\"\n\nuv run scripts/paper_manager.py link \\\n  --repo-id \"username/training-data\" \\\n  --repo-type \"dataset\" \\\n  --arxiv-id \"2301.12345\"\n\nuv run scripts/paper_manager.py link \\\n  --repo-id \"username/demo-space\" \\\n  --repo-type \"space\" \\\n  --arxiv-id \"2301.12345\"\n```\n\n**Workflow 3: Update Model with Paper Reference**\n```bash\n# 1. Get current README\nhf download username/model-name README.md\n\n# 2. Add paper link\nuv run scripts/paper_manager.py link \\\n  --repo-id \"username/model-name\" \\\n  --repo-type \"model\" \\\n  --arxiv-id \"2301.12345\" \\\n  --citation \"Full citation for the paper\"\n\n# The script will:\n# - Add YAML metadata if missing\n# - Insert arXiv link in README\n# - Add formatted citation\n# - Preserve existing content\n```\n\n### Best Practices\n\n1. **Paper Indexing**\n   - Index papers as soon as they're published on arXiv\n   - Include full citation information in model/dataset cards\n   - Use consistent paper references across related repositories\n\n2. **Metadata Management**\n   - Add YAML frontmatter to all model/dataset cards\n   - Include proper licensing information\n   - Tag with relevant task categories and domains\n\n3. **Authorship**\n   - Claim authorship on papers where you're listed as author\n   - Use institutional email addresses for verification\n   - Keep paper visibility settings updated\n\n4. **Repository Linking**\n   - Link papers to all relevant models, datasets, and Spaces\n   - Include paper context in README descriptions\n   - Add BibTeX citations for easy reference\n\n5. **Research Articles**\n   - Use templates consistently within projects\n   - Include code and data links in papers\n   - Generate web-friendly HTML versions for sharing\n\n### Advanced Usage\n\n**Batch Link Papers:**\n```bash\n# Link multiple papers to one repository\nfor arxiv_id in \"2301.12345\" \"2302.67890\" \"2303.11111\"; do\n  uv run scripts/paper_manager.py link \\\n    --repo-id \"username/model-name\" \\\n    --repo-type \"model\" \\\n    --arxiv-id \"$arxiv_id\"\ndone\n```\n\n**Extract Paper Info:**\n```bash\n# Get paper metadata from arXiv\nuv run scripts/paper_manager.py info \\\n  --arxiv-id \"2301.12345\" \\\n  --format \"json\"\n```\n\n**Generate Citation:**\n```bash\n# Create BibTeX citation\nuv run scripts/paper_manager.py citation \\\n  --arxiv-id \"2301.12345\" \\\n  --format \"bibtex\"\n```\n\n**Validate Links:**\n```bash\n# Check all paper links in a repository\nuv run scripts/paper_manager.py validate \\\n  --repo-id \"username/model-name\" \\\n  --repo-type \"model\"\n```\n\n### Error Handling\n\n- **Paper Not Found**: arXiv ID doesn't exist or isn't indexed yet\n- **Permission Denied**: HF_TOKEN lacks write access to repository\n- **Invalid YAML**: Malformed metadata in README frontmatter\n- **Authorship Failed**: Email doesn't match paper author records\n- **Already Claimed**: Another user has claimed authorship\n- **Rate Limiting**: Too many API requests in short time\n\n### Troubleshooting\n\n**Issue**: \"Paper not found on Hugging Face\"\n- **Solution**: Visit `hf.co/papers/{arxiv-id}` to trigger indexing\n\n**Issue**: \"Authorship claim not verified\"\n- **Solution**: Wait for admin review or contact HF support with proof\n\n**Issue**: \"arXiv tag not appearing\"\n- **Solution**: Ensure README includes proper arXiv URL format\n\n**Issue**: \"Cannot link to repository\"\n- **Solution**: Verify HF_TOKEN has write permissions\n\n**Issue**: \"Template rendering errors\"\n- **Solution**: Check markdown syntax and YAML frontmatter format\n\n### Resources and References\n\n- **Hugging Face Paper Pages**: [hf.co/papers](https://huggingface.co/papers)\n- **Model Cards Guide**: [hf.co/docs/hub/model-cards](https://huggingface.co/docs/hub/en/model-cards)\n- **Dataset Cards Guide**: [hf.co/docs/hub/datasets-cards](https://huggingface.co/docs/hub/en/datasets-cards)\n- **Research Article Template**: [tfrere/research-article-template](https://huggingface.co/spaces/tfrere/research-article-template)\n- **arXiv Format Guide**: [arxiv.org/help/submit](https://arxiv.org/help/submit)\n\n### Integration with tfrere's Research Template\n\nThis skill complements [tfrere's research article template](https://huggingface.co/spaces/tfrere/research-article-template) by providing:\n\n- Automated paper indexing workflows\n- Repository linking capabilities\n- Metadata management tools\n- Citation generation utilities\n\nYou can use tfrere's template for writing, then use this skill to publish and link the paper on Hugging Face Hub.\n\n### Common Patterns\n\n**Pattern 1: New Paper Publication**\n```bash\n# Write → Publish → Index → Link\nuv run scripts/paper_manager.py create --template modern --output paper.md\n# (Submit to arXiv)\nuv run scripts/paper_manager.py index --arxiv-id \"2301.12345\"\nuv run scripts/paper_manager.py link --repo-id \"user/model\" --arxiv-id \"2301.12345\"\n```\n\n**Pattern 2: Existing Paper Discovery**\n```bash\n# Search → Check → Link\nuv run scripts/paper_manager.py search --query \"transformers\"\nuv run scripts/paper_manager.py check --arxiv-id \"2301.12345\"\nuv run scripts/paper_manager.py link --repo-id \"user/model\" --arxiv-id \"2301.12345\"\n```\n\n**Pattern 3: Author Portfolio Management**\n```bash\n# Claim → Verify → Organize\nuv run scripts/paper_manager.py claim --arxiv-id \"2301.12345\"\nuv run scripts/paper_manager.py list-my-papers\nuv run scripts/paper_manager.py toggle-visibility --arxiv-id \"2301.12345\" --show true\n```\n\n### API Integration\n\n**Python Script Example:**\n```python\nfrom scripts.paper_manager import PaperManager\n\npm = PaperManager(hf_token=\"your_token\")\n\n# Index paper\npm.index_paper(\"2301.12345\")\n\n# Link to model\npm.link_paper(\n    repo_id=\"username/model\",\n    repo_type=\"model\",\n    arxiv_id=\"2301.12345\",\n    citation=\"Full citation text\"\n)\n\n# Check status\nstatus = pm.check_paper(\"2301.12345\")\nprint(status)\n```\n\n### Future Enhancements\n\nPlanned features for future versions:\n- Support for non-arXiv papers (conference proceedings, journals)\n- Automatic citation formatting from DOI\n- Paper comparison and versioning tools\n- Collaborative paper writing features\n- Integration with LaTeX workflows\n- Automated figure and table extraction\n- Paper metrics and impact tracking\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.","tags":["hugging","face","paper","publisher","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents"],"capabilities":["skill","source-sickn33","skill-hugging-face-paper-publisher","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/hugging-face-paper-publisher","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34768 github stars · SKILL.md body (16,870 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-23T18:51:29.870Z","embedding":null,"createdAt":"2026-04-18T21:38:48.192Z","updatedAt":"2026-04-23T18:51:29.870Z","lastSeenAt":"2026-04-23T18:51:29.870Z","tsv":"'-01':876 '-15':877 '-2.0':1132 '/abs/2301.12345).':1157,1212 '/docs/hub/datasets-cards](https://huggingface.co/docs/hub/en/datasets-cards)':1841 '/docs/hub/model-cards](https://huggingface.co/docs/hub/en/model-cards)':1835 '/help/submit](https://arxiv.org/help/submit)':1854 '/papers/':434,651,1760 '/papers/2301.12345).':1222 '/papers](https://huggingface.co/papers)':1829 '/spaces/tfrere/research-article-template)':1848,1871 '/your-model':1309 '0.26.0':163 '1':176,386,564,642,894,1240,1245,1338,1424,1479,1912 '1.0.0':144 '1.2.1':173 '100k':1202 '10k':1200 '2':217,444,574,655,899,1263,1333,1351,1432,1506,1953 '2.32.5':167 '2023':1178 '2025':875 '2301.12345':411,424,481,502,522,544,637,690,728,879,974,996,1014,1030,1087,1176,1235,1293,1317,1328,1350,1362,1383,1399,1415,1451,1613,1651,1667,1939,1951,1974,1986,2003,2020,2044,2058,2068 '2302.67890':523,1614 '2303.11111':524,1615 '3':253,584,614,663,906,1269,1363,1417,1527,1988 '3.5.0':169 '4':291,595,671,692,911,1281,1550 '4.0':1189 '5':605,750,917,1294,1574 '6':922,1318 '6.0.3':165 '7':927 '723':151 'abstract':833,888,1055,1056 'abstract.txt':835 'access':358,427,1713 'account':737 'across':305,1503 'ad':580 'add':182,224,391,449,461,482,503,553,1433,1461,1471,1509,1568 'address':1542 'admin':674,1775 'advanc':1597 'affili':869,960 'ai':63 'alreadi':1732 'also':430 'analysi':921 'anoth':1734 'answer':1197 'apach':1131 'api':1743,2023 'appear':203,700,1787 'approach':908,1150,1260 'articl':32,136,255,268,753,1036,1160,1248,1576,1843,1867 'artifact':125,221,323 'arxiv':91,111,117,188,244,390,400,409,422,436,479,500,520,542,555,569,577,635,653,688,726,797,799,878,972,994,1012,1028,1045,1085,1173,1175,1227,1234,1272,1279,1291,1315,1326,1348,1360,1381,1397,1413,1449,1467,1491,1610,1630,1632,1643,1649,1665,1697,1762,1784,1793,1849,1931,1937,1949,1972,1984,2001,2018,2056,2082 'arxiv-id':408,421,435,478,499,519,541,634,652,687,725,971,993,1011,1027,1084,1290,1314,1325,1347,1359,1380,1396,1412,1448,1629,1648,1664,1761,1936,1948,1971,1983,2000,2017 'arxiv-styl':798 'arxiv.org':1156,1211,1277,1853 'arxiv.org/abs/2301.12345).':1155,1210 'arxiv.org/help/submit](https://arxiv.org/help/submit)':1852 'ask':2148 'attent':1108 'attribut':250 'author':661,828,864,959,1052,1166,1538,1730,1989 'author1':1053 'author2':1054 'authorship':24,95,128,134,190,194,616,619,670,678,686,1005,1320,1528,1530,1723,1738,1768 'auto':242 'auto-gener':241 'autom':1874,2105 'automat':113,238,272,579,1225,2087 'avail':781 'background':896 'base':30,759,1147 'bash':403,416,465,486,506,528,629,680,708,718,768,812,841,966,978,1006,1020,1037,1064,1079,1091,1101,1244,1337,1423,1602,1638,1656,1672,1916,1957,1992 'basic':401 'batch':1599 'best':1477 'bibtex':1159,1569,1658,1669 'boundari':2156 'brief':889 'cannot':1797 'capabl':175,1880 'card':223,231,298,464,485,1125,1180,1498,1515,1831,1837 'cat':546,834 'categori':1191,1199,1524 'cc':1187 'cc-bi':1186 'cd':376 'chart':952 'check':412,420,677,685,1076,1083,1339,1346,1673,1813,1959,1970,2063 'check-authorship':684 'citat':226,246,300,527,545,957,997,999,1158,1452,1454,1473,1494,1570,1655,1659,1663,1884,2059,2061,2088 'citation.txt':547 'cite':602 'claim':23,130,189,193,615,627,633,669,1004,1010,1319,1324,1529,1733,1737,1769,1993,1999 'clarif':2150 'classic':1075 'clean':265,789 'clear':2123 'click':587,664 'code':946,1583 'collabor':2097 'command':962 'common':1909 'comparison':2093 'complement':1863 'complet':810 'comprehens':60 'conclus':928 'confer':2084 'connect':121 'consist':1500,1579 'contact':1778 'contain':367 'content':275,940,1268,1476 'context':905,1564 'control':200,308,696 'convert':838,845,1060,1068 'core':174 'creat':16,751,765,772,816,1002,1034,1041,1233,1246,1252,1657,1924 'create-pr':1001 'creation':85,256 'criteria':2159 'current':1426 'custom':526 'data':1585 'dataset':230,235,455,484,498,562,914,991,1118,1179,1203,1205,1395,1559,1836 'date':874 'deni':1708 'depend':145,153,343 'describ':1151,2127 'descript':1567 'design':264,942 'detail':1215 'direct':425,438 'directori':366,379 'discov':105 'discover':608 'discoveri':208,1956 'discuss':923 'distil':796 'doe':830,866,1167 'doe2023paper':1161 'doesn':1699,1726 'doi':2091 'domain':1526 'done':1634 'dotenv':172 'download':1429 'dynam':270,937 'easi':1572 'ecosystem':100,216 'edit':1264 'edu':1017,1331 'email':638,1015,1329,1541,1725 'en':1129,1184 'engin':64 'enhanc':2072 'ensur':1789 'environ':159,353,2139 'environment-specif':2138 'equat':287,954 'error':1692,1811 'exampl':1126,1181,1238,2027 'exist':415,1335,1342,1475,1701,1954 'experi':807,912 'expert':2144 'explor':211 'extern':1273 'extract':567,1226,1635,2109 'face':3,13,55,77,109,186,396,625,1285,1755,1824,1907 'fail':1724 'fals':1033 'featur':936,2074,2100 'figur':950,2106 'file':370 'filename.md':1059 'filter':610 'find':209,656,919 'fine':821,886,1258 'fine-tun':820,885,1257 'first':375 'format':262,793,801,1111,1472,1652,1668,1795,1819,1850,2089 'found':1696,1752 'friend':792,1592 'frontmatt':295,1121,1511,1722,1818 'full':383,998,1453,1493,2060 'futur':931,2071,2076 'generat':26,138,243,259,276,754,809,1136,1194,1589,1654,1885 'get':1278,1425,1639 'guid':1832,1838,1851 'handl':1693 'header':349 'hf':99,215,351,1428,1709,1779,1803,2036 'hf.co':1759,1828,1834,1840 'hf.co/docs/hub/datasets-cards](https://huggingface.co/docs/hub/en/datasets-cards)':1839 'hf.co/docs/hub/model-cards](https://huggingface.co/docs/hub/en/model-cards)':1833 'hf.co/papers/':1758 'hf.co/papers](https://huggingface.co/papers)':1827 'highlight':948 'html':840,1063,1593 'hub':14,56,78,110,162,240,566,1224,1908 'hug':2,12,54,76,108,185,395,624,1284,1754,1823,1906 'hugging-face-paper-publish':1 'huggingfac':161 'huggingface.co':433,650,1221,1847,1870 'huggingface.co/papers/':432,649 'huggingface.co/papers/2301.12345).':1220 'huggingface.co/spaces/tfrere/research-article-template)':1846,1869 'id':118,410,423,437,472,480,493,501,513,521,535,543,570,636,654,689,727,973,985,995,1013,1029,1086,1228,1280,1292,1305,1316,1327,1349,1361,1374,1382,1390,1398,1406,1414,1442,1450,1611,1623,1631,1633,1650,1666,1686,1698,1763,1938,1946,1950,1973,1981,1985,2002,2019,2051,2057 'impact':2113 'implement':910 'implic':926 'import':2032 'includ':88,147,328,1492,1516,1562,1582,1791 'index':47,103,115,180,387,407,440,964,970,1282,1289,1352,1358,1481,1482,1705,1766,1876,1919,1935,2040 'info':1637,1647 'inform':1495,1519 'inlin':152 'input':846,1069,2153 'insert':1466 'inspir':794 'institut':1540 'instruct':325 'integr':89,97,112,1237,1855,2024,2101 'interact':949 'interpret':924 'introduc':1206 'introduct':895 'invalid':1716 'isn':1703 'issu':1749,1767,1783,1796,1808 'jane':829,865,1168 'john':831,867,1171 'journal':1172,2086 'json':1653 'keep':1545 'lab':872 'lack':1711 'languag':824,1128,1183 'larg':823 'latex':283,956,2103 'layout':269 'learn':806,883 'librari':1139 'licens':1130,1185,1518 'limit':1740,2115 'link':19,46,71,93,120,218,232,318,445,469,490,510,532,549,557,573,961,975,982,1113,1231,1295,1302,1334,1364,1371,1387,1403,1435,1439,1468,1552,1553,1586,1600,1603,1620,1671,1676,1798,1879,1902,1920,1943,1960,1978,2045 'list':662,705,713,1088,1096,1536,2008 'list-my-pap':712,1095,2007 'llm':1138 'lora':827 'machin':805,882 'machine-learn':881 'maintain':248,302 'malform':1718 'manag':8,49,69,96,179,198,247,293,693,731,958,1018,1508,1882,1991,2031 'mani':1742 'manual':158,640 'markdown':29,168,257,758,859,1061,1814 'markdown-bas':28,757 'match':1728,2124 'math':284,953 'metadata':127,229,292,299,460,1110,1463,1507,1641,1719,1881 'method':385,443,613,691,749 'methodolog':907 'metric':2111 'miss':1465,2161 'ml':803,1047 'ml-report':802,1046 'model':222,228,453,463,477,518,540,560,825,990,1116,1124,1142,1145,1298,1313,1379,1419,1447,1558,1628,1691,1830,2047,2055 'model/dataset':92,119,297,448,1497,1514 'models/datasets':22,601 'modern':140,263,763,788,818,851,934,1044,1074,1254,1926 'motiv':898 'multi':315 'multi-pap':314 'multipl':319,504,1366,1604 'n':1201 'name':658,666,1140,1143,1204 'navig':643,734 'need':1354 'new':1242,1913 'nlp':884 'non':2081 'non-arxiv':2080 'notat':290 'novel':1256 'one':1607 'oper':336 'organ':282,1995 'output':779,836,848,1058,1071,1261,1927,2133 'overview':33 'page':18,102,178,398,594,598,648,1219,1826 'paper':4,10,17,20,51,73,84,101,106,114,122,133,142,177,181,183,197,202,207,212,219,225,233,261,281,303,310,316,320,334,388,393,397,414,442,446,450,505,556,593,597,604,606,621,646,694,699,707,715,739,748,761,777,786,811,852,857,862,893,965,1050,1077,1090,1098,1100,1114,1154,1164,1209,1218,1336,1341,1421,1434,1457,1480,1483,1501,1532,1546,1554,1563,1588,1601,1605,1636,1640,1675,1694,1729,1750,1825,1875,1904,1914,1955,2010,2041,2043,2049,2067,2083,2092,2098,2110 'paper.html':849,1072 'paper.md':780,837,847,1070,1262,1265,1928 'papermanag':2033,2035 'path':361,384 'pattern':1910,1911,1952,1987 'pep':150 'permiss':1707,1807,2154 'plan':2073 'pm':2034 'pm.check':2066 'pm.index':2042 'pm.link':2048 'portfolio':1990 'pr':1003 'practic':1478 'prefer':154 'preprint':1174 'prerequisit':337 'preserv':1474 'previous':902 'print':2069 'procedur':916 'proceed':2085 'process':628,641,1274 'profession':27,139,260,756 'profil':206,704,745 'project':1581 'proof':1782 'proper':249,296,458,1119,1517,1792 'provid':59,1873 'public':87,703,1915 'publish':5,6,45,68,196,335,622,1241,1489,1900,1918 'python':171,329,2025,2028 'python-dotenv':170 'pyyaml':164 'queri':1106,1965 'question':1196 'question-answ':1195 'rate':1739 're':1488,1535 'readabl':266 'readm':237,456,563,1427,1470,1566,1721,1790 'readme.md':1431 'record':1731 'refer':252,304,451,933,963,1422,1502,1573,1822 'relat':363,900,1504 'relev':124,1522,1557 'render':955,1810 'repo':471,475,492,496,512,516,534,538,984,988,1304,1311,1373,1377,1389,1393,1405,1409,1441,1445,1622,1626,1685,1689,1945,1980,2050,2053 'repo-id':470,491,511,533,983,1303,1372,1388,1404,1440,1621,1684,1944,1979 'repo-typ':474,495,515,537,987,1310,1376,1392,1408,1444,1625,1688 'report':804,808,1048 'repositori':306,583,977,1367,1505,1551,1608,1679,1715,1800,1878 'request':166,1744 'requir':1123,2152 'research':9,31,50,66,72,135,254,267,752,760,856,903,1035,1243,1247,1575,1842,1859,1866 'resolv':345 'resourc':1820 'respons':941 'result':918 'review':1776,2145 'revis':313 'run':156,338,342,372,405,418,467,488,508,530,631,682,710,720,770,814,843,968,980,1008,1022,1039,1066,1081,1093,1103,1250,1287,1300,1322,1344,1356,1369,1385,1401,1437,1618,1645,1661,1681,1922,1933,1941,1962,1968,1976,1997,2005,2012 'safeti':2155 'scientif':141,280,785 'scope':2126 'script':148,330,332,339,348,374,1459,2026 'scripts.paper':2030 'scripts/paper_manager.py':406,419,468,489,509,531,632,683,711,721,771,815,844,969,981,1009,1023,1040,1067,1082,1094,1104,1251,1288,1301,1323,1345,1357,1370,1386,1402,1438,1619,1646,1662,1682,1923,1934,1942,1963,1969,1977,1998,2006,2013 'search':612,1099,1105,1958,1964 'section':277,740,858 'see':1216 'select':668 'set':350,733,738,1548 'setup':160,913 'share':1596 'short':1746 'show':599,729,743,1031,2021 'singl':322 'size':1198 'skill':39,58,327,1862,1898,2118 'skill-hugging-face-paper-publisher' 'skill.md':369 'smith':832,868,1170 'solut':1756,1772,1788,1801,1812 'soon':1485 'source-sickn33' 'space':992,1411,1561 'specif':2140 'standard':279,774,783,855,1043 'start':626 'status':679,1078,2064,2065,2070 'stop':2146 'streamlin':80 'structur':278,787,854 'style':800,850,1073 'submit':1270,1929 'substitut':2136 'success':2158 'summari':890,929 'support':15,285,317,1780,2078 'syntax':947,1815 'tabl':273,938,2108 'tag':239,245,576,589,880,1133,1236,1520,1785 'task':1190,1523,2122 'team':675 'technic':289 'templat':137,258,764,767,773,782,817,853,935,1042,1253,1578,1809,1844,1860,1868,1892,1925 'test':2142 'text':1000,1057,1135,1193,2062 'text-gener':1134,1192 'tfrere':1857,1864,1890 'tfrere/research-article-template':1845 'time':1747 'titl':775,778,819,860,863,1049,1051,1162,1165,1255 'toc':271 'toggl':716,723,742,1025,2015 'toggle-vis':722,1024,2014 'token':352,359,1710,1804,2037,2039 'tool':61,1883,2096 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'track':301,309,2114 'tradit':784 'transform':1107,1137,1141,1966 'treat':2131 'trigger':1765 'troubleshoot':1748 'true':730,1032,2022 'tune':822,887,1259 'type':476,497,517,539,989,1312,1378,1394,1410,1446,1627,1690,2054 'univers':870 'updat':311,1418,1549 'upload':1275 'url':426,1794 'usag':324,402,1598 'use':36,37,149,381,762,1499,1539,1577,1889,1896,2116 'user':42,585,1735 'user/model':1947,1982 'usernam':1308 'username/dataset-name':494 'username/demo-space':1407 'username/model':2052 'username/model-name':473,514,536,1430,1443,1624,1687 'username/model-v1':1375 'username/repo-name':986 'username/training-data':1391 'util':1886 'uv':155,341,404,417,466,487,507,529,630,681,709,719,769,813,842,967,979,1007,1021,1038,1065,1080,1092,1102,1249,1286,1299,1321,1343,1355,1368,1384,1400,1436,1617,1644,1660,1680,1921,1932,1940,1961,1967,1975,1996,2004,2011 'valid':1670,1683,2141 'variabl':354 'verif':129,676,1544 'verifi':132,191,617,698,1771,1802,1994 'version':143,307,1594,2077,2095 'via':236 'view':591,945 'visibl':199,695,717,724,1019,1026,1547,2016 'visit':431,1757 'wait':672,1773 'want':43 'web':791,944,1591 'web-friend':790,1590 'within':1580 'work':550,901,932 'workflow':82,1239,1332,1416,1877,2104 'write':357,1712,1806,1894,1917,2099 'write-access':356 'x':871 'y':873 'yaml':294,459,1109,1120,1127,1182,1462,1510,1717,1817 'year':1177 'yet':1706 'your-usernam':1306 'your.email':1016,1330 'your.email@institution.edu':639","prices":[{"id":"4dab89b3-0dfe-461a-8abd-11f838e95e66","listingId":"92f9aff7-7332-4bee-b65d-ecac13e93500","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:38:48.192Z"}],"sources":[{"listingId":"92f9aff7-7332-4bee-b65d-ecac13e93500","source":"github","sourceId":"sickn33/antigravity-awesome-skills/hugging-face-paper-publisher","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/hugging-face-paper-publisher","isPrimary":false,"firstSeenAt":"2026-04-18T21:38:48.192Z","lastSeenAt":"2026-04-23T18:51:29.870Z"}],"details":{"listingId":"92f9aff7-7332-4bee-b65d-ecac13e93500","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"hugging-face-paper-publisher","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34768,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-23T06:41:03Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"8b6fc656998a6bc54977d2b2c11d3d9c33dbfc74","skill_md_path":"skills/hugging-face-paper-publisher/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/hugging-face-paper-publisher"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"hugging-face-paper-publisher","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."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/hugging-face-paper-publisher"},"updatedAt":"2026-04-23T18:51:29.870Z"}}