Extension Icon

Skills

Search and manage AI agent skills from Skills
AvatarKeito Sato
2,738 Installs
OverviewCommandsVersion History

Versions25

Fix Homebrew `node@` Resolution and add Custom `npx` Validation - April 23, 2026

  • Detect versioned Homebrew Node formula bins like /opt/homebrew/opt/node@24/bin so the Skills CLI can find node when npx comes from Homebrew, while still preferring Node installs from version managers first
  • Validate the optional "Custom npx Path" override before running the CLI and show a clearer error detail when the configured path is incorrect

Fix Silent Auto-Update on Load - April 21, 2026

  • Stop silently auto-updating outdated skills when opening Manage Skills
  • Fix the orange "Update available" highlight that stopped appearing for outdated skills

Show Installed Badge in Search Results - April 20, 2026

  • Show a green "Installed" tag on search results for skills that are already installed locally

Update Individual Skills - April 17, 2026

  • Add per-skill update action using skills update <name> (requires skills CLI 1.5.0+), so a single outdated skill can be updated without touching the others

Reduce Complexity - April 11, 2026

  • Remove test infrastructure (vitest, test stubs, all test files) that added maintenance burden without meaningful coverage
  • Inline over-abstracted CommandStates components back into command files
  • Restore internal functions to private scope

Follow Up on Maintainability - April 3, 2026

  • Add hook-level tests for useSkillContent and expand skills-cli coverage around CLI error normalization and agent id mapping
  • Standardize search and manage empty/error states with shared retry handling and clearer recovery copy
  • Document the maintainer validation workflow in README.md and add a manual smoke checklist in TESTING.md

Improve Maintainability - April 2, 2026

  • Add vitest-based unit tests and an opt-in live API test for the skills extension
  • Extract search and skill content loading logic into reusable helpers for easier testing and maintenance
  • Improve empty states in the search and manage flows while keeping the current upstream behavior intact

Remove Trending Skills Command - March 31, 2026

  • Remove the "Trending Skills" command — the skills.sh API has no trending endpoint, so the command was using a search query hack (?q=skill) that only returned skills with "skill" in the name, missing the majority of popular skills

Agent-Specific Skill Installation - March 31, 2026

  • Support installing skills to specific agents instead of all agents at once
  • Show all 43 supported agents with already-installed agents marked as read-only

Fix `fnm` macOS Path Resolution - March 28, 2026

  • Detect additional macOS fnm install locations, including ~/Library/Application Support/fnm
  • Match the official fnm directory resolution preference order when resolving fnm paths.

Agent-Specific Skill Removal - March 27, 2026

  • Support removing skills from specific agents instead of all agents at once
  • Show an agent picker form with checkboxes when a skill is installed in multiple agents

Lock File Metadata - March 23, 2026

  • Show skill source, install date, and update date from the global lock file in the detail panel
  • Add "Open on GitHub" action for installed skills
  • Add "Copy Source URL" action for installed skills

Improve macOS `npx` Path Resolution - March 20, 2026

  • Run the Skills CLI without spawning a login shell by building an explicit PATH for Homebrew and common Node.js version-manager installs
  • Add a custom npx path preference for non-standard setups
  • Show clearer recovery guidance for npx and Skills CLI failures, including a shortcut to open Extension Preference

Fix Incomplete Agent List - March 17, 2026

  • Use skills list --json for structured output instead of parsing ANSI text
  • Show all supported agents in the filter dropdown and detail panel

Highlight Outdated Skills - March 16, 2026

  • Highlight outdated skills with an orange hammer icon in the installed skills list
  • Show "Updates Available" section with count when updates exist

Fix Duplicate Audit Error Toast - March 11, 2026

  • Fix error toast showing twice when re-selecting a skill with a failed audit fetch

Security Audits Data - March 11, 2026

  • Parse security audit data from skills.sh and show their status in the skill's details
  • Warn before installing skills with failed security audits
  • Added actions to open the security audit links

Fix allowed-tools TypeError - March 9, 2026

  • Fix crash when SKILL.md contains single-value allowed-tools (e.g., allowed-tools: Bash)
  • Normalize allowed-tools to array before rendering

Rich Skill Metadata - March 7, 2026

  • Display description, license, compatibility, and allowed tools from SKILL.md frontmatter in the detail panel
  • Show GitHub star count alongside install count
  • Show skill description as list item subtitle when the detail panel is hidden

Update Skills - March 1, 2026

  • Check for available skill updates on launch
  • Show "Update available" badge on skills with updates
  • "Updates Available" summary section with update count
  • "Update All Skills" action (Cmd+Shift+U)

Inline Detail Panel - February 26, 2026

  • Replace push-to-detail views with inline detail panels across all commands
  • Toggle detail panel visibility with Cmd+D
  • Lazy-load skill content only for the selected item

Install & Remove Skills - February 17, 2026

  • Install skills directly from search and trending commands
  • New "Manage Skills" command to view and remove installed skills
  • Agent filter dropdown to browse skills by agent

Fix Skill Details - February 11, 2026

  • Load SKILL.md files first, fallback to README.md
  • Add automatic caching with useCachedPromise
  • Improve loading performance with parallel fetch requests
  • Fix screen flickering when loading skill details

Fix Screenshots - February 11, 2026

  • Move screenshots to assets folder and update README references

Initial Version - February 11, 2026

  • Search skills with real-time debounced search
  • Trending skills ranked by total installs
  • Filter skills by owner/organization
  • View skill details
  • Copy install commands to clipboard
  • Open skill repository on GitHub
  • Open skill page on skills.sh