Agent skill · Workflow & Productivity

library-curator

Search the OD Library (the global asset registry) and apply matching assets into the current project mid-task. Use when the user asks to reuse an image they captured/uploaded earlier, "pull a logo/screenshot from my library", or to find and drop a stored asset into the page being built.

nexu95,528★ · +2,037/wk · 5 repos on radarProfile →
claude-codecodexcursorApache-2.0
Install
npx skills add nexu-io/open-design --skill library-curator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/library-curator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 83,577 · +1,339 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# library-curator Reuse assets that already live in the user's OD Library — images captured with the OD Clipper, manual uploads, agent-generated media, and design-system material — without asking the user to re-upload them. ## When to use - The user references an asset they already have ("the screenshot I clipped", "my logo", "that hero image from earlier"). - You need an image for the page you're building and the user prefers their own library over freshly generated media. ## Tools (tool-token track) Both endpoints authenticate with the run's tool token (`OD_TOOL_TOKEN`, injected by the daemon) and operate on the project the run belongs to. ### Search `POST /api/tools/library/search` ```json { "query": "blue hero background", "kind": "image", "limit": 20 } ``` Returns `{ "results": [{ "asset": { "id": "...", "kind": "image", "sourceTitle": "...", "width": 1600, "height": 900, "sources": [...] }, "score": 0 }], "semantic": false }`. `semantic: false` means keyword/metadata matching (no embedding model configured). Filter and rank the results yourself from the asset metadata. ### Apply `POST /api/tools/library/apply` ```json { "assetId": "<id from search>", "dir": "assets" } ``` Cop

What's inside
Steps it walks through
  1. When to use
  2. Tools (tool-token track)
  3. Search
  4. Apply
  5. Recipe
More from open-design
All skills →
About this skill
What does the library-curator skill do?

Search the OD Library (the global asset registry) and apply matching assets into the current project mid-task. Use when the user asks to reuse an image they captured/uploaded earlier, "pull a logo/screenshot from my library", or to find and drop a stored asset into the page being built.

How do I install it?

Run `npx skills add nexu-io/open-design --skill library-curator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From nexu-io/open-design, a repository with 83,577 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going