ワンクリックで
find-skill
Search for Agent Skills in local folders and on GitHub. Use when you need a capability you don't have—search before building.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Search for Agent Skills in local folders and on GitHub. Use when you need a capability you don't have—search before building.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | find-skill |
| description | Search for Agent Skills in local folders and on GitHub. Use when you need a capability you don't have—search before building. |
| license | Unlicense |
| metadata | {"author":"community","version":"0.1"} |
Search for Agent Skills across local folders and GitHub.
You need a capability. Before building it, search. Someone may have already made it.
# Search for a skill
python scripts/find.py "detect silence in audio"
# Local only (offline)
python scripts/find.py "resize images" --local-only
# JSON output for programmatic use
python scripts/find.py "send email" --json
# Fetch and display full SKILL.md content
python scripts/find.py "python" --fetch --limit 2
Found 2 skill(s) for "silence detection":
1. silence-detect
Location: https://github.com/user/audio-tools
Description: Detects silence gaps in audio files using ffmpeg...
2. audio-silence
Location: ~/skills/audio-silence
Description: Find silent regions in recordings...
Edit scripts/config.json:
{
"local_paths": ["~/skills/", "./skills/"],
"github": {
"enabled": true,
"topic": "agentskills",
"repos": [
"your-username/your-skills-monorepo"
]
}
}
| Field | Description |
|---|---|
local_paths | Local folders to search for skills |
github.enabled | Enable/disable GitHub search |
github.topic | Topic to search for (default: agentskills) |
github.repos | Your personal skill repos (always searched first) |
A GitHub token provides higher rate limits (5000/hour vs 60/hour) and is required for searching private repos.
Create a .env file in the project root:
GITHUB_TOKEN=ghp_xxxxxxxxxxxx
Or set environment variables: GITHUB_TOKEN or GH_TOKEN
To create a token:
repo scope (for private repos) or public_repo (for public only)github.repos config (fast, reliable)agentskills| Flag | Effect |
|---|---|
--local-only | Skip GitHub, search only local folders |
--json | Output as JSON for parsing |
--fetch | Fetch and display full SKILL.md content |
--limit N | Maximum results (default: 10) |