
Find the right Claude skill in seconds — without scrolling.
A native macOS app to browse, search, and demo your Claude Code skill library.
Install · Features · How it works · Roadmap · License
When your ~/.claude/skills/ folder grows past 30 entries, you stop remembering which skill does what. The Claude Code skill list becomes a wall of names that all look vaguely useful.
Weft reads your local skill files and turns them into a searchable, browsable library — so you can find the one you need without scrolling through 50+ items every time.
⌘K)/skill-name straight into Claude Code⌘D) — large-text, centered layout for screen-sharing or team demosRequires Node 18+, Rust stable, and Xcode command-line tools.
git clone https://github.com/WyattLee-nanami/weft
cd weft
npm install
npm run tauri build
open src-tauri/target/release/bundle/macos/Weft.app
Pre-built .dmg files will be available under Releases once v0.1.0 is published.
First launch: macOS will block an unsigned app. Go to System Settings → Privacy & Security, scroll down, click Open Anyway.
~/.claude/skills/<name>/SKILL.md ──┐
├─→ scan-skills.mjs ─→ src/skills.json ─→ React UI
~/.claude/projects/**/*.jsonl ──┘ │
(usage counting) Tauri shell
│
Weft.app
The scanner runs at build time, parsing each SKILL.md frontmatter (name, description, triggers) and counting how often each skill name appears in your local Claude Code session history.
The result is bundled as static JSON into the app, then rendered by a React + Fuse.js front-end inside a Tauri 2 shell.
Bug reports and PRs welcome. The codebase is small (~500 lines of TS + a tiny Rust shell) and intentionally minimal.
MIT — see LICENSE.
Built because opening 50+ skill names every time was the bottleneck — the index, not the skills, was broken.