[0.19.5] - 2026-04-23
New Features
Search Experience
-
Skill preview modal — clicking a search result card or table row now opens a preview modal that renders the remote
SKILL.mdso you can read the full content before installing. The Install button has moved inside the modalskillshare ui # open Search, click any resultBacked by a new
GET /api/preview?source=owner/repo/pathendpoint that fetchesSKILL.mdfrom the GitHub Contents API with a Git Tree fallback for hub sources, plus a 5-minute in-memory cache. If the fetch fails but hub metadata exists, the modal falls back to showing the description and tags instead of an error. Refs: #141 -
Higher-quality search results — the scoring formula that ranked search hits was dominated by name matches (45%) while stars — the strongest quality signal — only contributed 5%, so zero-star personal experiments often outranked well-known skill repos. Weights are now rebalanced (name 28%, description 18%, stars 24%, source 12%, repository 18%), with a better star-count curve in the 5–50 range where most useful skills live
-
Popular repo boost — a new repository-match score means searching a repo name (e.g.
superpowers) surfaces the well-known hub (obra/superpowers) above lower-signal personal copies that happen to share the skill name -
Broader skill discovery — search now also queries GitHub's repository search and walks each repo's git tree for
SKILL.mdfiles, so skills living in popular repos that code search misses still appear in results -
Low-quality result filtering — search now filters out 0-star non-preferred repos, results with very short descriptions, and known spam orgs, and boosts preferred hubs like
anthropics/skillsandvercel-labs/skills. Results are also deduplicated when the same skill appears from multiple sources -
Repo-scoped search queries — you can now search inside a specific repo (or subdirectory) using
owner/repoorowner/repo/subdirpatterns -
Frontmatter validation — search results without valid
SKILL.mdfrontmatter are filtered out, so non-skill.mdfiles no longer appear in results -
One-line frontmatter support —
SKILL.mdfiles written as a single line (--- name: X description: Y ---) are now parsed correctly and surface with the right name and description
Skill Detail Editor
- Editable source URL on skill detail page — the skill editor now exposes a Source URL field so you can correct or reassign the upstream URL without touching disk
For tracked repos, updating one skill's source URL updates every sibling skill from the same repo and rewrites the git remote origin to match. Saving source-URL-only changes skips the diff review dialog
skillshare ui # open any skill's detail page → edit Source URL - Backed by a new
PATCH /api/resources/{name}/sourceendpoint
Bug Fixes
- Fixed a skill lookup collision when a standalone skill and a tracked-repo skill shared the same base name — detail-page requests now prefer an exact
FlatNamematch before falling back to the base name, so the correct skill is always returned - Fixed spurious frontmatter diffs when only the body or source URL changed — the YAML serializer now preserves the original formatting (quote style, line wrapping) unless a field's value actually changed
- Fixed
IntersectionObserveron the Search page not reconnecting after "load more", so infinite scrolling now continues to fire as you reach the bottom of the list - Fixed background page scrolling when a modal was open —
DialogShellnow locks body scroll for all modal dialogs
Improvements
- Keyboard-accessible search results — search result cards and table rows now have
role="button"withtabIndex=0and respond to Enter/Space, so the preview modal can be opened without a mouse - Bounded preview cache — the preview cache is now capped at 200 entries with TTL purge plus a full reset on overflow to prevent unbounded memory growth on long-running UI sessions
- Shared input components in the frontmatter editor — the editor now uses the same
Input/Textareaprimitives as the rest of the UI (with a newsize="sm"variant) for visual consistency, and the editor header now uses the sharedKindBadge/SourceBadgecomponents
Changelog
- d9ee14a feat(search): add FetchSkillContent for remote skill preview
- 0c2981d feat(search): add repo-scoped results and inline frontmatter parsing
- 4c5c56b feat(search): improve result quality with rebalanced scoring and quality filters
- 63a4a57 feat(ui): allow editing source URL on skill detail page
- a323547 feat: add skill preview modal to Search page (#141)
- 07c0915 refactor(search): harden preview error handling, cache, and a11y