ソース情報
- リポジトリ
- taracodlabs/aiden
- ソースの最終更新活動
- 2026年6月29日 11:13
- 検出された SKILL.md の言語
- 英語
- スター
- 779
- フォーク
- 140
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/taracodlabs/aiden --skill gif-searchコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | gif-search |
| description | Search and fetch Tenor GIFs (free Tenor API key required) |
| category | media |
| version | 1.0.1 |
| origin | aiden |
| license | Apache-2.0 |
| tags | gif, tenor, giphy, search, media, animation, image, reaction, fun |
Search and fetch GIFs using the Tenor API. Obtain a free API key at
https://developers.google.com/tenor/guides/quickstart (takes 2 minutes) and set it as
the TENOR_API_KEY environment variable. All examples below use $env:TENOR_API_KEY
(PowerShell) or os.environ["TENOR_API_KEY"] (Python).
function Search-Gif($query, $limit = 5) {
$q = [Uri]::EscapeDataString($query)
$url = "https://tenor.googleapis.com/v2/search?q=$q&limit=$limit&key=$env:TENOR_API_KEY"
$resp = Invoke-RestMethod -Uri $url
$resp.results | ForEach-Object {
[PSCustomObject]@{
Title = $_.title
GifUrl = $_.media_formats.gif.url
PreviewUrl = $_.media_formats.tinygif.url
}
}
}
# Usage
Search-Gif "excited celebration" | Format-Table -AutoSize
import requests, urllib.parse
def search_gif(query, limit=5, api_key=None):
api_key = api_key or os.environ.get("TENOR_API_KEY", "")
params = {"q": query, "limit": limit, "key": api_key}
resp = requests.get("https://tenor.googleapis.com/v2/search", params=params)
resp.raise_for_status()
results = resp.json().get("results", [])
return [{"title": r["title"], "url": r["media_formats"]["gif"]["url"]} for r in results]
gifs = search_gif("happy dancing")
for g in gifs:
print(g["title"])
print(g["url"])
print()
$url = "https://tenor.googleapis.com/v2/featured?limit=10&key=$env:TENOR_API_KEY"
$resp = Invoke-RestMethod -Uri $url
$resp.results | Select-Object title, @{N="url";E={$_.media_formats.gif.url}}
$gifUrl = "https://media.tenor.com/your-gif.gif"
$outPath = "C:\Users\<you>\Downloads\reaction.gif"
Invoke-WebRequest -Uri $gifUrl -OutFile $outPath
Write-Host "Downloaded: $outPath"
# Categories: happy, sad, angry, love, funny, wow, thumbsup, facepalm, etc.
$category = "facepalm"
Search-Gif $category -limit 3 | Select-Object GifUrl
Register at https://developers.google.com/tenor/guides/quickstart — free, takes 2 minutes.
$env:TENOR_API_KEY = "your_api_key_here"
function Search-Gif($query, $limit = 5) {
$q = [Uri]::EscapeDataString($query)
$url = "https://tenor.googleapis.com/v2/search?q=$q&limit=$limit&key=$env:TENOR_API_KEY"
(Invoke-RestMethod -Uri $url).results | Select-Object title, @{N="url";E={$_.media_formats.gif.url}}
}
"Find me a GIF for when tests are passing"
→ Use step 2 with query "success celebration cheering" and return the top result URL.
"What are trending GIFs right now?" → Use step 3 to fetch featured/trending GIFs.
"Download the first result for 'thumbs up'"
→ Use step 1 to search, then step 4 to download the GifUrl of the first result.