feat: skill marketplace UI#15
Conversation
|
Warning Review limit reached
Your plan includes 1 review of capacity. Refill in 9 minutes and 28 seconds. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more review capacity refills, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than trial, open-source, and free plans. In all cases, review capacity refills continuously over time. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (6)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Closes #7.
Summary
src/lib/skills.tsscans~/.claude/skills/(user) and<workspace.cwd>/.claude/skills/(project), one level deep. EachSKILL.md's frontmatter is parsed by a tiny inline regex parser (no new dep). Malformed or missing frontmatter falls back to the directory name + empty description so a single bad skill doesn't break the page.GET /api/workspaces/[id]/skillsreturns the union, with the same workspace cwd validation as the memory endpoint.SkillsGridclient component renders the list as a responsive card grid (mono name, truncated description,user/projectbadge) with arescanbutton.CreateAgentFormrewritten: the comma-separated text input is gone, replaced with a checkbox list populated from the scanned skills. Previously-pinned skills that no longer exist on disk render below the list taggedmissingso the user knows why they aren't loading.agents.skillsalready stores names.Build fix bundled
Same SQLITE_BUSY in
next build's parallel page-data workers as #13 / #14. This branch needed a stronger fix:journal_mode = WALrequires an exclusive lock that does not honorbusy_timeout, so the build phase now opens an in-memory DB (per-process, race-free) and the runtime opens the file as before. Gated onNEXT_PHASE === 'phase-production-build'.Test plan
~/.claude/skills/and the workspace's.claude/skills/, badgeduser/project..claude/settings.local.jsonunderargus.pinnedSkills.~/.claude/skills/still renders project-level skills without erroring.missingbut stays selectable.