From f74b29950a526139ddd1c1dc47175af79f423783 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Tue, 15 Sep 2026 00:55:38 +0900 Subject: [PATCH] feat(marketplace): add kipris and yoonmoon plugins MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two Claude Code plugins by @amondnet, both maintained in their own repositories and referenced as remote GitHub sources. - kipris (amondnet/KIPRIS): searches Korean patents, utility models, designs, trademarks, trials and foreign patents through the KIPRIS Plus Open API. The runtime client uses the Python standard library only, so it works in Claude Desktop's sandbox without an install step. - yoonmoon (amondnet/yoonmoon): six Korean prose skills — full-course polishing, humanizing, AI-authorship detection, translationese correction, proofreading and register conversion. Regenerated the Codex marketplace with `bun run plugins:multi-format`. The Cursor marketplace was already up to date. The generator also rewrites ~150 vendored plugin.json files that are stale relative to their upstreams (for example vue 1.1.0 -> 1.3.0 plus a new $schema key); that drift predates this change, so those files are left untouched here and deserve their own pull request. Neither entry declares a `relevance` block. Both are invoked from what the user asks for rather than from repository state — there is no reliable cli, host, cwd or manifest signal — and CLAUDE.md asks for no block at all rather than a noisy one. --- .agents/plugins/marketplace.json | 24 ++++++++++++++++++++++++ .claude-plugin/marketplace.json | 22 ++++++++++++++++++++++ 2 files changed, 46 insertions(+) diff --git a/.agents/plugins/marketplace.json b/.agents/plugins/marketplace.json index 5d45bf7f..00c05e10 100644 --- a/.agents/plugins/marketplace.json +++ b/.agents/plugins/marketplace.json @@ -1271,6 +1271,30 @@ "authentication": "ON_INSTALL" }, "category": "Framework" + }, + { + "name": "yoonmoon", + "source": { + "source": "url", + "url": "https://github.com/amondnet/yoonmoon.git" + }, + "policy": { + "installation": "AVAILABLE", + "authentication": "ON_INSTALL" + }, + "category": "Productivity" + }, + { + "name": "kipris", + "source": { + "source": "url", + "url": "https://github.com/amondnet/KIPRIS.git" + }, + "policy": { + "installation": "AVAILABLE", + "authentication": "ON_INSTALL" + }, + "category": "Research" } ] } diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 3ace2da6..360cc4a3 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -1680,6 +1680,28 @@ ] } } + }, + { + "name": "yoonmoon", + "description": "Polish Korean prose and detect AI-written Korean — full-course polishing, humanizing, AI detection, translationese correction, spelling and grammar proofreading, and register conversion.", + "category": "productivity", + "keywords": ["korean", "humanize", "ai-detector", "translationese", "proofreading"], + "tags": ["writing", "korean"], + "source": { + "source": "github", + "repo": "amondnet/yoonmoon" + } + }, + { + "name": "kipris", + "description": "Search Korean patents, utility models, designs, trademarks, trials and foreign patents via the KIPRIS Plus Open API. Python stdlib only — no install step.", + "category": "research", + "keywords": ["patent", "trademark", "intellectual-property", "korea", "kipris"], + "tags": ["search", "open-api"], + "source": { + "source": "github", + "repo": "amondnet/KIPRIS" + } } ] }