From a45b8df6760876bfbb4e2f254e034a56db46a047 Mon Sep 17 00:00:00 2001 From: Ellie <6687206+wizzeh@users.noreply.github.com> Date: Thu, 19 Feb 2026 23:01:49 -0800 Subject: [PATCH] Add Claude Code marketplace metadata for paper-reader skill Moves skill/ to skills/paper-reader/ and adds .claude-plugin/ marketplace and plugin manifests so the repo can be installed directly as a Claude Code skill marketplace. Co-Authored-By: Claude Opus 4.6 --- .claude-plugin/marketplace.json | 14 ++++++++++++++ .claude-plugin/plugin.json | 8 ++++++++ {skill => skills/paper-reader}/SKILL.md | 0 3 files changed, 22 insertions(+) create mode 100644 .claude-plugin/marketplace.json create mode 100644 .claude-plugin/plugin.json rename {skill => skills/paper-reader}/SKILL.md (100%) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json new file mode 100644 index 0000000..266590d --- /dev/null +++ b/.claude-plugin/marketplace.json @@ -0,0 +1,14 @@ +{ + "name": "paper-marketplace", + "owner": { + "name": "Ellie" + }, + "plugins": [ + { + "name": "paper", + "source": "./", + "description": "Fetch and read academic papers by DOI, converting to markdown", + "version": "0.1.0" + } + ] +} diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..96cb5cb --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "paper", + "description": "Fetch and read academic papers by DOI, converting to markdown", + "version": "0.1.0", + "author": { + "name": "Ellie" + } +} diff --git a/skill/SKILL.md b/skills/paper-reader/SKILL.md similarity index 100% rename from skill/SKILL.md rename to skills/paper-reader/SKILL.md