Conversation
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.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Code Review
This pull request registers two new plugins, 'yoonmoon' and 'kipris', in the marketplace configuration files ('.agents/plugins/marketplace.json' and '.claude-plugin/marketplace.json'). The 'yoonmoon' plugin provides Korean prose polishing and AI detection, while 'kipris' enables searching Korean patents and intellectual property. I have no feedback to provide as the changes are straightforward and correct.
Up to standards ✅🟢 Issues
|
|
|
There was a problem hiding this comment.
All reported issues were addressed across 2 files
Architecture diagram
sequenceDiagram
participant User as Claude User
participant CC as Claude Code / Desktop
participant MP as Marketplace Registry
participant PG as Plugin Resolver
participant IP as Plugin Runtime
participant GH as GitHub Source
Note over User,GH: Plugin Discovery and Installation Flow
User->>CC: Request Korean patent search or prose skill
CC->>MP: Query marketplace.json for matching plugins
MP-->>CC: Return yoonmoon (productivity) + kipris (research)
CC->>PG: Resolve plugin source
PG->>MP: Check policy (installation, authentication)
MP-->>PG: AVAILABLE / ON_INSTALL
alt kipris (research category)
PG->>GH: Fetch amondnet/KIPRIS repo
GH-->>PG: Plugin manifest (requires PR on main)
PG->>IP: Load kipris plugin runtime
IP->>IP: KIPRIS Plus Open API client (Python stdlib)
User->>IP: Search patents/trademarks
IP-->>User: Korean IP results
else yoonmoon (productivity category)
PG->>GH: Fetch amondnet/yoonmoon repo
GH-->>PG: Plugin manifest (available on main)
PG->>IP: Load yoonmoon plugin runtime
User->>IP: Polish/detect Korean prose
IP-->>User: Processed text
end
Note over CC,IP: Cursor marketplace also updated via multi-format generator
Reply with feedback, questions, or to request a fix.
Re-trigger cubic



Summary
Adds two Claude Code plugins by @amondnet. Both are maintained in their own repositories, so they are referenced as remote GitHub sources rather than vendored.
kiprisyoonmoonCategories:
kipris→research,yoonmoon→productivity.researchis new, but single-entry categories are already established here (security,document,language,deploymenteach have one). Happy to move either if you prefer an existing bucket.Neither entry declares a
relevanceblock. Both are invoked from what the user asks for rather than from repository state — there is no reliablecli,hosts,cwdormanifestDepssignal — and CLAUDE.md asks for no block at all rather than a noisy one.Related issue
None.
Checklist
bun run test) — no test changes needed for a marketplace entry; suite passesbun run lint)BREAKING CHANGE:note is includedVerification
Regenerated the Codex artifact with
bun run plugins:multi-format; the Cursor marketplace was reported up to date. Diff is.claude-plugin/marketplace.json(+22) and.agents/plugins/marketplace.json(+24), nothing else.Note on generator drift (not in this PR)
bun run plugins:multi-formatalso rewrites ~150 vendoredplugins/*/plugin.jsonfiles that are stale relative to their upstreams — for exampleplugins/vue/plugin.jsonmoves 1.1.0 → 1.3.0 and gains an Antigravity$schemakey. That drift predates this change, so I reverted those files to keep this PR to one logical change. It looks worth its own PR.Ordering
amondnet/KIPRIScurrently has the.claude-plugin/manifests on a pull request, not yet onmain. That PR should land before this one is merged, otherwise thekiprisentry resolves to a branch without a plugin manifest.amondnet/yoonmoonis ready onmaintoday.Summary by cubic
Adds
kiprisandyoonmoon, two Claude Code plugins by@amondnet, to both marketplace files as remote GitHub sources.kiprissearches Korean patents and IP through the KIPRIS Plus Open API using only the Python standard library, so it works in Claude Desktop's sandbox with no install step;yoonmoonprovides six Korean prose skills: polishing, humanizing, AI detection, translationese correction, proofreading, and register conversion.Notes
amondnet/KIPRIS's plugin manifest is still on a pull request, notmain; that PR should land before this one merges.plugin.jsonfiles; that pre-existing drift is left untouched here and deserves its own PR.Written for commit f74b299. Summary will update on new commits.