@zenalexa/unicli 0.209.0 → 0.210.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +56 -15
- package/README.md +228 -278
- package/dist/adapters/cursor/cursor.d.ts +2 -1
- package/dist/adapters/cursor/cursor.d.ts.map +1 -1
- package/dist/adapters/cursor/cursor.js +87 -1
- package/dist/adapters/cursor/cursor.js.map +1 -1
- package/dist/adapters/discord-app/discord-app.d.ts +1 -1
- package/dist/adapters/discord-app/discord-app.js +94 -1
- package/dist/adapters/discord-app/discord-app.js.map +1 -1
- package/dist/browser/bridge.d.ts +45 -0
- package/dist/browser/bridge.d.ts.map +1 -1
- package/dist/browser/bridge.js +94 -1
- package/dist/browser/bridge.js.map +1 -1
- package/dist/browser/cdp-client.d.ts +24 -1
- package/dist/browser/cdp-client.d.ts.map +1 -1
- package/dist/browser/cdp-client.js +56 -2
- package/dist/browser/cdp-client.js.map +1 -1
- package/dist/browser/launcher.d.ts +5 -0
- package/dist/browser/launcher.d.ts.map +1 -1
- package/dist/browser/launcher.js +7 -0
- package/dist/browser/launcher.js.map +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +67 -2
- package/dist/cli.js.map +1 -1
- package/dist/commands/browser.d.ts.map +1 -1
- package/dist/commands/browser.js +79 -1
- package/dist/commands/browser.js.map +1 -1
- package/dist/commands/ext.d.ts +11 -0
- package/dist/commands/ext.d.ts.map +1 -0
- package/dist/commands/ext.js +122 -0
- package/dist/commands/ext.js.map +1 -0
- package/dist/commands/skills.d.ts +2 -3
- package/dist/commands/skills.d.ts.map +1 -1
- package/dist/commands/skills.js +2 -3
- package/dist/commands/skills.js.map +1 -1
- package/dist/commands/status.d.ts +12 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +137 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/engine/yaml-runner.d.ts +10 -0
- package/dist/engine/yaml-runner.d.ts.map +1 -1
- package/dist/engine/yaml-runner.js +51 -3
- package/dist/engine/yaml-runner.js.map +1 -1
- package/dist/hub/index.d.ts +37 -0
- package/dist/hub/index.d.ts.map +1 -0
- package/dist/hub/index.js +98 -0
- package/dist/hub/index.js.map +1 -0
- package/dist/hub/passthrough.d.ts +21 -0
- package/dist/hub/passthrough.d.ts.map +1 -0
- package/dist/hub/passthrough.js +71 -0
- package/dist/hub/passthrough.js.map +1 -0
- package/dist/manifest.json +1770 -64
- package/dist/types.d.ts +15 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +2 -1
- package/src/adapters/36kr/latest.yaml +36 -0
- package/src/adapters/arxiv/trending.yaml +37 -0
- package/src/adapters/baidu/hot.yaml +37 -0
- package/src/adapters/baidu/search.yaml +41 -0
- package/src/adapters/bbc/technology.yaml +26 -0
- package/src/adapters/bbc/top.yaml +26 -0
- package/src/adapters/bbc/world.yaml +26 -0
- package/src/adapters/bilibili/coin.yaml +33 -0
- package/src/adapters/bilibili/later.yaml +31 -0
- package/src/adapters/bilibili/live.yaml +41 -0
- package/src/adapters/bilibili/trending.yaml +29 -0
- package/src/adapters/binance/hot.yaml +39 -0
- package/src/adapters/binance/kline.yaml +35 -0
- package/src/adapters/binance/ticker.yaml +33 -0
- package/src/adapters/bluesky/likes.yaml +35 -0
- package/src/adapters/bluesky/notifications.yaml +30 -0
- package/src/adapters/bluesky/post.yaml +25 -0
- package/src/adapters/chrome/bookmarks.yaml +26 -0
- package/src/adapters/chrome/tabs.yaml +25 -0
- package/src/adapters/cnki/search.yaml +40 -0
- package/src/adapters/cnn/technology.yaml +26 -0
- package/src/adapters/cocoapods/info.yaml +33 -0
- package/src/adapters/coinbase/prices.yaml +27 -0
- package/src/adapters/coinbase/rates.yaml +24 -0
- package/src/adapters/coupang/hot.yaml +29 -0
- package/src/adapters/crates-io/info.yaml +29 -0
- package/src/adapters/crates-io/versions.yaml +33 -0
- package/src/adapters/ctrip/hot.yaml +28 -0
- package/src/adapters/cursor/cursor.ts +91 -1
- package/src/adapters/dangdang/hot.yaml +38 -0
- package/src/adapters/dangdang/search.yaml +43 -0
- package/src/adapters/deepseek/chat.yaml +33 -0
- package/src/adapters/deepseek/models.yaml +18 -0
- package/src/adapters/devto/latest.yaml +29 -0
- package/src/adapters/devto/search.yaml +34 -0
- package/src/adapters/dianping/hot.yaml +43 -0
- package/src/adapters/dianping/search.yaml +48 -0
- package/src/adapters/discord-app/discord-app.ts +99 -1
- package/src/adapters/docker/networks.yaml +20 -0
- package/src/adapters/docker/volumes.yaml +19 -0
- package/src/adapters/docker-hub/info.yaml +26 -0
- package/src/adapters/docker-hub/tags.yaml +34 -0
- package/src/adapters/douban/group-hot.yaml +29 -0
- package/src/adapters/douban/new-movies.yaml +32 -0
- package/src/adapters/douban/tv-hot.yaml +32 -0
- package/src/adapters/doubao/ask.yaml +64 -0
- package/src/adapters/doubao/new.yaml +18 -0
- package/src/adapters/doubao/status.yaml +21 -0
- package/src/adapters/douyu/hot.yaml +34 -0
- package/src/adapters/douyu/search.yaml +42 -0
- package/src/adapters/eastmoney/fund.yaml +36 -0
- package/src/adapters/eastmoney/market.yaml +26 -0
- package/src/adapters/ele/hot.yaml +40 -0
- package/src/adapters/ele/search.yaml +47 -0
- package/src/adapters/exchangerate/list.yaml +25 -0
- package/src/adapters/facebook/marketplace.yaml +43 -0
- package/src/adapters/facebook/post.yaml +29 -0
- package/src/adapters/futu/hot.yaml +49 -0
- package/src/adapters/futu/quote.yaml +46 -0
- package/src/adapters/gitee/repos.yaml +34 -0
- package/src/adapters/github-trending/developers.yaml +33 -0
- package/src/adapters/github-trending/weekly.yaml +34 -0
- package/src/adapters/gitlab/projects.yaml +34 -0
- package/src/adapters/godot/scene-export.yaml +1 -1
- package/src/adapters/hackernews/comments.yaml +36 -0
- package/src/adapters/hackernews/item.yaml +28 -0
- package/src/adapters/hf/datasets.yaml +34 -0
- package/src/adapters/hf/spaces.yaml +34 -0
- package/src/adapters/homebrew/search.yaml +27 -0
- package/src/adapters/huggingface-papers/search.yaml +33 -0
- package/src/adapters/imdb/box-office.yaml +28 -0
- package/src/adapters/infoq/latest.yaml +26 -0
- package/src/adapters/instagram/activity.yaml +45 -0
- package/src/adapters/instagram/highlights.yaml +48 -0
- package/src/adapters/instagram/reels-trending.yaml +51 -0
- package/src/adapters/instagram/reels.yaml +34 -0
- package/src/adapters/instagram/stories.yaml +29 -0
- package/src/adapters/instagram/suggested.yaml +40 -0
- package/src/adapters/instagram/tags.yaml +52 -0
- package/src/adapters/itch-io/search.yaml +35 -0
- package/src/adapters/itch-io/top.yaml +31 -0
- package/src/adapters/ithome/hot.yaml +27 -0
- package/src/adapters/ithome/latest.yaml +26 -0
- package/src/adapters/jianyu/search.yaml +42 -0
- package/src/adapters/ke/ershoufang.yaml +75 -0
- package/src/adapters/ke/xiaoqu.yaml +73 -0
- package/src/adapters/kuaishou/hot.yaml +39 -0
- package/src/adapters/kuaishou/search.yaml +44 -0
- package/src/adapters/linkedin/jobs.yaml +47 -0
- package/src/adapters/lobsters/search.yaml +35 -0
- package/src/adapters/macos/active-app.yaml +16 -0
- package/src/adapters/macos/apps-list.yaml +14 -0
- package/src/adapters/macos/apps.yaml +31 -0
- package/src/adapters/macos/battery.yaml +26 -0
- package/src/adapters/macos/bluetooth.yaml +14 -0
- package/src/adapters/macos/brightness.yaml +22 -0
- package/src/adapters/macos/caffeinate.yaml +25 -0
- package/src/adapters/macos/calendar-create.yaml +81 -0
- package/src/adapters/macos/calendar-list.yaml +53 -0
- package/src/adapters/macos/calendar-today.yaml +30 -0
- package/src/adapters/macos/clipboard.yaml +23 -0
- package/src/adapters/macos/contacts-search.yaml +59 -0
- package/src/adapters/macos/dark-mode.yaml +19 -0
- package/src/adapters/macos/disk-info.yaml +31 -0
- package/src/adapters/macos/disk-usage.yaml +14 -0
- package/src/adapters/macos/do-not-disturb.yaml +21 -0
- package/src/adapters/macos/empty-trash.yaml +16 -0
- package/src/adapters/macos/finder-recent.yaml +24 -0
- package/src/adapters/macos/finder-selection.yaml +22 -0
- package/src/adapters/macos/finder-tags.yaml +40 -0
- package/src/adapters/macos/lock-screen.yaml +16 -0
- package/src/adapters/macos/mail-send.yaml +54 -0
- package/src/adapters/macos/mail-status.yaml +38 -0
- package/src/adapters/macos/messages-send.yaml +42 -0
- package/src/adapters/macos/music-control.yaml +43 -0
- package/src/adapters/macos/music-now.yaml +34 -0
- package/src/adapters/macos/notes-list.yaml +30 -0
- package/src/adapters/macos/notes-search.yaml +45 -0
- package/src/adapters/macos/notification.yaml +27 -0
- package/src/adapters/macos/notify.yaml +46 -0
- package/src/adapters/macos/open-app.yaml +21 -0
- package/src/adapters/macos/open.yaml +24 -0
- package/src/adapters/macos/photos-search.yaml +44 -0
- package/src/adapters/macos/processes.yaml +14 -0
- package/src/adapters/macos/reminder-create.yaml +75 -0
- package/src/adapters/macos/reminders-complete.yaml +33 -0
- package/src/adapters/macos/reminders-list.yaml +28 -0
- package/src/adapters/macos/safari-tabs.yaml +26 -0
- package/src/adapters/macos/say.yaml +36 -0
- package/src/adapters/macos/screen-lock.yaml +16 -0
- package/src/adapters/macos/screenshot.yaml +34 -0
- package/src/adapters/macos/shortcuts-list.yaml +14 -0
- package/src/adapters/macos/shortcuts-run.yaml +28 -0
- package/src/adapters/macos/sleep.yaml +14 -0
- package/src/adapters/macos/spotlight.yaml +43 -0
- package/src/adapters/macos/system-info.yaml +32 -0
- package/src/adapters/macos/trash.yaml +32 -0
- package/src/adapters/macos/uptime.yaml +14 -0
- package/src/adapters/macos/volume.yaml +19 -0
- package/src/adapters/macos/wifi-info.yaml +14 -0
- package/src/adapters/macos/wifi.yaml +63 -0
- package/src/adapters/maimai/search.yaml +62 -0
- package/src/adapters/maoyan/hot.yaml +33 -0
- package/src/adapters/maoyan/search.yaml +40 -0
- package/src/adapters/mastodon/timeline.yaml +33 -0
- package/src/adapters/mastodon/user.yaml +32 -0
- package/src/adapters/medium/article.yaml +22 -0
- package/src/adapters/medium/trending.yaml +30 -0
- package/src/adapters/meituan/hot.yaml +26 -0
- package/src/adapters/mubu/list.yaml +36 -0
- package/src/adapters/mubu/search.yaml +54 -0
- package/src/adapters/netease-music/playlist.yaml +34 -0
- package/src/adapters/netease-music/top.yaml +33 -0
- package/src/adapters/notion/databases.yaml +41 -0
- package/src/adapters/notion/pages.yaml +44 -0
- package/src/adapters/notion/search.yaml +41 -0
- package/src/adapters/npm/downloads.yaml +28 -0
- package/src/adapters/npm/info.yaml +25 -0
- package/src/adapters/npm/search.yaml +35 -0
- package/src/adapters/npm/versions.yaml +33 -0
- package/src/adapters/npm-trends/trending.yaml +17 -0
- package/src/adapters/nytimes/search.yaml +35 -0
- package/src/adapters/obsidian/daily.yaml +23 -0
- package/src/adapters/obsidian/open.yaml +26 -0
- package/src/adapters/obsidian/search.yaml +28 -0
- package/src/adapters/ollama/generate.yaml +33 -0
- package/src/adapters/ollama/models.yaml +29 -0
- package/src/adapters/ollama/ps.yaml +20 -0
- package/src/adapters/openrouter/search.yaml +31 -0
- package/src/adapters/perplexity/ask.yaml +33 -0
- package/src/adapters/pexels/curated.yaml +31 -0
- package/src/adapters/pinduoduo/search.yaml +36 -0
- package/src/adapters/producthunt/search.yaml +41 -0
- package/src/adapters/pypi/search.yaml +37 -0
- package/src/adapters/pypi/versions.yaml +31 -0
- package/src/adapters/quark/ls.yaml +39 -0
- package/src/adapters/quark/search.yaml +39 -0
- package/src/adapters/qweather/forecast.yaml +37 -0
- package/src/adapters/reddit/new.yaml +34 -0
- package/src/adapters/reddit/rising.yaml +33 -0
- package/src/adapters/reddit/top.yaml +40 -0
- package/src/adapters/reddit/trending.yaml +25 -0
- package/src/adapters/replicate/run.yaml +39 -0
- package/src/adapters/reuters/latest.yaml +26 -0
- package/src/adapters/sinafinance/market.yaml +21 -0
- package/src/adapters/slack/messages.yaml +41 -0
- package/src/adapters/slack/post.yaml +32 -0
- package/src/adapters/slack/search.yaml +28 -0
- package/src/adapters/slack/send.yaml +35 -0
- package/src/adapters/slack/status.yaml +19 -0
- package/src/adapters/slack/users.yaml +37 -0
- package/src/adapters/slock/servers.yaml +32 -0
- package/src/adapters/spotify/now-playing.yaml +28 -0
- package/src/adapters/spotify/playlists.yaml +37 -0
- package/src/adapters/spotify/top-tracks.yaml +42 -0
- package/src/adapters/stackoverflow/question.yaml +34 -0
- package/src/adapters/stackoverflow/tags.yaml +30 -0
- package/src/adapters/steam/app-details.yaml +32 -0
- package/src/adapters/steam/new-releases.yaml +28 -0
- package/src/adapters/steam/search.yaml +36 -0
- package/src/adapters/steam/specials.yaml +29 -0
- package/src/adapters/steam/wishlist.yaml +36 -0
- package/src/adapters/substack/trending.yaml +28 -0
- package/src/adapters/taobao/hot.yaml +31 -0
- package/src/adapters/taobao/search.yaml +44 -0
- package/src/adapters/techcrunch/search.yaml +33 -0
- package/src/adapters/theverge/search.yaml +33 -0
- package/src/adapters/threads/hot.yaml +44 -0
- package/src/adapters/threads/search.yaml +47 -0
- package/src/adapters/tiktok/trending.yaml +28 -0
- package/src/adapters/toutiao/hot.yaml +31 -0
- package/src/adapters/toutiao/search.yaml +47 -0
- package/src/adapters/twitch/games.yaml +31 -0
- package/src/adapters/twitch/search.yaml +39 -0
- package/src/adapters/twitch/streams.yaml +38 -0
- package/src/adapters/twitter/lists.yaml +49 -0
- package/src/adapters/twitter/media.yaml +48 -0
- package/src/adapters/twitter/mentions.yaml +38 -0
- package/src/adapters/twitter/mute.yaml +42 -0
- package/src/adapters/twitter/pin.yaml +43 -0
- package/src/adapters/twitter/quotes.yaml +43 -0
- package/src/adapters/twitter/retweets.yaml +44 -0
- package/src/adapters/twitter/spaces.yaml +43 -0
- package/src/adapters/twitter/unmute.yaml +42 -0
- package/src/adapters/unsplash/random.yaml +27 -0
- package/src/adapters/v2ex/search.yaml +36 -0
- package/src/adapters/vscode/extensions.yaml +23 -0
- package/src/adapters/vscode/install-ext.yaml +26 -0
- package/src/adapters/vscode/open.yaml +25 -0
- package/src/adapters/wechat-channels/hot.yaml +39 -0
- package/src/adapters/wechat-channels/search.yaml +57 -0
- package/src/adapters/weibo/trending.yaml +28 -0
- package/src/adapters/weixin/hot.yaml +22 -0
- package/src/adapters/wikipedia/today.yaml +25 -0
- package/src/adapters/xiaohongshu/follow.yaml +35 -0
- package/src/adapters/xiaohongshu/hashtag.yaml +44 -0
- package/src/adapters/xiaohongshu/hot.yaml +34 -0
- package/src/adapters/xiaohongshu/like.yaml +27 -0
- package/src/adapters/xiaohongshu/profile.yaml +39 -0
- package/src/adapters/xiaohongshu/save.yaml +27 -0
- package/src/adapters/xiaohongshu/suggest.yaml +34 -0
- package/src/adapters/xiaohongshu/trending.yaml +35 -0
- package/src/adapters/xiaohongshu/unfollow.yaml +40 -0
- package/src/adapters/xueqiu/market.yaml +25 -0
- package/src/adapters/yahoo-finance/quote.yaml +35 -0
- package/src/adapters/yahoo-finance/search.yaml +42 -0
- package/src/adapters/yahoo-finance/trending.yaml +30 -0
- package/src/adapters/youtube/playlist.yaml +43 -0
- package/src/adapters/youtube/shorts.yaml +42 -0
- package/src/adapters/youtube/trending.yaml +41 -0
- package/src/adapters/zhihu/answer.yaml +29 -0
- package/src/adapters/zhihu/answers.yaml +38 -0
- package/src/adapters/zhihu/article.yaml +27 -0
- package/src/adapters/zhihu/articles.yaml +38 -0
- package/src/adapters/zhihu/collections.yaml +37 -0
- package/src/adapters/zhihu/columns.yaml +38 -0
- package/src/adapters/zhihu/comment.yaml +42 -0
- package/src/adapters/zhihu/followers.yaml +37 -0
- package/src/adapters/zhihu/following.yaml +37 -0
- package/src/adapters/zhihu/pins.yaml +37 -0
- package/src/adapters/zhihu/topic.yaml +35 -0
- package/src/adapters/zhihu/topics.yaml +37 -0
- package/src/adapters/zhihu/trending.yaml +36 -0
- package/src/adapters/zhihu/user.yaml +30 -0
- package/src/adapters/zoom/join.yaml +24 -0
- package/src/adapters/zoom/start.yaml +17 -0
- package/src/hub/external-clis.yaml +343 -0
- package/src/hub/index.ts +128 -0
- package/src/hub/passthrough.ts +85 -0
package/dist/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.210.0",
|
|
3
3
|
"sites": {
|
|
4
4
|
"1688": {
|
|
5
5
|
"commands": [
|
|
@@ -43,6 +43,12 @@
|
|
|
43
43
|
"strategy": "public",
|
|
44
44
|
"type": "web-api"
|
|
45
45
|
},
|
|
46
|
+
{
|
|
47
|
+
"name": "latest",
|
|
48
|
+
"description": "Latest 36Kr tech news articles",
|
|
49
|
+
"strategy": "public",
|
|
50
|
+
"type": "web-api"
|
|
51
|
+
},
|
|
46
52
|
{
|
|
47
53
|
"name": "news",
|
|
48
54
|
"description": "36Kr tech news (RSS)",
|
|
@@ -178,6 +184,12 @@
|
|
|
178
184
|
"description": "Search arXiv papers",
|
|
179
185
|
"strategy": "public",
|
|
180
186
|
"type": "web-api"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"name": "trending",
|
|
190
|
+
"description": "Recent arXiv papers by category (newest submissions)",
|
|
191
|
+
"strategy": "public",
|
|
192
|
+
"type": "web-api"
|
|
181
193
|
}
|
|
182
194
|
]
|
|
183
195
|
},
|
|
@@ -263,6 +275,22 @@
|
|
|
263
275
|
}
|
|
264
276
|
]
|
|
265
277
|
},
|
|
278
|
+
"baidu": {
|
|
279
|
+
"commands": [
|
|
280
|
+
{
|
|
281
|
+
"name": "hot",
|
|
282
|
+
"description": "Get Baidu hot search trending topics",
|
|
283
|
+
"strategy": "intercept",
|
|
284
|
+
"type": "web-api"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"name": "search",
|
|
288
|
+
"description": "Search Baidu for web results",
|
|
289
|
+
"strategy": "intercept",
|
|
290
|
+
"type": "web-api"
|
|
291
|
+
}
|
|
292
|
+
]
|
|
293
|
+
},
|
|
266
294
|
"band": {
|
|
267
295
|
"commands": [
|
|
268
296
|
{
|
|
@@ -332,11 +360,35 @@
|
|
|
332
360
|
"description": "BBC News headlines (RSS)",
|
|
333
361
|
"strategy": "public",
|
|
334
362
|
"type": "web-api"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "technology",
|
|
366
|
+
"description": "BBC technology news",
|
|
367
|
+
"strategy": "public",
|
|
368
|
+
"type": "web-api"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "top",
|
|
372
|
+
"description": "BBC top news headlines",
|
|
373
|
+
"strategy": "public",
|
|
374
|
+
"type": "web-api"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "world",
|
|
378
|
+
"description": "BBC world news",
|
|
379
|
+
"strategy": "public",
|
|
380
|
+
"type": "web-api"
|
|
335
381
|
}
|
|
336
382
|
]
|
|
337
383
|
},
|
|
338
384
|
"bilibili": {
|
|
339
385
|
"commands": [
|
|
386
|
+
{
|
|
387
|
+
"name": "coin",
|
|
388
|
+
"description": "Bilibili recently coined videos",
|
|
389
|
+
"strategy": "cookie",
|
|
390
|
+
"type": "web-api"
|
|
391
|
+
},
|
|
340
392
|
{
|
|
341
393
|
"name": "comments",
|
|
342
394
|
"description": "Fetch comments on a Bilibili video",
|
|
@@ -385,6 +437,18 @@
|
|
|
385
437
|
"strategy": "cookie",
|
|
386
438
|
"type": "web-api"
|
|
387
439
|
},
|
|
440
|
+
{
|
|
441
|
+
"name": "later",
|
|
442
|
+
"description": "Bilibili watch later list",
|
|
443
|
+
"strategy": "cookie",
|
|
444
|
+
"type": "web-api"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"name": "live",
|
|
448
|
+
"description": "Bilibili popular live streams",
|
|
449
|
+
"strategy": "public",
|
|
450
|
+
"type": "web-api"
|
|
451
|
+
},
|
|
388
452
|
{
|
|
389
453
|
"name": "me",
|
|
390
454
|
"description": "Current Bilibili user profile info",
|
|
@@ -409,6 +473,12 @@
|
|
|
409
473
|
"strategy": "cookie",
|
|
410
474
|
"type": "web-api"
|
|
411
475
|
},
|
|
476
|
+
{
|
|
477
|
+
"name": "trending",
|
|
478
|
+
"description": "Bilibili trending searches",
|
|
479
|
+
"strategy": "public",
|
|
480
|
+
"type": "web-api"
|
|
481
|
+
},
|
|
412
482
|
{
|
|
413
483
|
"name": "user-videos",
|
|
414
484
|
"description": "List videos published by a Bilibili user",
|
|
@@ -417,6 +487,28 @@
|
|
|
417
487
|
}
|
|
418
488
|
]
|
|
419
489
|
},
|
|
490
|
+
"binance": {
|
|
491
|
+
"commands": [
|
|
492
|
+
{
|
|
493
|
+
"name": "hot",
|
|
494
|
+
"description": "Top trending coins by 24h trading volume",
|
|
495
|
+
"strategy": "public",
|
|
496
|
+
"type": "web-api"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"name": "kline",
|
|
500
|
+
"description": "Candlestick (kline) data for a trading pair",
|
|
501
|
+
"strategy": "public",
|
|
502
|
+
"type": "web-api"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"name": "ticker",
|
|
506
|
+
"description": "Price ticker for a trading pair",
|
|
507
|
+
"strategy": "public",
|
|
508
|
+
"type": "web-api"
|
|
509
|
+
}
|
|
510
|
+
]
|
|
511
|
+
},
|
|
420
512
|
"blender": {
|
|
421
513
|
"commands": [
|
|
422
514
|
{
|
|
@@ -583,6 +675,24 @@
|
|
|
583
675
|
"strategy": "public",
|
|
584
676
|
"type": "web-api"
|
|
585
677
|
},
|
|
678
|
+
{
|
|
679
|
+
"name": "likes",
|
|
680
|
+
"description": "Get Bluesky liked posts for a user",
|
|
681
|
+
"strategy": "cookie",
|
|
682
|
+
"type": "web-api"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"name": "notifications",
|
|
686
|
+
"description": "Get Bluesky notifications",
|
|
687
|
+
"strategy": "cookie",
|
|
688
|
+
"type": "web-api"
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"name": "post",
|
|
692
|
+
"description": "Create a Bluesky post",
|
|
693
|
+
"strategy": "cookie",
|
|
694
|
+
"type": "web-api"
|
|
695
|
+
},
|
|
586
696
|
{
|
|
587
697
|
"name": "profile",
|
|
588
698
|
"description": "Get Bluesky user profile info",
|
|
@@ -725,6 +835,22 @@
|
|
|
725
835
|
}
|
|
726
836
|
]
|
|
727
837
|
},
|
|
838
|
+
"chrome": {
|
|
839
|
+
"commands": [
|
|
840
|
+
{
|
|
841
|
+
"name": "bookmarks",
|
|
842
|
+
"description": "List bookmarks from Chrome's bookmark bar (macOS)",
|
|
843
|
+
"strategy": "public",
|
|
844
|
+
"type": "desktop"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"name": "tabs",
|
|
848
|
+
"description": "List all open tabs in Google Chrome (macOS)",
|
|
849
|
+
"strategy": "public",
|
|
850
|
+
"type": "desktop"
|
|
851
|
+
}
|
|
852
|
+
]
|
|
853
|
+
},
|
|
728
854
|
"claude-code": {
|
|
729
855
|
"commands": [
|
|
730
856
|
{
|
|
@@ -763,8 +889,24 @@
|
|
|
763
889
|
}
|
|
764
890
|
]
|
|
765
891
|
},
|
|
892
|
+
"cnki": {
|
|
893
|
+
"commands": [
|
|
894
|
+
{
|
|
895
|
+
"name": "search",
|
|
896
|
+
"description": "Search CNKI academic papers",
|
|
897
|
+
"strategy": "public",
|
|
898
|
+
"type": "web-api"
|
|
899
|
+
}
|
|
900
|
+
]
|
|
901
|
+
},
|
|
766
902
|
"cnn": {
|
|
767
903
|
"commands": [
|
|
904
|
+
{
|
|
905
|
+
"name": "technology",
|
|
906
|
+
"description": "CNN technology news",
|
|
907
|
+
"strategy": "public",
|
|
908
|
+
"type": "web-api"
|
|
909
|
+
},
|
|
768
910
|
{
|
|
769
911
|
"name": "top",
|
|
770
912
|
"description": "CNN top stories via RSS",
|
|
@@ -775,6 +917,12 @@
|
|
|
775
917
|
},
|
|
776
918
|
"cocoapods": {
|
|
777
919
|
"commands": [
|
|
920
|
+
{
|
|
921
|
+
"name": "info",
|
|
922
|
+
"description": "Get CocoaPods pod details",
|
|
923
|
+
"strategy": "public",
|
|
924
|
+
"type": "web-api"
|
|
925
|
+
},
|
|
778
926
|
{
|
|
779
927
|
"name": "search",
|
|
780
928
|
"description": "Search CocoaPods iOS/macOS libraries",
|
|
@@ -803,6 +951,22 @@
|
|
|
803
951
|
}
|
|
804
952
|
]
|
|
805
953
|
},
|
|
954
|
+
"coinbase": {
|
|
955
|
+
"commands": [
|
|
956
|
+
{
|
|
957
|
+
"name": "prices",
|
|
958
|
+
"description": "Get cryptocurrency spot prices from Coinbase",
|
|
959
|
+
"strategy": "public",
|
|
960
|
+
"type": "web-api"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"name": "rates",
|
|
964
|
+
"description": "Get cryptocurrency exchange rates from Coinbase",
|
|
965
|
+
"strategy": "public",
|
|
966
|
+
"type": "web-api"
|
|
967
|
+
}
|
|
968
|
+
]
|
|
969
|
+
},
|
|
806
970
|
"comfyui": {
|
|
807
971
|
"commands": [
|
|
808
972
|
{
|
|
@@ -839,6 +1003,12 @@
|
|
|
839
1003
|
"strategy": "intercept",
|
|
840
1004
|
"type": "web-api"
|
|
841
1005
|
},
|
|
1006
|
+
{
|
|
1007
|
+
"name": "hot",
|
|
1008
|
+
"description": "Coupang trending/popular products",
|
|
1009
|
+
"strategy": "public",
|
|
1010
|
+
"type": "web-api"
|
|
1011
|
+
},
|
|
842
1012
|
{
|
|
843
1013
|
"name": "search",
|
|
844
1014
|
"description": "Search Coupang products",
|
|
@@ -849,16 +1019,34 @@
|
|
|
849
1019
|
},
|
|
850
1020
|
"crates-io": {
|
|
851
1021
|
"commands": [
|
|
1022
|
+
{
|
|
1023
|
+
"name": "info",
|
|
1024
|
+
"description": "Get Rust crate details from crates.io",
|
|
1025
|
+
"strategy": "public",
|
|
1026
|
+
"type": "web-api"
|
|
1027
|
+
},
|
|
852
1028
|
{
|
|
853
1029
|
"name": "search",
|
|
854
1030
|
"description": "Search Rust crates on crates.io",
|
|
855
1031
|
"strategy": "public",
|
|
856
1032
|
"type": "web-api"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"name": "versions",
|
|
1036
|
+
"description": "List versions of a Rust crate",
|
|
1037
|
+
"strategy": "public",
|
|
1038
|
+
"type": "web-api"
|
|
857
1039
|
}
|
|
858
1040
|
]
|
|
859
1041
|
},
|
|
860
1042
|
"ctrip": {
|
|
861
1043
|
"commands": [
|
|
1044
|
+
{
|
|
1045
|
+
"name": "hot",
|
|
1046
|
+
"description": "Ctrip popular travel destinations",
|
|
1047
|
+
"strategy": "public",
|
|
1048
|
+
"type": "web-api"
|
|
1049
|
+
},
|
|
862
1050
|
{
|
|
863
1051
|
"name": "search",
|
|
864
1052
|
"description": "Search flights on Ctrip",
|
|
@@ -893,8 +1081,52 @@
|
|
|
893
1081
|
}
|
|
894
1082
|
]
|
|
895
1083
|
},
|
|
1084
|
+
"dangdang": {
|
|
1085
|
+
"commands": [
|
|
1086
|
+
{
|
|
1087
|
+
"name": "hot",
|
|
1088
|
+
"description": "Dangdang bestseller book list",
|
|
1089
|
+
"strategy": "intercept",
|
|
1090
|
+
"type": "web-api"
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"name": "search",
|
|
1094
|
+
"description": "Search books on Dangdang",
|
|
1095
|
+
"strategy": "intercept",
|
|
1096
|
+
"type": "web-api"
|
|
1097
|
+
}
|
|
1098
|
+
]
|
|
1099
|
+
},
|
|
1100
|
+
"deepseek": {
|
|
1101
|
+
"commands": [
|
|
1102
|
+
{
|
|
1103
|
+
"name": "chat",
|
|
1104
|
+
"description": "Chat with DeepSeek AI (OpenAI-compatible API)",
|
|
1105
|
+
"strategy": "header",
|
|
1106
|
+
"type": "web-api"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"name": "models",
|
|
1110
|
+
"description": "List available DeepSeek models",
|
|
1111
|
+
"strategy": "header",
|
|
1112
|
+
"type": "web-api"
|
|
1113
|
+
}
|
|
1114
|
+
]
|
|
1115
|
+
},
|
|
896
1116
|
"devto": {
|
|
897
1117
|
"commands": [
|
|
1118
|
+
{
|
|
1119
|
+
"name": "latest",
|
|
1120
|
+
"description": "Latest Dev.to articles",
|
|
1121
|
+
"strategy": "public",
|
|
1122
|
+
"type": "web-api"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"name": "search",
|
|
1126
|
+
"description": "Search Dev.to articles",
|
|
1127
|
+
"strategy": "public",
|
|
1128
|
+
"type": "web-api"
|
|
1129
|
+
},
|
|
898
1130
|
{
|
|
899
1131
|
"name": "tag",
|
|
900
1132
|
"description": "Latest DEV.to articles for a specific tag",
|
|
@@ -915,6 +1147,22 @@
|
|
|
915
1147
|
}
|
|
916
1148
|
]
|
|
917
1149
|
},
|
|
1150
|
+
"dianping": {
|
|
1151
|
+
"commands": [
|
|
1152
|
+
{
|
|
1153
|
+
"name": "hot",
|
|
1154
|
+
"description": "Dianping trending restaurants",
|
|
1155
|
+
"strategy": "intercept",
|
|
1156
|
+
"type": "web-api"
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
"name": "search",
|
|
1160
|
+
"description": "Search restaurants on Dianping",
|
|
1161
|
+
"strategy": "intercept",
|
|
1162
|
+
"type": "web-api"
|
|
1163
|
+
}
|
|
1164
|
+
]
|
|
1165
|
+
},
|
|
918
1166
|
"dictionary": {
|
|
919
1167
|
"commands": [
|
|
920
1168
|
{
|
|
@@ -977,6 +1225,12 @@
|
|
|
977
1225
|
"strategy": "public",
|
|
978
1226
|
"type": "bridge"
|
|
979
1227
|
},
|
|
1228
|
+
{
|
|
1229
|
+
"name": "networks",
|
|
1230
|
+
"description": "List Docker networks",
|
|
1231
|
+
"strategy": "public",
|
|
1232
|
+
"type": "desktop"
|
|
1233
|
+
},
|
|
980
1234
|
{
|
|
981
1235
|
"name": "ps",
|
|
982
1236
|
"description": "List running Docker containers",
|
|
@@ -988,16 +1242,34 @@
|
|
|
988
1242
|
"description": "Run a command in a Docker container",
|
|
989
1243
|
"strategy": "public",
|
|
990
1244
|
"type": "bridge"
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"name": "volumes",
|
|
1248
|
+
"description": "List Docker volumes",
|
|
1249
|
+
"strategy": "public",
|
|
1250
|
+
"type": "desktop"
|
|
991
1251
|
}
|
|
992
1252
|
]
|
|
993
1253
|
},
|
|
994
1254
|
"docker-hub": {
|
|
995
1255
|
"commands": [
|
|
1256
|
+
{
|
|
1257
|
+
"name": "info",
|
|
1258
|
+
"description": "Get Docker Hub image details",
|
|
1259
|
+
"strategy": "public",
|
|
1260
|
+
"type": "web-api"
|
|
1261
|
+
},
|
|
996
1262
|
{
|
|
997
1263
|
"name": "search",
|
|
998
1264
|
"description": "Search Docker Hub images",
|
|
999
1265
|
"strategy": "public",
|
|
1000
1266
|
"type": "web-api"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"name": "tags",
|
|
1270
|
+
"description": "List Docker Hub image tags",
|
|
1271
|
+
"strategy": "public",
|
|
1272
|
+
"type": "web-api"
|
|
1001
1273
|
}
|
|
1002
1274
|
]
|
|
1003
1275
|
},
|
|
@@ -1025,6 +1297,12 @@
|
|
|
1025
1297
|
"strategy": "cookie",
|
|
1026
1298
|
"type": "browser"
|
|
1027
1299
|
},
|
|
1300
|
+
{
|
|
1301
|
+
"name": "group-hot",
|
|
1302
|
+
"description": "Douban group hot topics",
|
|
1303
|
+
"strategy": "cookie",
|
|
1304
|
+
"type": "web-api"
|
|
1305
|
+
},
|
|
1028
1306
|
{
|
|
1029
1307
|
"name": "marks",
|
|
1030
1308
|
"description": "Douban movie marks/ratings for a user",
|
|
@@ -1037,6 +1315,12 @@
|
|
|
1037
1315
|
"strategy": "public",
|
|
1038
1316
|
"type": "web-api"
|
|
1039
1317
|
},
|
|
1318
|
+
{
|
|
1319
|
+
"name": "new-movies",
|
|
1320
|
+
"description": "Douban new movies in theaters",
|
|
1321
|
+
"strategy": "public",
|
|
1322
|
+
"type": "web-api"
|
|
1323
|
+
},
|
|
1040
1324
|
{
|
|
1041
1325
|
"name": "photos",
|
|
1042
1326
|
"description": "Get Douban movie posters and stills",
|
|
@@ -1066,6 +1350,34 @@
|
|
|
1066
1350
|
"description": "Douban movie Top 250",
|
|
1067
1351
|
"strategy": "cookie",
|
|
1068
1352
|
"type": "browser"
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
"name": "tv-hot",
|
|
1356
|
+
"description": "Douban popular TV shows",
|
|
1357
|
+
"strategy": "public",
|
|
1358
|
+
"type": "web-api"
|
|
1359
|
+
}
|
|
1360
|
+
]
|
|
1361
|
+
},
|
|
1362
|
+
"doubao": {
|
|
1363
|
+
"commands": [
|
|
1364
|
+
{
|
|
1365
|
+
"name": "ask",
|
|
1366
|
+
"description": "Ask Doubao AI a question",
|
|
1367
|
+
"strategy": "intercept",
|
|
1368
|
+
"type": "web-api"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"name": "new",
|
|
1372
|
+
"description": "Start a new Doubao chat conversation",
|
|
1373
|
+
"strategy": "intercept",
|
|
1374
|
+
"type": "web-api"
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"name": "status",
|
|
1378
|
+
"description": "Check Doubao login status",
|
|
1379
|
+
"strategy": "intercept",
|
|
1380
|
+
"type": "web-api"
|
|
1069
1381
|
}
|
|
1070
1382
|
]
|
|
1071
1383
|
},
|
|
@@ -1209,6 +1521,22 @@
|
|
|
1209
1521
|
}
|
|
1210
1522
|
]
|
|
1211
1523
|
},
|
|
1524
|
+
"douyu": {
|
|
1525
|
+
"commands": [
|
|
1526
|
+
{
|
|
1527
|
+
"name": "hot",
|
|
1528
|
+
"description": "Douyu trending live streams",
|
|
1529
|
+
"strategy": "public",
|
|
1530
|
+
"type": "web-api"
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
"name": "search",
|
|
1534
|
+
"description": "Search Douyu live streams",
|
|
1535
|
+
"strategy": "intercept",
|
|
1536
|
+
"type": "web-api"
|
|
1537
|
+
}
|
|
1538
|
+
]
|
|
1539
|
+
},
|
|
1212
1540
|
"drawio": {
|
|
1213
1541
|
"commands": [
|
|
1214
1542
|
{
|
|
@@ -1221,12 +1549,24 @@
|
|
|
1221
1549
|
},
|
|
1222
1550
|
"eastmoney": {
|
|
1223
1551
|
"commands": [
|
|
1552
|
+
{
|
|
1553
|
+
"name": "fund",
|
|
1554
|
+
"description": "East Money fund search",
|
|
1555
|
+
"strategy": "public",
|
|
1556
|
+
"type": "web-api"
|
|
1557
|
+
},
|
|
1224
1558
|
{
|
|
1225
1559
|
"name": "hot",
|
|
1226
1560
|
"description": "Eastmoney hot stocks (A-share volume leaders)",
|
|
1227
1561
|
"strategy": "public",
|
|
1228
1562
|
"type": "web-api"
|
|
1229
1563
|
},
|
|
1564
|
+
{
|
|
1565
|
+
"name": "market",
|
|
1566
|
+
"description": "East Money market indices overview",
|
|
1567
|
+
"strategy": "public",
|
|
1568
|
+
"type": "web-api"
|
|
1569
|
+
},
|
|
1230
1570
|
{
|
|
1231
1571
|
"name": "search",
|
|
1232
1572
|
"description": "Search stocks on Eastmoney",
|
|
@@ -1235,6 +1575,22 @@
|
|
|
1235
1575
|
}
|
|
1236
1576
|
]
|
|
1237
1577
|
},
|
|
1578
|
+
"ele": {
|
|
1579
|
+
"commands": [
|
|
1580
|
+
{
|
|
1581
|
+
"name": "hot",
|
|
1582
|
+
"description": "Ele.me trending restaurants",
|
|
1583
|
+
"strategy": "intercept",
|
|
1584
|
+
"type": "web-api"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"name": "search",
|
|
1588
|
+
"description": "Search restaurants and food on Ele.me",
|
|
1589
|
+
"strategy": "intercept",
|
|
1590
|
+
"type": "web-api"
|
|
1591
|
+
}
|
|
1592
|
+
]
|
|
1593
|
+
},
|
|
1238
1594
|
"exchangerate": {
|
|
1239
1595
|
"commands": [
|
|
1240
1596
|
{
|
|
@@ -1242,6 +1598,12 @@
|
|
|
1242
1598
|
"description": "Get exchange rates (free API, no key needed)",
|
|
1243
1599
|
"strategy": "public",
|
|
1244
1600
|
"type": "web-api"
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
"name": "list",
|
|
1604
|
+
"description": "List all exchange rates for a base currency",
|
|
1605
|
+
"strategy": "public",
|
|
1606
|
+
"type": "web-api"
|
|
1245
1607
|
}
|
|
1246
1608
|
]
|
|
1247
1609
|
},
|
|
@@ -1283,6 +1645,12 @@
|
|
|
1283
1645
|
"strategy": "intercept",
|
|
1284
1646
|
"type": "web-api"
|
|
1285
1647
|
},
|
|
1648
|
+
{
|
|
1649
|
+
"name": "marketplace",
|
|
1650
|
+
"description": "Search Facebook Marketplace listings",
|
|
1651
|
+
"strategy": "cookie",
|
|
1652
|
+
"type": "web-api"
|
|
1653
|
+
},
|
|
1286
1654
|
{
|
|
1287
1655
|
"name": "memories",
|
|
1288
1656
|
"description": "Get your Facebook memories (On This Day)",
|
|
@@ -1295,6 +1663,12 @@
|
|
|
1295
1663
|
"strategy": "intercept",
|
|
1296
1664
|
"type": "web-api"
|
|
1297
1665
|
},
|
|
1666
|
+
{
|
|
1667
|
+
"name": "post",
|
|
1668
|
+
"description": "Create a Facebook post",
|
|
1669
|
+
"strategy": "cookie",
|
|
1670
|
+
"type": "web-api"
|
|
1671
|
+
},
|
|
1298
1672
|
{
|
|
1299
1673
|
"name": "profile",
|
|
1300
1674
|
"description": "Get Facebook user/page profile info",
|
|
@@ -1511,6 +1885,22 @@
|
|
|
1511
1885
|
}
|
|
1512
1886
|
]
|
|
1513
1887
|
},
|
|
1888
|
+
"futu": {
|
|
1889
|
+
"commands": [
|
|
1890
|
+
{
|
|
1891
|
+
"name": "hot",
|
|
1892
|
+
"description": "Futu hot stocks list",
|
|
1893
|
+
"strategy": "intercept",
|
|
1894
|
+
"type": "web-api"
|
|
1895
|
+
},
|
|
1896
|
+
{
|
|
1897
|
+
"name": "quote",
|
|
1898
|
+
"description": "Get stock quote from Futu",
|
|
1899
|
+
"strategy": "intercept",
|
|
1900
|
+
"type": "web-api"
|
|
1901
|
+
}
|
|
1902
|
+
]
|
|
1903
|
+
},
|
|
1514
1904
|
"gcloud": {
|
|
1515
1905
|
"commands": [
|
|
1516
1906
|
{
|
|
@@ -1667,6 +2057,12 @@
|
|
|
1667
2057
|
},
|
|
1668
2058
|
"gitee": {
|
|
1669
2059
|
"commands": [
|
|
2060
|
+
{
|
|
2061
|
+
"name": "repos",
|
|
2062
|
+
"description": "Search Gitee repositories",
|
|
2063
|
+
"strategy": "public",
|
|
2064
|
+
"type": "web-api"
|
|
2065
|
+
},
|
|
1670
2066
|
{
|
|
1671
2067
|
"name": "search",
|
|
1672
2068
|
"description": "Search repositories on Gitee",
|
|
@@ -1688,11 +2084,29 @@
|
|
|
1688
2084
|
"description": "GitHub trending repositories (by recent stars)",
|
|
1689
2085
|
"strategy": "public",
|
|
1690
2086
|
"type": "web-api"
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
"name": "developers",
|
|
2090
|
+
"description": "GitHub trending developers",
|
|
2091
|
+
"strategy": "public",
|
|
2092
|
+
"type": "web-api"
|
|
2093
|
+
},
|
|
2094
|
+
{
|
|
2095
|
+
"name": "weekly",
|
|
2096
|
+
"description": "GitHub trending repositories this week",
|
|
2097
|
+
"strategy": "public",
|
|
2098
|
+
"type": "web-api"
|
|
1691
2099
|
}
|
|
1692
2100
|
]
|
|
1693
2101
|
},
|
|
1694
2102
|
"gitlab": {
|
|
1695
2103
|
"commands": [
|
|
2104
|
+
{
|
|
2105
|
+
"name": "projects",
|
|
2106
|
+
"description": "Search GitLab projects",
|
|
2107
|
+
"strategy": "public",
|
|
2108
|
+
"type": "web-api"
|
|
2109
|
+
},
|
|
1696
2110
|
{
|
|
1697
2111
|
"name": "search",
|
|
1698
2112
|
"description": "Search GitLab projects",
|
|
@@ -1775,6 +2189,18 @@
|
|
|
1775
2189
|
"strategy": "public",
|
|
1776
2190
|
"type": "web-api"
|
|
1777
2191
|
},
|
|
2192
|
+
{
|
|
2193
|
+
"name": "comments",
|
|
2194
|
+
"description": "Get comments for a Hacker News story",
|
|
2195
|
+
"strategy": "public",
|
|
2196
|
+
"type": "web-api"
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
"name": "item",
|
|
2200
|
+
"description": "Get a Hacker News item (story, comment, job, poll)",
|
|
2201
|
+
"strategy": "public",
|
|
2202
|
+
"type": "web-api"
|
|
2203
|
+
},
|
|
1778
2204
|
{
|
|
1779
2205
|
"name": "jobs",
|
|
1780
2206
|
"description": "Hacker News job postings",
|
|
@@ -1837,12 +2263,24 @@
|
|
|
1837
2263
|
},
|
|
1838
2264
|
"hf": {
|
|
1839
2265
|
"commands": [
|
|
2266
|
+
{
|
|
2267
|
+
"name": "datasets",
|
|
2268
|
+
"description": "Search Hugging Face datasets",
|
|
2269
|
+
"strategy": "public",
|
|
2270
|
+
"type": "web-api"
|
|
2271
|
+
},
|
|
1840
2272
|
{
|
|
1841
2273
|
"name": "models",
|
|
1842
2274
|
"description": "Search HuggingFace models",
|
|
1843
2275
|
"strategy": "public",
|
|
1844
2276
|
"type": "bridge"
|
|
1845
2277
|
},
|
|
2278
|
+
{
|
|
2279
|
+
"name": "spaces",
|
|
2280
|
+
"description": "Search Hugging Face Spaces",
|
|
2281
|
+
"strategy": "public",
|
|
2282
|
+
"type": "web-api"
|
|
2283
|
+
},
|
|
1846
2284
|
{
|
|
1847
2285
|
"name": "top",
|
|
1848
2286
|
"description": "Top upvoted Hugging Face papers (daily)",
|
|
@@ -1858,6 +2296,12 @@
|
|
|
1858
2296
|
"description": "Get Homebrew formula details",
|
|
1859
2297
|
"strategy": "public",
|
|
1860
2298
|
"type": "web-api"
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"name": "search",
|
|
2302
|
+
"description": "Search Homebrew formulae",
|
|
2303
|
+
"strategy": "public",
|
|
2304
|
+
"type": "web-api"
|
|
1861
2305
|
}
|
|
1862
2306
|
]
|
|
1863
2307
|
},
|
|
@@ -1868,6 +2312,12 @@
|
|
|
1868
2312
|
"description": "Daily trending papers on Hugging Face",
|
|
1869
2313
|
"strategy": "public",
|
|
1870
2314
|
"type": "web-api"
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
"name": "search",
|
|
2318
|
+
"description": "Search Hugging Face papers",
|
|
2319
|
+
"strategy": "public",
|
|
2320
|
+
"type": "web-api"
|
|
1871
2321
|
}
|
|
1872
2322
|
]
|
|
1873
2323
|
},
|
|
@@ -1959,6 +2409,12 @@
|
|
|
1959
2409
|
},
|
|
1960
2410
|
"imdb": {
|
|
1961
2411
|
"commands": [
|
|
2412
|
+
{
|
|
2413
|
+
"name": "box-office",
|
|
2414
|
+
"description": "IMDB box office / popular movies",
|
|
2415
|
+
"strategy": "public",
|
|
2416
|
+
"type": "web-api"
|
|
2417
|
+
},
|
|
1962
2418
|
{
|
|
1963
2419
|
"name": "person",
|
|
1964
2420
|
"description": "IMDb person/actor details via suggestion API",
|
|
@@ -2004,6 +2460,12 @@
|
|
|
2004
2460
|
"description": "Latest InfoQ articles (Chinese edition)",
|
|
2005
2461
|
"strategy": "public",
|
|
2006
2462
|
"type": "web-api"
|
|
2463
|
+
},
|
|
2464
|
+
{
|
|
2465
|
+
"name": "latest",
|
|
2466
|
+
"description": "Latest InfoQ articles",
|
|
2467
|
+
"strategy": "public",
|
|
2468
|
+
"type": "web-api"
|
|
2007
2469
|
}
|
|
2008
2470
|
]
|
|
2009
2471
|
},
|
|
@@ -2031,6 +2493,12 @@
|
|
|
2031
2493
|
},
|
|
2032
2494
|
"instagram": {
|
|
2033
2495
|
"commands": [
|
|
2496
|
+
{
|
|
2497
|
+
"name": "activity",
|
|
2498
|
+
"description": "Get recent activity/notifications for logged-in Instagram user",
|
|
2499
|
+
"strategy": "intercept",
|
|
2500
|
+
"type": "web-api"
|
|
2501
|
+
},
|
|
2034
2502
|
{
|
|
2035
2503
|
"name": "comment",
|
|
2036
2504
|
"description": "Comment on an Instagram post",
|
|
@@ -2067,6 +2535,12 @@
|
|
|
2067
2535
|
"strategy": "intercept",
|
|
2068
2536
|
"type": "web-api"
|
|
2069
2537
|
},
|
|
2538
|
+
{
|
|
2539
|
+
"name": "highlights",
|
|
2540
|
+
"description": "List story highlights for an Instagram user",
|
|
2541
|
+
"strategy": "intercept",
|
|
2542
|
+
"type": "web-api"
|
|
2543
|
+
},
|
|
2070
2544
|
{
|
|
2071
2545
|
"name": "like",
|
|
2072
2546
|
"description": "Like an Instagram post",
|
|
@@ -2097,6 +2571,18 @@
|
|
|
2097
2571
|
"strategy": "ui",
|
|
2098
2572
|
"type": "web-api"
|
|
2099
2573
|
},
|
|
2574
|
+
{
|
|
2575
|
+
"name": "reels",
|
|
2576
|
+
"description": "Get Instagram trending reels",
|
|
2577
|
+
"strategy": "cookie",
|
|
2578
|
+
"type": "web-api"
|
|
2579
|
+
},
|
|
2580
|
+
{
|
|
2581
|
+
"name": "reels-trending",
|
|
2582
|
+
"description": "Get trending Instagram Reels",
|
|
2583
|
+
"strategy": "intercept",
|
|
2584
|
+
"type": "web-api"
|
|
2585
|
+
},
|
|
2100
2586
|
{
|
|
2101
2587
|
"name": "save",
|
|
2102
2588
|
"description": "Save (bookmark) an Instagram post",
|
|
@@ -2115,12 +2601,30 @@
|
|
|
2115
2601
|
"strategy": "intercept",
|
|
2116
2602
|
"type": "web-api"
|
|
2117
2603
|
},
|
|
2604
|
+
{
|
|
2605
|
+
"name": "stories",
|
|
2606
|
+
"description": "Get Instagram stories for a user",
|
|
2607
|
+
"strategy": "cookie",
|
|
2608
|
+
"type": "web-api"
|
|
2609
|
+
},
|
|
2118
2610
|
{
|
|
2119
2611
|
"name": "story",
|
|
2120
2612
|
"description": "Post a single Instagram story image or video",
|
|
2121
2613
|
"strategy": "ui",
|
|
2122
2614
|
"type": "web-api"
|
|
2123
2615
|
},
|
|
2616
|
+
{
|
|
2617
|
+
"name": "suggested",
|
|
2618
|
+
"description": "Get suggested users to follow on Instagram",
|
|
2619
|
+
"strategy": "intercept",
|
|
2620
|
+
"type": "web-api"
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
"name": "tags",
|
|
2624
|
+
"description": "Browse recent posts for an Instagram hashtag",
|
|
2625
|
+
"strategy": "intercept",
|
|
2626
|
+
"type": "web-api"
|
|
2627
|
+
},
|
|
2124
2628
|
{
|
|
2125
2629
|
"name": "unfollow",
|
|
2126
2630
|
"description": "Unfollow an Instagram user",
|
|
@@ -2164,11 +2668,35 @@
|
|
|
2164
2668
|
"description": "Popular games on itch.io",
|
|
2165
2669
|
"strategy": "public",
|
|
2166
2670
|
"type": "web-api"
|
|
2671
|
+
},
|
|
2672
|
+
{
|
|
2673
|
+
"name": "search",
|
|
2674
|
+
"description": "Search itch.io games",
|
|
2675
|
+
"strategy": "public",
|
|
2676
|
+
"type": "web-api"
|
|
2677
|
+
},
|
|
2678
|
+
{
|
|
2679
|
+
"name": "top",
|
|
2680
|
+
"description": "Top rated itch.io games",
|
|
2681
|
+
"strategy": "public",
|
|
2682
|
+
"type": "web-api"
|
|
2167
2683
|
}
|
|
2168
2684
|
]
|
|
2169
2685
|
},
|
|
2170
2686
|
"ithome": {
|
|
2171
2687
|
"commands": [
|
|
2688
|
+
{
|
|
2689
|
+
"name": "hot",
|
|
2690
|
+
"description": "IT Home hot news",
|
|
2691
|
+
"strategy": "public",
|
|
2692
|
+
"type": "web-api"
|
|
2693
|
+
},
|
|
2694
|
+
{
|
|
2695
|
+
"name": "latest",
|
|
2696
|
+
"description": "Latest IT Home news articles",
|
|
2697
|
+
"strategy": "public",
|
|
2698
|
+
"type": "web-api"
|
|
2699
|
+
},
|
|
2172
2700
|
{
|
|
2173
2701
|
"name": "news",
|
|
2174
2702
|
"description": "IT Home (IT之家) latest tech news via RSS",
|
|
@@ -2205,6 +2733,16 @@
|
|
|
2205
2733
|
}
|
|
2206
2734
|
]
|
|
2207
2735
|
},
|
|
2736
|
+
"jianyu": {
|
|
2737
|
+
"commands": [
|
|
2738
|
+
{
|
|
2739
|
+
"name": "search",
|
|
2740
|
+
"description": "Search Jianyu real estate listings",
|
|
2741
|
+
"strategy": "intercept",
|
|
2742
|
+
"type": "browser"
|
|
2743
|
+
}
|
|
2744
|
+
]
|
|
2745
|
+
},
|
|
2208
2746
|
"jike": {
|
|
2209
2747
|
"commands": [
|
|
2210
2748
|
{
|
|
@@ -2323,6 +2861,22 @@
|
|
|
2323
2861
|
}
|
|
2324
2862
|
]
|
|
2325
2863
|
},
|
|
2864
|
+
"ke": {
|
|
2865
|
+
"commands": [
|
|
2866
|
+
{
|
|
2867
|
+
"name": "ershoufang",
|
|
2868
|
+
"description": "Ke.com (Beike) second-hand housing listings",
|
|
2869
|
+
"strategy": "intercept",
|
|
2870
|
+
"type": "browser"
|
|
2871
|
+
},
|
|
2872
|
+
{
|
|
2873
|
+
"name": "xiaoqu",
|
|
2874
|
+
"description": "Ke.com (Beike) neighborhood/community listings",
|
|
2875
|
+
"strategy": "intercept",
|
|
2876
|
+
"type": "browser"
|
|
2877
|
+
}
|
|
2878
|
+
]
|
|
2879
|
+
},
|
|
2326
2880
|
"krita": {
|
|
2327
2881
|
"commands": [
|
|
2328
2882
|
{
|
|
@@ -2351,6 +2905,22 @@
|
|
|
2351
2905
|
}
|
|
2352
2906
|
]
|
|
2353
2907
|
},
|
|
2908
|
+
"kuaishou": {
|
|
2909
|
+
"commands": [
|
|
2910
|
+
{
|
|
2911
|
+
"name": "hot",
|
|
2912
|
+
"description": "Kuaishou trending videos",
|
|
2913
|
+
"strategy": "intercept",
|
|
2914
|
+
"type": "web-api"
|
|
2915
|
+
},
|
|
2916
|
+
{
|
|
2917
|
+
"name": "search",
|
|
2918
|
+
"description": "Search Kuaishou videos",
|
|
2919
|
+
"strategy": "intercept",
|
|
2920
|
+
"type": "web-api"
|
|
2921
|
+
}
|
|
2922
|
+
]
|
|
2923
|
+
},
|
|
2354
2924
|
"lark": {
|
|
2355
2925
|
"commands": [
|
|
2356
2926
|
{
|
|
@@ -2473,6 +3043,12 @@
|
|
|
2473
3043
|
},
|
|
2474
3044
|
"linkedin": {
|
|
2475
3045
|
"commands": [
|
|
3046
|
+
{
|
|
3047
|
+
"name": "jobs",
|
|
3048
|
+
"description": "Search LinkedIn job postings",
|
|
3049
|
+
"strategy": "cookie",
|
|
3050
|
+
"type": "web-api"
|
|
3051
|
+
},
|
|
2476
3052
|
{
|
|
2477
3053
|
"name": "manifest",
|
|
2478
3054
|
"description": "LinkedIn — professional networking and job search",
|
|
@@ -2583,6 +3159,12 @@
|
|
|
2583
3159
|
"strategy": "public",
|
|
2584
3160
|
"type": "web-api"
|
|
2585
3161
|
},
|
|
3162
|
+
{
|
|
3163
|
+
"name": "search",
|
|
3164
|
+
"description": "Search Lobsters stories",
|
|
3165
|
+
"strategy": "public",
|
|
3166
|
+
"type": "web-api"
|
|
3167
|
+
},
|
|
2586
3168
|
{
|
|
2587
3169
|
"name": "tag",
|
|
2588
3170
|
"description": "Lobste.rs stories by tag",
|
|
@@ -2591,74 +3173,440 @@
|
|
|
2591
3173
|
}
|
|
2592
3174
|
]
|
|
2593
3175
|
},
|
|
2594
|
-
"
|
|
3176
|
+
"macos": {
|
|
2595
3177
|
"commands": [
|
|
2596
3178
|
{
|
|
2597
|
-
"name": "
|
|
2598
|
-
"description": "
|
|
3179
|
+
"name": "active-app",
|
|
3180
|
+
"description": "Get the currently active macOS application",
|
|
2599
3181
|
"strategy": "public",
|
|
2600
|
-
"type": "
|
|
3182
|
+
"type": "desktop"
|
|
2601
3183
|
},
|
|
2602
3184
|
{
|
|
2603
|
-
"name": "
|
|
2604
|
-
"description": "
|
|
3185
|
+
"name": "apps",
|
|
3186
|
+
"description": "List running applications with name, PID, and bundle ID",
|
|
2605
3187
|
"strategy": "public",
|
|
2606
|
-
"type": "
|
|
2607
|
-
}
|
|
2608
|
-
]
|
|
2609
|
-
},
|
|
2610
|
-
"medium": {
|
|
2611
|
-
"commands": [
|
|
3188
|
+
"type": "desktop"
|
|
3189
|
+
},
|
|
2612
3190
|
{
|
|
2613
|
-
"name": "
|
|
2614
|
-
"description": "
|
|
3191
|
+
"name": "apps-list",
|
|
3192
|
+
"description": "List installed macOS applications",
|
|
2615
3193
|
"strategy": "public",
|
|
2616
|
-
"type": "
|
|
3194
|
+
"type": "desktop"
|
|
2617
3195
|
},
|
|
2618
3196
|
{
|
|
2619
|
-
"name": "
|
|
2620
|
-
"description": "
|
|
3197
|
+
"name": "battery",
|
|
3198
|
+
"description": "Get battery percentage, charging status, and time remaining",
|
|
2621
3199
|
"strategy": "public",
|
|
2622
|
-
"type": "
|
|
3200
|
+
"type": "desktop"
|
|
2623
3201
|
},
|
|
2624
3202
|
{
|
|
2625
|
-
"name": "
|
|
2626
|
-
"description": "
|
|
3203
|
+
"name": "bluetooth",
|
|
3204
|
+
"description": "Check macOS Bluetooth status",
|
|
2627
3205
|
"strategy": "public",
|
|
2628
|
-
"type": "
|
|
2629
|
-
}
|
|
2630
|
-
]
|
|
2631
|
-
},
|
|
2632
|
-
"meituan": {
|
|
2633
|
-
"commands": [
|
|
3206
|
+
"type": "desktop"
|
|
3207
|
+
},
|
|
2634
3208
|
{
|
|
2635
|
-
"name": "
|
|
2636
|
-
"description": "
|
|
2637
|
-
"strategy": "
|
|
2638
|
-
"type": "
|
|
2639
|
-
}
|
|
2640
|
-
]
|
|
2641
|
-
},
|
|
2642
|
-
"mermaid": {
|
|
2643
|
-
"commands": [
|
|
3209
|
+
"name": "brightness",
|
|
3210
|
+
"description": "Get current screen brightness",
|
|
3211
|
+
"strategy": "public",
|
|
3212
|
+
"type": "desktop"
|
|
3213
|
+
},
|
|
2644
3214
|
{
|
|
2645
|
-
"name": "
|
|
2646
|
-
"description": "
|
|
3215
|
+
"name": "caffeinate",
|
|
3216
|
+
"description": "Keep Mac awake for a specified duration (prevents display sleep)",
|
|
2647
3217
|
"strategy": "public",
|
|
2648
3218
|
"type": "desktop"
|
|
2649
|
-
}
|
|
2650
|
-
]
|
|
2651
|
-
},
|
|
2652
|
-
"minimax": {
|
|
2653
|
-
"commands": [
|
|
3219
|
+
},
|
|
2654
3220
|
{
|
|
2655
|
-
"name": "
|
|
2656
|
-
"description": "
|
|
2657
|
-
"strategy": "
|
|
2658
|
-
"type": "
|
|
3221
|
+
"name": "calendar-create",
|
|
3222
|
+
"description": "Create a new calendar event with title, date, time, and duration",
|
|
3223
|
+
"strategy": "public",
|
|
3224
|
+
"type": "desktop"
|
|
2659
3225
|
},
|
|
2660
3226
|
{
|
|
2661
|
-
"name": "
|
|
3227
|
+
"name": "calendar-list",
|
|
3228
|
+
"description": "List calendar events for the next N days",
|
|
3229
|
+
"strategy": "public",
|
|
3230
|
+
"type": "desktop"
|
|
3231
|
+
},
|
|
3232
|
+
{
|
|
3233
|
+
"name": "calendar-today",
|
|
3234
|
+
"description": "List today's calendar events from macOS Calendar.app",
|
|
3235
|
+
"strategy": "public",
|
|
3236
|
+
"type": "desktop"
|
|
3237
|
+
},
|
|
3238
|
+
{
|
|
3239
|
+
"name": "clipboard",
|
|
3240
|
+
"description": "Get current clipboard text contents",
|
|
3241
|
+
"strategy": "public",
|
|
3242
|
+
"type": "desktop"
|
|
3243
|
+
},
|
|
3244
|
+
{
|
|
3245
|
+
"name": "contacts-search",
|
|
3246
|
+
"description": "Search contacts by name, email, or phone",
|
|
3247
|
+
"strategy": "public",
|
|
3248
|
+
"type": "desktop"
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
"name": "dark-mode",
|
|
3252
|
+
"description": "Get current dark mode status",
|
|
3253
|
+
"strategy": "public",
|
|
3254
|
+
"type": "desktop"
|
|
3255
|
+
},
|
|
3256
|
+
{
|
|
3257
|
+
"name": "disk-info",
|
|
3258
|
+
"description": "Get disk names, capacity, and free space for all mounted volumes",
|
|
3259
|
+
"strategy": "public",
|
|
3260
|
+
"type": "desktop"
|
|
3261
|
+
},
|
|
3262
|
+
{
|
|
3263
|
+
"name": "disk-usage",
|
|
3264
|
+
"description": "Get disk usage summary",
|
|
3265
|
+
"strategy": "public",
|
|
3266
|
+
"type": "desktop"
|
|
3267
|
+
},
|
|
3268
|
+
{
|
|
3269
|
+
"name": "do-not-disturb",
|
|
3270
|
+
"description": "Toggle macOS Focus/Do Not Disturb mode",
|
|
3271
|
+
"strategy": "public",
|
|
3272
|
+
"type": "desktop"
|
|
3273
|
+
},
|
|
3274
|
+
{
|
|
3275
|
+
"name": "empty-trash",
|
|
3276
|
+
"description": "Empty the macOS Trash",
|
|
3277
|
+
"strategy": "public",
|
|
3278
|
+
"type": "desktop"
|
|
3279
|
+
},
|
|
3280
|
+
{
|
|
3281
|
+
"name": "finder-recent",
|
|
3282
|
+
"description": "List files opened in the last 7 days",
|
|
3283
|
+
"strategy": "public",
|
|
3284
|
+
"type": "desktop"
|
|
3285
|
+
},
|
|
3286
|
+
{
|
|
3287
|
+
"name": "finder-selection",
|
|
3288
|
+
"description": "Get currently selected files in Finder",
|
|
3289
|
+
"strategy": "public",
|
|
3290
|
+
"type": "desktop"
|
|
3291
|
+
},
|
|
3292
|
+
{
|
|
3293
|
+
"name": "finder-tags",
|
|
3294
|
+
"description": "List Finder tags on a file or directory",
|
|
3295
|
+
"strategy": "public",
|
|
3296
|
+
"type": "desktop"
|
|
3297
|
+
},
|
|
3298
|
+
{
|
|
3299
|
+
"name": "lock-screen",
|
|
3300
|
+
"description": "Lock the screen (put display to sleep)",
|
|
3301
|
+
"strategy": "public",
|
|
3302
|
+
"type": "desktop"
|
|
3303
|
+
},
|
|
3304
|
+
{
|
|
3305
|
+
"name": "mail-send",
|
|
3306
|
+
"description": "Send an email using Mail.app",
|
|
3307
|
+
"strategy": "public",
|
|
3308
|
+
"type": "desktop"
|
|
3309
|
+
},
|
|
3310
|
+
{
|
|
3311
|
+
"name": "mail-status",
|
|
3312
|
+
"description": "Get Mail.app accounts and unread message counts",
|
|
3313
|
+
"strategy": "public",
|
|
3314
|
+
"type": "desktop"
|
|
3315
|
+
},
|
|
3316
|
+
{
|
|
3317
|
+
"name": "messages-send",
|
|
3318
|
+
"description": "Send an iMessage to a contact",
|
|
3319
|
+
"strategy": "public",
|
|
3320
|
+
"type": "desktop"
|
|
3321
|
+
},
|
|
3322
|
+
{
|
|
3323
|
+
"name": "music-control",
|
|
3324
|
+
"description": "Control Apple Music playback (play, pause, next, prev, toggle)",
|
|
3325
|
+
"strategy": "public",
|
|
3326
|
+
"type": "desktop"
|
|
3327
|
+
},
|
|
3328
|
+
{
|
|
3329
|
+
"name": "music-now",
|
|
3330
|
+
"description": "Get currently playing track from Apple Music",
|
|
3331
|
+
"strategy": "public",
|
|
3332
|
+
"type": "desktop"
|
|
3333
|
+
},
|
|
3334
|
+
{
|
|
3335
|
+
"name": "notes-list",
|
|
3336
|
+
"description": "List recent Apple Notes with folder and modification date",
|
|
3337
|
+
"strategy": "public",
|
|
3338
|
+
"type": "desktop"
|
|
3339
|
+
},
|
|
3340
|
+
{
|
|
3341
|
+
"name": "notes-search",
|
|
3342
|
+
"description": "Search Apple Notes by title or content",
|
|
3343
|
+
"strategy": "public",
|
|
3344
|
+
"type": "desktop"
|
|
3345
|
+
},
|
|
3346
|
+
{
|
|
3347
|
+
"name": "notification",
|
|
3348
|
+
"description": "Send a macOS notification",
|
|
3349
|
+
"strategy": "public",
|
|
3350
|
+
"type": "desktop"
|
|
3351
|
+
},
|
|
3352
|
+
{
|
|
3353
|
+
"name": "notify",
|
|
3354
|
+
"description": "Send a macOS notification with title and optional subtitle",
|
|
3355
|
+
"strategy": "public",
|
|
3356
|
+
"type": "desktop"
|
|
3357
|
+
},
|
|
3358
|
+
{
|
|
3359
|
+
"name": "open",
|
|
3360
|
+
"description": "Open a file, URL, or application using macOS open command",
|
|
3361
|
+
"strategy": "public",
|
|
3362
|
+
"type": "desktop"
|
|
3363
|
+
},
|
|
3364
|
+
{
|
|
3365
|
+
"name": "open-app",
|
|
3366
|
+
"description": "Open a macOS application",
|
|
3367
|
+
"strategy": "public",
|
|
3368
|
+
"type": "desktop"
|
|
3369
|
+
},
|
|
3370
|
+
{
|
|
3371
|
+
"name": "photos-search",
|
|
3372
|
+
"description": "Search Apple Photos library by keyword",
|
|
3373
|
+
"strategy": "public",
|
|
3374
|
+
"type": "desktop"
|
|
3375
|
+
},
|
|
3376
|
+
{
|
|
3377
|
+
"name": "processes",
|
|
3378
|
+
"description": "List top processes by CPU usage",
|
|
3379
|
+
"strategy": "public",
|
|
3380
|
+
"type": "desktop"
|
|
3381
|
+
},
|
|
3382
|
+
{
|
|
3383
|
+
"name": "reminder-create",
|
|
3384
|
+
"description": "Create a new reminder in Reminders.app",
|
|
3385
|
+
"strategy": "public",
|
|
3386
|
+
"type": "desktop"
|
|
3387
|
+
},
|
|
3388
|
+
{
|
|
3389
|
+
"name": "reminders-complete",
|
|
3390
|
+
"description": "Mark a reminder as complete in macOS Reminders.app",
|
|
3391
|
+
"strategy": "public",
|
|
3392
|
+
"type": "desktop"
|
|
3393
|
+
},
|
|
3394
|
+
{
|
|
3395
|
+
"name": "reminders-list",
|
|
3396
|
+
"description": "List all reminders from macOS Reminders.app",
|
|
3397
|
+
"strategy": "public",
|
|
3398
|
+
"type": "desktop"
|
|
3399
|
+
},
|
|
3400
|
+
{
|
|
3401
|
+
"name": "safari-tabs",
|
|
3402
|
+
"description": "List all open Safari tabs",
|
|
3403
|
+
"strategy": "public",
|
|
3404
|
+
"type": "desktop"
|
|
3405
|
+
},
|
|
3406
|
+
{
|
|
3407
|
+
"name": "say",
|
|
3408
|
+
"description": "Speak text aloud using macOS text-to-speech",
|
|
3409
|
+
"strategy": "public",
|
|
3410
|
+
"type": "desktop"
|
|
3411
|
+
},
|
|
3412
|
+
{
|
|
3413
|
+
"name": "screen-lock",
|
|
3414
|
+
"description": "Lock the macOS screen",
|
|
3415
|
+
"strategy": "public",
|
|
3416
|
+
"type": "desktop"
|
|
3417
|
+
},
|
|
3418
|
+
{
|
|
3419
|
+
"name": "screenshot",
|
|
3420
|
+
"description": "Take a screenshot and save to file or clipboard",
|
|
3421
|
+
"strategy": "public",
|
|
3422
|
+
"type": "desktop"
|
|
3423
|
+
},
|
|
3424
|
+
{
|
|
3425
|
+
"name": "shortcuts-list",
|
|
3426
|
+
"description": "List all Shortcuts.app shortcuts",
|
|
3427
|
+
"strategy": "public",
|
|
3428
|
+
"type": "desktop"
|
|
3429
|
+
},
|
|
3430
|
+
{
|
|
3431
|
+
"name": "shortcuts-run",
|
|
3432
|
+
"description": "Run a Shortcuts.app shortcut",
|
|
3433
|
+
"strategy": "public",
|
|
3434
|
+
"type": "desktop"
|
|
3435
|
+
},
|
|
3436
|
+
{
|
|
3437
|
+
"name": "sleep",
|
|
3438
|
+
"description": "Put macOS to sleep",
|
|
3439
|
+
"strategy": "public",
|
|
3440
|
+
"type": "desktop"
|
|
3441
|
+
},
|
|
3442
|
+
{
|
|
3443
|
+
"name": "spotlight",
|
|
3444
|
+
"description": "Search files by name using Spotlight index",
|
|
3445
|
+
"strategy": "public",
|
|
3446
|
+
"type": "desktop"
|
|
3447
|
+
},
|
|
3448
|
+
{
|
|
3449
|
+
"name": "system-info",
|
|
3450
|
+
"description": "Get hardware model, processor, memory, and OS version",
|
|
3451
|
+
"strategy": "public",
|
|
3452
|
+
"type": "desktop"
|
|
3453
|
+
},
|
|
3454
|
+
{
|
|
3455
|
+
"name": "trash",
|
|
3456
|
+
"description": "Get Trash item count and list of items",
|
|
3457
|
+
"strategy": "public",
|
|
3458
|
+
"type": "desktop"
|
|
3459
|
+
},
|
|
3460
|
+
{
|
|
3461
|
+
"name": "uptime",
|
|
3462
|
+
"description": "Get system uptime",
|
|
3463
|
+
"strategy": "public",
|
|
3464
|
+
"type": "desktop"
|
|
3465
|
+
},
|
|
3466
|
+
{
|
|
3467
|
+
"name": "volume",
|
|
3468
|
+
"description": "Get system volume settings (output, input, alert levels and mute status)",
|
|
3469
|
+
"strategy": "public",
|
|
3470
|
+
"type": "desktop"
|
|
3471
|
+
},
|
|
3472
|
+
{
|
|
3473
|
+
"name": "wifi",
|
|
3474
|
+
"description": "Get Wi-Fi status or turn Wi-Fi on/off",
|
|
3475
|
+
"strategy": "public",
|
|
3476
|
+
"type": "desktop"
|
|
3477
|
+
},
|
|
3478
|
+
{
|
|
3479
|
+
"name": "wifi-info",
|
|
3480
|
+
"description": "Get current WiFi connection info",
|
|
3481
|
+
"strategy": "public",
|
|
3482
|
+
"type": "desktop"
|
|
3483
|
+
}
|
|
3484
|
+
]
|
|
3485
|
+
},
|
|
3486
|
+
"maimai": {
|
|
3487
|
+
"commands": [
|
|
3488
|
+
{
|
|
3489
|
+
"name": "search",
|
|
3490
|
+
"description": "Search talents/people on Maimai (requires login)",
|
|
3491
|
+
"strategy": "intercept",
|
|
3492
|
+
"type": "browser"
|
|
3493
|
+
}
|
|
3494
|
+
]
|
|
3495
|
+
},
|
|
3496
|
+
"maoyan": {
|
|
3497
|
+
"commands": [
|
|
3498
|
+
{
|
|
3499
|
+
"name": "hot",
|
|
3500
|
+
"description": "Maoyan current hot movies (box office)",
|
|
3501
|
+
"strategy": "public",
|
|
3502
|
+
"type": "web-api"
|
|
3503
|
+
},
|
|
3504
|
+
{
|
|
3505
|
+
"name": "search",
|
|
3506
|
+
"description": "Search movies on Maoyan",
|
|
3507
|
+
"strategy": "intercept",
|
|
3508
|
+
"type": "web-api"
|
|
3509
|
+
}
|
|
3510
|
+
]
|
|
3511
|
+
},
|
|
3512
|
+
"mastodon": {
|
|
3513
|
+
"commands": [
|
|
3514
|
+
{
|
|
3515
|
+
"name": "search",
|
|
3516
|
+
"description": "Search posts on a Mastodon instance",
|
|
3517
|
+
"strategy": "public",
|
|
3518
|
+
"type": "web-api"
|
|
3519
|
+
},
|
|
3520
|
+
{
|
|
3521
|
+
"name": "timeline",
|
|
3522
|
+
"description": "Get Mastodon public timeline",
|
|
3523
|
+
"strategy": "public",
|
|
3524
|
+
"type": "web-api"
|
|
3525
|
+
},
|
|
3526
|
+
{
|
|
3527
|
+
"name": "trending",
|
|
3528
|
+
"description": "Trending posts on a Mastodon instance (default mastodon.social)",
|
|
3529
|
+
"strategy": "public",
|
|
3530
|
+
"type": "web-api"
|
|
3531
|
+
},
|
|
3532
|
+
{
|
|
3533
|
+
"name": "user",
|
|
3534
|
+
"description": "Get Mastodon user profile",
|
|
3535
|
+
"strategy": "public",
|
|
3536
|
+
"type": "web-api"
|
|
3537
|
+
}
|
|
3538
|
+
]
|
|
3539
|
+
},
|
|
3540
|
+
"medium": {
|
|
3541
|
+
"commands": [
|
|
3542
|
+
{
|
|
3543
|
+
"name": "article",
|
|
3544
|
+
"description": "Read a Medium article as Markdown",
|
|
3545
|
+
"strategy": "public",
|
|
3546
|
+
"type": "web-api"
|
|
3547
|
+
},
|
|
3548
|
+
{
|
|
3549
|
+
"name": "feed",
|
|
3550
|
+
"description": "Medium trending articles by topic",
|
|
3551
|
+
"strategy": "public",
|
|
3552
|
+
"type": "web-api"
|
|
3553
|
+
},
|
|
3554
|
+
{
|
|
3555
|
+
"name": "search",
|
|
3556
|
+
"description": "Search Medium articles",
|
|
3557
|
+
"strategy": "public",
|
|
3558
|
+
"type": "web-api"
|
|
3559
|
+
},
|
|
3560
|
+
{
|
|
3561
|
+
"name": "trending",
|
|
3562
|
+
"description": "Medium trending articles",
|
|
3563
|
+
"strategy": "public",
|
|
3564
|
+
"type": "web-api"
|
|
3565
|
+
},
|
|
3566
|
+
{
|
|
3567
|
+
"name": "user",
|
|
3568
|
+
"description": "Medium user profile and recent articles",
|
|
3569
|
+
"strategy": "public",
|
|
3570
|
+
"type": "web-api"
|
|
3571
|
+
}
|
|
3572
|
+
]
|
|
3573
|
+
},
|
|
3574
|
+
"meituan": {
|
|
3575
|
+
"commands": [
|
|
3576
|
+
{
|
|
3577
|
+
"name": "hot",
|
|
3578
|
+
"description": "Meituan hot search keywords",
|
|
3579
|
+
"strategy": "public",
|
|
3580
|
+
"type": "web-api"
|
|
3581
|
+
},
|
|
3582
|
+
{
|
|
3583
|
+
"name": "search",
|
|
3584
|
+
"description": "Search restaurants/shops on Meituan",
|
|
3585
|
+
"strategy": "cookie",
|
|
3586
|
+
"type": "web-api"
|
|
3587
|
+
}
|
|
3588
|
+
]
|
|
3589
|
+
},
|
|
3590
|
+
"mermaid": {
|
|
3591
|
+
"commands": [
|
|
3592
|
+
{
|
|
3593
|
+
"name": "render",
|
|
3594
|
+
"description": "Render Mermaid diagram code to an image file",
|
|
3595
|
+
"strategy": "public",
|
|
3596
|
+
"type": "desktop"
|
|
3597
|
+
}
|
|
3598
|
+
]
|
|
3599
|
+
},
|
|
3600
|
+
"minimax": {
|
|
3601
|
+
"commands": [
|
|
3602
|
+
{
|
|
3603
|
+
"name": "chat",
|
|
3604
|
+
"description": "MiniMax M2 chat completion (OpenAI-compatible API)",
|
|
3605
|
+
"strategy": "header",
|
|
3606
|
+
"type": "web-api"
|
|
3607
|
+
},
|
|
3608
|
+
{
|
|
3609
|
+
"name": "models",
|
|
2662
3610
|
"description": "List available MiniMax models",
|
|
2663
3611
|
"strategy": "header",
|
|
2664
3612
|
"type": "web-api"
|
|
@@ -2681,6 +3629,22 @@
|
|
|
2681
3629
|
}
|
|
2682
3630
|
]
|
|
2683
3631
|
},
|
|
3632
|
+
"mubu": {
|
|
3633
|
+
"commands": [
|
|
3634
|
+
{
|
|
3635
|
+
"name": "list",
|
|
3636
|
+
"description": "List Mubu documents",
|
|
3637
|
+
"strategy": "intercept",
|
|
3638
|
+
"type": "web-api"
|
|
3639
|
+
},
|
|
3640
|
+
{
|
|
3641
|
+
"name": "search",
|
|
3642
|
+
"description": "Search Mubu notes",
|
|
3643
|
+
"strategy": "intercept",
|
|
3644
|
+
"type": "web-api"
|
|
3645
|
+
}
|
|
3646
|
+
]
|
|
3647
|
+
},
|
|
2684
3648
|
"musescore": {
|
|
2685
3649
|
"commands": [
|
|
2686
3650
|
{
|
|
@@ -2733,11 +3697,23 @@
|
|
|
2733
3697
|
"strategy": "public",
|
|
2734
3698
|
"type": "web-api"
|
|
2735
3699
|
},
|
|
3700
|
+
{
|
|
3701
|
+
"name": "playlist",
|
|
3702
|
+
"description": "Get NetEase Cloud Music playlist tracks",
|
|
3703
|
+
"strategy": "public",
|
|
3704
|
+
"type": "web-api"
|
|
3705
|
+
},
|
|
2736
3706
|
{
|
|
2737
3707
|
"name": "search",
|
|
2738
3708
|
"description": "Search songs on NetEase Cloud Music",
|
|
2739
3709
|
"strategy": "public",
|
|
2740
3710
|
"type": "web-api"
|
|
3711
|
+
},
|
|
3712
|
+
{
|
|
3713
|
+
"name": "top",
|
|
3714
|
+
"description": "NetEase Cloud Music top charts",
|
|
3715
|
+
"strategy": "public",
|
|
3716
|
+
"type": "web-api"
|
|
2741
3717
|
}
|
|
2742
3718
|
]
|
|
2743
3719
|
},
|
|
@@ -2845,6 +3821,28 @@
|
|
|
2845
3821
|
}
|
|
2846
3822
|
]
|
|
2847
3823
|
},
|
|
3824
|
+
"notion": {
|
|
3825
|
+
"commands": [
|
|
3826
|
+
{
|
|
3827
|
+
"name": "databases",
|
|
3828
|
+
"description": "List Notion databases",
|
|
3829
|
+
"strategy": "cookie",
|
|
3830
|
+
"type": "web-api"
|
|
3831
|
+
},
|
|
3832
|
+
{
|
|
3833
|
+
"name": "pages",
|
|
3834
|
+
"description": "List recent Notion pages",
|
|
3835
|
+
"strategy": "cookie",
|
|
3836
|
+
"type": "web-api"
|
|
3837
|
+
},
|
|
3838
|
+
{
|
|
3839
|
+
"name": "search",
|
|
3840
|
+
"description": "Search Notion pages via web API",
|
|
3841
|
+
"strategy": "cookie",
|
|
3842
|
+
"type": "web-api"
|
|
3843
|
+
}
|
|
3844
|
+
]
|
|
3845
|
+
},
|
|
2848
3846
|
"notion-app": {
|
|
2849
3847
|
"commands": [
|
|
2850
3848
|
{
|
|
@@ -2877,6 +3875,34 @@
|
|
|
2877
3875
|
}
|
|
2878
3876
|
]
|
|
2879
3877
|
},
|
|
3878
|
+
"npm": {
|
|
3879
|
+
"commands": [
|
|
3880
|
+
{
|
|
3881
|
+
"name": "downloads",
|
|
3882
|
+
"description": "Get npm package download stats",
|
|
3883
|
+
"strategy": "public",
|
|
3884
|
+
"type": "web-api"
|
|
3885
|
+
},
|
|
3886
|
+
{
|
|
3887
|
+
"name": "info",
|
|
3888
|
+
"description": "Get npm package details",
|
|
3889
|
+
"strategy": "public",
|
|
3890
|
+
"type": "web-api"
|
|
3891
|
+
},
|
|
3892
|
+
{
|
|
3893
|
+
"name": "search",
|
|
3894
|
+
"description": "Search npm packages",
|
|
3895
|
+
"strategy": "public",
|
|
3896
|
+
"type": "web-api"
|
|
3897
|
+
},
|
|
3898
|
+
{
|
|
3899
|
+
"name": "versions",
|
|
3900
|
+
"description": "List all versions of an npm package",
|
|
3901
|
+
"strategy": "public",
|
|
3902
|
+
"type": "web-api"
|
|
3903
|
+
}
|
|
3904
|
+
]
|
|
3905
|
+
},
|
|
2880
3906
|
"npm-trends": {
|
|
2881
3907
|
"commands": [
|
|
2882
3908
|
{
|
|
@@ -2884,11 +3910,23 @@
|
|
|
2884
3910
|
"description": "Compare npm package download counts",
|
|
2885
3911
|
"strategy": "public",
|
|
2886
3912
|
"type": "web-api"
|
|
3913
|
+
},
|
|
3914
|
+
{
|
|
3915
|
+
"name": "trending",
|
|
3916
|
+
"description": "Get trending npm packages",
|
|
3917
|
+
"strategy": "public",
|
|
3918
|
+
"type": "web-api"
|
|
2887
3919
|
}
|
|
2888
3920
|
]
|
|
2889
3921
|
},
|
|
2890
3922
|
"nytimes": {
|
|
2891
3923
|
"commands": [
|
|
3924
|
+
{
|
|
3925
|
+
"name": "search",
|
|
3926
|
+
"description": "Search NYTimes articles",
|
|
3927
|
+
"strategy": "public",
|
|
3928
|
+
"type": "web-api"
|
|
3929
|
+
},
|
|
2892
3930
|
{
|
|
2893
3931
|
"name": "top",
|
|
2894
3932
|
"description": "New York Times top stories via RSS",
|
|
@@ -2936,24 +3974,64 @@
|
|
|
2936
3974
|
"type": "service"
|
|
2937
3975
|
},
|
|
2938
3976
|
{
|
|
2939
|
-
"name": "stream-start",
|
|
2940
|
-
"description": "Start OBS streaming",
|
|
3977
|
+
"name": "stream-start",
|
|
3978
|
+
"description": "Start OBS streaming",
|
|
3979
|
+
"strategy": "public",
|
|
3980
|
+
"type": "service"
|
|
3981
|
+
},
|
|
3982
|
+
{
|
|
3983
|
+
"name": "stream-stop",
|
|
3984
|
+
"description": "Stop OBS streaming",
|
|
3985
|
+
"strategy": "public",
|
|
3986
|
+
"type": "service"
|
|
3987
|
+
}
|
|
3988
|
+
]
|
|
3989
|
+
},
|
|
3990
|
+
"obsidian": {
|
|
3991
|
+
"commands": [
|
|
3992
|
+
{
|
|
3993
|
+
"name": "daily",
|
|
3994
|
+
"description": "Open today's daily note in an Obsidian vault",
|
|
3995
|
+
"strategy": "public",
|
|
3996
|
+
"type": "desktop"
|
|
3997
|
+
},
|
|
3998
|
+
{
|
|
3999
|
+
"name": "open",
|
|
4000
|
+
"description": "Open an Obsidian vault or specific note",
|
|
4001
|
+
"strategy": "public",
|
|
4002
|
+
"type": "desktop"
|
|
4003
|
+
},
|
|
4004
|
+
{
|
|
4005
|
+
"name": "search",
|
|
4006
|
+
"description": "Search for text within an Obsidian vault",
|
|
4007
|
+
"strategy": "public",
|
|
4008
|
+
"type": "desktop"
|
|
4009
|
+
}
|
|
4010
|
+
]
|
|
4011
|
+
},
|
|
4012
|
+
"ollama": {
|
|
4013
|
+
"commands": [
|
|
4014
|
+
{
|
|
4015
|
+
"name": "generate",
|
|
4016
|
+
"description": "Generate text with an Ollama model",
|
|
4017
|
+
"strategy": "public",
|
|
4018
|
+
"type": "service"
|
|
4019
|
+
},
|
|
4020
|
+
{
|
|
4021
|
+
"name": "list",
|
|
4022
|
+
"description": "List locally installed Ollama models",
|
|
2941
4023
|
"strategy": "public",
|
|
2942
4024
|
"type": "service"
|
|
2943
4025
|
},
|
|
2944
4026
|
{
|
|
2945
|
-
"name": "
|
|
2946
|
-
"description": "
|
|
4027
|
+
"name": "models",
|
|
4028
|
+
"description": "List available Ollama models in registry",
|
|
2947
4029
|
"strategy": "public",
|
|
2948
4030
|
"type": "service"
|
|
2949
|
-
}
|
|
2950
|
-
]
|
|
2951
|
-
},
|
|
2952
|
-
"ollama": {
|
|
2953
|
-
"commands": [
|
|
4031
|
+
},
|
|
2954
4032
|
{
|
|
2955
|
-
"name": "
|
|
2956
|
-
"description": "List
|
|
4033
|
+
"name": "ps",
|
|
4034
|
+
"description": "List running Ollama models",
|
|
2957
4035
|
"strategy": "public",
|
|
2958
4036
|
"type": "service"
|
|
2959
4037
|
}
|
|
@@ -3062,6 +4140,12 @@
|
|
|
3062
4140
|
"description": "List all available AI models on OpenRouter",
|
|
3063
4141
|
"strategy": "public",
|
|
3064
4142
|
"type": "web-api"
|
|
4143
|
+
},
|
|
4144
|
+
{
|
|
4145
|
+
"name": "search",
|
|
4146
|
+
"description": "Search OpenRouter AI models",
|
|
4147
|
+
"strategy": "public",
|
|
4148
|
+
"type": "web-api"
|
|
3065
4149
|
}
|
|
3066
4150
|
]
|
|
3067
4151
|
},
|
|
@@ -3097,8 +4181,24 @@
|
|
|
3097
4181
|
}
|
|
3098
4182
|
]
|
|
3099
4183
|
},
|
|
4184
|
+
"perplexity": {
|
|
4185
|
+
"commands": [
|
|
4186
|
+
{
|
|
4187
|
+
"name": "ask",
|
|
4188
|
+
"description": "Ask Perplexity AI a question via API",
|
|
4189
|
+
"strategy": "header",
|
|
4190
|
+
"type": "web-api"
|
|
4191
|
+
}
|
|
4192
|
+
]
|
|
4193
|
+
},
|
|
3100
4194
|
"pexels": {
|
|
3101
4195
|
"commands": [
|
|
4196
|
+
{
|
|
4197
|
+
"name": "curated",
|
|
4198
|
+
"description": "Get Pexels curated photos",
|
|
4199
|
+
"strategy": "public",
|
|
4200
|
+
"type": "web-api"
|
|
4201
|
+
},
|
|
3102
4202
|
{
|
|
3103
4203
|
"name": "search",
|
|
3104
4204
|
"description": "Search free stock photos on Pexels",
|
|
@@ -3114,6 +4214,12 @@
|
|
|
3114
4214
|
"description": "Pinduoduo hot/trending products",
|
|
3115
4215
|
"strategy": "cookie",
|
|
3116
4216
|
"type": "web-api"
|
|
4217
|
+
},
|
|
4218
|
+
{
|
|
4219
|
+
"name": "search",
|
|
4220
|
+
"description": "Search Pinduoduo products",
|
|
4221
|
+
"strategy": "cookie",
|
|
4222
|
+
"type": "web-api"
|
|
3117
4223
|
}
|
|
3118
4224
|
]
|
|
3119
4225
|
},
|
|
@@ -3177,6 +4283,12 @@
|
|
|
3177
4283
|
"strategy": "public",
|
|
3178
4284
|
"type": "web-api"
|
|
3179
4285
|
},
|
|
4286
|
+
{
|
|
4287
|
+
"name": "search",
|
|
4288
|
+
"description": "Search Product Hunt products",
|
|
4289
|
+
"strategy": "public",
|
|
4290
|
+
"type": "web-api"
|
|
4291
|
+
},
|
|
3180
4292
|
{
|
|
3181
4293
|
"name": "today",
|
|
3182
4294
|
"description": "Today's top Product Hunt launches",
|
|
@@ -3202,11 +4314,45 @@
|
|
|
3202
4314
|
"description": "Get PyPI package details",
|
|
3203
4315
|
"strategy": "public",
|
|
3204
4316
|
"type": "web-api"
|
|
4317
|
+
},
|
|
4318
|
+
{
|
|
4319
|
+
"name": "search",
|
|
4320
|
+
"description": "Search PyPI packages via warehouse API",
|
|
4321
|
+
"strategy": "public",
|
|
4322
|
+
"type": "web-api"
|
|
4323
|
+
},
|
|
4324
|
+
{
|
|
4325
|
+
"name": "versions",
|
|
4326
|
+
"description": "List all versions of a PyPI package",
|
|
4327
|
+
"strategy": "public",
|
|
4328
|
+
"type": "web-api"
|
|
4329
|
+
}
|
|
4330
|
+
]
|
|
4331
|
+
},
|
|
4332
|
+
"quark": {
|
|
4333
|
+
"commands": [
|
|
4334
|
+
{
|
|
4335
|
+
"name": "ls",
|
|
4336
|
+
"description": "List files in Quark cloud drive",
|
|
4337
|
+
"strategy": "cookie",
|
|
4338
|
+
"type": "web-api"
|
|
4339
|
+
},
|
|
4340
|
+
{
|
|
4341
|
+
"name": "search",
|
|
4342
|
+
"description": "Search files in Quark cloud drive",
|
|
4343
|
+
"strategy": "cookie",
|
|
4344
|
+
"type": "web-api"
|
|
3205
4345
|
}
|
|
3206
4346
|
]
|
|
3207
4347
|
},
|
|
3208
4348
|
"qweather": {
|
|
3209
4349
|
"commands": [
|
|
4350
|
+
{
|
|
4351
|
+
"name": "forecast",
|
|
4352
|
+
"description": "Weather forecast from QWeather",
|
|
4353
|
+
"strategy": "public",
|
|
4354
|
+
"type": "web-api"
|
|
4355
|
+
},
|
|
3210
4356
|
{
|
|
3211
4357
|
"name": "now",
|
|
3212
4358
|
"description": "Current weather from QWeather (和风天气, free tier)",
|
|
@@ -3251,6 +4397,12 @@
|
|
|
3251
4397
|
"strategy": "public",
|
|
3252
4398
|
"type": "web-api"
|
|
3253
4399
|
},
|
|
4400
|
+
{
|
|
4401
|
+
"name": "new",
|
|
4402
|
+
"description": "Reddit newest posts from all subreddits",
|
|
4403
|
+
"strategy": "public",
|
|
4404
|
+
"type": "web-api"
|
|
4405
|
+
},
|
|
3254
4406
|
{
|
|
3255
4407
|
"name": "popular",
|
|
3256
4408
|
"description": "Reddit popular posts (/r/popular)",
|
|
@@ -3263,6 +4415,12 @@
|
|
|
3263
4415
|
"strategy": "public",
|
|
3264
4416
|
"type": "web-api"
|
|
3265
4417
|
},
|
|
4418
|
+
{
|
|
4419
|
+
"name": "rising",
|
|
4420
|
+
"description": "Reddit rising posts",
|
|
4421
|
+
"strategy": "public",
|
|
4422
|
+
"type": "web-api"
|
|
4423
|
+
},
|
|
3266
4424
|
{
|
|
3267
4425
|
"name": "save",
|
|
3268
4426
|
"description": "Save a Reddit post or comment",
|
|
@@ -3293,6 +4451,18 @@
|
|
|
3293
4451
|
"strategy": "cookie",
|
|
3294
4452
|
"type": "web-api"
|
|
3295
4453
|
},
|
|
4454
|
+
{
|
|
4455
|
+
"name": "top",
|
|
4456
|
+
"description": "Reddit top posts",
|
|
4457
|
+
"strategy": "public",
|
|
4458
|
+
"type": "web-api"
|
|
4459
|
+
},
|
|
4460
|
+
{
|
|
4461
|
+
"name": "trending",
|
|
4462
|
+
"description": "Reddit trending subreddits",
|
|
4463
|
+
"strategy": "public",
|
|
4464
|
+
"type": "web-api"
|
|
4465
|
+
},
|
|
3296
4466
|
{
|
|
3297
4467
|
"name": "upvote",
|
|
3298
4468
|
"description": "Upvote a Reddit post or comment",
|
|
@@ -3343,6 +4513,12 @@
|
|
|
3343
4513
|
},
|
|
3344
4514
|
"replicate": {
|
|
3345
4515
|
"commands": [
|
|
4516
|
+
{
|
|
4517
|
+
"name": "run",
|
|
4518
|
+
"description": "Run a Replicate AI model",
|
|
4519
|
+
"strategy": "cookie",
|
|
4520
|
+
"type": "web-api"
|
|
4521
|
+
},
|
|
3346
4522
|
{
|
|
3347
4523
|
"name": "search",
|
|
3348
4524
|
"description": "Search AI models on Replicate",
|
|
@@ -3365,6 +4541,12 @@
|
|
|
3365
4541
|
"strategy": "public",
|
|
3366
4542
|
"type": "web-api"
|
|
3367
4543
|
},
|
|
4544
|
+
{
|
|
4545
|
+
"name": "latest",
|
|
4546
|
+
"description": "Latest Reuters news articles",
|
|
4547
|
+
"strategy": "public",
|
|
4548
|
+
"type": "web-api"
|
|
4549
|
+
},
|
|
3368
4550
|
{
|
|
3369
4551
|
"name": "manifest",
|
|
3370
4552
|
"description": "Reuters — international news and wire service",
|
|
@@ -3443,6 +4625,12 @@
|
|
|
3443
4625
|
},
|
|
3444
4626
|
"sinafinance": {
|
|
3445
4627
|
"commands": [
|
|
4628
|
+
{
|
|
4629
|
+
"name": "market",
|
|
4630
|
+
"description": "Sina Finance stock market overview",
|
|
4631
|
+
"strategy": "public",
|
|
4632
|
+
"type": "web-api"
|
|
4633
|
+
},
|
|
3446
4634
|
{
|
|
3447
4635
|
"name": "news",
|
|
3448
4636
|
"description": "Sina Finance 7x24 live news feed",
|
|
@@ -3498,6 +4686,42 @@
|
|
|
3498
4686
|
"description": "List Slack channels",
|
|
3499
4687
|
"strategy": "public",
|
|
3500
4688
|
"type": "bridge"
|
|
4689
|
+
},
|
|
4690
|
+
{
|
|
4691
|
+
"name": "messages",
|
|
4692
|
+
"description": "Read Slack channel messages",
|
|
4693
|
+
"strategy": "cookie",
|
|
4694
|
+
"type": "web-api"
|
|
4695
|
+
},
|
|
4696
|
+
{
|
|
4697
|
+
"name": "post",
|
|
4698
|
+
"description": "Post a message to a Slack channel",
|
|
4699
|
+
"strategy": "cookie",
|
|
4700
|
+
"type": "web-api"
|
|
4701
|
+
},
|
|
4702
|
+
{
|
|
4703
|
+
"name": "search",
|
|
4704
|
+
"description": "Search Slack messages",
|
|
4705
|
+
"strategy": "public",
|
|
4706
|
+
"type": "bridge"
|
|
4707
|
+
},
|
|
4708
|
+
{
|
|
4709
|
+
"name": "send",
|
|
4710
|
+
"description": "Send a message to a Slack channel",
|
|
4711
|
+
"strategy": "public",
|
|
4712
|
+
"type": "bridge"
|
|
4713
|
+
},
|
|
4714
|
+
{
|
|
4715
|
+
"name": "status",
|
|
4716
|
+
"description": "Check Slack CLI auth and workspace status",
|
|
4717
|
+
"strategy": "public",
|
|
4718
|
+
"type": "bridge"
|
|
4719
|
+
},
|
|
4720
|
+
{
|
|
4721
|
+
"name": "users",
|
|
4722
|
+
"description": "List Slack workspace users",
|
|
4723
|
+
"strategy": "cookie",
|
|
4724
|
+
"type": "web-api"
|
|
3501
4725
|
}
|
|
3502
4726
|
]
|
|
3503
4727
|
},
|
|
@@ -3541,6 +4765,16 @@
|
|
|
3541
4765
|
}
|
|
3542
4766
|
]
|
|
3543
4767
|
},
|
|
4768
|
+
"slock": {
|
|
4769
|
+
"commands": [
|
|
4770
|
+
{
|
|
4771
|
+
"name": "servers",
|
|
4772
|
+
"description": "List Slock.ai servers (requires login)",
|
|
4773
|
+
"strategy": "intercept",
|
|
4774
|
+
"type": "browser"
|
|
4775
|
+
}
|
|
4776
|
+
]
|
|
4777
|
+
},
|
|
3544
4778
|
"smzdm": {
|
|
3545
4779
|
"commands": [
|
|
3546
4780
|
{
|
|
@@ -3571,11 +4805,29 @@
|
|
|
3571
4805
|
},
|
|
3572
4806
|
"spotify": {
|
|
3573
4807
|
"commands": [
|
|
4808
|
+
{
|
|
4809
|
+
"name": "now-playing",
|
|
4810
|
+
"description": "Get currently playing track on Spotify",
|
|
4811
|
+
"strategy": "cookie",
|
|
4812
|
+
"type": "web-api"
|
|
4813
|
+
},
|
|
4814
|
+
{
|
|
4815
|
+
"name": "playlists",
|
|
4816
|
+
"description": "Get user's playlists on Spotify",
|
|
4817
|
+
"strategy": "cookie",
|
|
4818
|
+
"type": "web-api"
|
|
4819
|
+
},
|
|
3574
4820
|
{
|
|
3575
4821
|
"name": "search",
|
|
3576
4822
|
"description": "Search Spotify catalog",
|
|
3577
4823
|
"strategy": "public",
|
|
3578
4824
|
"type": "web-api"
|
|
4825
|
+
},
|
|
4826
|
+
{
|
|
4827
|
+
"name": "top-tracks",
|
|
4828
|
+
"description": "Get user's top tracks on Spotify",
|
|
4829
|
+
"strategy": "cookie",
|
|
4830
|
+
"type": "web-api"
|
|
3579
4831
|
}
|
|
3580
4832
|
]
|
|
3581
4833
|
},
|
|
@@ -3609,12 +4861,24 @@
|
|
|
3609
4861
|
"strategy": "public",
|
|
3610
4862
|
"type": "web-api"
|
|
3611
4863
|
},
|
|
4864
|
+
{
|
|
4865
|
+
"name": "question",
|
|
4866
|
+
"description": "Get a StackOverflow question with answers",
|
|
4867
|
+
"strategy": "public",
|
|
4868
|
+
"type": "web-api"
|
|
4869
|
+
},
|
|
3612
4870
|
{
|
|
3613
4871
|
"name": "search",
|
|
3614
4872
|
"description": "Search Stack Overflow questions",
|
|
3615
4873
|
"strategy": "public",
|
|
3616
4874
|
"type": "web-api"
|
|
3617
4875
|
},
|
|
4876
|
+
{
|
|
4877
|
+
"name": "tags",
|
|
4878
|
+
"description": "Popular StackOverflow tags",
|
|
4879
|
+
"strategy": "public",
|
|
4880
|
+
"type": "web-api"
|
|
4881
|
+
},
|
|
3618
4882
|
{
|
|
3619
4883
|
"name": "unanswered",
|
|
3620
4884
|
"description": "Top voted unanswered questions on Stack Overflow",
|
|
@@ -3635,11 +4899,41 @@
|
|
|
3635
4899
|
},
|
|
3636
4900
|
"steam": {
|
|
3637
4901
|
"commands": [
|
|
4902
|
+
{
|
|
4903
|
+
"name": "app-details",
|
|
4904
|
+
"description": "Get Steam game details by appid",
|
|
4905
|
+
"strategy": "public",
|
|
4906
|
+
"type": "web-api"
|
|
4907
|
+
},
|
|
4908
|
+
{
|
|
4909
|
+
"name": "new-releases",
|
|
4910
|
+
"description": "Steam new releases",
|
|
4911
|
+
"strategy": "public",
|
|
4912
|
+
"type": "web-api"
|
|
4913
|
+
},
|
|
4914
|
+
{
|
|
4915
|
+
"name": "search",
|
|
4916
|
+
"description": "Search Steam store for games",
|
|
4917
|
+
"strategy": "public",
|
|
4918
|
+
"type": "web-api"
|
|
4919
|
+
},
|
|
4920
|
+
{
|
|
4921
|
+
"name": "specials",
|
|
4922
|
+
"description": "Steam games on special/sale",
|
|
4923
|
+
"strategy": "public",
|
|
4924
|
+
"type": "web-api"
|
|
4925
|
+
},
|
|
3638
4926
|
{
|
|
3639
4927
|
"name": "top-sellers",
|
|
3640
4928
|
"description": "Steam top selling games",
|
|
3641
4929
|
"strategy": "public",
|
|
3642
4930
|
"type": "web-api"
|
|
4931
|
+
},
|
|
4932
|
+
{
|
|
4933
|
+
"name": "wishlist",
|
|
4934
|
+
"description": "Get a Steam user's public wishlist",
|
|
4935
|
+
"strategy": "public",
|
|
4936
|
+
"type": "web-api"
|
|
3643
4937
|
}
|
|
3644
4938
|
]
|
|
3645
4939
|
},
|
|
@@ -3662,6 +4956,12 @@
|
|
|
3662
4956
|
"description": "Search Substack publications",
|
|
3663
4957
|
"strategy": "public",
|
|
3664
4958
|
"type": "web-api"
|
|
4959
|
+
},
|
|
4960
|
+
{
|
|
4961
|
+
"name": "trending",
|
|
4962
|
+
"description": "Trending Substack posts",
|
|
4963
|
+
"strategy": "public",
|
|
4964
|
+
"type": "web-api"
|
|
3665
4965
|
}
|
|
3666
4966
|
]
|
|
3667
4967
|
},
|
|
@@ -3675,6 +4975,22 @@
|
|
|
3675
4975
|
}
|
|
3676
4976
|
]
|
|
3677
4977
|
},
|
|
4978
|
+
"taobao": {
|
|
4979
|
+
"commands": [
|
|
4980
|
+
{
|
|
4981
|
+
"name": "hot",
|
|
4982
|
+
"description": "Taobao hot search keywords",
|
|
4983
|
+
"strategy": "public",
|
|
4984
|
+
"type": "web-api"
|
|
4985
|
+
},
|
|
4986
|
+
{
|
|
4987
|
+
"name": "search",
|
|
4988
|
+
"description": "Search Taobao products",
|
|
4989
|
+
"strategy": "intercept",
|
|
4990
|
+
"type": "browser"
|
|
4991
|
+
}
|
|
4992
|
+
]
|
|
4993
|
+
},
|
|
3678
4994
|
"techcrunch": {
|
|
3679
4995
|
"commands": [
|
|
3680
4996
|
{
|
|
@@ -3682,6 +4998,12 @@
|
|
|
3682
4998
|
"description": "Latest TechCrunch articles via RSS",
|
|
3683
4999
|
"strategy": "public",
|
|
3684
5000
|
"type": "web-api"
|
|
5001
|
+
},
|
|
5002
|
+
{
|
|
5003
|
+
"name": "search",
|
|
5004
|
+
"description": "Search TechCrunch articles",
|
|
5005
|
+
"strategy": "public",
|
|
5006
|
+
"type": "web-api"
|
|
3685
5007
|
}
|
|
3686
5008
|
]
|
|
3687
5009
|
},
|
|
@@ -3692,6 +5014,28 @@
|
|
|
3692
5014
|
"description": "Latest The Verge articles via RSS",
|
|
3693
5015
|
"strategy": "public",
|
|
3694
5016
|
"type": "web-api"
|
|
5017
|
+
},
|
|
5018
|
+
{
|
|
5019
|
+
"name": "search",
|
|
5020
|
+
"description": "Search The Verge articles",
|
|
5021
|
+
"strategy": "public",
|
|
5022
|
+
"type": "web-api"
|
|
5023
|
+
}
|
|
5024
|
+
]
|
|
5025
|
+
},
|
|
5026
|
+
"threads": {
|
|
5027
|
+
"commands": [
|
|
5028
|
+
{
|
|
5029
|
+
"name": "hot",
|
|
5030
|
+
"description": "Get trending posts from Threads",
|
|
5031
|
+
"strategy": "intercept",
|
|
5032
|
+
"type": "web-api"
|
|
5033
|
+
},
|
|
5034
|
+
{
|
|
5035
|
+
"name": "search",
|
|
5036
|
+
"description": "Search Threads for posts matching a query",
|
|
5037
|
+
"strategy": "intercept",
|
|
5038
|
+
"type": "web-api"
|
|
3695
5039
|
}
|
|
3696
5040
|
]
|
|
3697
5041
|
},
|
|
@@ -3791,6 +5135,12 @@
|
|
|
3791
5135
|
"strategy": "intercept",
|
|
3792
5136
|
"type": "web-api"
|
|
3793
5137
|
},
|
|
5138
|
+
{
|
|
5139
|
+
"name": "trending",
|
|
5140
|
+
"description": "TikTok trending hashtags and sounds",
|
|
5141
|
+
"strategy": "cookie",
|
|
5142
|
+
"type": "web-api"
|
|
5143
|
+
},
|
|
3794
5144
|
{
|
|
3795
5145
|
"name": "unfollow",
|
|
3796
5146
|
"description": "Unfollow a TikTok user",
|
|
@@ -3814,11 +5164,45 @@
|
|
|
3814
5164
|
"description": "Get recent videos from a TikTok user",
|
|
3815
5165
|
"strategy": "intercept",
|
|
3816
5166
|
"type": "web-api"
|
|
3817
|
-
}
|
|
3818
|
-
]
|
|
3819
|
-
},
|
|
3820
|
-
"
|
|
3821
|
-
"commands": [
|
|
5167
|
+
}
|
|
5168
|
+
]
|
|
5169
|
+
},
|
|
5170
|
+
"toutiao": {
|
|
5171
|
+
"commands": [
|
|
5172
|
+
{
|
|
5173
|
+
"name": "hot",
|
|
5174
|
+
"description": "Get Toutiao (Jinri Toutiao) hot topics",
|
|
5175
|
+
"strategy": "public",
|
|
5176
|
+
"type": "web-api"
|
|
5177
|
+
},
|
|
5178
|
+
{
|
|
5179
|
+
"name": "search",
|
|
5180
|
+
"description": "Search Toutiao for articles",
|
|
5181
|
+
"strategy": "intercept",
|
|
5182
|
+
"type": "web-api"
|
|
5183
|
+
}
|
|
5184
|
+
]
|
|
5185
|
+
},
|
|
5186
|
+
"twitch": {
|
|
5187
|
+
"commands": [
|
|
5188
|
+
{
|
|
5189
|
+
"name": "games",
|
|
5190
|
+
"description": "Get top games on Twitch by viewer count",
|
|
5191
|
+
"strategy": "cookie",
|
|
5192
|
+
"type": "web-api"
|
|
5193
|
+
},
|
|
5194
|
+
{
|
|
5195
|
+
"name": "search",
|
|
5196
|
+
"description": "Search Twitch channels",
|
|
5197
|
+
"strategy": "cookie",
|
|
5198
|
+
"type": "web-api"
|
|
5199
|
+
},
|
|
5200
|
+
{
|
|
5201
|
+
"name": "streams",
|
|
5202
|
+
"description": "Get top live streams on Twitch",
|
|
5203
|
+
"strategy": "cookie",
|
|
5204
|
+
"type": "web-api"
|
|
5205
|
+
},
|
|
3822
5206
|
{
|
|
3823
5207
|
"name": "top",
|
|
3824
5208
|
"description": "Top live streams on Twitch via GQL public endpoint",
|
|
@@ -3907,12 +5291,42 @@
|
|
|
3907
5291
|
"strategy": "cookie",
|
|
3908
5292
|
"type": "web-api"
|
|
3909
5293
|
},
|
|
5294
|
+
{
|
|
5295
|
+
"name": "lists",
|
|
5296
|
+
"description": "Get Twitter/X lists for a user",
|
|
5297
|
+
"strategy": "intercept",
|
|
5298
|
+
"type": "web-api"
|
|
5299
|
+
},
|
|
5300
|
+
{
|
|
5301
|
+
"name": "media",
|
|
5302
|
+
"description": "Get media tweets from a Twitter/X user",
|
|
5303
|
+
"strategy": "intercept",
|
|
5304
|
+
"type": "web-api"
|
|
5305
|
+
},
|
|
5306
|
+
{
|
|
5307
|
+
"name": "mentions",
|
|
5308
|
+
"description": "Get recent mentions/replies for the logged-in Twitter/X user",
|
|
5309
|
+
"strategy": "intercept",
|
|
5310
|
+
"type": "web-api"
|
|
5311
|
+
},
|
|
5312
|
+
{
|
|
5313
|
+
"name": "mute",
|
|
5314
|
+
"description": "Mute a Twitter/X user",
|
|
5315
|
+
"strategy": "intercept",
|
|
5316
|
+
"type": "web-api"
|
|
5317
|
+
},
|
|
3910
5318
|
{
|
|
3911
5319
|
"name": "notifications",
|
|
3912
5320
|
"description": "Get recent notifications",
|
|
3913
5321
|
"strategy": "cookie",
|
|
3914
5322
|
"type": "web-api"
|
|
3915
5323
|
},
|
|
5324
|
+
{
|
|
5325
|
+
"name": "pin",
|
|
5326
|
+
"description": "Get pinned tweet from a Twitter/X user",
|
|
5327
|
+
"strategy": "intercept",
|
|
5328
|
+
"type": "web-api"
|
|
5329
|
+
},
|
|
3916
5330
|
{
|
|
3917
5331
|
"name": "post",
|
|
3918
5332
|
"description": "Post a new tweet",
|
|
@@ -3925,6 +5339,12 @@
|
|
|
3925
5339
|
"strategy": "cookie",
|
|
3926
5340
|
"type": "web-api"
|
|
3927
5341
|
},
|
|
5342
|
+
{
|
|
5343
|
+
"name": "quotes",
|
|
5344
|
+
"description": "Get quote tweets for a specific tweet",
|
|
5345
|
+
"strategy": "intercept",
|
|
5346
|
+
"type": "web-api"
|
|
5347
|
+
},
|
|
3928
5348
|
{
|
|
3929
5349
|
"name": "reply",
|
|
3930
5350
|
"description": "Reply to a tweet",
|
|
@@ -3937,12 +5357,24 @@
|
|
|
3937
5357
|
"strategy": "cookie",
|
|
3938
5358
|
"type": "web-api"
|
|
3939
5359
|
},
|
|
5360
|
+
{
|
|
5361
|
+
"name": "retweets",
|
|
5362
|
+
"description": "Get users who retweeted a specific tweet",
|
|
5363
|
+
"strategy": "intercept",
|
|
5364
|
+
"type": "web-api"
|
|
5365
|
+
},
|
|
3940
5366
|
{
|
|
3941
5367
|
"name": "search",
|
|
3942
5368
|
"description": "Search tweets by keyword",
|
|
3943
5369
|
"strategy": "cookie",
|
|
3944
5370
|
"type": "web-api"
|
|
3945
5371
|
},
|
|
5372
|
+
{
|
|
5373
|
+
"name": "spaces",
|
|
5374
|
+
"description": "Browse live and upcoming Twitter/X Spaces",
|
|
5375
|
+
"strategy": "intercept",
|
|
5376
|
+
"type": "web-api"
|
|
5377
|
+
},
|
|
3946
5378
|
{
|
|
3947
5379
|
"name": "thread",
|
|
3948
5380
|
"description": "Get a tweet and its conversation thread",
|
|
@@ -3978,11 +5410,23 @@
|
|
|
3978
5410
|
"description": "Unfollow a user",
|
|
3979
5411
|
"strategy": "cookie",
|
|
3980
5412
|
"type": "web-api"
|
|
5413
|
+
},
|
|
5414
|
+
{
|
|
5415
|
+
"name": "unmute",
|
|
5416
|
+
"description": "Unmute a Twitter/X user",
|
|
5417
|
+
"strategy": "intercept",
|
|
5418
|
+
"type": "web-api"
|
|
3981
5419
|
}
|
|
3982
5420
|
]
|
|
3983
5421
|
},
|
|
3984
5422
|
"unsplash": {
|
|
3985
5423
|
"commands": [
|
|
5424
|
+
{
|
|
5425
|
+
"name": "random",
|
|
5426
|
+
"description": "Get a random Unsplash photo",
|
|
5427
|
+
"strategy": "public",
|
|
5428
|
+
"type": "web-api"
|
|
5429
|
+
},
|
|
3986
5430
|
{
|
|
3987
5431
|
"name": "search",
|
|
3988
5432
|
"description": "Search free photos on Unsplash",
|
|
@@ -4047,6 +5491,12 @@
|
|
|
4047
5491
|
"strategy": "public",
|
|
4048
5492
|
"type": "web-api"
|
|
4049
5493
|
},
|
|
5494
|
+
{
|
|
5495
|
+
"name": "search",
|
|
5496
|
+
"description": "Search V2EX topics via SOV2EX",
|
|
5497
|
+
"strategy": "public",
|
|
5498
|
+
"type": "web-api"
|
|
5499
|
+
},
|
|
4050
5500
|
{
|
|
4051
5501
|
"name": "topic",
|
|
4052
5502
|
"description": "V2EX topic detail",
|
|
@@ -4071,6 +5521,28 @@
|
|
|
4071
5521
|
}
|
|
4072
5522
|
]
|
|
4073
5523
|
},
|
|
5524
|
+
"vscode": {
|
|
5525
|
+
"commands": [
|
|
5526
|
+
{
|
|
5527
|
+
"name": "extensions",
|
|
5528
|
+
"description": "List installed VS Code extensions with versions",
|
|
5529
|
+
"strategy": "public",
|
|
5530
|
+
"type": "desktop"
|
|
5531
|
+
},
|
|
5532
|
+
{
|
|
5533
|
+
"name": "install-ext",
|
|
5534
|
+
"description": "Install a VS Code extension by identifier",
|
|
5535
|
+
"strategy": "public",
|
|
5536
|
+
"type": "desktop"
|
|
5537
|
+
},
|
|
5538
|
+
{
|
|
5539
|
+
"name": "open",
|
|
5540
|
+
"description": "Open a file or folder in VS Code",
|
|
5541
|
+
"strategy": "public",
|
|
5542
|
+
"type": "desktop"
|
|
5543
|
+
}
|
|
5544
|
+
]
|
|
5545
|
+
},
|
|
4074
5546
|
"web": {
|
|
4075
5547
|
"commands": [
|
|
4076
5548
|
{
|
|
@@ -4081,6 +5553,22 @@
|
|
|
4081
5553
|
}
|
|
4082
5554
|
]
|
|
4083
5555
|
},
|
|
5556
|
+
"wechat-channels": {
|
|
5557
|
+
"commands": [
|
|
5558
|
+
{
|
|
5559
|
+
"name": "hot",
|
|
5560
|
+
"description": "WeChat Channels (Video Accounts) trending videos",
|
|
5561
|
+
"strategy": "intercept",
|
|
5562
|
+
"type": "web-api"
|
|
5563
|
+
},
|
|
5564
|
+
{
|
|
5565
|
+
"name": "search",
|
|
5566
|
+
"description": "Search WeChat Channels (Video Accounts) videos",
|
|
5567
|
+
"strategy": "intercept",
|
|
5568
|
+
"type": "web-api"
|
|
5569
|
+
}
|
|
5570
|
+
]
|
|
5571
|
+
},
|
|
4084
5572
|
"weibo": {
|
|
4085
5573
|
"commands": [
|
|
4086
5574
|
{
|
|
@@ -4131,6 +5619,12 @@
|
|
|
4131
5619
|
"strategy": "cookie",
|
|
4132
5620
|
"type": "web-api"
|
|
4133
5621
|
},
|
|
5622
|
+
{
|
|
5623
|
+
"name": "trending",
|
|
5624
|
+
"description": "Weibo trending topics (real-time hot search)",
|
|
5625
|
+
"strategy": "public",
|
|
5626
|
+
"type": "web-api"
|
|
5627
|
+
},
|
|
4134
5628
|
{
|
|
4135
5629
|
"name": "user",
|
|
4136
5630
|
"description": "Get Weibo user profile by UID",
|
|
@@ -4153,6 +5647,12 @@
|
|
|
4153
5647
|
"strategy": "cookie",
|
|
4154
5648
|
"type": "browser"
|
|
4155
5649
|
},
|
|
5650
|
+
{
|
|
5651
|
+
"name": "hot",
|
|
5652
|
+
"description": "WeChat/Weixin hot articles trending",
|
|
5653
|
+
"strategy": "public",
|
|
5654
|
+
"type": "web-api"
|
|
5655
|
+
},
|
|
4156
5656
|
{
|
|
4157
5657
|
"name": "manifest",
|
|
4158
5658
|
"description": "WeChat Official Accounts — article publishing and search",
|
|
@@ -4233,6 +5733,12 @@
|
|
|
4233
5733
|
"strategy": "public",
|
|
4234
5734
|
"type": "web-api"
|
|
4235
5735
|
},
|
|
5736
|
+
{
|
|
5737
|
+
"name": "today",
|
|
5738
|
+
"description": "Wikipedia featured article of the day",
|
|
5739
|
+
"strategy": "public",
|
|
5740
|
+
"type": "web-api"
|
|
5741
|
+
},
|
|
4236
5742
|
{
|
|
4237
5743
|
"name": "trending",
|
|
4238
5744
|
"description": "Most-read Wikipedia articles (yesterday)",
|
|
@@ -4391,6 +5897,30 @@
|
|
|
4391
5897
|
"strategy": "intercept",
|
|
4392
5898
|
"type": "web-api"
|
|
4393
5899
|
},
|
|
5900
|
+
{
|
|
5901
|
+
"name": "follow",
|
|
5902
|
+
"description": "Follow a Xiaohongshu user",
|
|
5903
|
+
"strategy": "intercept",
|
|
5904
|
+
"type": "web-api"
|
|
5905
|
+
},
|
|
5906
|
+
{
|
|
5907
|
+
"name": "hashtag",
|
|
5908
|
+
"description": "Browse notes under a Xiaohongshu hashtag/topic",
|
|
5909
|
+
"strategy": "intercept",
|
|
5910
|
+
"type": "web-api"
|
|
5911
|
+
},
|
|
5912
|
+
{
|
|
5913
|
+
"name": "hot",
|
|
5914
|
+
"description": "Xiaohongshu trending/hot notes",
|
|
5915
|
+
"strategy": "intercept",
|
|
5916
|
+
"type": "web-api"
|
|
5917
|
+
},
|
|
5918
|
+
{
|
|
5919
|
+
"name": "like",
|
|
5920
|
+
"description": "Like a Xiaohongshu note",
|
|
5921
|
+
"strategy": "intercept",
|
|
5922
|
+
"type": "web-api"
|
|
5923
|
+
},
|
|
4394
5924
|
{
|
|
4395
5925
|
"name": "note",
|
|
4396
5926
|
"description": "Get note content and engagement metrics",
|
|
@@ -4403,18 +5933,48 @@
|
|
|
4403
5933
|
"strategy": "intercept",
|
|
4404
5934
|
"type": "web-api"
|
|
4405
5935
|
},
|
|
5936
|
+
{
|
|
5937
|
+
"name": "profile",
|
|
5938
|
+
"description": "Get a Xiaohongshu user profile",
|
|
5939
|
+
"strategy": "intercept",
|
|
5940
|
+
"type": "web-api"
|
|
5941
|
+
},
|
|
4406
5942
|
{
|
|
4407
5943
|
"name": "publish",
|
|
4408
5944
|
"description": "Publish an image+text note via Xiaohongshu creator center (UI automation)",
|
|
4409
5945
|
"strategy": "cookie",
|
|
4410
5946
|
"type": "web-api"
|
|
4411
5947
|
},
|
|
5948
|
+
{
|
|
5949
|
+
"name": "save",
|
|
5950
|
+
"description": "Save/collect a Xiaohongshu note",
|
|
5951
|
+
"strategy": "intercept",
|
|
5952
|
+
"type": "web-api"
|
|
5953
|
+
},
|
|
4412
5954
|
{
|
|
4413
5955
|
"name": "search",
|
|
4414
5956
|
"description": "Search notes on Xiaohongshu",
|
|
4415
5957
|
"strategy": "cookie",
|
|
4416
5958
|
"type": "web-api"
|
|
4417
5959
|
},
|
|
5960
|
+
{
|
|
5961
|
+
"name": "suggest",
|
|
5962
|
+
"description": "Xiaohongshu search suggestions/autocomplete",
|
|
5963
|
+
"strategy": "intercept",
|
|
5964
|
+
"type": "web-api"
|
|
5965
|
+
},
|
|
5966
|
+
{
|
|
5967
|
+
"name": "trending",
|
|
5968
|
+
"description": "Xiaohongshu trending searches",
|
|
5969
|
+
"strategy": "intercept",
|
|
5970
|
+
"type": "web-api"
|
|
5971
|
+
},
|
|
5972
|
+
{
|
|
5973
|
+
"name": "unfollow",
|
|
5974
|
+
"description": "Unfollow a Xiaohongshu user",
|
|
5975
|
+
"strategy": "intercept",
|
|
5976
|
+
"type": "web-api"
|
|
5977
|
+
},
|
|
4418
5978
|
{
|
|
4419
5979
|
"name": "user",
|
|
4420
5980
|
"description": "Get public notes from a Xiaohongshu user profile",
|
|
@@ -4489,6 +6049,12 @@
|
|
|
4489
6049
|
"strategy": "cookie",
|
|
4490
6050
|
"type": "web-api"
|
|
4491
6051
|
},
|
|
6052
|
+
{
|
|
6053
|
+
"name": "market",
|
|
6054
|
+
"description": "Xueqiu market indices overview",
|
|
6055
|
+
"strategy": "cookie",
|
|
6056
|
+
"type": "web-api"
|
|
6057
|
+
},
|
|
4492
6058
|
{
|
|
4493
6059
|
"name": "quote",
|
|
4494
6060
|
"description": "Xueqiu stock quote",
|
|
@@ -4515,6 +6081,28 @@
|
|
|
4515
6081
|
}
|
|
4516
6082
|
]
|
|
4517
6083
|
},
|
|
6084
|
+
"yahoo-finance": {
|
|
6085
|
+
"commands": [
|
|
6086
|
+
{
|
|
6087
|
+
"name": "quote",
|
|
6088
|
+
"description": "Get stock quote from Yahoo Finance",
|
|
6089
|
+
"strategy": "public",
|
|
6090
|
+
"type": "web-api"
|
|
6091
|
+
},
|
|
6092
|
+
{
|
|
6093
|
+
"name": "search",
|
|
6094
|
+
"description": "Search Yahoo Finance for tickers and companies",
|
|
6095
|
+
"strategy": "public",
|
|
6096
|
+
"type": "web-api"
|
|
6097
|
+
},
|
|
6098
|
+
{
|
|
6099
|
+
"name": "trending",
|
|
6100
|
+
"description": "Yahoo Finance trending tickers",
|
|
6101
|
+
"strategy": "public",
|
|
6102
|
+
"type": "web-api"
|
|
6103
|
+
}
|
|
6104
|
+
]
|
|
6105
|
+
},
|
|
4518
6106
|
"ycombinator": {
|
|
4519
6107
|
"commands": [
|
|
4520
6108
|
{
|
|
@@ -4615,18 +6203,36 @@
|
|
|
4615
6203
|
"strategy": "public",
|
|
4616
6204
|
"type": "web-api"
|
|
4617
6205
|
},
|
|
6206
|
+
{
|
|
6207
|
+
"name": "playlist",
|
|
6208
|
+
"description": "Get videos from a YouTube playlist",
|
|
6209
|
+
"strategy": "intercept",
|
|
6210
|
+
"type": "web-api"
|
|
6211
|
+
},
|
|
4618
6212
|
{
|
|
4619
6213
|
"name": "search",
|
|
4620
6214
|
"description": "Search YouTube videos",
|
|
4621
6215
|
"strategy": "public",
|
|
4622
6216
|
"type": "web-api"
|
|
4623
6217
|
},
|
|
6218
|
+
{
|
|
6219
|
+
"name": "shorts",
|
|
6220
|
+
"description": "Get YouTube Shorts from a channel or trending",
|
|
6221
|
+
"strategy": "intercept",
|
|
6222
|
+
"type": "web-api"
|
|
6223
|
+
},
|
|
4624
6224
|
{
|
|
4625
6225
|
"name": "transcript",
|
|
4626
6226
|
"description": "Get YouTube video transcript/subtitles",
|
|
4627
6227
|
"strategy": "public",
|
|
4628
6228
|
"type": "web-api"
|
|
4629
6229
|
},
|
|
6230
|
+
{
|
|
6231
|
+
"name": "trending",
|
|
6232
|
+
"description": "Get YouTube trending videos",
|
|
6233
|
+
"strategy": "intercept",
|
|
6234
|
+
"type": "web-api"
|
|
6235
|
+
},
|
|
4630
6236
|
{
|
|
4631
6237
|
"name": "video",
|
|
4632
6238
|
"description": "Get YouTube video info",
|
|
@@ -4687,6 +6293,48 @@
|
|
|
4687
6293
|
},
|
|
4688
6294
|
"zhihu": {
|
|
4689
6295
|
"commands": [
|
|
6296
|
+
{
|
|
6297
|
+
"name": "answer",
|
|
6298
|
+
"description": "Get a specific Zhihu answer by ID",
|
|
6299
|
+
"strategy": "cookie",
|
|
6300
|
+
"type": "web-api"
|
|
6301
|
+
},
|
|
6302
|
+
{
|
|
6303
|
+
"name": "answers",
|
|
6304
|
+
"description": "List answers by a Zhihu user",
|
|
6305
|
+
"strategy": "cookie",
|
|
6306
|
+
"type": "web-api"
|
|
6307
|
+
},
|
|
6308
|
+
{
|
|
6309
|
+
"name": "article",
|
|
6310
|
+
"description": "Get a Zhihu article (zhuanlan) by ID",
|
|
6311
|
+
"strategy": "cookie",
|
|
6312
|
+
"type": "web-api"
|
|
6313
|
+
},
|
|
6314
|
+
{
|
|
6315
|
+
"name": "articles",
|
|
6316
|
+
"description": "List articles by a Zhihu user",
|
|
6317
|
+
"strategy": "cookie",
|
|
6318
|
+
"type": "web-api"
|
|
6319
|
+
},
|
|
6320
|
+
{
|
|
6321
|
+
"name": "collections",
|
|
6322
|
+
"description": "List Zhihu collections (favorites) for a user",
|
|
6323
|
+
"strategy": "cookie",
|
|
6324
|
+
"type": "web-api"
|
|
6325
|
+
},
|
|
6326
|
+
{
|
|
6327
|
+
"name": "columns",
|
|
6328
|
+
"description": "Get articles from a Zhihu column (zhuanlan)",
|
|
6329
|
+
"strategy": "cookie",
|
|
6330
|
+
"type": "web-api"
|
|
6331
|
+
},
|
|
6332
|
+
{
|
|
6333
|
+
"name": "comment",
|
|
6334
|
+
"description": "Get comments on a Zhihu answer or article",
|
|
6335
|
+
"strategy": "cookie",
|
|
6336
|
+
"type": "web-api"
|
|
6337
|
+
},
|
|
4690
6338
|
{
|
|
4691
6339
|
"name": "download",
|
|
4692
6340
|
"description": "Download Zhihu answer/article content as markdown",
|
|
@@ -4699,6 +6347,18 @@
|
|
|
4699
6347
|
"strategy": "cookie",
|
|
4700
6348
|
"type": "web-api"
|
|
4701
6349
|
},
|
|
6350
|
+
{
|
|
6351
|
+
"name": "followers",
|
|
6352
|
+
"description": "List followers of a Zhihu user",
|
|
6353
|
+
"strategy": "cookie",
|
|
6354
|
+
"type": "web-api"
|
|
6355
|
+
},
|
|
6356
|
+
{
|
|
6357
|
+
"name": "following",
|
|
6358
|
+
"description": "List users followed by a Zhihu user",
|
|
6359
|
+
"strategy": "cookie",
|
|
6360
|
+
"type": "web-api"
|
|
6361
|
+
},
|
|
4702
6362
|
{
|
|
4703
6363
|
"name": "hot",
|
|
4704
6364
|
"description": "Zhihu hot topics list",
|
|
@@ -4717,6 +6377,12 @@
|
|
|
4717
6377
|
"strategy": "cookie",
|
|
4718
6378
|
"type": "web-api"
|
|
4719
6379
|
},
|
|
6380
|
+
{
|
|
6381
|
+
"name": "pins",
|
|
6382
|
+
"description": "List Zhihu pins (thoughts/status updates) by a user",
|
|
6383
|
+
"strategy": "cookie",
|
|
6384
|
+
"type": "web-api"
|
|
6385
|
+
},
|
|
4720
6386
|
{
|
|
4721
6387
|
"name": "question",
|
|
4722
6388
|
"description": "Zhihu question with top answers",
|
|
@@ -4728,6 +6394,46 @@
|
|
|
4728
6394
|
"description": "Search Zhihu questions and answers",
|
|
4729
6395
|
"strategy": "cookie",
|
|
4730
6396
|
"type": "web-api"
|
|
6397
|
+
},
|
|
6398
|
+
{
|
|
6399
|
+
"name": "topic",
|
|
6400
|
+
"description": "Get Zhihu topic best answers",
|
|
6401
|
+
"strategy": "cookie",
|
|
6402
|
+
"type": "web-api"
|
|
6403
|
+
},
|
|
6404
|
+
{
|
|
6405
|
+
"name": "topics",
|
|
6406
|
+
"description": "Get top answers for a Zhihu topic",
|
|
6407
|
+
"strategy": "cookie",
|
|
6408
|
+
"type": "web-api"
|
|
6409
|
+
},
|
|
6410
|
+
{
|
|
6411
|
+
"name": "trending",
|
|
6412
|
+
"description": "Zhihu trending topics by category",
|
|
6413
|
+
"strategy": "cookie",
|
|
6414
|
+
"type": "web-api"
|
|
6415
|
+
},
|
|
6416
|
+
{
|
|
6417
|
+
"name": "user",
|
|
6418
|
+
"description": "Get a Zhihu user profile by URL name",
|
|
6419
|
+
"strategy": "cookie",
|
|
6420
|
+
"type": "web-api"
|
|
6421
|
+
}
|
|
6422
|
+
]
|
|
6423
|
+
},
|
|
6424
|
+
"zoom": {
|
|
6425
|
+
"commands": [
|
|
6426
|
+
{
|
|
6427
|
+
"name": "join",
|
|
6428
|
+
"description": "Join a Zoom meeting by meeting ID",
|
|
6429
|
+
"strategy": "public",
|
|
6430
|
+
"type": "desktop"
|
|
6431
|
+
},
|
|
6432
|
+
{
|
|
6433
|
+
"name": "start",
|
|
6434
|
+
"description": "Start your personal Zoom meeting",
|
|
6435
|
+
"strategy": "public",
|
|
6436
|
+
"type": "desktop"
|
|
4731
6437
|
}
|
|
4732
6438
|
]
|
|
4733
6439
|
},
|