← スキル一覧に戻る

new-publication
by glennmatlin
⭐ 0🍴 0📅 2026年1月17日
SKILL.md
name: new-publication description: Add an academic publication entry with proper metadata, links, and optional academic badges. Use when adding papers, preprints, or other scholarly works. allowed-tools: Write, Bash(mkdir:*)
Adding a New Publication
Instructions
When adding a publication:
-
Generate the slug from title or citation key:
- Use format:
lastname-year-keywordorkeyword-year - Example: "matlin-2024-flame" or "unfoldml-2022"
- Use format:
-
Create directory structure:
publications/<slug>/ ├── index.qmd ├── paper.pdf (if available) └── featured.png (optional thumbnail) -
Create index.qmd with comprehensive frontmatter:
--- title: "Full Paper Title" author: - Glenn Matlin - Co-Author Name date: YYYY-MM-DD categories: [Conference Paper, Journal Article, Preprint, Workshop] description: "One-line summary for listings" # Publication metadata venue: "Conference/Journal Name (Abbreviated)" venue-full: "Full Conference/Journal Name" year: YYYY # Links (include what's available) doi: "10.xxxx/xxxxx" pdf: paper.pdf code: "https://github.com/..." slides: "slides.pdf" video: "https://youtube.com/..." arxiv: "https://arxiv.org/abs/..." # For academic badges altmetric-id: "" # Altmetric DOI or ID dimensions-id: "" # Dimensions publication ID # Featured on homepage? featured: true --- -
Add abstract and content:
## Abstract Full abstract text here... ## BibTeX ```bibtex @inproceedings{key2024, title={...}, author={...}, booktitle={...}, year={2024} }Links
Publication Types
Use appropriate category:
Conference Paper- Peer-reviewed conference proceedingsJournal Article- Journal publicationsPreprint- arXiv or other preprint serversWorkshop Paper- Workshop proceedingsThesis- Dissertation or thesisTechnical Report- Tech reports, white papers
Academic Badges
To enable Altmetric/Dimensions badges, include in the page:
<!-- Altmetric Badge -->
<div class="altmetric-embed" data-badge-type="medium-donut" data-doi="10.xxxx/xxxxx"></div>
<!-- Dimensions Badge -->
<span class="__dimensions_badge_embed__" data-doi="10.xxxx/xxxxx"></span>
Example
File: publications/flame-2024/index.qmd
---
title: "FLAME: Financial Language Model Evaluation Framework"
author:
- Glenn Matlin
- Other Authors
date: 2024-06-15
categories: [Conference Paper]
description: "A comprehensive framework for evaluating LLMs on financial tasks"
venue: "ACL 2024"
venue-full: "Annual Meeting of the Association for Computational Linguistics"
year: 2024
doi: "10.xxxx/xxxxx"
code: "https://github.com/gmatlin/flame"
featured: true
---
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です