Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions extensions/skill-search/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift
compiled_raycast_rust

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/skill-search/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/skill-search/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Skill Search Changelog

## [Initial Version] - 2026-02-05
52 changes: 52 additions & 0 deletions extensions/skill-search/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Skill Search

A Raycast extension to search and discover agent skills from skills.sh. Browse available skills, view installation commands, and manage your installed skills.

## Features

- 🔍 **Search Skills**: Search through thousands of agent skills from skills.sh
- 📊 **Popularity Sorting**: Results sorted by installation count
- 📋 **Quick Install**: Copy install commands with a single keystroke
- 🖥️ **Terminal Integration**: Send install commands directly to Terminal
- 📦 **Manage Installed Skills**: View and uninstall locally installed skills
- 🔗 **Quick Links**: Open skills on skills.sh or their GitHub repositories

## Usage

1. Open Raycast and search for "Skill Search"
2. Type a query to search for skills (e.g., "react", "typescript", "api")
3. Browse results sorted by popularity
4. Use keyboard shortcuts:
- `Enter` - View skill details
- `Cmd+K` - Copy install command
- `Cmd+Shift+Enter` - Send command to Terminal
- `Cmd+O` - Open on skills.sh
- `Cmd+Shift+O` - Open GitHub repository
- `Cmd+D` - Toggle detail panel

## Installation

This extension is available in the [Raycast Store](https://www.raycast.com/store).

## Development

```bash
# Install dependencies
npm install

# Run in development mode
npm run dev

# Build for production
npm run build

# Lint code
npm run lint

# Fix linting issues
npm run fix-lint
```

## License

MIT
Binary file added extensions/skill-search/assets/skill-search.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions extensions/skill-search/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const { defineConfig } = require("eslint/config");
const raycastConfig = require("@raycast/eslint-config");

module.exports = defineConfig([
...raycastConfig,
]);
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading