fix: Windows skillhub catalog extraction and skills UI polish#986
Merged
alchemistklk merged 4 commits intomainfrom Apr 9, 2026
Merged
fix: Windows skillhub catalog extraction and skills UI polish#986alchemistklk merged 4 commits intomainfrom
alchemistklk merged 4 commits intomainfrom
Conversation
GNU tar (Git Bash's tar.exe, which commonly precedes the system bsdtar
in PATH on Windows dev machines) misparses Windows paths in two ways:
1. A leading `C:` is interpreted as an rsh `host:path` spec, so the
extraction fails with "tar (child): Cannot connect to C: resolve
failed". `--force-local` disables that parsing.
2. Backslashes in paths are treated as escape sequences (e.g. `\n`
in `projects\nexu` is eaten), so `-C` lands in a phantom dir.
Fix: pass `--force-local` only on Windows (bsdtar doesn't accept it,
so it stays off on macOS/Linux) and normalize archive/extract paths to
forward slashes, which both GNU tar and bsdtar handle correctly.
Without this, refreshCatalog silently fails on Windows (the catch in
start() swallows the error), so the SkillHub page renders an empty
catalog despite installed skills working fine.
The BrandRail column uses flex-col + justify-between with three children (logo / content / GitHub link). When the viewport is short or the middle content block is tall, justify-between collapses the gap between the bullets and the GitHub link, leaving them visually glued together. Add `mt-10 xl:mt-12` to the GitHub FadeIn so there is always at least ~40-48px of breathing room between bullets and the GitHub link, even when justify-between has no slack to distribute.
The horizontally-scrolling category filter on the SkillHub Explore tab already showed left/right fade gradients when there was overflow, but users on devices without horizontal-scroll affordances (mouse-only desktop, no touchpad gesture) had no way to scroll the hidden pills. Layer a chevron button on top of each fade gradient that scrolls the pill row by ~80% of its visible width, smoothly. The buttons reuse the existing `showPillFadeLeft` / `showPillFade` overflow state, so they appear/disappear automatically as the user scrolls or the viewport resizes — no extra listeners.
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 156fe94609
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
… Windows Windows System32\tar.exe (bsdtar) rejects --force-local, while Git Bash's GNU tar needs it for C: drive paths. Try with the flag first and fall back without it. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
alchemistklk
approved these changes
Apr 9, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
C:as rsh host spec and backslashes as escape sequences. Add--force-localon Windows and normalize paths to forward slashes.Closes #595
Closes #785
Test plan
🤖 Generated with Claude Code