@zenalexa/unicli 0.207.1 → 0.209.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 +4 -4
- package/README.md +30 -17
- package/dist/browser/observe.d.ts +80 -0
- package/dist/browser/observe.d.ts.map +1 -0
- package/dist/browser/observe.js +144 -0
- package/dist/browser/observe.js.map +1 -0
- package/dist/browser/snapshot.d.ts.map +1 -1
- package/dist/browser/snapshot.js +29 -9
- package/dist/browser/snapshot.js.map +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +59 -2
- package/dist/cli.js.map +1 -1
- package/dist/commands/agents.d.ts.map +1 -1
- package/dist/commands/agents.js +82 -2
- package/dist/commands/agents.js.map +1 -1
- package/dist/commands/eval.d.ts +112 -0
- package/dist/commands/eval.d.ts.map +1 -0
- package/dist/commands/eval.js +485 -0
- package/dist/commands/eval.js.map +1 -0
- package/dist/commands/generate.d.ts.map +1 -1
- package/dist/commands/generate.js +20 -1
- package/dist/commands/generate.js.map +1 -1
- package/dist/commands/hub.d.ts +13 -0
- package/dist/commands/hub.d.ts.map +1 -0
- package/dist/commands/hub.js +232 -0
- package/dist/commands/hub.js.map +1 -0
- package/dist/commands/mcp.d.ts +16 -0
- package/dist/commands/mcp.d.ts.map +1 -0
- package/dist/commands/mcp.js +135 -0
- package/dist/commands/mcp.js.map +1 -0
- package/dist/commands/operate.d.ts.map +1 -1
- package/dist/commands/operate.js +66 -1
- package/dist/commands/operate.js.map +1 -1
- package/dist/commands/research.d.ts +17 -0
- package/dist/commands/research.d.ts.map +1 -0
- package/dist/commands/research.js +257 -0
- package/dist/commands/research.js.map +1 -0
- package/dist/commands/skills.d.ts +91 -0
- package/dist/commands/skills.d.ts.map +1 -0
- package/dist/commands/skills.js +266 -0
- package/dist/commands/skills.js.map +1 -0
- package/dist/commands/test-gen.d.ts +10 -0
- package/dist/commands/test-gen.d.ts.map +1 -0
- package/dist/commands/test-gen.js +124 -0
- package/dist/commands/test-gen.js.map +1 -0
- package/dist/commands/usage.d.ts +17 -0
- package/dist/commands/usage.d.ts.map +1 -0
- package/dist/commands/usage.js +87 -0
- package/dist/commands/usage.js.map +1 -0
- package/dist/discovery/loader.d.ts +8 -1
- package/dist/discovery/loader.d.ts.map +1 -1
- package/dist/discovery/loader.js +103 -6
- package/dist/discovery/loader.js.map +1 -1
- package/dist/engine/capability.d.ts +40 -0
- package/dist/engine/capability.d.ts.map +1 -0
- package/dist/engine/capability.js +191 -0
- package/dist/engine/capability.js.map +1 -0
- package/dist/engine/endpoint.d.ts +47 -0
- package/dist/engine/endpoint.d.ts.map +1 -0
- package/dist/engine/endpoint.js +295 -0
- package/dist/engine/endpoint.js.map +1 -0
- package/dist/engine/framework.d.ts +28 -0
- package/dist/engine/framework.d.ts.map +1 -0
- package/dist/engine/framework.js +66 -0
- package/dist/engine/framework.js.map +1 -0
- package/dist/engine/probe.d.ts +19 -0
- package/dist/engine/probe.d.ts.map +1 -0
- package/dist/engine/probe.js +85 -0
- package/dist/engine/probe.js.map +1 -0
- package/dist/engine/research.d.ts +38 -0
- package/dist/engine/research.d.ts.map +1 -0
- package/dist/engine/research.js +414 -0
- package/dist/engine/research.js.map +1 -0
- package/dist/engine/update-check.js +1 -1
- package/dist/engine/update-check.js.map +1 -1
- package/dist/engine/yaml-runner.d.ts.map +1 -1
- package/dist/engine/yaml-runner.js +115 -6
- package/dist/engine/yaml-runner.js.map +1 -1
- package/dist/main.d.ts +1 -4
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +1 -4
- package/dist/main.js.map +1 -1
- package/dist/manifest.json +519 -1
- package/dist/mcp/server.d.ts +19 -6
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +459 -115
- package/dist/mcp/server.js.map +1 -1
- package/dist/permissions/sensitive-paths.d.ts +92 -0
- package/dist/permissions/sensitive-paths.d.ts.map +1 -0
- package/dist/permissions/sensitive-paths.js +174 -0
- package/dist/permissions/sensitive-paths.js.map +1 -0
- package/dist/runtime/usage-ledger.d.ts +86 -0
- package/dist/runtime/usage-ledger.d.ts.map +1 -0
- package/dist/runtime/usage-ledger.js +173 -0
- package/dist/runtime/usage-ledger.js.map +1 -0
- package/package.json +8 -7
- package/src/adapters/autoagent/eval-run.yaml +36 -0
- package/src/adapters/cnn/top.yaml +21 -0
- package/src/adapters/cocoapods/search.yaml +16 -0
- package/src/adapters/crates-io/search.yaml +27 -0
- package/src/adapters/cua/bench-list.yaml +20 -0
- package/src/adapters/cua/bench-run.yaml +32 -0
- package/src/adapters/docker-hub/search.yaml +26 -0
- package/src/adapters/eastmoney/hot.yaml +23 -0
- package/src/adapters/eastmoney/search.yaml +25 -0
- package/src/adapters/exchangerate/convert.yaml +19 -0
- package/src/adapters/feishu/calendar.yaml +24 -0
- package/src/adapters/feishu/docs.yaml +17 -0
- package/src/adapters/feishu/send.yaml +29 -0
- package/src/adapters/feishu/tasks.yaml +24 -0
- package/src/adapters/gitee/search.yaml +25 -0
- package/src/adapters/gitee/trending.yaml +22 -0
- package/src/adapters/gitlab/search.yaml +24 -0
- package/src/adapters/gitlab/trending.yaml +22 -0
- package/src/adapters/godot/project-run.yaml +31 -0
- package/src/adapters/godot/scene-export.yaml +39 -0
- package/src/adapters/hermes/sessions-search.yaml +61 -0
- package/src/adapters/hermes/skills-list.yaml +30 -0
- package/src/adapters/hermes/skills-read.yaml +46 -0
- package/src/adapters/homebrew/info.yaml +15 -0
- package/src/adapters/huggingface-papers/daily.yaml +21 -0
- package/src/adapters/infoq/articles.yaml +29 -0
- package/src/adapters/ip-info/lookup.yaml +15 -0
- package/src/adapters/itch-io/popular.yaml +22 -0
- package/src/adapters/ithome/news.yaml +21 -0
- package/src/adapters/mastodon/search.yaml +29 -0
- package/src/adapters/mastodon/trending.yaml +27 -0
- package/src/adapters/meituan/search.yaml +30 -0
- package/src/adapters/minimax/chat.yaml +33 -0
- package/src/adapters/minimax/models.yaml +18 -0
- package/src/adapters/minimax/tts.yaml +33 -0
- package/src/adapters/motion-studio/component-get.yaml +35 -0
- package/src/adapters/netease-music/hot.yaml +24 -0
- package/src/adapters/netease-music/search.yaml +29 -0
- package/src/adapters/npm-trends/compare.yaml +19 -0
- package/src/adapters/nytimes/top.yaml +26 -0
- package/src/adapters/openharness/memory-read.yaml +51 -0
- package/src/adapters/openharness/skills-list.yaml +28 -0
- package/src/adapters/openrouter/models.yaml +22 -0
- package/src/adapters/pexels/search.yaml +28 -0
- package/src/adapters/pinduoduo/hot.yaml +20 -0
- package/src/adapters/pypi/info.yaml +16 -0
- package/src/adapters/qweather/now.yaml +16 -0
- package/src/adapters/renderdoc/capture-list.yaml +42 -0
- package/src/adapters/renderdoc/frame-export.yaml +32 -0
- package/src/adapters/replicate/search.yaml +25 -0
- package/src/adapters/replicate/trending.yaml +22 -0
- package/src/adapters/sspai/hot.yaml +21 -0
- package/src/adapters/sspai/latest.yaml +22 -0
- package/src/adapters/stagehand/wrap-observe.yaml +42 -0
- package/src/adapters/techcrunch/latest.yaml +22 -0
- package/src/adapters/theverge/latest.yaml +21 -0
- package/src/adapters/twitch/top.yaml +26 -0
- package/src/adapters/unsplash/search.yaml +28 -0
- package/src/adapters/ycombinator/launches.yaml +20 -0
package/dist/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.209.0",
|
|
3
3
|
"sites": {
|
|
4
4
|
"1688": {
|
|
5
5
|
"commands": [
|
|
@@ -233,6 +233,16 @@
|
|
|
233
233
|
}
|
|
234
234
|
]
|
|
235
235
|
},
|
|
236
|
+
"autoagent": {
|
|
237
|
+
"commands": [
|
|
238
|
+
{
|
|
239
|
+
"name": "eval-run",
|
|
240
|
+
"description": "Run an AutoAgent evaluation (hill-climbing on agent.py)",
|
|
241
|
+
"strategy": "public",
|
|
242
|
+
"type": "bridge"
|
|
243
|
+
}
|
|
244
|
+
]
|
|
245
|
+
},
|
|
236
246
|
"aws": {
|
|
237
247
|
"commands": [
|
|
238
248
|
{
|
|
@@ -753,6 +763,26 @@
|
|
|
753
763
|
}
|
|
754
764
|
]
|
|
755
765
|
},
|
|
766
|
+
"cnn": {
|
|
767
|
+
"commands": [
|
|
768
|
+
{
|
|
769
|
+
"name": "top",
|
|
770
|
+
"description": "CNN top stories via RSS",
|
|
771
|
+
"strategy": "public",
|
|
772
|
+
"type": "web-api"
|
|
773
|
+
}
|
|
774
|
+
]
|
|
775
|
+
},
|
|
776
|
+
"cocoapods": {
|
|
777
|
+
"commands": [
|
|
778
|
+
{
|
|
779
|
+
"name": "search",
|
|
780
|
+
"description": "Search CocoaPods iOS/macOS libraries",
|
|
781
|
+
"strategy": "public",
|
|
782
|
+
"type": "web-api"
|
|
783
|
+
}
|
|
784
|
+
]
|
|
785
|
+
},
|
|
756
786
|
"codex": {
|
|
757
787
|
"commands": [
|
|
758
788
|
{
|
|
@@ -817,6 +847,16 @@
|
|
|
817
847
|
}
|
|
818
848
|
]
|
|
819
849
|
},
|
|
850
|
+
"crates-io": {
|
|
851
|
+
"commands": [
|
|
852
|
+
{
|
|
853
|
+
"name": "search",
|
|
854
|
+
"description": "Search Rust crates on crates.io",
|
|
855
|
+
"strategy": "public",
|
|
856
|
+
"type": "web-api"
|
|
857
|
+
}
|
|
858
|
+
]
|
|
859
|
+
},
|
|
820
860
|
"ctrip": {
|
|
821
861
|
"commands": [
|
|
822
862
|
{
|
|
@@ -827,6 +867,22 @@
|
|
|
827
867
|
}
|
|
828
868
|
]
|
|
829
869
|
},
|
|
870
|
+
"cua": {
|
|
871
|
+
"commands": [
|
|
872
|
+
{
|
|
873
|
+
"name": "bench-list",
|
|
874
|
+
"description": "List trycua/cua computer-use benchmarks",
|
|
875
|
+
"strategy": "public",
|
|
876
|
+
"type": "bridge"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"name": "bench-run",
|
|
880
|
+
"description": "Run a trycua/cua computer-use benchmark",
|
|
881
|
+
"strategy": "public",
|
|
882
|
+
"type": "bridge"
|
|
883
|
+
}
|
|
884
|
+
]
|
|
885
|
+
},
|
|
830
886
|
"cursor": {
|
|
831
887
|
"commands": [
|
|
832
888
|
{
|
|
@@ -935,6 +991,16 @@
|
|
|
935
991
|
}
|
|
936
992
|
]
|
|
937
993
|
},
|
|
994
|
+
"docker-hub": {
|
|
995
|
+
"commands": [
|
|
996
|
+
{
|
|
997
|
+
"name": "search",
|
|
998
|
+
"description": "Search Docker Hub images",
|
|
999
|
+
"strategy": "public",
|
|
1000
|
+
"type": "web-api"
|
|
1001
|
+
}
|
|
1002
|
+
]
|
|
1003
|
+
},
|
|
938
1004
|
"doctl": {
|
|
939
1005
|
"commands": [
|
|
940
1006
|
{
|
|
@@ -1153,6 +1219,32 @@
|
|
|
1153
1219
|
}
|
|
1154
1220
|
]
|
|
1155
1221
|
},
|
|
1222
|
+
"eastmoney": {
|
|
1223
|
+
"commands": [
|
|
1224
|
+
{
|
|
1225
|
+
"name": "hot",
|
|
1226
|
+
"description": "Eastmoney hot stocks (A-share volume leaders)",
|
|
1227
|
+
"strategy": "public",
|
|
1228
|
+
"type": "web-api"
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"name": "search",
|
|
1232
|
+
"description": "Search stocks on Eastmoney",
|
|
1233
|
+
"strategy": "public",
|
|
1234
|
+
"type": "web-api"
|
|
1235
|
+
}
|
|
1236
|
+
]
|
|
1237
|
+
},
|
|
1238
|
+
"exchangerate": {
|
|
1239
|
+
"commands": [
|
|
1240
|
+
{
|
|
1241
|
+
"name": "convert",
|
|
1242
|
+
"description": "Get exchange rates (free API, no key needed)",
|
|
1243
|
+
"strategy": "public",
|
|
1244
|
+
"type": "web-api"
|
|
1245
|
+
}
|
|
1246
|
+
]
|
|
1247
|
+
},
|
|
1156
1248
|
"facebook": {
|
|
1157
1249
|
"commands": [
|
|
1158
1250
|
{
|
|
@@ -1217,6 +1309,34 @@
|
|
|
1217
1309
|
}
|
|
1218
1310
|
]
|
|
1219
1311
|
},
|
|
1312
|
+
"feishu": {
|
|
1313
|
+
"commands": [
|
|
1314
|
+
{
|
|
1315
|
+
"name": "calendar",
|
|
1316
|
+
"description": "List upcoming Feishu/Lark calendar events",
|
|
1317
|
+
"strategy": "public",
|
|
1318
|
+
"type": "bridge"
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"name": "docs",
|
|
1322
|
+
"description": "List recent Feishu/Lark documents",
|
|
1323
|
+
"strategy": "public",
|
|
1324
|
+
"type": "bridge"
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"name": "send",
|
|
1328
|
+
"description": "Send a message via Feishu/Lark CLI",
|
|
1329
|
+
"strategy": "public",
|
|
1330
|
+
"type": "bridge"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"name": "tasks",
|
|
1334
|
+
"description": "List Feishu/Lark tasks",
|
|
1335
|
+
"strategy": "public",
|
|
1336
|
+
"type": "bridge"
|
|
1337
|
+
}
|
|
1338
|
+
]
|
|
1339
|
+
},
|
|
1220
1340
|
"ffmpeg": {
|
|
1221
1341
|
"commands": [
|
|
1222
1342
|
{
|
|
@@ -1545,6 +1665,22 @@
|
|
|
1545
1665
|
}
|
|
1546
1666
|
]
|
|
1547
1667
|
},
|
|
1668
|
+
"gitee": {
|
|
1669
|
+
"commands": [
|
|
1670
|
+
{
|
|
1671
|
+
"name": "search",
|
|
1672
|
+
"description": "Search repositories on Gitee",
|
|
1673
|
+
"strategy": "public",
|
|
1674
|
+
"type": "web-api"
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
"name": "trending",
|
|
1678
|
+
"description": "Trending repositories on Gitee",
|
|
1679
|
+
"strategy": "public",
|
|
1680
|
+
"type": "web-api"
|
|
1681
|
+
}
|
|
1682
|
+
]
|
|
1683
|
+
},
|
|
1548
1684
|
"github-trending": {
|
|
1549
1685
|
"commands": [
|
|
1550
1686
|
{
|
|
@@ -1555,6 +1691,38 @@
|
|
|
1555
1691
|
}
|
|
1556
1692
|
]
|
|
1557
1693
|
},
|
|
1694
|
+
"gitlab": {
|
|
1695
|
+
"commands": [
|
|
1696
|
+
{
|
|
1697
|
+
"name": "search",
|
|
1698
|
+
"description": "Search GitLab projects",
|
|
1699
|
+
"strategy": "public",
|
|
1700
|
+
"type": "web-api"
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
"name": "trending",
|
|
1704
|
+
"description": "Trending/popular GitLab projects",
|
|
1705
|
+
"strategy": "public",
|
|
1706
|
+
"type": "web-api"
|
|
1707
|
+
}
|
|
1708
|
+
]
|
|
1709
|
+
},
|
|
1710
|
+
"godot": {
|
|
1711
|
+
"commands": [
|
|
1712
|
+
{
|
|
1713
|
+
"name": "project-run",
|
|
1714
|
+
"description": "Run a Godot project in headless mode",
|
|
1715
|
+
"strategy": "public",
|
|
1716
|
+
"type": "desktop"
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"name": "scene-export",
|
|
1720
|
+
"description": "Export a Godot scene to PNG / GLTF / DAE via headless mode",
|
|
1721
|
+
"strategy": "public",
|
|
1722
|
+
"type": "desktop"
|
|
1723
|
+
}
|
|
1724
|
+
]
|
|
1725
|
+
},
|
|
1558
1726
|
"google": {
|
|
1559
1727
|
"commands": [
|
|
1560
1728
|
{
|
|
@@ -1645,6 +1813,28 @@
|
|
|
1645
1813
|
}
|
|
1646
1814
|
]
|
|
1647
1815
|
},
|
|
1816
|
+
"hermes": {
|
|
1817
|
+
"commands": [
|
|
1818
|
+
{
|
|
1819
|
+
"name": "sessions-search",
|
|
1820
|
+
"description": "Search Hermes session history via SQLite FTS5",
|
|
1821
|
+
"strategy": "public",
|
|
1822
|
+
"type": "desktop"
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
"name": "skills-list",
|
|
1826
|
+
"description": "List skills installed in the local Hermes agent (~/.hermes/skills/)",
|
|
1827
|
+
"strategy": "public",
|
|
1828
|
+
"type": "desktop"
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
"name": "skills-read",
|
|
1832
|
+
"description": "Read a Hermes skill file by name (without .md extension)",
|
|
1833
|
+
"strategy": "public",
|
|
1834
|
+
"type": "desktop"
|
|
1835
|
+
}
|
|
1836
|
+
]
|
|
1837
|
+
},
|
|
1648
1838
|
"hf": {
|
|
1649
1839
|
"commands": [
|
|
1650
1840
|
{
|
|
@@ -1661,6 +1851,26 @@
|
|
|
1661
1851
|
}
|
|
1662
1852
|
]
|
|
1663
1853
|
},
|
|
1854
|
+
"homebrew": {
|
|
1855
|
+
"commands": [
|
|
1856
|
+
{
|
|
1857
|
+
"name": "info",
|
|
1858
|
+
"description": "Get Homebrew formula details",
|
|
1859
|
+
"strategy": "public",
|
|
1860
|
+
"type": "web-api"
|
|
1861
|
+
}
|
|
1862
|
+
]
|
|
1863
|
+
},
|
|
1864
|
+
"huggingface-papers": {
|
|
1865
|
+
"commands": [
|
|
1866
|
+
{
|
|
1867
|
+
"name": "daily",
|
|
1868
|
+
"description": "Daily trending papers on Hugging Face",
|
|
1869
|
+
"strategy": "public",
|
|
1870
|
+
"type": "web-api"
|
|
1871
|
+
}
|
|
1872
|
+
]
|
|
1873
|
+
},
|
|
1664
1874
|
"hupu": {
|
|
1665
1875
|
"commands": [
|
|
1666
1876
|
{
|
|
@@ -1787,6 +1997,16 @@
|
|
|
1787
1997
|
}
|
|
1788
1998
|
]
|
|
1789
1999
|
},
|
|
2000
|
+
"infoq": {
|
|
2001
|
+
"commands": [
|
|
2002
|
+
{
|
|
2003
|
+
"name": "articles",
|
|
2004
|
+
"description": "Latest InfoQ articles (Chinese edition)",
|
|
2005
|
+
"strategy": "public",
|
|
2006
|
+
"type": "web-api"
|
|
2007
|
+
}
|
|
2008
|
+
]
|
|
2009
|
+
},
|
|
1790
2010
|
"inkscape": {
|
|
1791
2011
|
"commands": [
|
|
1792
2012
|
{
|
|
@@ -1927,6 +2147,36 @@
|
|
|
1927
2147
|
}
|
|
1928
2148
|
]
|
|
1929
2149
|
},
|
|
2150
|
+
"ip-info": {
|
|
2151
|
+
"commands": [
|
|
2152
|
+
{
|
|
2153
|
+
"name": "lookup",
|
|
2154
|
+
"description": "IP geolocation lookup (free, no key)",
|
|
2155
|
+
"strategy": "public",
|
|
2156
|
+
"type": "web-api"
|
|
2157
|
+
}
|
|
2158
|
+
]
|
|
2159
|
+
},
|
|
2160
|
+
"itch-io": {
|
|
2161
|
+
"commands": [
|
|
2162
|
+
{
|
|
2163
|
+
"name": "popular",
|
|
2164
|
+
"description": "Popular games on itch.io",
|
|
2165
|
+
"strategy": "public",
|
|
2166
|
+
"type": "web-api"
|
|
2167
|
+
}
|
|
2168
|
+
]
|
|
2169
|
+
},
|
|
2170
|
+
"ithome": {
|
|
2171
|
+
"commands": [
|
|
2172
|
+
{
|
|
2173
|
+
"name": "news",
|
|
2174
|
+
"description": "IT Home (IT之家) latest tech news via RSS",
|
|
2175
|
+
"strategy": "public",
|
|
2176
|
+
"type": "web-api"
|
|
2177
|
+
}
|
|
2178
|
+
]
|
|
2179
|
+
},
|
|
1930
2180
|
"jd": {
|
|
1931
2181
|
"commands": [
|
|
1932
2182
|
{
|
|
@@ -2341,6 +2591,22 @@
|
|
|
2341
2591
|
}
|
|
2342
2592
|
]
|
|
2343
2593
|
},
|
|
2594
|
+
"mastodon": {
|
|
2595
|
+
"commands": [
|
|
2596
|
+
{
|
|
2597
|
+
"name": "search",
|
|
2598
|
+
"description": "Search posts on a Mastodon instance",
|
|
2599
|
+
"strategy": "public",
|
|
2600
|
+
"type": "web-api"
|
|
2601
|
+
},
|
|
2602
|
+
{
|
|
2603
|
+
"name": "trending",
|
|
2604
|
+
"description": "Trending posts on a Mastodon instance (default mastodon.social)",
|
|
2605
|
+
"strategy": "public",
|
|
2606
|
+
"type": "web-api"
|
|
2607
|
+
}
|
|
2608
|
+
]
|
|
2609
|
+
},
|
|
2344
2610
|
"medium": {
|
|
2345
2611
|
"commands": [
|
|
2346
2612
|
{
|
|
@@ -2363,6 +2629,16 @@
|
|
|
2363
2629
|
}
|
|
2364
2630
|
]
|
|
2365
2631
|
},
|
|
2632
|
+
"meituan": {
|
|
2633
|
+
"commands": [
|
|
2634
|
+
{
|
|
2635
|
+
"name": "search",
|
|
2636
|
+
"description": "Search restaurants/shops on Meituan",
|
|
2637
|
+
"strategy": "cookie",
|
|
2638
|
+
"type": "web-api"
|
|
2639
|
+
}
|
|
2640
|
+
]
|
|
2641
|
+
},
|
|
2366
2642
|
"mermaid": {
|
|
2367
2643
|
"commands": [
|
|
2368
2644
|
{
|
|
@@ -2373,6 +2649,38 @@
|
|
|
2373
2649
|
}
|
|
2374
2650
|
]
|
|
2375
2651
|
},
|
|
2652
|
+
"minimax": {
|
|
2653
|
+
"commands": [
|
|
2654
|
+
{
|
|
2655
|
+
"name": "chat",
|
|
2656
|
+
"description": "MiniMax M2 chat completion (OpenAI-compatible API)",
|
|
2657
|
+
"strategy": "header",
|
|
2658
|
+
"type": "web-api"
|
|
2659
|
+
},
|
|
2660
|
+
{
|
|
2661
|
+
"name": "models",
|
|
2662
|
+
"description": "List available MiniMax models",
|
|
2663
|
+
"strategy": "header",
|
|
2664
|
+
"type": "web-api"
|
|
2665
|
+
},
|
|
2666
|
+
{
|
|
2667
|
+
"name": "tts",
|
|
2668
|
+
"description": "MiniMax text-to-speech generation",
|
|
2669
|
+
"strategy": "header",
|
|
2670
|
+
"type": "web-api"
|
|
2671
|
+
}
|
|
2672
|
+
]
|
|
2673
|
+
},
|
|
2674
|
+
"motion-studio": {
|
|
2675
|
+
"commands": [
|
|
2676
|
+
{
|
|
2677
|
+
"name": "component-get",
|
|
2678
|
+
"description": "Fetch a Motion (motion.dev) example component as paste-ready code",
|
|
2679
|
+
"strategy": "public",
|
|
2680
|
+
"type": "web-api"
|
|
2681
|
+
}
|
|
2682
|
+
]
|
|
2683
|
+
},
|
|
2376
2684
|
"musescore": {
|
|
2377
2685
|
"commands": [
|
|
2378
2686
|
{
|
|
@@ -2417,6 +2725,22 @@
|
|
|
2417
2725
|
}
|
|
2418
2726
|
]
|
|
2419
2727
|
},
|
|
2728
|
+
"netease-music": {
|
|
2729
|
+
"commands": [
|
|
2730
|
+
{
|
|
2731
|
+
"name": "hot",
|
|
2732
|
+
"description": "NetEase Cloud Music hot/trending songs",
|
|
2733
|
+
"strategy": "public",
|
|
2734
|
+
"type": "web-api"
|
|
2735
|
+
},
|
|
2736
|
+
{
|
|
2737
|
+
"name": "search",
|
|
2738
|
+
"description": "Search songs on NetEase Cloud Music",
|
|
2739
|
+
"strategy": "public",
|
|
2740
|
+
"type": "web-api"
|
|
2741
|
+
}
|
|
2742
|
+
]
|
|
2743
|
+
},
|
|
2420
2744
|
"netlify": {
|
|
2421
2745
|
"commands": [
|
|
2422
2746
|
{
|
|
@@ -2553,6 +2877,26 @@
|
|
|
2553
2877
|
}
|
|
2554
2878
|
]
|
|
2555
2879
|
},
|
|
2880
|
+
"npm-trends": {
|
|
2881
|
+
"commands": [
|
|
2882
|
+
{
|
|
2883
|
+
"name": "compare",
|
|
2884
|
+
"description": "Compare npm package download counts",
|
|
2885
|
+
"strategy": "public",
|
|
2886
|
+
"type": "web-api"
|
|
2887
|
+
}
|
|
2888
|
+
]
|
|
2889
|
+
},
|
|
2890
|
+
"nytimes": {
|
|
2891
|
+
"commands": [
|
|
2892
|
+
{
|
|
2893
|
+
"name": "top",
|
|
2894
|
+
"description": "New York Times top stories via RSS",
|
|
2895
|
+
"strategy": "public",
|
|
2896
|
+
"type": "web-api"
|
|
2897
|
+
}
|
|
2898
|
+
]
|
|
2899
|
+
},
|
|
2556
2900
|
"obs": {
|
|
2557
2901
|
"commands": [
|
|
2558
2902
|
{
|
|
@@ -2695,6 +3039,32 @@
|
|
|
2695
3039
|
}
|
|
2696
3040
|
]
|
|
2697
3041
|
},
|
|
3042
|
+
"openharness": {
|
|
3043
|
+
"commands": [
|
|
3044
|
+
{
|
|
3045
|
+
"name": "memory-read",
|
|
3046
|
+
"description": "Read OpenHarness MEMORY.md and per-topic memory files (~/.openharness/memory/)",
|
|
3047
|
+
"strategy": "public",
|
|
3048
|
+
"type": "desktop"
|
|
3049
|
+
},
|
|
3050
|
+
{
|
|
3051
|
+
"name": "skills-list",
|
|
3052
|
+
"description": "List skills installed in the local OpenHarness (~/.openharness/skills/)",
|
|
3053
|
+
"strategy": "public",
|
|
3054
|
+
"type": "desktop"
|
|
3055
|
+
}
|
|
3056
|
+
]
|
|
3057
|
+
},
|
|
3058
|
+
"openrouter": {
|
|
3059
|
+
"commands": [
|
|
3060
|
+
{
|
|
3061
|
+
"name": "models",
|
|
3062
|
+
"description": "List all available AI models on OpenRouter",
|
|
3063
|
+
"strategy": "public",
|
|
3064
|
+
"type": "web-api"
|
|
3065
|
+
}
|
|
3066
|
+
]
|
|
3067
|
+
},
|
|
2698
3068
|
"pandoc": {
|
|
2699
3069
|
"commands": [
|
|
2700
3070
|
{
|
|
@@ -2727,6 +3097,26 @@
|
|
|
2727
3097
|
}
|
|
2728
3098
|
]
|
|
2729
3099
|
},
|
|
3100
|
+
"pexels": {
|
|
3101
|
+
"commands": [
|
|
3102
|
+
{
|
|
3103
|
+
"name": "search",
|
|
3104
|
+
"description": "Search free stock photos on Pexels",
|
|
3105
|
+
"strategy": "header",
|
|
3106
|
+
"type": "web-api"
|
|
3107
|
+
}
|
|
3108
|
+
]
|
|
3109
|
+
},
|
|
3110
|
+
"pinduoduo": {
|
|
3111
|
+
"commands": [
|
|
3112
|
+
{
|
|
3113
|
+
"name": "hot",
|
|
3114
|
+
"description": "Pinduoduo hot/trending products",
|
|
3115
|
+
"strategy": "cookie",
|
|
3116
|
+
"type": "web-api"
|
|
3117
|
+
}
|
|
3118
|
+
]
|
|
3119
|
+
},
|
|
2730
3120
|
"pixiv": {
|
|
2731
3121
|
"commands": [
|
|
2732
3122
|
{
|
|
@@ -2805,6 +3195,26 @@
|
|
|
2805
3195
|
}
|
|
2806
3196
|
]
|
|
2807
3197
|
},
|
|
3198
|
+
"pypi": {
|
|
3199
|
+
"commands": [
|
|
3200
|
+
{
|
|
3201
|
+
"name": "info",
|
|
3202
|
+
"description": "Get PyPI package details",
|
|
3203
|
+
"strategy": "public",
|
|
3204
|
+
"type": "web-api"
|
|
3205
|
+
}
|
|
3206
|
+
]
|
|
3207
|
+
},
|
|
3208
|
+
"qweather": {
|
|
3209
|
+
"commands": [
|
|
3210
|
+
{
|
|
3211
|
+
"name": "now",
|
|
3212
|
+
"description": "Current weather from QWeather (和风天气, free tier)",
|
|
3213
|
+
"strategy": "public",
|
|
3214
|
+
"type": "web-api"
|
|
3215
|
+
}
|
|
3216
|
+
]
|
|
3217
|
+
},
|
|
2808
3218
|
"railway": {
|
|
2809
3219
|
"commands": [
|
|
2810
3220
|
{
|
|
@@ -2915,6 +3325,38 @@
|
|
|
2915
3325
|
}
|
|
2916
3326
|
]
|
|
2917
3327
|
},
|
|
3328
|
+
"renderdoc": {
|
|
3329
|
+
"commands": [
|
|
3330
|
+
{
|
|
3331
|
+
"name": "capture-list",
|
|
3332
|
+
"description": "List RenderDoc capture files (.rdc) in a directory",
|
|
3333
|
+
"strategy": "public",
|
|
3334
|
+
"type": "desktop"
|
|
3335
|
+
},
|
|
3336
|
+
{
|
|
3337
|
+
"name": "frame-export",
|
|
3338
|
+
"description": "Export the first frame from a RenderDoc capture (.rdc) as an image",
|
|
3339
|
+
"strategy": "public",
|
|
3340
|
+
"type": "desktop"
|
|
3341
|
+
}
|
|
3342
|
+
]
|
|
3343
|
+
},
|
|
3344
|
+
"replicate": {
|
|
3345
|
+
"commands": [
|
|
3346
|
+
{
|
|
3347
|
+
"name": "search",
|
|
3348
|
+
"description": "Search AI models on Replicate",
|
|
3349
|
+
"strategy": "public",
|
|
3350
|
+
"type": "web-api"
|
|
3351
|
+
},
|
|
3352
|
+
{
|
|
3353
|
+
"name": "trending",
|
|
3354
|
+
"description": "Trending AI models on Replicate",
|
|
3355
|
+
"strategy": "public",
|
|
3356
|
+
"type": "web-api"
|
|
3357
|
+
}
|
|
3358
|
+
]
|
|
3359
|
+
},
|
|
2918
3360
|
"reuters": {
|
|
2919
3361
|
"commands": [
|
|
2920
3362
|
{
|
|
@@ -3137,6 +3579,22 @@
|
|
|
3137
3579
|
}
|
|
3138
3580
|
]
|
|
3139
3581
|
},
|
|
3582
|
+
"sspai": {
|
|
3583
|
+
"commands": [
|
|
3584
|
+
{
|
|
3585
|
+
"name": "hot",
|
|
3586
|
+
"description": "Hot/trending articles on Sspai (少数派)",
|
|
3587
|
+
"strategy": "public",
|
|
3588
|
+
"type": "web-api"
|
|
3589
|
+
},
|
|
3590
|
+
{
|
|
3591
|
+
"name": "latest",
|
|
3592
|
+
"description": "Latest articles on Sspai (少数派)",
|
|
3593
|
+
"strategy": "public",
|
|
3594
|
+
"type": "web-api"
|
|
3595
|
+
}
|
|
3596
|
+
]
|
|
3597
|
+
},
|
|
3140
3598
|
"stackoverflow": {
|
|
3141
3599
|
"commands": [
|
|
3142
3600
|
{
|
|
@@ -3165,6 +3623,16 @@
|
|
|
3165
3623
|
}
|
|
3166
3624
|
]
|
|
3167
3625
|
},
|
|
3626
|
+
"stagehand": {
|
|
3627
|
+
"commands": [
|
|
3628
|
+
{
|
|
3629
|
+
"name": "wrap-observe",
|
|
3630
|
+
"description": "Run Stagehand's observe() verb against an open page (subprocess wrapper)",
|
|
3631
|
+
"strategy": "public",
|
|
3632
|
+
"type": "bridge"
|
|
3633
|
+
}
|
|
3634
|
+
]
|
|
3635
|
+
},
|
|
3168
3636
|
"steam": {
|
|
3169
3637
|
"commands": [
|
|
3170
3638
|
{
|
|
@@ -3207,6 +3675,26 @@
|
|
|
3207
3675
|
}
|
|
3208
3676
|
]
|
|
3209
3677
|
},
|
|
3678
|
+
"techcrunch": {
|
|
3679
|
+
"commands": [
|
|
3680
|
+
{
|
|
3681
|
+
"name": "latest",
|
|
3682
|
+
"description": "Latest TechCrunch articles via RSS",
|
|
3683
|
+
"strategy": "public",
|
|
3684
|
+
"type": "web-api"
|
|
3685
|
+
}
|
|
3686
|
+
]
|
|
3687
|
+
},
|
|
3688
|
+
"theverge": {
|
|
3689
|
+
"commands": [
|
|
3690
|
+
{
|
|
3691
|
+
"name": "latest",
|
|
3692
|
+
"description": "Latest The Verge articles via RSS",
|
|
3693
|
+
"strategy": "public",
|
|
3694
|
+
"type": "web-api"
|
|
3695
|
+
}
|
|
3696
|
+
]
|
|
3697
|
+
},
|
|
3210
3698
|
"tieba": {
|
|
3211
3699
|
"commands": [
|
|
3212
3700
|
{
|
|
@@ -3329,6 +3817,16 @@
|
|
|
3329
3817
|
}
|
|
3330
3818
|
]
|
|
3331
3819
|
},
|
|
3820
|
+
"twitch": {
|
|
3821
|
+
"commands": [
|
|
3822
|
+
{
|
|
3823
|
+
"name": "top",
|
|
3824
|
+
"description": "Top live streams on Twitch via GQL public endpoint",
|
|
3825
|
+
"strategy": "public",
|
|
3826
|
+
"type": "web-api"
|
|
3827
|
+
}
|
|
3828
|
+
]
|
|
3829
|
+
},
|
|
3332
3830
|
"twitter": {
|
|
3333
3831
|
"commands": [
|
|
3334
3832
|
{
|
|
@@ -3483,6 +3981,16 @@
|
|
|
3483
3981
|
}
|
|
3484
3982
|
]
|
|
3485
3983
|
},
|
|
3984
|
+
"unsplash": {
|
|
3985
|
+
"commands": [
|
|
3986
|
+
{
|
|
3987
|
+
"name": "search",
|
|
3988
|
+
"description": "Search free photos on Unsplash",
|
|
3989
|
+
"strategy": "public",
|
|
3990
|
+
"type": "web-api"
|
|
3991
|
+
}
|
|
3992
|
+
]
|
|
3993
|
+
},
|
|
3486
3994
|
"v2ex": {
|
|
3487
3995
|
"commands": [
|
|
3488
3996
|
{
|
|
@@ -4007,6 +4515,16 @@
|
|
|
4007
4515
|
}
|
|
4008
4516
|
]
|
|
4009
4517
|
},
|
|
4518
|
+
"ycombinator": {
|
|
4519
|
+
"commands": [
|
|
4520
|
+
{
|
|
4521
|
+
"name": "launches",
|
|
4522
|
+
"description": "Latest YC company launches",
|
|
4523
|
+
"strategy": "public",
|
|
4524
|
+
"type": "web-api"
|
|
4525
|
+
}
|
|
4526
|
+
]
|
|
4527
|
+
},
|
|
4010
4528
|
"yollomi": {
|
|
4011
4529
|
"commands": [
|
|
4012
4530
|
{
|