@jackwener/opencli 1.8.0 → 1.8.1
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/README.md +8 -49
- package/README.zh-CN.md +8 -52
- package/cli-manifest.json +1796 -191
- package/clis/_atlassian/shared.js +577 -0
- package/clis/_atlassian/shared.test.js +170 -0
- package/clis/bilibili/comment.js +125 -0
- package/clis/bilibili/comment.test.js +153 -0
- package/clis/bilibili/comments.js +116 -21
- package/clis/bilibili/comments.test.js +77 -18
- package/clis/bilibili/subtitle.js +76 -31
- package/clis/bilibili/subtitle.test.js +156 -9
- package/clis/bilibili/utils.js +63 -5
- package/clis/bilibili/utils.test.js +45 -1
- package/clis/chess/analyze.js +35 -0
- package/clis/chess/analyze.test.js +79 -0
- package/clis/chess/game.js +114 -0
- package/clis/chess/game.test.js +178 -0
- package/clis/chess/games.js +67 -0
- package/clis/chess/games.test.js +164 -0
- package/clis/chess/stats.js +32 -0
- package/clis/chess/stats.test.js +79 -0
- package/clis/chess/utils.js +170 -0
- package/clis/chess/utils.test.js +230 -0
- package/clis/confluence/commands.test.js +195 -0
- package/clis/confluence/create.js +39 -0
- package/clis/confluence/page.js +23 -0
- package/clis/confluence/search.js +34 -0
- package/clis/confluence/shared.js +173 -0
- package/clis/confluence/update.js +38 -0
- package/clis/douyin/hashtag.js +84 -23
- package/clis/douyin/hashtag.test.js +113 -0
- package/clis/geogebra/add-circle.js +46 -0
- package/clis/geogebra/add-line.js +35 -0
- package/clis/geogebra/add-point.js +27 -0
- package/clis/geogebra/add-polygon.js +25 -0
- package/clis/geogebra/eval.js +35 -0
- package/clis/geogebra/geogebra.test.js +175 -0
- package/clis/geogebra/hexagon.js +62 -0
- package/clis/geogebra/info.js +72 -0
- package/clis/geogebra/list.js +35 -0
- package/clis/geogebra/triangle.js +60 -0
- package/clis/geogebra/utils.js +271 -0
- package/clis/jira/attachments.js +28 -0
- package/clis/jira/commands.test.js +287 -0
- package/clis/jira/comments.js +28 -0
- package/clis/jira/issue.js +28 -0
- package/clis/jira/links.js +28 -0
- package/clis/jira/search.js +47 -0
- package/clis/jira/shared.js +256 -0
- package/clis/linkedin/job-detail.js +167 -0
- package/clis/linkedin/job-detail.test.js +38 -0
- package/clis/linkedin/jobs-preferences.js +113 -0
- package/clis/linkedin/jobs-preferences.test.js +43 -0
- package/clis/linkedin/post-analytics.js +74 -0
- package/clis/linkedin/post-analytics.test.js +40 -0
- package/clis/linkedin/posts-core.js +241 -0
- package/clis/linkedin/posts.js +22 -0
- package/clis/linkedin/posts.test.js +40 -0
- package/clis/linkedin/profile-analytics.js +104 -0
- package/clis/linkedin/profile-analytics.test.js +67 -0
- package/clis/linkedin/profile-experience.js +671 -0
- package/clis/linkedin/profile-experience.test.js +152 -0
- package/clis/linkedin/profile-projects.js +311 -0
- package/clis/linkedin/profile-projects.test.js +111 -0
- package/clis/linkedin/profile-read.js +148 -0
- package/clis/linkedin/profile-read.test.js +77 -0
- package/clis/linkedin/services-read.js +213 -0
- package/clis/linkedin/services-read.test.js +105 -0
- package/clis/linkedin/shared.js +124 -0
- package/clis/linkedin/timeline.js +14 -7
- package/clis/notebooklm/add-source.js +269 -0
- package/clis/notebooklm/add-source.test.js +97 -0
- package/clis/notebooklm/create.js +76 -0
- package/clis/notebooklm/create.test.js +58 -0
- package/clis/notebooklm/generate-audio.js +91 -0
- package/clis/notebooklm/generate-audio.test.js +63 -0
- package/clis/notebooklm/generate-slides.js +106 -0
- package/clis/notebooklm/generate-slides.test.js +75 -0
- package/clis/notebooklm/open.test.js +10 -10
- package/clis/notebooklm/rpc.js +20 -6
- package/clis/notebooklm/rpc.test.js +27 -1
- package/clis/notebooklm/utils.js +100 -24
- package/clis/notebooklm/utils.test.js +60 -1
- package/clis/notebooklm/write-note.js +103 -0
- package/clis/notebooklm/write-note.test.js +70 -0
- package/clis/pixiv/detail.js +41 -34
- package/clis/pixiv/detail.test.js +93 -0
- package/clis/pixiv/user.js +36 -31
- package/clis/pixiv/user.test.js +100 -0
- package/clis/pixiv/utils.js +56 -7
- package/clis/suno/generate.js +5 -0
- package/clis/suno/generate.test.js +9 -0
- package/clis/suno/status.js +3 -2
- package/clis/suno/utils.js +33 -24
- package/clis/suno/utils.test.js +106 -0
- package/clis/twitter/followers.js +6 -2
- package/clis/twitter/followers.test.js +19 -1
- package/clis/twitter/following.js +14 -5
- package/clis/twitter/following.test.js +29 -0
- package/clis/twitter/likes.js +12 -4
- package/clis/twitter/likes.test.js +26 -1
- package/clis/twitter/list-add.js +1 -1
- package/clis/twitter/list-remove.js +1 -1
- package/clis/twitter/notifications.js +4 -4
- package/clis/twitter/post.js +62 -4
- package/clis/twitter/post.test.js +35 -3
- package/clis/twitter/profile.js +81 -28
- package/clis/twitter/profile.test.js +113 -2
- package/clis/twitter/quote.js +9 -4
- package/clis/twitter/reply.js +13 -10
- package/clis/twitter/reply.test.js +41 -0
- package/clis/twitter/search.js +1 -1
- package/clis/twitter/search.test.js +35 -0
- package/clis/twitter/shared.js +11 -0
- package/clis/twitter/shared.test.js +37 -1
- package/clis/twitter/utils.js +53 -16
- package/clis/upwork/detail.js +132 -0
- package/clis/upwork/feed.js +109 -0
- package/clis/upwork/search.js +115 -0
- package/clis/upwork/upwork.test.js +566 -0
- package/clis/upwork/utils.js +323 -0
- package/clis/weread/book-search.js +438 -0
- package/clis/weread/book-search.test.js +242 -0
- package/clis/weread/search-regression.test.js +80 -0
- package/clis/weread/search.js +17 -2
- package/clis/xiaohongshu/creator-note-detail.js +165 -28
- package/clis/xiaohongshu/creator-note-detail.test.js +186 -37
- package/clis/xiaohongshu/creator-notes.js +251 -2
- package/clis/xiaohongshu/creator-notes.test.js +79 -2
- package/clis/xiaohongshu/download.js +97 -39
- package/clis/xiaohongshu/download.test.js +201 -0
- package/clis/zhihu/answer-comments.js +2 -21
- package/clis/zhihu/answer-detail.js +2 -31
- package/clis/zhihu/collection.js +2 -14
- package/clis/zhihu/collection.test.js +4 -3
- package/clis/zhihu/question.js +1 -9
- package/clis/zhihu/question.test.js +2 -2
- package/clis/zhihu/search.js +1 -12
- package/clis/zhihu/search.test.js +2 -2
- package/clis/zhihu/text.js +29 -0
- package/clis/zhihu/text.test.js +24 -0
- package/dist/src/browser/network-cache.js +13 -1
- package/dist/src/browser/network-cache.test.js +17 -0
- package/dist/src/download/index.js +13 -1
- package/dist/src/download/index.test.js +23 -1
- package/dist/src/download/media-download.test.js +3 -1
- package/dist/src/download/progress.js +2 -2
- package/dist/src/download/progress.test.js +12 -1
- package/dist/src/output.js +11 -1
- package/dist/src/output.test.js +6 -0
- package/dist/src/registry.js +1 -0
- package/dist/src/registry.test.js +11 -0
- package/package.json +1 -1
package/cli-manifest.json
CHANGED
|
@@ -2295,10 +2295,58 @@
|
|
|
2295
2295
|
"modulePath": "bbc/topic.js",
|
|
2296
2296
|
"sourceFile": "bbc/topic.js"
|
|
2297
2297
|
},
|
|
2298
|
+
{
|
|
2299
|
+
"site": "bilibili",
|
|
2300
|
+
"name": "comment",
|
|
2301
|
+
"description": "在 B站视频下发表评论或回复(官方 API,需登录;消息里的 @用户 会被解析为真实提及)",
|
|
2302
|
+
"access": "write",
|
|
2303
|
+
"domain": "www.bilibili.com",
|
|
2304
|
+
"strategy": "cookie",
|
|
2305
|
+
"browser": true,
|
|
2306
|
+
"args": [
|
|
2307
|
+
{
|
|
2308
|
+
"name": "bvid",
|
|
2309
|
+
"type": "str",
|
|
2310
|
+
"required": true,
|
|
2311
|
+
"positional": true,
|
|
2312
|
+
"help": "Video BV ID / URL / b23.tv short link"
|
|
2313
|
+
},
|
|
2314
|
+
{
|
|
2315
|
+
"name": "message",
|
|
2316
|
+
"type": "str",
|
|
2317
|
+
"required": true,
|
|
2318
|
+
"positional": true,
|
|
2319
|
+
"help": "Comment text. Any @username in it is resolved to a real mention"
|
|
2320
|
+
},
|
|
2321
|
+
{
|
|
2322
|
+
"name": "parent",
|
|
2323
|
+
"type": "int",
|
|
2324
|
+
"required": false,
|
|
2325
|
+
"help": "top-level/root rpid to reply under (omit for a top-level comment)"
|
|
2326
|
+
},
|
|
2327
|
+
{
|
|
2328
|
+
"name": "execute",
|
|
2329
|
+
"type": "boolean",
|
|
2330
|
+
"required": false,
|
|
2331
|
+
"help": "Actually post the comment. Without it the command refuses to write."
|
|
2332
|
+
}
|
|
2333
|
+
],
|
|
2334
|
+
"columns": [
|
|
2335
|
+
"rpid",
|
|
2336
|
+
"bvid",
|
|
2337
|
+
"oid",
|
|
2338
|
+
"message",
|
|
2339
|
+
"url"
|
|
2340
|
+
],
|
|
2341
|
+
"type": "js",
|
|
2342
|
+
"modulePath": "bilibili/comment.js",
|
|
2343
|
+
"sourceFile": "bilibili/comment.js",
|
|
2344
|
+
"navigateBefore": "https://www.bilibili.com"
|
|
2345
|
+
},
|
|
2298
2346
|
{
|
|
2299
2347
|
"site": "bilibili",
|
|
2300
2348
|
"name": "comments",
|
|
2301
|
-
"description": "获取 B
|
|
2349
|
+
"description": "获取 B站视频评论(官方 API;用 --parent <rpid> 读取某条评论下的「楼中楼」回复)",
|
|
2302
2350
|
"access": "read",
|
|
2303
2351
|
"domain": "www.bilibili.com",
|
|
2304
2352
|
"strategy": "cookie",
|
|
@@ -2311,6 +2359,12 @@
|
|
|
2311
2359
|
"positional": true,
|
|
2312
2360
|
"help": "Video BV ID (e.g. BV1WtAGzYEBm)"
|
|
2313
2361
|
},
|
|
2362
|
+
{
|
|
2363
|
+
"name": "parent",
|
|
2364
|
+
"type": "int",
|
|
2365
|
+
"required": false,
|
|
2366
|
+
"help": "rpid of a comment — fetch the replies under it instead of top-level comments"
|
|
2367
|
+
},
|
|
2314
2368
|
{
|
|
2315
2369
|
"name": "limit",
|
|
2316
2370
|
"type": "int",
|
|
@@ -2321,6 +2375,7 @@
|
|
|
2321
2375
|
],
|
|
2322
2376
|
"columns": [
|
|
2323
2377
|
"rank",
|
|
2378
|
+
"rpid",
|
|
2324
2379
|
"author",
|
|
2325
2380
|
"text",
|
|
2326
2381
|
"likes",
|
|
@@ -2732,6 +2787,7 @@
|
|
|
2732
2787
|
"name": "subtitle",
|
|
2733
2788
|
"description": "获取 Bilibili 视频的字幕",
|
|
2734
2789
|
"access": "read",
|
|
2790
|
+
"domain": "www.bilibili.com",
|
|
2735
2791
|
"strategy": "cookie",
|
|
2736
2792
|
"browser": true,
|
|
2737
2793
|
"args": [
|
|
@@ -2758,7 +2814,7 @@
|
|
|
2758
2814
|
"type": "js",
|
|
2759
2815
|
"modulePath": "bilibili/subtitle.js",
|
|
2760
2816
|
"sourceFile": "bilibili/subtitle.js",
|
|
2761
|
-
"navigateBefore":
|
|
2817
|
+
"navigateBefore": "https://www.bilibili.com"
|
|
2762
2818
|
},
|
|
2763
2819
|
{
|
|
2764
2820
|
"site": "bilibili",
|
|
@@ -5236,6 +5292,143 @@
|
|
|
5236
5292
|
"sourceFile": "chatwise/status.js",
|
|
5237
5293
|
"navigateBefore": true
|
|
5238
5294
|
},
|
|
5295
|
+
{
|
|
5296
|
+
"site": "chess",
|
|
5297
|
+
"name": "analyze",
|
|
5298
|
+
"description": "Open a Chess.com game in the browser analysis board",
|
|
5299
|
+
"access": "read",
|
|
5300
|
+
"domain": "www.chess.com",
|
|
5301
|
+
"strategy": "ui",
|
|
5302
|
+
"browser": true,
|
|
5303
|
+
"args": [
|
|
5304
|
+
{
|
|
5305
|
+
"name": "game-url",
|
|
5306
|
+
"type": "string",
|
|
5307
|
+
"required": true,
|
|
5308
|
+
"positional": true,
|
|
5309
|
+
"help": "Full game URL, e.g. https://www.chess.com/game/live/168842570216"
|
|
5310
|
+
}
|
|
5311
|
+
],
|
|
5312
|
+
"columns": [
|
|
5313
|
+
"kind",
|
|
5314
|
+
"game_id",
|
|
5315
|
+
"analysis_url"
|
|
5316
|
+
],
|
|
5317
|
+
"type": "js",
|
|
5318
|
+
"modulePath": "chess/analyze.js",
|
|
5319
|
+
"sourceFile": "chess/analyze.js",
|
|
5320
|
+
"navigateBefore": false
|
|
5321
|
+
},
|
|
5322
|
+
{
|
|
5323
|
+
"site": "chess",
|
|
5324
|
+
"name": "game",
|
|
5325
|
+
"description": "Chess.com single-game detail (white, black, result, ECO, time control) by full game URL",
|
|
5326
|
+
"access": "read",
|
|
5327
|
+
"domain": "www.chess.com",
|
|
5328
|
+
"strategy": "public",
|
|
5329
|
+
"browser": false,
|
|
5330
|
+
"args": [
|
|
5331
|
+
{
|
|
5332
|
+
"name": "game-url",
|
|
5333
|
+
"type": "string",
|
|
5334
|
+
"required": true,
|
|
5335
|
+
"positional": true,
|
|
5336
|
+
"help": "Full game URL, e.g. https://www.chess.com/game/live/168842570216"
|
|
5337
|
+
}
|
|
5338
|
+
],
|
|
5339
|
+
"columns": [
|
|
5340
|
+
"kind",
|
|
5341
|
+
"game_id",
|
|
5342
|
+
"date",
|
|
5343
|
+
"white",
|
|
5344
|
+
"white_rating",
|
|
5345
|
+
"black",
|
|
5346
|
+
"black_rating",
|
|
5347
|
+
"result",
|
|
5348
|
+
"winner_color",
|
|
5349
|
+
"termination",
|
|
5350
|
+
"eco",
|
|
5351
|
+
"time_control",
|
|
5352
|
+
"rated",
|
|
5353
|
+
"ply_count",
|
|
5354
|
+
"url"
|
|
5355
|
+
],
|
|
5356
|
+
"type": "js",
|
|
5357
|
+
"modulePath": "chess/game.js",
|
|
5358
|
+
"sourceFile": "chess/game.js"
|
|
5359
|
+
},
|
|
5360
|
+
{
|
|
5361
|
+
"site": "chess",
|
|
5362
|
+
"name": "games",
|
|
5363
|
+
"description": "Chess.com recent games for a player, newest first",
|
|
5364
|
+
"access": "read",
|
|
5365
|
+
"domain": "api.chess.com",
|
|
5366
|
+
"strategy": "public",
|
|
5367
|
+
"browser": false,
|
|
5368
|
+
"args": [
|
|
5369
|
+
{
|
|
5370
|
+
"name": "username",
|
|
5371
|
+
"type": "string",
|
|
5372
|
+
"required": true,
|
|
5373
|
+
"positional": true,
|
|
5374
|
+
"help": "Chess.com username"
|
|
5375
|
+
},
|
|
5376
|
+
{
|
|
5377
|
+
"name": "limit",
|
|
5378
|
+
"type": "int",
|
|
5379
|
+
"default": 10,
|
|
5380
|
+
"required": false,
|
|
5381
|
+
"help": "Number of recent games (1-100)"
|
|
5382
|
+
}
|
|
5383
|
+
],
|
|
5384
|
+
"columns": [
|
|
5385
|
+
"date",
|
|
5386
|
+
"time_class",
|
|
5387
|
+
"rated",
|
|
5388
|
+
"my_color",
|
|
5389
|
+
"my_rating",
|
|
5390
|
+
"my_result",
|
|
5391
|
+
"opponent",
|
|
5392
|
+
"opponent_rating",
|
|
5393
|
+
"accuracy_white",
|
|
5394
|
+
"accuracy_black",
|
|
5395
|
+
"eco",
|
|
5396
|
+
"opening_name",
|
|
5397
|
+
"url"
|
|
5398
|
+
],
|
|
5399
|
+
"type": "js",
|
|
5400
|
+
"modulePath": "chess/games.js",
|
|
5401
|
+
"sourceFile": "chess/games.js"
|
|
5402
|
+
},
|
|
5403
|
+
{
|
|
5404
|
+
"site": "chess",
|
|
5405
|
+
"name": "stats",
|
|
5406
|
+
"description": "Chess.com player ratings + win/loss record across game kinds",
|
|
5407
|
+
"access": "read",
|
|
5408
|
+
"domain": "api.chess.com",
|
|
5409
|
+
"strategy": "public",
|
|
5410
|
+
"browser": false,
|
|
5411
|
+
"args": [
|
|
5412
|
+
{
|
|
5413
|
+
"name": "username",
|
|
5414
|
+
"type": "string",
|
|
5415
|
+
"required": true,
|
|
5416
|
+
"positional": true,
|
|
5417
|
+
"help": "Chess.com username (case-insensitive)"
|
|
5418
|
+
}
|
|
5419
|
+
],
|
|
5420
|
+
"columns": [
|
|
5421
|
+
"kind",
|
|
5422
|
+
"rating_current",
|
|
5423
|
+
"rating_best",
|
|
5424
|
+
"wins",
|
|
5425
|
+
"losses",
|
|
5426
|
+
"draws"
|
|
5427
|
+
],
|
|
5428
|
+
"type": "js",
|
|
5429
|
+
"modulePath": "chess/stats.js",
|
|
5430
|
+
"sourceFile": "chess/stats.js"
|
|
5431
|
+
},
|
|
5239
5432
|
{
|
|
5240
5433
|
"site": "claude",
|
|
5241
5434
|
"name": "ask",
|
|
@@ -6119,143 +6312,345 @@
|
|
|
6119
6312
|
"sourceFile": "coingecko/trending.js"
|
|
6120
6313
|
},
|
|
6121
6314
|
{
|
|
6122
|
-
"site": "
|
|
6123
|
-
"name": "
|
|
6124
|
-
"description": "
|
|
6315
|
+
"site": "confluence",
|
|
6316
|
+
"name": "create",
|
|
6317
|
+
"description": "Create a Confluence page from Markdown or storage XHTML",
|
|
6125
6318
|
"access": "write",
|
|
6126
|
-
"domain": "
|
|
6127
|
-
"strategy": "
|
|
6128
|
-
"browser":
|
|
6319
|
+
"domain": "atlassian.net",
|
|
6320
|
+
"strategy": "public",
|
|
6321
|
+
"browser": false,
|
|
6129
6322
|
"args": [
|
|
6130
6323
|
{
|
|
6131
|
-
"name": "
|
|
6132
|
-
"type": "
|
|
6324
|
+
"name": "space",
|
|
6325
|
+
"type": "string",
|
|
6326
|
+
"required": true,
|
|
6327
|
+
"help": "Cloud space id, or Data Center space key"
|
|
6328
|
+
},
|
|
6329
|
+
{
|
|
6330
|
+
"name": "title",
|
|
6331
|
+
"type": "string",
|
|
6332
|
+
"required": true,
|
|
6333
|
+
"help": "Page title"
|
|
6334
|
+
},
|
|
6335
|
+
{
|
|
6336
|
+
"name": "file",
|
|
6337
|
+
"type": "string",
|
|
6338
|
+
"required": true,
|
|
6339
|
+
"help": "Markdown file path"
|
|
6340
|
+
},
|
|
6341
|
+
{
|
|
6342
|
+
"name": "parent",
|
|
6343
|
+
"type": "string",
|
|
6133
6344
|
"required": false,
|
|
6134
|
-
"
|
|
6135
|
-
"help": "Coupang product ID"
|
|
6345
|
+
"help": "Optional parent page id"
|
|
6136
6346
|
},
|
|
6137
6347
|
{
|
|
6138
|
-
"name": "
|
|
6139
|
-
"type": "
|
|
6348
|
+
"name": "representation",
|
|
6349
|
+
"type": "string",
|
|
6350
|
+
"default": "markdown",
|
|
6140
6351
|
"required": false,
|
|
6141
|
-
"help": "
|
|
6352
|
+
"help": "Input file format",
|
|
6353
|
+
"choices": [
|
|
6354
|
+
"markdown",
|
|
6355
|
+
"storage"
|
|
6356
|
+
]
|
|
6357
|
+
},
|
|
6358
|
+
{
|
|
6359
|
+
"name": "execute",
|
|
6360
|
+
"type": "boolean",
|
|
6361
|
+
"required": false,
|
|
6362
|
+
"help": "Actually create the remote page"
|
|
6142
6363
|
}
|
|
6143
6364
|
],
|
|
6144
6365
|
"columns": [
|
|
6145
|
-
"
|
|
6146
|
-
"
|
|
6147
|
-
"
|
|
6148
|
-
"
|
|
6366
|
+
"status",
|
|
6367
|
+
"id",
|
|
6368
|
+
"title",
|
|
6369
|
+
"spaceId",
|
|
6370
|
+
"spaceKey",
|
|
6371
|
+
"version",
|
|
6372
|
+
"url"
|
|
6149
6373
|
],
|
|
6150
6374
|
"type": "js",
|
|
6151
|
-
"modulePath": "
|
|
6152
|
-
"sourceFile": "
|
|
6153
|
-
"navigateBefore": "https://www.coupang.com"
|
|
6375
|
+
"modulePath": "confluence/create.js",
|
|
6376
|
+
"sourceFile": "confluence/create.js"
|
|
6154
6377
|
},
|
|
6155
6378
|
{
|
|
6156
|
-
"site": "
|
|
6157
|
-
"name": "
|
|
6158
|
-
"description": "
|
|
6379
|
+
"site": "confluence",
|
|
6380
|
+
"name": "page",
|
|
6381
|
+
"description": "Confluence page by id with storage and Markdown body",
|
|
6159
6382
|
"access": "read",
|
|
6160
|
-
"domain": "
|
|
6161
|
-
"strategy": "
|
|
6162
|
-
"browser":
|
|
6383
|
+
"domain": "atlassian.net",
|
|
6384
|
+
"strategy": "public",
|
|
6385
|
+
"browser": false,
|
|
6163
6386
|
"args": [
|
|
6164
6387
|
{
|
|
6165
|
-
"name": "
|
|
6388
|
+
"name": "id",
|
|
6166
6389
|
"type": "str",
|
|
6167
|
-
"required":
|
|
6390
|
+
"required": true,
|
|
6168
6391
|
"positional": true,
|
|
6169
|
-
"help": "
|
|
6170
|
-
},
|
|
6171
|
-
{
|
|
6172
|
-
"name": "url",
|
|
6173
|
-
"type": "str",
|
|
6174
|
-
"required": false,
|
|
6175
|
-
"help": "Canonical Coupang product URL (alternative to --product-id)"
|
|
6392
|
+
"help": "Confluence page id"
|
|
6176
6393
|
}
|
|
6177
6394
|
],
|
|
6178
6395
|
"columns": [
|
|
6179
|
-
"
|
|
6396
|
+
"id",
|
|
6180
6397
|
"title",
|
|
6181
|
-
"
|
|
6182
|
-
"
|
|
6183
|
-
"
|
|
6184
|
-
"
|
|
6185
|
-
"review_count",
|
|
6186
|
-
"seller",
|
|
6187
|
-
"brand",
|
|
6188
|
-
"rocket",
|
|
6189
|
-
"delivery_promise",
|
|
6190
|
-
"image_url",
|
|
6398
|
+
"status",
|
|
6399
|
+
"spaceId",
|
|
6400
|
+
"spaceKey",
|
|
6401
|
+
"version",
|
|
6191
6402
|
"url"
|
|
6192
6403
|
],
|
|
6193
6404
|
"type": "js",
|
|
6194
|
-
"modulePath": "
|
|
6195
|
-
"sourceFile": "
|
|
6196
|
-
"navigateBefore": "https://www.coupang.com"
|
|
6405
|
+
"modulePath": "confluence/page.js",
|
|
6406
|
+
"sourceFile": "confluence/page.js"
|
|
6197
6407
|
},
|
|
6198
6408
|
{
|
|
6199
|
-
"site": "
|
|
6409
|
+
"site": "confluence",
|
|
6200
6410
|
"name": "search",
|
|
6201
|
-
"description": "Search
|
|
6411
|
+
"description": "Search Confluence content with CQL",
|
|
6202
6412
|
"access": "read",
|
|
6203
|
-
"domain": "
|
|
6204
|
-
"strategy": "
|
|
6205
|
-
"browser":
|
|
6413
|
+
"domain": "atlassian.net",
|
|
6414
|
+
"strategy": "public",
|
|
6415
|
+
"browser": false,
|
|
6206
6416
|
"args": [
|
|
6207
6417
|
{
|
|
6208
|
-
"name": "
|
|
6418
|
+
"name": "cql",
|
|
6209
6419
|
"type": "str",
|
|
6210
6420
|
"required": true,
|
|
6211
6421
|
"positional": true,
|
|
6212
|
-
"help": "
|
|
6422
|
+
"help": "CQL query, e.g. \"type = page and title ~ \\\"RCA\\\"\""
|
|
6213
6423
|
},
|
|
6214
6424
|
{
|
|
6215
|
-
"name": "
|
|
6216
|
-
"type": "
|
|
6217
|
-
"default": 1,
|
|
6425
|
+
"name": "space",
|
|
6426
|
+
"type": "string",
|
|
6218
6427
|
"required": false,
|
|
6219
|
-
"help": "
|
|
6428
|
+
"help": "Limit search to a Confluence space key"
|
|
6220
6429
|
},
|
|
6221
6430
|
{
|
|
6222
6431
|
"name": "limit",
|
|
6223
6432
|
"type": "int",
|
|
6224
6433
|
"default": 20,
|
|
6225
6434
|
"required": false,
|
|
6226
|
-
"help": "Max results (
|
|
6227
|
-
},
|
|
6228
|
-
{
|
|
6229
|
-
"name": "filter",
|
|
6230
|
-
"type": "str",
|
|
6231
|
-
"required": false,
|
|
6232
|
-
"help": "Optional search filter (currently supports: rocket)"
|
|
6435
|
+
"help": "Max results to return (1-100)"
|
|
6233
6436
|
}
|
|
6234
6437
|
],
|
|
6235
6438
|
"columns": [
|
|
6236
|
-
"
|
|
6237
|
-
"product_id",
|
|
6439
|
+
"id",
|
|
6238
6440
|
"title",
|
|
6239
|
-
"
|
|
6240
|
-
"
|
|
6241
|
-
"
|
|
6242
|
-
"
|
|
6243
|
-
"rocket",
|
|
6244
|
-
"delivery_type",
|
|
6245
|
-
"delivery_promise",
|
|
6441
|
+
"type",
|
|
6442
|
+
"spaceKey",
|
|
6443
|
+
"status",
|
|
6444
|
+
"lastModified",
|
|
6246
6445
|
"url"
|
|
6247
6446
|
],
|
|
6248
6447
|
"type": "js",
|
|
6249
|
-
"modulePath": "
|
|
6250
|
-
"sourceFile": "
|
|
6251
|
-
"navigateBefore": "https://www.coupang.com"
|
|
6448
|
+
"modulePath": "confluence/search.js",
|
|
6449
|
+
"sourceFile": "confluence/search.js"
|
|
6252
6450
|
},
|
|
6253
6451
|
{
|
|
6254
|
-
"site": "
|
|
6255
|
-
"name": "
|
|
6256
|
-
"description": "
|
|
6257
|
-
"access": "
|
|
6258
|
-
"domain": "
|
|
6452
|
+
"site": "confluence",
|
|
6453
|
+
"name": "update",
|
|
6454
|
+
"description": "Update a Confluence page body from Markdown or storage XHTML",
|
|
6455
|
+
"access": "write",
|
|
6456
|
+
"domain": "atlassian.net",
|
|
6457
|
+
"strategy": "public",
|
|
6458
|
+
"browser": false,
|
|
6459
|
+
"args": [
|
|
6460
|
+
{
|
|
6461
|
+
"name": "id",
|
|
6462
|
+
"type": "str",
|
|
6463
|
+
"required": true,
|
|
6464
|
+
"positional": true,
|
|
6465
|
+
"help": "Confluence page id"
|
|
6466
|
+
},
|
|
6467
|
+
{
|
|
6468
|
+
"name": "file",
|
|
6469
|
+
"type": "string",
|
|
6470
|
+
"required": true,
|
|
6471
|
+
"help": "Markdown file path"
|
|
6472
|
+
},
|
|
6473
|
+
{
|
|
6474
|
+
"name": "title",
|
|
6475
|
+
"type": "string",
|
|
6476
|
+
"required": false,
|
|
6477
|
+
"help": "Optional replacement title; defaults to current title"
|
|
6478
|
+
},
|
|
6479
|
+
{
|
|
6480
|
+
"name": "version-message",
|
|
6481
|
+
"type": "string",
|
|
6482
|
+
"required": false,
|
|
6483
|
+
"help": "Confluence version message"
|
|
6484
|
+
},
|
|
6485
|
+
{
|
|
6486
|
+
"name": "representation",
|
|
6487
|
+
"type": "string",
|
|
6488
|
+
"default": "markdown",
|
|
6489
|
+
"required": false,
|
|
6490
|
+
"help": "Input file format",
|
|
6491
|
+
"choices": [
|
|
6492
|
+
"markdown",
|
|
6493
|
+
"storage"
|
|
6494
|
+
]
|
|
6495
|
+
},
|
|
6496
|
+
{
|
|
6497
|
+
"name": "execute",
|
|
6498
|
+
"type": "boolean",
|
|
6499
|
+
"required": false,
|
|
6500
|
+
"help": "Actually update the remote page"
|
|
6501
|
+
}
|
|
6502
|
+
],
|
|
6503
|
+
"columns": [
|
|
6504
|
+
"status",
|
|
6505
|
+
"id",
|
|
6506
|
+
"title",
|
|
6507
|
+
"spaceId",
|
|
6508
|
+
"spaceKey",
|
|
6509
|
+
"version",
|
|
6510
|
+
"url"
|
|
6511
|
+
],
|
|
6512
|
+
"type": "js",
|
|
6513
|
+
"modulePath": "confluence/update.js",
|
|
6514
|
+
"sourceFile": "confluence/update.js"
|
|
6515
|
+
},
|
|
6516
|
+
{
|
|
6517
|
+
"site": "coupang",
|
|
6518
|
+
"name": "add-to-cart",
|
|
6519
|
+
"description": "Add a Coupang product to cart using logged-in browser session",
|
|
6520
|
+
"access": "write",
|
|
6521
|
+
"domain": "www.coupang.com",
|
|
6522
|
+
"strategy": "cookie",
|
|
6523
|
+
"browser": true,
|
|
6524
|
+
"args": [
|
|
6525
|
+
{
|
|
6526
|
+
"name": "product-id",
|
|
6527
|
+
"type": "str",
|
|
6528
|
+
"required": false,
|
|
6529
|
+
"positional": true,
|
|
6530
|
+
"help": "Coupang product ID"
|
|
6531
|
+
},
|
|
6532
|
+
{
|
|
6533
|
+
"name": "url",
|
|
6534
|
+
"type": "str",
|
|
6535
|
+
"required": false,
|
|
6536
|
+
"help": "Canonical product URL"
|
|
6537
|
+
}
|
|
6538
|
+
],
|
|
6539
|
+
"columns": [
|
|
6540
|
+
"ok",
|
|
6541
|
+
"product_id",
|
|
6542
|
+
"url",
|
|
6543
|
+
"message"
|
|
6544
|
+
],
|
|
6545
|
+
"type": "js",
|
|
6546
|
+
"modulePath": "coupang/add-to-cart.js",
|
|
6547
|
+
"sourceFile": "coupang/add-to-cart.js",
|
|
6548
|
+
"navigateBefore": "https://www.coupang.com"
|
|
6549
|
+
},
|
|
6550
|
+
{
|
|
6551
|
+
"site": "coupang",
|
|
6552
|
+
"name": "product",
|
|
6553
|
+
"description": "Read full product detail (price, rating, seller, delivery) for a Coupang product",
|
|
6554
|
+
"access": "read",
|
|
6555
|
+
"domain": "www.coupang.com",
|
|
6556
|
+
"strategy": "cookie",
|
|
6557
|
+
"browser": true,
|
|
6558
|
+
"args": [
|
|
6559
|
+
{
|
|
6560
|
+
"name": "product-id",
|
|
6561
|
+
"type": "str",
|
|
6562
|
+
"required": false,
|
|
6563
|
+
"positional": true,
|
|
6564
|
+
"help": "Coupang product ID (digits only)"
|
|
6565
|
+
},
|
|
6566
|
+
{
|
|
6567
|
+
"name": "url",
|
|
6568
|
+
"type": "str",
|
|
6569
|
+
"required": false,
|
|
6570
|
+
"help": "Canonical Coupang product URL (alternative to --product-id)"
|
|
6571
|
+
}
|
|
6572
|
+
],
|
|
6573
|
+
"columns": [
|
|
6574
|
+
"product_id",
|
|
6575
|
+
"title",
|
|
6576
|
+
"price",
|
|
6577
|
+
"original_price",
|
|
6578
|
+
"discount_rate",
|
|
6579
|
+
"rating",
|
|
6580
|
+
"review_count",
|
|
6581
|
+
"seller",
|
|
6582
|
+
"brand",
|
|
6583
|
+
"rocket",
|
|
6584
|
+
"delivery_promise",
|
|
6585
|
+
"image_url",
|
|
6586
|
+
"url"
|
|
6587
|
+
],
|
|
6588
|
+
"type": "js",
|
|
6589
|
+
"modulePath": "coupang/product.js",
|
|
6590
|
+
"sourceFile": "coupang/product.js",
|
|
6591
|
+
"navigateBefore": "https://www.coupang.com"
|
|
6592
|
+
},
|
|
6593
|
+
{
|
|
6594
|
+
"site": "coupang",
|
|
6595
|
+
"name": "search",
|
|
6596
|
+
"description": "Search Coupang products with logged-in browser session",
|
|
6597
|
+
"access": "read",
|
|
6598
|
+
"domain": "www.coupang.com",
|
|
6599
|
+
"strategy": "cookie",
|
|
6600
|
+
"browser": true,
|
|
6601
|
+
"args": [
|
|
6602
|
+
{
|
|
6603
|
+
"name": "query",
|
|
6604
|
+
"type": "str",
|
|
6605
|
+
"required": true,
|
|
6606
|
+
"positional": true,
|
|
6607
|
+
"help": "Search keyword"
|
|
6608
|
+
},
|
|
6609
|
+
{
|
|
6610
|
+
"name": "page",
|
|
6611
|
+
"type": "int",
|
|
6612
|
+
"default": 1,
|
|
6613
|
+
"required": false,
|
|
6614
|
+
"help": "Search result page number"
|
|
6615
|
+
},
|
|
6616
|
+
{
|
|
6617
|
+
"name": "limit",
|
|
6618
|
+
"type": "int",
|
|
6619
|
+
"default": 20,
|
|
6620
|
+
"required": false,
|
|
6621
|
+
"help": "Max results (max 50)"
|
|
6622
|
+
},
|
|
6623
|
+
{
|
|
6624
|
+
"name": "filter",
|
|
6625
|
+
"type": "str",
|
|
6626
|
+
"required": false,
|
|
6627
|
+
"help": "Optional search filter (currently supports: rocket)"
|
|
6628
|
+
}
|
|
6629
|
+
],
|
|
6630
|
+
"columns": [
|
|
6631
|
+
"rank",
|
|
6632
|
+
"product_id",
|
|
6633
|
+
"title",
|
|
6634
|
+
"price",
|
|
6635
|
+
"unit_price",
|
|
6636
|
+
"rating",
|
|
6637
|
+
"review_count",
|
|
6638
|
+
"rocket",
|
|
6639
|
+
"delivery_type",
|
|
6640
|
+
"delivery_promise",
|
|
6641
|
+
"url"
|
|
6642
|
+
],
|
|
6643
|
+
"type": "js",
|
|
6644
|
+
"modulePath": "coupang/search.js",
|
|
6645
|
+
"sourceFile": "coupang/search.js",
|
|
6646
|
+
"navigateBefore": "https://www.coupang.com"
|
|
6647
|
+
},
|
|
6648
|
+
{
|
|
6649
|
+
"site": "crates",
|
|
6650
|
+
"name": "crate",
|
|
6651
|
+
"description": "Single crates.io crate metadata (latest version, downloads, license, repo)",
|
|
6652
|
+
"access": "read",
|
|
6653
|
+
"domain": "crates.io",
|
|
6259
6654
|
"strategy": "public",
|
|
6260
6655
|
"browser": false,
|
|
6261
6656
|
"args": [
|
|
@@ -8806,7 +9201,7 @@
|
|
|
8806
9201
|
"type": "str",
|
|
8807
9202
|
"required": true,
|
|
8808
9203
|
"positional": true,
|
|
8809
|
-
"help": "search=关键词搜索 suggest=AI推荐 hot=热点词",
|
|
9204
|
+
"help": "search=关键词搜索 (--keyword 必填), suggest=AI推荐 (--cover 必填), hot=热点词 (--keyword 可选)",
|
|
8810
9205
|
"choices": [
|
|
8811
9206
|
"search",
|
|
8812
9207
|
"suggest",
|
|
@@ -8818,14 +9213,14 @@
|
|
|
8818
9213
|
"type": "str",
|
|
8819
9214
|
"default": "",
|
|
8820
9215
|
"required": false,
|
|
8821
|
-
"help": "
|
|
9216
|
+
"help": "搜索关键词. search 必填; hot 可选; suggest 不使用 (传 --cover)"
|
|
8822
9217
|
},
|
|
8823
9218
|
{
|
|
8824
9219
|
"name": "cover",
|
|
8825
9220
|
"type": "str",
|
|
8826
9221
|
"default": "",
|
|
8827
9222
|
"required": false,
|
|
8828
|
-
"help": "封面 URI
|
|
9223
|
+
"help": "封面 URI (cover_uri). suggest 必填; 其它 action 不使用"
|
|
8829
9224
|
},
|
|
8830
9225
|
{
|
|
8831
9226
|
"name": "limit",
|
|
@@ -10567,88 +10962,359 @@
|
|
|
10567
10962
|
"siteSession": "persistent"
|
|
10568
10963
|
},
|
|
10569
10964
|
{
|
|
10570
|
-
"site": "
|
|
10571
|
-
"name": "
|
|
10572
|
-
"description": "
|
|
10573
|
-
"access": "
|
|
10574
|
-
"
|
|
10965
|
+
"site": "geogebra",
|
|
10966
|
+
"name": "add-circle",
|
|
10967
|
+
"description": "Create a circle by center+radius or center+point",
|
|
10968
|
+
"access": "write",
|
|
10969
|
+
"example": "opencli geogebra add-circle --center A --radius 3",
|
|
10970
|
+
"domain": "www.geogebra.org",
|
|
10575
10971
|
"strategy": "public",
|
|
10576
10972
|
"browser": true,
|
|
10577
10973
|
"args": [
|
|
10578
10974
|
{
|
|
10579
|
-
"name": "
|
|
10975
|
+
"name": "center",
|
|
10580
10976
|
"type": "str",
|
|
10581
10977
|
"required": true,
|
|
10582
|
-
"
|
|
10583
|
-
"help": "Search keyword"
|
|
10978
|
+
"help": "Center point label (e.g. A)"
|
|
10584
10979
|
},
|
|
10585
10980
|
{
|
|
10586
|
-
"name": "
|
|
10587
|
-
"type": "
|
|
10588
|
-
"default": 10,
|
|
10981
|
+
"name": "radius",
|
|
10982
|
+
"type": "str",
|
|
10589
10983
|
"required": false,
|
|
10590
|
-
"help": "
|
|
10984
|
+
"help": "Radius value (number) or a point label on the circle"
|
|
10985
|
+
},
|
|
10986
|
+
{
|
|
10987
|
+
"name": "point",
|
|
10988
|
+
"type": "str",
|
|
10989
|
+
"required": false,
|
|
10990
|
+
"help": "Alternative: a point label on the circle (use instead of --radius for Circle(center,point))"
|
|
10591
10991
|
}
|
|
10592
10992
|
],
|
|
10593
10993
|
"columns": [
|
|
10594
|
-
"
|
|
10595
|
-
"
|
|
10596
|
-
"
|
|
10597
|
-
"stars",
|
|
10598
|
-
"description",
|
|
10599
|
-
"url"
|
|
10994
|
+
"label",
|
|
10995
|
+
"center",
|
|
10996
|
+
"radius"
|
|
10600
10997
|
],
|
|
10601
10998
|
"type": "js",
|
|
10602
|
-
"modulePath": "
|
|
10603
|
-
"sourceFile": "
|
|
10999
|
+
"modulePath": "geogebra/add-circle.js",
|
|
11000
|
+
"sourceFile": "geogebra/add-circle.js",
|
|
11001
|
+
"navigateBefore": false
|
|
10604
11002
|
},
|
|
10605
11003
|
{
|
|
10606
|
-
"site": "
|
|
10607
|
-
"name": "
|
|
10608
|
-
"description": "
|
|
10609
|
-
"access": "
|
|
10610
|
-
"
|
|
11004
|
+
"site": "geogebra",
|
|
11005
|
+
"name": "add-line",
|
|
11006
|
+
"description": "Create a line through two points or a segment between two points",
|
|
11007
|
+
"access": "write",
|
|
11008
|
+
"example": "opencli geogebra add-line --points A,B --type segment",
|
|
11009
|
+
"domain": "www.geogebra.org",
|
|
10611
11010
|
"strategy": "public",
|
|
10612
11011
|
"browser": true,
|
|
10613
11012
|
"args": [
|
|
10614
11013
|
{
|
|
10615
|
-
"name": "
|
|
10616
|
-
"type": "
|
|
10617
|
-
"
|
|
11014
|
+
"name": "points",
|
|
11015
|
+
"type": "str",
|
|
11016
|
+
"required": true,
|
|
11017
|
+
"help": "Two point labels separated by comma (e.g. \"A,B\")"
|
|
11018
|
+
},
|
|
11019
|
+
{
|
|
11020
|
+
"name": "type",
|
|
11021
|
+
"type": "str",
|
|
11022
|
+
"default": "line",
|
|
10618
11023
|
"required": false,
|
|
10619
|
-
"help": "
|
|
11024
|
+
"help": "Type: line, segment, or ray (default: line)",
|
|
11025
|
+
"choices": [
|
|
11026
|
+
"line",
|
|
11027
|
+
"segment",
|
|
11028
|
+
"ray"
|
|
11029
|
+
]
|
|
10620
11030
|
}
|
|
10621
11031
|
],
|
|
10622
11032
|
"columns": [
|
|
10623
|
-
"
|
|
10624
|
-
"
|
|
10625
|
-
"
|
|
10626
|
-
"url"
|
|
11033
|
+
"label",
|
|
11034
|
+
"type",
|
|
11035
|
+
"points"
|
|
10627
11036
|
],
|
|
10628
11037
|
"type": "js",
|
|
10629
|
-
"modulePath": "
|
|
10630
|
-
"sourceFile": "
|
|
11038
|
+
"modulePath": "geogebra/add-line.js",
|
|
11039
|
+
"sourceFile": "geogebra/add-line.js",
|
|
11040
|
+
"navigateBefore": false
|
|
10631
11041
|
},
|
|
10632
11042
|
{
|
|
10633
|
-
"site": "
|
|
10634
|
-
"name": "
|
|
10635
|
-
"description": "
|
|
10636
|
-
"access": "
|
|
10637
|
-
"
|
|
11043
|
+
"site": "geogebra",
|
|
11044
|
+
"name": "add-point",
|
|
11045
|
+
"description": "Create a point with given label and coordinates",
|
|
11046
|
+
"access": "write",
|
|
11047
|
+
"example": "opencli geogebra add-point --name A --coords 1,2",
|
|
11048
|
+
"domain": "www.geogebra.org",
|
|
10638
11049
|
"strategy": "public",
|
|
10639
11050
|
"browser": true,
|
|
10640
11051
|
"args": [
|
|
10641
11052
|
{
|
|
10642
|
-
"name": "
|
|
11053
|
+
"name": "name",
|
|
10643
11054
|
"type": "str",
|
|
10644
11055
|
"required": true,
|
|
10645
|
-
"
|
|
10646
|
-
|
|
11056
|
+
"help": "Point label (e.g. A, B, P1)"
|
|
11057
|
+
},
|
|
11058
|
+
{
|
|
11059
|
+
"name": "coords",
|
|
11060
|
+
"type": "str",
|
|
11061
|
+
"required": true,
|
|
11062
|
+
"help": "Coordinates as x,y (e.g. \"1,2\")"
|
|
10647
11063
|
}
|
|
10648
11064
|
],
|
|
10649
11065
|
"columns": [
|
|
10650
|
-
"
|
|
10651
|
-
"
|
|
11066
|
+
"name",
|
|
11067
|
+
"x",
|
|
11068
|
+
"y"
|
|
11069
|
+
],
|
|
11070
|
+
"type": "js",
|
|
11071
|
+
"modulePath": "geogebra/add-point.js",
|
|
11072
|
+
"sourceFile": "geogebra/add-point.js",
|
|
11073
|
+
"navigateBefore": false
|
|
11074
|
+
},
|
|
11075
|
+
{
|
|
11076
|
+
"site": "geogebra",
|
|
11077
|
+
"name": "add-polygon",
|
|
11078
|
+
"description": "Create a polygon from a list of point labels",
|
|
11079
|
+
"access": "write",
|
|
11080
|
+
"example": "opencli geogebra add-polygon --points A,B,C",
|
|
11081
|
+
"domain": "www.geogebra.org",
|
|
11082
|
+
"strategy": "public",
|
|
11083
|
+
"browser": true,
|
|
11084
|
+
"args": [
|
|
11085
|
+
{
|
|
11086
|
+
"name": "points",
|
|
11087
|
+
"type": "str",
|
|
11088
|
+
"required": true,
|
|
11089
|
+
"help": "Comma-separated point labels (e.g. \"A,B,C\" or \"A,B,C,D\")"
|
|
11090
|
+
}
|
|
11091
|
+
],
|
|
11092
|
+
"columns": [
|
|
11093
|
+
"label",
|
|
11094
|
+
"vertices"
|
|
11095
|
+
],
|
|
11096
|
+
"type": "js",
|
|
11097
|
+
"modulePath": "geogebra/add-polygon.js",
|
|
11098
|
+
"sourceFile": "geogebra/add-polygon.js",
|
|
11099
|
+
"navigateBefore": false
|
|
11100
|
+
},
|
|
11101
|
+
{
|
|
11102
|
+
"site": "geogebra",
|
|
11103
|
+
"name": "eval",
|
|
11104
|
+
"description": "Execute one or more GeoGebra command strings (semicolon-separated)",
|
|
11105
|
+
"access": "write",
|
|
11106
|
+
"example": "opencli geogebra eval \"A=(0,0);B=(4,0);c=Circle(A,B);d=Circle(B,A);C=Intersect(c,d,1);Polygon(A,B,C)\"",
|
|
11107
|
+
"domain": "www.geogebra.org",
|
|
11108
|
+
"strategy": "public",
|
|
11109
|
+
"browser": true,
|
|
11110
|
+
"args": [
|
|
11111
|
+
{
|
|
11112
|
+
"name": "command",
|
|
11113
|
+
"type": "str",
|
|
11114
|
+
"required": true,
|
|
11115
|
+
"positional": true,
|
|
11116
|
+
"help": "GeoGebra command string (use ; to chain multiple commands)"
|
|
11117
|
+
}
|
|
11118
|
+
],
|
|
11119
|
+
"columns": [
|
|
11120
|
+
"command",
|
|
11121
|
+
"result"
|
|
11122
|
+
],
|
|
11123
|
+
"type": "js",
|
|
11124
|
+
"modulePath": "geogebra/eval.js",
|
|
11125
|
+
"sourceFile": "geogebra/eval.js",
|
|
11126
|
+
"navigateBefore": false
|
|
11127
|
+
},
|
|
11128
|
+
{
|
|
11129
|
+
"site": "geogebra",
|
|
11130
|
+
"name": "hexagon",
|
|
11131
|
+
"description": "Draw a regular hexagon centered at the origin",
|
|
11132
|
+
"access": "write",
|
|
11133
|
+
"example": "opencli geogebra hexagon --size 3",
|
|
11134
|
+
"domain": "www.geogebra.org",
|
|
11135
|
+
"strategy": "public",
|
|
11136
|
+
"browser": true,
|
|
11137
|
+
"args": [
|
|
11138
|
+
{
|
|
11139
|
+
"name": "size",
|
|
11140
|
+
"type": "str",
|
|
11141
|
+
"default": "2",
|
|
11142
|
+
"required": false,
|
|
11143
|
+
"help": "Radius of the hexagon (default: 2)"
|
|
11144
|
+
}
|
|
11145
|
+
],
|
|
11146
|
+
"columns": [
|
|
11147
|
+
"step",
|
|
11148
|
+
"result"
|
|
11149
|
+
],
|
|
11150
|
+
"type": "js",
|
|
11151
|
+
"modulePath": "geogebra/hexagon.js",
|
|
11152
|
+
"sourceFile": "geogebra/hexagon.js",
|
|
11153
|
+
"navigateBefore": false
|
|
11154
|
+
},
|
|
11155
|
+
{
|
|
11156
|
+
"site": "geogebra",
|
|
11157
|
+
"name": "info",
|
|
11158
|
+
"description": "Get detailed properties of a GeoGebra object",
|
|
11159
|
+
"access": "read",
|
|
11160
|
+
"example": "opencli geogebra info --name A",
|
|
11161
|
+
"domain": "www.geogebra.org",
|
|
11162
|
+
"strategy": "public",
|
|
11163
|
+
"browser": true,
|
|
11164
|
+
"args": [
|
|
11165
|
+
{
|
|
11166
|
+
"name": "name",
|
|
11167
|
+
"type": "str",
|
|
11168
|
+
"required": true,
|
|
11169
|
+
"help": "Object label (e.g. A, c1, poly1)"
|
|
11170
|
+
}
|
|
11171
|
+
],
|
|
11172
|
+
"columns": [
|
|
11173
|
+
"property",
|
|
11174
|
+
"value"
|
|
11175
|
+
],
|
|
11176
|
+
"type": "js",
|
|
11177
|
+
"modulePath": "geogebra/info.js",
|
|
11178
|
+
"sourceFile": "geogebra/info.js",
|
|
11179
|
+
"navigateBefore": false
|
|
11180
|
+
},
|
|
11181
|
+
{
|
|
11182
|
+
"site": "geogebra",
|
|
11183
|
+
"name": "list",
|
|
11184
|
+
"description": "List all geometric objects on the GeoGebra canvas",
|
|
11185
|
+
"access": "read",
|
|
11186
|
+
"domain": "www.geogebra.org",
|
|
11187
|
+
"strategy": "public",
|
|
11188
|
+
"browser": true,
|
|
11189
|
+
"args": [
|
|
11190
|
+
{
|
|
11191
|
+
"name": "type",
|
|
11192
|
+
"type": "str",
|
|
11193
|
+
"required": false,
|
|
11194
|
+
"help": "Filter by object type (e.g. \"point\", \"line\", \"circle\")"
|
|
11195
|
+
}
|
|
11196
|
+
],
|
|
11197
|
+
"columns": [
|
|
11198
|
+
"name",
|
|
11199
|
+
"type",
|
|
11200
|
+
"value",
|
|
11201
|
+
"visible"
|
|
11202
|
+
],
|
|
11203
|
+
"type": "js",
|
|
11204
|
+
"modulePath": "geogebra/list.js",
|
|
11205
|
+
"sourceFile": "geogebra/list.js",
|
|
11206
|
+
"navigateBefore": false
|
|
11207
|
+
},
|
|
11208
|
+
{
|
|
11209
|
+
"site": "geogebra",
|
|
11210
|
+
"name": "triangle",
|
|
11211
|
+
"description": "Draw an equilateral triangle from a horizontal base segment",
|
|
11212
|
+
"access": "write",
|
|
11213
|
+
"example": "opencli geogebra triangle --size 4",
|
|
11214
|
+
"domain": "www.geogebra.org",
|
|
11215
|
+
"strategy": "public",
|
|
11216
|
+
"browser": true,
|
|
11217
|
+
"args": [
|
|
11218
|
+
{
|
|
11219
|
+
"name": "size",
|
|
11220
|
+
"type": "str",
|
|
11221
|
+
"default": "2",
|
|
11222
|
+
"required": false,
|
|
11223
|
+
"help": "Side length of the triangle (default: 2)"
|
|
11224
|
+
}
|
|
11225
|
+
],
|
|
11226
|
+
"columns": [
|
|
11227
|
+
"step",
|
|
11228
|
+
"result"
|
|
11229
|
+
],
|
|
11230
|
+
"type": "js",
|
|
11231
|
+
"modulePath": "geogebra/triangle.js",
|
|
11232
|
+
"sourceFile": "geogebra/triangle.js",
|
|
11233
|
+
"navigateBefore": false
|
|
11234
|
+
},
|
|
11235
|
+
{
|
|
11236
|
+
"site": "gitee",
|
|
11237
|
+
"name": "search",
|
|
11238
|
+
"description": "Search repositories on Gitee",
|
|
11239
|
+
"access": "read",
|
|
11240
|
+
"domain": "gitee.com",
|
|
11241
|
+
"strategy": "public",
|
|
11242
|
+
"browser": true,
|
|
11243
|
+
"args": [
|
|
11244
|
+
{
|
|
11245
|
+
"name": "keyword",
|
|
11246
|
+
"type": "str",
|
|
11247
|
+
"required": true,
|
|
11248
|
+
"positional": true,
|
|
11249
|
+
"help": "Search keyword"
|
|
11250
|
+
},
|
|
11251
|
+
{
|
|
11252
|
+
"name": "limit",
|
|
11253
|
+
"type": "int",
|
|
11254
|
+
"default": 10,
|
|
11255
|
+
"required": false,
|
|
11256
|
+
"help": "Number of results (max 50)"
|
|
11257
|
+
}
|
|
11258
|
+
],
|
|
11259
|
+
"columns": [
|
|
11260
|
+
"rank",
|
|
11261
|
+
"name",
|
|
11262
|
+
"language",
|
|
11263
|
+
"stars",
|
|
11264
|
+
"description",
|
|
11265
|
+
"url"
|
|
11266
|
+
],
|
|
11267
|
+
"type": "js",
|
|
11268
|
+
"modulePath": "gitee/search.js",
|
|
11269
|
+
"sourceFile": "gitee/search.js"
|
|
11270
|
+
},
|
|
11271
|
+
{
|
|
11272
|
+
"site": "gitee",
|
|
11273
|
+
"name": "trending",
|
|
11274
|
+
"description": "Recommended open-source projects on Gitee Explore",
|
|
11275
|
+
"access": "read",
|
|
11276
|
+
"domain": "gitee.com",
|
|
11277
|
+
"strategy": "public",
|
|
11278
|
+
"browser": true,
|
|
11279
|
+
"args": [
|
|
11280
|
+
{
|
|
11281
|
+
"name": "limit",
|
|
11282
|
+
"type": "int",
|
|
11283
|
+
"default": 20,
|
|
11284
|
+
"required": false,
|
|
11285
|
+
"help": "Number of projects (max 50)"
|
|
11286
|
+
}
|
|
11287
|
+
],
|
|
11288
|
+
"columns": [
|
|
11289
|
+
"name",
|
|
11290
|
+
"description",
|
|
11291
|
+
"stars",
|
|
11292
|
+
"url"
|
|
11293
|
+
],
|
|
11294
|
+
"type": "js",
|
|
11295
|
+
"modulePath": "gitee/trending.js",
|
|
11296
|
+
"sourceFile": "gitee/trending.js"
|
|
11297
|
+
},
|
|
11298
|
+
{
|
|
11299
|
+
"site": "gitee",
|
|
11300
|
+
"name": "user",
|
|
11301
|
+
"description": "Show a Gitee user profile panel",
|
|
11302
|
+
"access": "read",
|
|
11303
|
+
"domain": "gitee.com",
|
|
11304
|
+
"strategy": "public",
|
|
11305
|
+
"browser": true,
|
|
11306
|
+
"args": [
|
|
11307
|
+
{
|
|
11308
|
+
"name": "username",
|
|
11309
|
+
"type": "str",
|
|
11310
|
+
"required": true,
|
|
11311
|
+
"positional": true,
|
|
11312
|
+
"help": "Gitee username"
|
|
11313
|
+
}
|
|
11314
|
+
],
|
|
11315
|
+
"columns": [
|
|
11316
|
+
"field",
|
|
11317
|
+
"value"
|
|
10652
11318
|
],
|
|
10653
11319
|
"type": "js",
|
|
10654
11320
|
"modulePath": "gitee/user.js",
|
|
@@ -14033,57 +14699,222 @@
|
|
|
14033
14699
|
"navigateBefore": "https://jimeng.jianying.com"
|
|
14034
14700
|
},
|
|
14035
14701
|
{
|
|
14036
|
-
"site": "
|
|
14037
|
-
"name": "
|
|
14038
|
-
"description": "
|
|
14702
|
+
"site": "jira",
|
|
14703
|
+
"name": "attachments",
|
|
14704
|
+
"description": "Jira issue attachment metadata",
|
|
14039
14705
|
"access": "read",
|
|
14040
|
-
"domain": "
|
|
14041
|
-
"strategy": "
|
|
14042
|
-
"browser":
|
|
14706
|
+
"domain": "atlassian.net",
|
|
14707
|
+
"strategy": "public",
|
|
14708
|
+
"browser": false,
|
|
14043
14709
|
"args": [
|
|
14044
14710
|
{
|
|
14045
|
-
"name": "
|
|
14711
|
+
"name": "key",
|
|
14046
14712
|
"type": "str",
|
|
14047
|
-
"
|
|
14048
|
-
"
|
|
14049
|
-
"help": "
|
|
14050
|
-
}
|
|
14713
|
+
"required": true,
|
|
14714
|
+
"positional": true,
|
|
14715
|
+
"help": "Jira issue key, e.g. PROJ-123"
|
|
14716
|
+
}
|
|
14717
|
+
],
|
|
14718
|
+
"columns": [
|
|
14719
|
+
"id",
|
|
14720
|
+
"filename",
|
|
14721
|
+
"mimeType",
|
|
14722
|
+
"size",
|
|
14723
|
+
"url"
|
|
14724
|
+
],
|
|
14725
|
+
"type": "js",
|
|
14726
|
+
"modulePath": "jira/attachments.js",
|
|
14727
|
+
"sourceFile": "jira/attachments.js"
|
|
14728
|
+
},
|
|
14729
|
+
{
|
|
14730
|
+
"site": "jira",
|
|
14731
|
+
"name": "comments",
|
|
14732
|
+
"description": "Jira issue comments as Markdown",
|
|
14733
|
+
"access": "read",
|
|
14734
|
+
"domain": "atlassian.net",
|
|
14735
|
+
"strategy": "public",
|
|
14736
|
+
"browser": false,
|
|
14737
|
+
"args": [
|
|
14051
14738
|
{
|
|
14052
|
-
"name": "
|
|
14739
|
+
"name": "key",
|
|
14053
14740
|
"type": "str",
|
|
14054
|
-
"required":
|
|
14055
|
-
"
|
|
14741
|
+
"required": true,
|
|
14742
|
+
"positional": true,
|
|
14743
|
+
"help": "Jira issue key, e.g. PROJ-123"
|
|
14056
14744
|
},
|
|
14057
14745
|
{
|
|
14058
14746
|
"name": "limit",
|
|
14059
14747
|
"type": "int",
|
|
14060
|
-
"default":
|
|
14748
|
+
"default": 50,
|
|
14061
14749
|
"required": false,
|
|
14062
|
-
"help": "
|
|
14750
|
+
"help": "Max comments to return (1-100)"
|
|
14063
14751
|
}
|
|
14064
14752
|
],
|
|
14065
14753
|
"columns": [
|
|
14066
|
-
"
|
|
14067
|
-
"
|
|
14068
|
-
"
|
|
14069
|
-
"
|
|
14070
|
-
"
|
|
14071
|
-
"unit_price",
|
|
14072
|
-
"deal_date"
|
|
14754
|
+
"id",
|
|
14755
|
+
"author",
|
|
14756
|
+
"created",
|
|
14757
|
+
"updated",
|
|
14758
|
+
"markdown"
|
|
14073
14759
|
],
|
|
14074
14760
|
"type": "js",
|
|
14075
|
-
"modulePath": "
|
|
14076
|
-
"sourceFile": "
|
|
14077
|
-
"navigateBefore": "https://ke.com"
|
|
14761
|
+
"modulePath": "jira/comments.js",
|
|
14762
|
+
"sourceFile": "jira/comments.js"
|
|
14078
14763
|
},
|
|
14079
14764
|
{
|
|
14080
|
-
"site": "
|
|
14081
|
-
"name": "
|
|
14082
|
-
"description": "
|
|
14765
|
+
"site": "jira",
|
|
14766
|
+
"name": "issue",
|
|
14767
|
+
"description": "Jira issue detail normalized for agents (description, comments, attachments, links)",
|
|
14083
14768
|
"access": "read",
|
|
14084
|
-
"domain": "
|
|
14085
|
-
"strategy": "
|
|
14086
|
-
"browser":
|
|
14769
|
+
"domain": "atlassian.net",
|
|
14770
|
+
"strategy": "public",
|
|
14771
|
+
"browser": false,
|
|
14772
|
+
"args": [
|
|
14773
|
+
{
|
|
14774
|
+
"name": "key",
|
|
14775
|
+
"type": "str",
|
|
14776
|
+
"required": true,
|
|
14777
|
+
"positional": true,
|
|
14778
|
+
"help": "Jira issue key, e.g. PROJ-123"
|
|
14779
|
+
},
|
|
14780
|
+
{
|
|
14781
|
+
"name": "comments-limit",
|
|
14782
|
+
"type": "int",
|
|
14783
|
+
"default": 100,
|
|
14784
|
+
"required": false,
|
|
14785
|
+
"help": "Max comments to include (1-100)"
|
|
14786
|
+
}
|
|
14787
|
+
],
|
|
14788
|
+
"columns": [
|
|
14789
|
+
"key",
|
|
14790
|
+
"summary",
|
|
14791
|
+
"issueType",
|
|
14792
|
+
"status",
|
|
14793
|
+
"priority",
|
|
14794
|
+
"assignee",
|
|
14795
|
+
"updated",
|
|
14796
|
+
"url"
|
|
14797
|
+
],
|
|
14798
|
+
"type": "js",
|
|
14799
|
+
"modulePath": "jira/issue.js",
|
|
14800
|
+
"sourceFile": "jira/issue.js"
|
|
14801
|
+
},
|
|
14802
|
+
{
|
|
14803
|
+
"site": "jira",
|
|
14804
|
+
"name": "links",
|
|
14805
|
+
"description": "Jira issue links",
|
|
14806
|
+
"access": "read",
|
|
14807
|
+
"domain": "atlassian.net",
|
|
14808
|
+
"strategy": "public",
|
|
14809
|
+
"browser": false,
|
|
14810
|
+
"args": [
|
|
14811
|
+
{
|
|
14812
|
+
"name": "key",
|
|
14813
|
+
"type": "str",
|
|
14814
|
+
"required": true,
|
|
14815
|
+
"positional": true,
|
|
14816
|
+
"help": "Jira issue key, e.g. PROJ-123"
|
|
14817
|
+
}
|
|
14818
|
+
],
|
|
14819
|
+
"columns": [
|
|
14820
|
+
"key",
|
|
14821
|
+
"type",
|
|
14822
|
+
"direction"
|
|
14823
|
+
],
|
|
14824
|
+
"type": "js",
|
|
14825
|
+
"modulePath": "jira/links.js",
|
|
14826
|
+
"sourceFile": "jira/links.js"
|
|
14827
|
+
},
|
|
14828
|
+
{
|
|
14829
|
+
"site": "jira",
|
|
14830
|
+
"name": "search",
|
|
14831
|
+
"description": "Search Jira issues with JQL",
|
|
14832
|
+
"access": "read",
|
|
14833
|
+
"domain": "atlassian.net",
|
|
14834
|
+
"strategy": "public",
|
|
14835
|
+
"browser": false,
|
|
14836
|
+
"args": [
|
|
14837
|
+
{
|
|
14838
|
+
"name": "jql",
|
|
14839
|
+
"type": "str",
|
|
14840
|
+
"required": true,
|
|
14841
|
+
"positional": true,
|
|
14842
|
+
"help": "JQL query, e.g. \"project = PROJ order by updated desc\""
|
|
14843
|
+
},
|
|
14844
|
+
{
|
|
14845
|
+
"name": "limit",
|
|
14846
|
+
"type": "int",
|
|
14847
|
+
"default": 20,
|
|
14848
|
+
"required": false,
|
|
14849
|
+
"help": "Max issues to return (1-100)"
|
|
14850
|
+
}
|
|
14851
|
+
],
|
|
14852
|
+
"columns": [
|
|
14853
|
+
"key",
|
|
14854
|
+
"summary",
|
|
14855
|
+
"issueType",
|
|
14856
|
+
"status",
|
|
14857
|
+
"priority",
|
|
14858
|
+
"assignee",
|
|
14859
|
+
"updated",
|
|
14860
|
+
"url"
|
|
14861
|
+
],
|
|
14862
|
+
"type": "js",
|
|
14863
|
+
"modulePath": "jira/search.js",
|
|
14864
|
+
"sourceFile": "jira/search.js"
|
|
14865
|
+
},
|
|
14866
|
+
{
|
|
14867
|
+
"site": "ke",
|
|
14868
|
+
"name": "chengjiao",
|
|
14869
|
+
"description": "贝壳找房成交记录",
|
|
14870
|
+
"access": "read",
|
|
14871
|
+
"domain": "ke.com",
|
|
14872
|
+
"strategy": "cookie",
|
|
14873
|
+
"browser": true,
|
|
14874
|
+
"args": [
|
|
14875
|
+
{
|
|
14876
|
+
"name": "city",
|
|
14877
|
+
"type": "str",
|
|
14878
|
+
"default": "bj",
|
|
14879
|
+
"required": false,
|
|
14880
|
+
"help": "城市代码,如 bj(北京), sh(上海), gz(广州), sz(深圳), zs(中山)"
|
|
14881
|
+
},
|
|
14882
|
+
{
|
|
14883
|
+
"name": "district",
|
|
14884
|
+
"type": "str",
|
|
14885
|
+
"required": false,
|
|
14886
|
+
"help": "区域拼音,如 chaoyang, haidian"
|
|
14887
|
+
},
|
|
14888
|
+
{
|
|
14889
|
+
"name": "limit",
|
|
14890
|
+
"type": "int",
|
|
14891
|
+
"default": 20,
|
|
14892
|
+
"required": false,
|
|
14893
|
+
"help": "返回数量"
|
|
14894
|
+
}
|
|
14895
|
+
],
|
|
14896
|
+
"columns": [
|
|
14897
|
+
"title",
|
|
14898
|
+
"community",
|
|
14899
|
+
"layout",
|
|
14900
|
+
"area",
|
|
14901
|
+
"deal_price",
|
|
14902
|
+
"unit_price",
|
|
14903
|
+
"deal_date"
|
|
14904
|
+
],
|
|
14905
|
+
"type": "js",
|
|
14906
|
+
"modulePath": "ke/chengjiao.js",
|
|
14907
|
+
"sourceFile": "ke/chengjiao.js",
|
|
14908
|
+
"navigateBefore": "https://ke.com"
|
|
14909
|
+
},
|
|
14910
|
+
{
|
|
14911
|
+
"site": "ke",
|
|
14912
|
+
"name": "ershoufang",
|
|
14913
|
+
"description": "贝壳找房二手房列表",
|
|
14914
|
+
"access": "read",
|
|
14915
|
+
"domain": "ke.com",
|
|
14916
|
+
"strategy": "cookie",
|
|
14917
|
+
"browser": true,
|
|
14087
14918
|
"args": [
|
|
14088
14919
|
{
|
|
14089
14920
|
"name": "city",
|
|
@@ -14859,6 +15690,64 @@
|
|
|
14859
15690
|
"sourceFile": "linkedin/inbox.js",
|
|
14860
15691
|
"navigateBefore": "https://www.linkedin.com"
|
|
14861
15692
|
},
|
|
15693
|
+
{
|
|
15694
|
+
"site": "linkedin",
|
|
15695
|
+
"name": "job-detail",
|
|
15696
|
+
"description": "Read one LinkedIn job page with description, apply URL, workplace type, applicants, and company metadata",
|
|
15697
|
+
"access": "read",
|
|
15698
|
+
"domain": "www.linkedin.com",
|
|
15699
|
+
"strategy": "cookie",
|
|
15700
|
+
"browser": true,
|
|
15701
|
+
"args": [
|
|
15702
|
+
{
|
|
15703
|
+
"name": "job-url",
|
|
15704
|
+
"type": "string",
|
|
15705
|
+
"required": true,
|
|
15706
|
+
"positional": true,
|
|
15707
|
+
"help": "Exact LinkedIn job URL, e.g. https://www.linkedin.com/jobs/view/123/"
|
|
15708
|
+
}
|
|
15709
|
+
],
|
|
15710
|
+
"columns": [
|
|
15711
|
+
"title",
|
|
15712
|
+
"company",
|
|
15713
|
+
"location",
|
|
15714
|
+
"workplace_type",
|
|
15715
|
+
"job_type",
|
|
15716
|
+
"applicants",
|
|
15717
|
+
"listed",
|
|
15718
|
+
"apply_url",
|
|
15719
|
+
"company_url",
|
|
15720
|
+
"url",
|
|
15721
|
+
"description"
|
|
15722
|
+
],
|
|
15723
|
+
"type": "js",
|
|
15724
|
+
"modulePath": "linkedin/job-detail.js",
|
|
15725
|
+
"sourceFile": "linkedin/job-detail.js",
|
|
15726
|
+
"navigateBefore": "https://www.linkedin.com"
|
|
15727
|
+
},
|
|
15728
|
+
{
|
|
15729
|
+
"site": "linkedin",
|
|
15730
|
+
"name": "jobs-preferences",
|
|
15731
|
+
"description": "Read visible LinkedIn Jobs preferences and alert settings without changing them",
|
|
15732
|
+
"access": "read",
|
|
15733
|
+
"domain": "www.linkedin.com",
|
|
15734
|
+
"strategy": "cookie",
|
|
15735
|
+
"browser": true,
|
|
15736
|
+
"args": [],
|
|
15737
|
+
"columns": [
|
|
15738
|
+
"open_to_work",
|
|
15739
|
+
"job_titles",
|
|
15740
|
+
"locations",
|
|
15741
|
+
"job_alerts",
|
|
15742
|
+
"preferences_url",
|
|
15743
|
+
"alerts_url",
|
|
15744
|
+
"raw_preferences"
|
|
15745
|
+
],
|
|
15746
|
+
"type": "js",
|
|
15747
|
+
"modulePath": "linkedin/jobs-preferences.js",
|
|
15748
|
+
"sourceFile": "linkedin/jobs-preferences.js",
|
|
15749
|
+
"navigateBefore": "https://www.linkedin.com"
|
|
15750
|
+
},
|
|
14862
15751
|
{
|
|
14863
15752
|
"site": "linkedin",
|
|
14864
15753
|
"name": "people-search",
|
|
@@ -14895,6 +15784,229 @@
|
|
|
14895
15784
|
"sourceFile": "linkedin/people-search.js",
|
|
14896
15785
|
"navigateBefore": "https://www.linkedin.com"
|
|
14897
15786
|
},
|
|
15787
|
+
{
|
|
15788
|
+
"site": "linkedin",
|
|
15789
|
+
"name": "post-analytics",
|
|
15790
|
+
"description": "Summarize raw visible LinkedIn post counters without custom scoring or classification",
|
|
15791
|
+
"access": "read",
|
|
15792
|
+
"domain": "www.linkedin.com",
|
|
15793
|
+
"strategy": "cookie",
|
|
15794
|
+
"browser": true,
|
|
15795
|
+
"args": [
|
|
15796
|
+
{
|
|
15797
|
+
"name": "profile-url",
|
|
15798
|
+
"type": "string",
|
|
15799
|
+
"required": false,
|
|
15800
|
+
"help": "LinkedIn /in/<handle>/ profile URL. Defaults to /in/me/."
|
|
15801
|
+
},
|
|
15802
|
+
{
|
|
15803
|
+
"name": "limit",
|
|
15804
|
+
"type": "int",
|
|
15805
|
+
"default": 30,
|
|
15806
|
+
"required": false,
|
|
15807
|
+
"help": "Maximum posts to summarize (1-100)"
|
|
15808
|
+
}
|
|
15809
|
+
],
|
|
15810
|
+
"columns": [
|
|
15811
|
+
"posts_analyzed",
|
|
15812
|
+
"total_reactions",
|
|
15813
|
+
"total_comments",
|
|
15814
|
+
"total_reposts",
|
|
15815
|
+
"total_impressions",
|
|
15816
|
+
"posts_with_media",
|
|
15817
|
+
"posts_with_urls",
|
|
15818
|
+
"latest_posted_at",
|
|
15819
|
+
"latest_reactions",
|
|
15820
|
+
"latest_comments",
|
|
15821
|
+
"latest_reposts",
|
|
15822
|
+
"latest_impressions",
|
|
15823
|
+
"latest_url"
|
|
15824
|
+
],
|
|
15825
|
+
"type": "js",
|
|
15826
|
+
"modulePath": "linkedin/post-analytics.js",
|
|
15827
|
+
"sourceFile": "linkedin/post-analytics.js",
|
|
15828
|
+
"navigateBefore": "https://www.linkedin.com"
|
|
15829
|
+
},
|
|
15830
|
+
{
|
|
15831
|
+
"site": "linkedin",
|
|
15832
|
+
"name": "posts",
|
|
15833
|
+
"description": "Export visible posts from a LinkedIn profile activity page with engagement metrics",
|
|
15834
|
+
"access": "read",
|
|
15835
|
+
"domain": "www.linkedin.com",
|
|
15836
|
+
"strategy": "cookie",
|
|
15837
|
+
"browser": true,
|
|
15838
|
+
"args": [
|
|
15839
|
+
{
|
|
15840
|
+
"name": "profile-url",
|
|
15841
|
+
"type": "string",
|
|
15842
|
+
"required": false,
|
|
15843
|
+
"help": "LinkedIn /in/<handle>/ profile URL. Defaults to /in/me/."
|
|
15844
|
+
},
|
|
15845
|
+
{
|
|
15846
|
+
"name": "limit",
|
|
15847
|
+
"type": "int",
|
|
15848
|
+
"default": 20,
|
|
15849
|
+
"required": false,
|
|
15850
|
+
"help": "Maximum posts to return (1-100)"
|
|
15851
|
+
}
|
|
15852
|
+
],
|
|
15853
|
+
"columns": [
|
|
15854
|
+
"rank",
|
|
15855
|
+
"author",
|
|
15856
|
+
"posted_at",
|
|
15857
|
+
"body",
|
|
15858
|
+
"reactions",
|
|
15859
|
+
"comments",
|
|
15860
|
+
"reposts",
|
|
15861
|
+
"impressions",
|
|
15862
|
+
"media",
|
|
15863
|
+
"media_urls",
|
|
15864
|
+
"url",
|
|
15865
|
+
"raw_text"
|
|
15866
|
+
],
|
|
15867
|
+
"type": "js",
|
|
15868
|
+
"modulePath": "linkedin/posts.js",
|
|
15869
|
+
"sourceFile": "linkedin/posts.js",
|
|
15870
|
+
"navigateBefore": "https://www.linkedin.com"
|
|
15871
|
+
},
|
|
15872
|
+
{
|
|
15873
|
+
"site": "linkedin",
|
|
15874
|
+
"name": "profile-analytics",
|
|
15875
|
+
"description": "Read visible LinkedIn profile dashboard metrics such as profile views, post impressions, and search appearances",
|
|
15876
|
+
"access": "read",
|
|
15877
|
+
"domain": "www.linkedin.com",
|
|
15878
|
+
"strategy": "cookie",
|
|
15879
|
+
"browser": true,
|
|
15880
|
+
"args": [
|
|
15881
|
+
{
|
|
15882
|
+
"name": "profile-url",
|
|
15883
|
+
"type": "string",
|
|
15884
|
+
"required": false,
|
|
15885
|
+
"help": "LinkedIn /in/<handle>/ profile URL. Defaults to /in/me/."
|
|
15886
|
+
}
|
|
15887
|
+
],
|
|
15888
|
+
"columns": [
|
|
15889
|
+
"profile_url",
|
|
15890
|
+
"profile_views",
|
|
15891
|
+
"post_impressions",
|
|
15892
|
+
"search_appearances",
|
|
15893
|
+
"followers",
|
|
15894
|
+
"connections",
|
|
15895
|
+
"raw_analytics"
|
|
15896
|
+
],
|
|
15897
|
+
"type": "js",
|
|
15898
|
+
"modulePath": "linkedin/profile-analytics.js",
|
|
15899
|
+
"sourceFile": "linkedin/profile-analytics.js",
|
|
15900
|
+
"navigateBefore": "https://www.linkedin.com"
|
|
15901
|
+
},
|
|
15902
|
+
{
|
|
15903
|
+
"site": "linkedin",
|
|
15904
|
+
"name": "profile-experience",
|
|
15905
|
+
"description": "Read visible LinkedIn profile experience entries with titles, dates, locations, skills, media, and URLs",
|
|
15906
|
+
"access": "read",
|
|
15907
|
+
"domain": "www.linkedin.com",
|
|
15908
|
+
"strategy": "cookie",
|
|
15909
|
+
"browser": true,
|
|
15910
|
+
"args": [
|
|
15911
|
+
{
|
|
15912
|
+
"name": "profile-url",
|
|
15913
|
+
"type": "string",
|
|
15914
|
+
"required": false,
|
|
15915
|
+
"help": "LinkedIn /in/<handle>/ profile URL. Defaults to /in/me/."
|
|
15916
|
+
}
|
|
15917
|
+
],
|
|
15918
|
+
"columns": [
|
|
15919
|
+
"rank",
|
|
15920
|
+
"total_count",
|
|
15921
|
+
"title",
|
|
15922
|
+
"employment_type",
|
|
15923
|
+
"company",
|
|
15924
|
+
"date_range",
|
|
15925
|
+
"start_date",
|
|
15926
|
+
"end_date",
|
|
15927
|
+
"location",
|
|
15928
|
+
"location_type",
|
|
15929
|
+
"description",
|
|
15930
|
+
"skills",
|
|
15931
|
+
"media",
|
|
15932
|
+
"urls",
|
|
15933
|
+
"skill_url",
|
|
15934
|
+
"media_url",
|
|
15935
|
+
"profile_url",
|
|
15936
|
+
"raw_text"
|
|
15937
|
+
],
|
|
15938
|
+
"type": "js",
|
|
15939
|
+
"modulePath": "linkedin/profile-experience.js",
|
|
15940
|
+
"sourceFile": "linkedin/profile-experience.js",
|
|
15941
|
+
"navigateBefore": "https://www.linkedin.com"
|
|
15942
|
+
},
|
|
15943
|
+
{
|
|
15944
|
+
"site": "linkedin",
|
|
15945
|
+
"name": "profile-projects",
|
|
15946
|
+
"description": "Read visible LinkedIn profile projects with descriptions, dates, skills, media, and URLs",
|
|
15947
|
+
"access": "read",
|
|
15948
|
+
"domain": "www.linkedin.com",
|
|
15949
|
+
"strategy": "cookie",
|
|
15950
|
+
"browser": true,
|
|
15951
|
+
"args": [
|
|
15952
|
+
{
|
|
15953
|
+
"name": "profile-url",
|
|
15954
|
+
"type": "string",
|
|
15955
|
+
"required": false,
|
|
15956
|
+
"help": "LinkedIn /in/<handle>/ profile URL. Defaults to /in/me/."
|
|
15957
|
+
}
|
|
15958
|
+
],
|
|
15959
|
+
"columns": [
|
|
15960
|
+
"rank",
|
|
15961
|
+
"title",
|
|
15962
|
+
"date_range",
|
|
15963
|
+
"associated_with",
|
|
15964
|
+
"description",
|
|
15965
|
+
"skills",
|
|
15966
|
+
"media",
|
|
15967
|
+
"urls",
|
|
15968
|
+
"profile_url",
|
|
15969
|
+
"raw_text"
|
|
15970
|
+
],
|
|
15971
|
+
"type": "js",
|
|
15972
|
+
"modulePath": "linkedin/profile-projects.js",
|
|
15973
|
+
"sourceFile": "linkedin/profile-projects.js",
|
|
15974
|
+
"navigateBefore": "https://www.linkedin.com"
|
|
15975
|
+
},
|
|
15976
|
+
{
|
|
15977
|
+
"site": "linkedin",
|
|
15978
|
+
"name": "profile-read",
|
|
15979
|
+
"description": "Read visible LinkedIn profile sections: headline, About, experience, education, services, and featured sections",
|
|
15980
|
+
"access": "read",
|
|
15981
|
+
"domain": "www.linkedin.com",
|
|
15982
|
+
"strategy": "cookie",
|
|
15983
|
+
"browser": true,
|
|
15984
|
+
"args": [
|
|
15985
|
+
{
|
|
15986
|
+
"name": "profile-url",
|
|
15987
|
+
"type": "string",
|
|
15988
|
+
"required": false,
|
|
15989
|
+
"help": "LinkedIn /in/<handle>/ profile URL. Defaults to /in/me/."
|
|
15990
|
+
}
|
|
15991
|
+
],
|
|
15992
|
+
"columns": [
|
|
15993
|
+
"profile_url",
|
|
15994
|
+
"name",
|
|
15995
|
+
"headline",
|
|
15996
|
+
"location",
|
|
15997
|
+
"about",
|
|
15998
|
+
"about_character_count",
|
|
15999
|
+
"about_skills",
|
|
16000
|
+
"experience",
|
|
16001
|
+
"education",
|
|
16002
|
+
"services",
|
|
16003
|
+
"featured"
|
|
16004
|
+
],
|
|
16005
|
+
"type": "js",
|
|
16006
|
+
"modulePath": "linkedin/profile-read.js",
|
|
16007
|
+
"sourceFile": "linkedin/profile-read.js",
|
|
16008
|
+
"navigateBefore": "https://www.linkedin.com"
|
|
16009
|
+
},
|
|
14898
16010
|
{
|
|
14899
16011
|
"site": "linkedin",
|
|
14900
16012
|
"name": "safe-send",
|
|
@@ -15274,6 +16386,47 @@
|
|
|
15274
16386
|
"sourceFile": "linkedin/sent-invitations.js",
|
|
15275
16387
|
"navigateBefore": true
|
|
15276
16388
|
},
|
|
16389
|
+
{
|
|
16390
|
+
"site": "linkedin",
|
|
16391
|
+
"name": "services-read",
|
|
16392
|
+
"description": "Read LinkedIn Services page details including services, overview, availability, pricing, and media titles/descriptions",
|
|
16393
|
+
"access": "read",
|
|
16394
|
+
"domain": "www.linkedin.com",
|
|
16395
|
+
"strategy": "cookie",
|
|
16396
|
+
"browser": true,
|
|
16397
|
+
"args": [
|
|
16398
|
+
{
|
|
16399
|
+
"name": "profile-url",
|
|
16400
|
+
"type": "string",
|
|
16401
|
+
"required": false,
|
|
16402
|
+
"help": "LinkedIn /in/<handle>/ profile URL. Defaults to /in/me/."
|
|
16403
|
+
},
|
|
16404
|
+
{
|
|
16405
|
+
"name": "services-url",
|
|
16406
|
+
"type": "string",
|
|
16407
|
+
"required": false,
|
|
16408
|
+
"help": "LinkedIn /services/page/<id>/ URL. If omitted, it is discovered from the profile."
|
|
16409
|
+
}
|
|
16410
|
+
],
|
|
16411
|
+
"columns": [
|
|
16412
|
+
"service_url",
|
|
16413
|
+
"page_title",
|
|
16414
|
+
"overview",
|
|
16415
|
+
"availability",
|
|
16416
|
+
"work_locations",
|
|
16417
|
+
"pricing",
|
|
16418
|
+
"services_provided",
|
|
16419
|
+
"services_count",
|
|
16420
|
+
"media",
|
|
16421
|
+
"media_count",
|
|
16422
|
+
"messages",
|
|
16423
|
+
"reviews_visibility"
|
|
16424
|
+
],
|
|
16425
|
+
"type": "js",
|
|
16426
|
+
"modulePath": "linkedin/services-read.js",
|
|
16427
|
+
"sourceFile": "linkedin/services-read.js",
|
|
16428
|
+
"navigateBefore": "https://www.linkedin.com"
|
|
16429
|
+
},
|
|
15277
16430
|
{
|
|
15278
16431
|
"site": "linkedin",
|
|
15279
16432
|
"name": "thread-snapshot",
|
|
@@ -16585,51 +17738,238 @@
|
|
|
16585
17738
|
"browser": true,
|
|
16586
17739
|
"args": [
|
|
16587
17740
|
{
|
|
16588
|
-
"name": "query",
|
|
17741
|
+
"name": "query",
|
|
17742
|
+
"type": "str",
|
|
17743
|
+
"required": true,
|
|
17744
|
+
"positional": true,
|
|
17745
|
+
"help": "搜索关键词"
|
|
17746
|
+
},
|
|
17747
|
+
{
|
|
17748
|
+
"name": "limit",
|
|
17749
|
+
"type": "int",
|
|
17750
|
+
"default": 100,
|
|
17751
|
+
"required": false,
|
|
17752
|
+
"help": "最多显示条数(默认 100,结果被截断时用 --limit N 调大)"
|
|
17753
|
+
}
|
|
17754
|
+
],
|
|
17755
|
+
"columns": [
|
|
17756
|
+
"type",
|
|
17757
|
+
"id",
|
|
17758
|
+
"name",
|
|
17759
|
+
"path",
|
|
17760
|
+
"hits",
|
|
17761
|
+
"snippet"
|
|
17762
|
+
],
|
|
17763
|
+
"type": "js",
|
|
17764
|
+
"modulePath": "mubu/search.js",
|
|
17765
|
+
"sourceFile": "mubu/search.js",
|
|
17766
|
+
"navigateBefore": "https://mubu.com"
|
|
17767
|
+
},
|
|
17768
|
+
{
|
|
17769
|
+
"site": "notebooklm",
|
|
17770
|
+
"name": "add-source",
|
|
17771
|
+
"description": "Add a URL, text, or local file source to an existing NotebookLM notebook",
|
|
17772
|
+
"access": "write",
|
|
17773
|
+
"domain": "notebooklm.google.com",
|
|
17774
|
+
"strategy": "cookie",
|
|
17775
|
+
"browser": true,
|
|
17776
|
+
"args": [
|
|
17777
|
+
{
|
|
17778
|
+
"name": "notebook",
|
|
17779
|
+
"type": "str",
|
|
17780
|
+
"required": true,
|
|
17781
|
+
"positional": true,
|
|
17782
|
+
"help": "Notebook id from `notebooklm list` or full notebook URL"
|
|
17783
|
+
},
|
|
17784
|
+
{
|
|
17785
|
+
"name": "url",
|
|
17786
|
+
"type": "str",
|
|
17787
|
+
"required": false,
|
|
17788
|
+
"help": "Source URL to add (http/https). Pass exactly one of --url, --content, --file."
|
|
17789
|
+
},
|
|
17790
|
+
{
|
|
17791
|
+
"name": "content",
|
|
17792
|
+
"type": "str",
|
|
17793
|
+
"required": false,
|
|
17794
|
+
"help": "Raw text content to add as a Text source (max 10 MB)."
|
|
17795
|
+
},
|
|
17796
|
+
{
|
|
17797
|
+
"name": "file",
|
|
17798
|
+
"type": "str",
|
|
17799
|
+
"required": false,
|
|
17800
|
+
"help": "Local file path to upload as a source (max 52428800 bytes; pdf / txt / md / html / docx / etc.). Uses Google Drive's 3-step resumable upload protocol."
|
|
17801
|
+
},
|
|
17802
|
+
{
|
|
17803
|
+
"name": "title",
|
|
17804
|
+
"type": "str",
|
|
17805
|
+
"required": false,
|
|
17806
|
+
"help": "Title for the text source (default \"Text Source\"). Ignored for --url and --file."
|
|
17807
|
+
},
|
|
17808
|
+
{
|
|
17809
|
+
"name": "mime-type",
|
|
17810
|
+
"type": "str",
|
|
17811
|
+
"required": false,
|
|
17812
|
+
"help": "Override the auto-detected MIME type when --file is given."
|
|
17813
|
+
},
|
|
17814
|
+
{
|
|
17815
|
+
"name": "execute",
|
|
17816
|
+
"type": "boolean",
|
|
17817
|
+
"required": false,
|
|
17818
|
+
"help": "Actually add the remote source to the NotebookLM notebook"
|
|
17819
|
+
}
|
|
17820
|
+
],
|
|
17821
|
+
"columns": [
|
|
17822
|
+
"notebook_id",
|
|
17823
|
+
"source_id",
|
|
17824
|
+
"kind",
|
|
17825
|
+
"identifier",
|
|
17826
|
+
"notebook_url"
|
|
17827
|
+
],
|
|
17828
|
+
"type": "js",
|
|
17829
|
+
"modulePath": "notebooklm/add-source.js",
|
|
17830
|
+
"sourceFile": "notebooklm/add-source.js",
|
|
17831
|
+
"navigateBefore": false
|
|
17832
|
+
},
|
|
17833
|
+
{
|
|
17834
|
+
"site": "notebooklm",
|
|
17835
|
+
"name": "create",
|
|
17836
|
+
"description": "Create a new NotebookLM notebook with the given title",
|
|
17837
|
+
"access": "write",
|
|
17838
|
+
"domain": "notebooklm.google.com",
|
|
17839
|
+
"strategy": "cookie",
|
|
17840
|
+
"browser": true,
|
|
17841
|
+
"args": [
|
|
17842
|
+
{
|
|
17843
|
+
"name": "title",
|
|
17844
|
+
"type": "str",
|
|
17845
|
+
"required": true,
|
|
17846
|
+
"positional": true,
|
|
17847
|
+
"help": "Notebook title (1-200 chars)"
|
|
17848
|
+
},
|
|
17849
|
+
{
|
|
17850
|
+
"name": "emoji",
|
|
17851
|
+
"type": "str",
|
|
17852
|
+
"required": false,
|
|
17853
|
+
"help": "Notebook emoji icon (default 📒)"
|
|
17854
|
+
},
|
|
17855
|
+
{
|
|
17856
|
+
"name": "execute",
|
|
17857
|
+
"type": "boolean",
|
|
17858
|
+
"required": false,
|
|
17859
|
+
"help": "Actually create the remote NotebookLM notebook"
|
|
17860
|
+
}
|
|
17861
|
+
],
|
|
17862
|
+
"columns": [
|
|
17863
|
+
"id",
|
|
17864
|
+
"title",
|
|
17865
|
+
"emoji",
|
|
17866
|
+
"url"
|
|
17867
|
+
],
|
|
17868
|
+
"type": "js",
|
|
17869
|
+
"modulePath": "notebooklm/create.js",
|
|
17870
|
+
"sourceFile": "notebooklm/create.js",
|
|
17871
|
+
"navigateBefore": false
|
|
17872
|
+
},
|
|
17873
|
+
{
|
|
17874
|
+
"site": "notebooklm",
|
|
17875
|
+
"name": "current",
|
|
17876
|
+
"description": "Show metadata for the currently opened NotebookLM notebook tab",
|
|
17877
|
+
"access": "read",
|
|
17878
|
+
"domain": "notebooklm.google.com",
|
|
17879
|
+
"strategy": "cookie",
|
|
17880
|
+
"browser": true,
|
|
17881
|
+
"args": [],
|
|
17882
|
+
"columns": [
|
|
17883
|
+
"id",
|
|
17884
|
+
"title",
|
|
17885
|
+
"url",
|
|
17886
|
+
"source"
|
|
17887
|
+
],
|
|
17888
|
+
"type": "js",
|
|
17889
|
+
"modulePath": "notebooklm/current.js",
|
|
17890
|
+
"sourceFile": "notebooklm/current.js",
|
|
17891
|
+
"navigateBefore": false
|
|
17892
|
+
},
|
|
17893
|
+
{
|
|
17894
|
+
"site": "notebooklm",
|
|
17895
|
+
"name": "generate-audio",
|
|
17896
|
+
"description": "Trigger an Audio Overview (Deep Dive podcast) generation for a NotebookLM notebook, using all of its sources",
|
|
17897
|
+
"access": "write",
|
|
17898
|
+
"domain": "notebooklm.google.com",
|
|
17899
|
+
"strategy": "cookie",
|
|
17900
|
+
"browser": true,
|
|
17901
|
+
"args": [
|
|
17902
|
+
{
|
|
17903
|
+
"name": "notebook",
|
|
16589
17904
|
"type": "str",
|
|
16590
17905
|
"required": true,
|
|
16591
17906
|
"positional": true,
|
|
16592
|
-
"help": "
|
|
17907
|
+
"help": "Notebook id from `notebooklm list` or full notebook URL"
|
|
16593
17908
|
},
|
|
16594
17909
|
{
|
|
16595
|
-
"name": "
|
|
16596
|
-
"type": "
|
|
16597
|
-
"default": 100,
|
|
17910
|
+
"name": "execute",
|
|
17911
|
+
"type": "boolean",
|
|
16598
17912
|
"required": false,
|
|
16599
|
-
"help": "
|
|
17913
|
+
"help": "Actually trigger remote NotebookLM audio generation"
|
|
16600
17914
|
}
|
|
16601
17915
|
],
|
|
16602
17916
|
"columns": [
|
|
16603
|
-
"
|
|
16604
|
-
"
|
|
16605
|
-
"
|
|
16606
|
-
"
|
|
16607
|
-
"
|
|
16608
|
-
"snippet"
|
|
17917
|
+
"notebook_id",
|
|
17918
|
+
"audio_id",
|
|
17919
|
+
"source_count",
|
|
17920
|
+
"status",
|
|
17921
|
+
"notebook_url"
|
|
16609
17922
|
],
|
|
16610
17923
|
"type": "js",
|
|
16611
|
-
"modulePath": "
|
|
16612
|
-
"sourceFile": "
|
|
16613
|
-
"navigateBefore":
|
|
17924
|
+
"modulePath": "notebooklm/generate-audio.js",
|
|
17925
|
+
"sourceFile": "notebooklm/generate-audio.js",
|
|
17926
|
+
"navigateBefore": false
|
|
16614
17927
|
},
|
|
16615
17928
|
{
|
|
16616
17929
|
"site": "notebooklm",
|
|
16617
|
-
"name": "
|
|
16618
|
-
"description": "
|
|
16619
|
-
"access": "
|
|
17930
|
+
"name": "generate-slides",
|
|
17931
|
+
"description": "Trigger a Slide Deck (AI presentation) generation for a NotebookLM notebook, using all of its sources",
|
|
17932
|
+
"access": "write",
|
|
16620
17933
|
"domain": "notebooklm.google.com",
|
|
16621
17934
|
"strategy": "cookie",
|
|
16622
17935
|
"browser": true,
|
|
16623
|
-
"args": [
|
|
17936
|
+
"args": [
|
|
17937
|
+
{
|
|
17938
|
+
"name": "notebook",
|
|
17939
|
+
"type": "str",
|
|
17940
|
+
"required": true,
|
|
17941
|
+
"positional": true,
|
|
17942
|
+
"help": "Notebook id from `notebooklm list` or full notebook URL"
|
|
17943
|
+
},
|
|
17944
|
+
{
|
|
17945
|
+
"name": "length",
|
|
17946
|
+
"type": "str",
|
|
17947
|
+
"required": false,
|
|
17948
|
+
"help": "Slide deck length: 1=Short, 3=Default (default 3)"
|
|
17949
|
+
},
|
|
17950
|
+
{
|
|
17951
|
+
"name": "language",
|
|
17952
|
+
"type": "str",
|
|
17953
|
+
"required": false,
|
|
17954
|
+
"help": "Language code (default en)"
|
|
17955
|
+
},
|
|
17956
|
+
{
|
|
17957
|
+
"name": "execute",
|
|
17958
|
+
"type": "boolean",
|
|
17959
|
+
"required": false,
|
|
17960
|
+
"help": "Actually trigger remote NotebookLM slide deck generation"
|
|
17961
|
+
}
|
|
17962
|
+
],
|
|
16624
17963
|
"columns": [
|
|
16625
|
-
"
|
|
16626
|
-
"
|
|
16627
|
-
"
|
|
16628
|
-
"
|
|
17964
|
+
"notebook_id",
|
|
17965
|
+
"slides_id",
|
|
17966
|
+
"source_count",
|
|
17967
|
+
"status",
|
|
17968
|
+
"notebook_url"
|
|
16629
17969
|
],
|
|
16630
17970
|
"type": "js",
|
|
16631
|
-
"modulePath": "notebooklm/
|
|
16632
|
-
"sourceFile": "notebooklm/
|
|
17971
|
+
"modulePath": "notebooklm/generate-slides.js",
|
|
17972
|
+
"sourceFile": "notebooklm/generate-slides.js",
|
|
16633
17973
|
"navigateBefore": false
|
|
16634
17974
|
},
|
|
16635
17975
|
{
|
|
@@ -16943,6 +18283,52 @@
|
|
|
16943
18283
|
"sourceFile": "notebooklm/summary.js",
|
|
16944
18284
|
"navigateBefore": false
|
|
16945
18285
|
},
|
|
18286
|
+
{
|
|
18287
|
+
"site": "notebooklm",
|
|
18288
|
+
"name": "write-note",
|
|
18289
|
+
"description": "Create a Studio note in an existing NotebookLM notebook with the given title and Markdown content",
|
|
18290
|
+
"access": "write",
|
|
18291
|
+
"domain": "notebooklm.google.com",
|
|
18292
|
+
"strategy": "cookie",
|
|
18293
|
+
"browser": true,
|
|
18294
|
+
"args": [
|
|
18295
|
+
{
|
|
18296
|
+
"name": "notebook",
|
|
18297
|
+
"type": "str",
|
|
18298
|
+
"required": true,
|
|
18299
|
+
"positional": true,
|
|
18300
|
+
"help": "Notebook id from `notebooklm list` or full notebook URL"
|
|
18301
|
+
},
|
|
18302
|
+
{
|
|
18303
|
+
"name": "title",
|
|
18304
|
+
"type": "str",
|
|
18305
|
+
"required": true,
|
|
18306
|
+
"help": "Note title (1-200 chars)"
|
|
18307
|
+
},
|
|
18308
|
+
{
|
|
18309
|
+
"name": "content",
|
|
18310
|
+
"type": "str",
|
|
18311
|
+
"required": true,
|
|
18312
|
+
"help": "Note body as Markdown"
|
|
18313
|
+
},
|
|
18314
|
+
{
|
|
18315
|
+
"name": "execute",
|
|
18316
|
+
"type": "boolean",
|
|
18317
|
+
"required": false,
|
|
18318
|
+
"help": "Actually create the remote NotebookLM note"
|
|
18319
|
+
}
|
|
18320
|
+
],
|
|
18321
|
+
"columns": [
|
|
18322
|
+
"notebook_id",
|
|
18323
|
+
"note_id",
|
|
18324
|
+
"title",
|
|
18325
|
+
"notebook_url"
|
|
18326
|
+
],
|
|
18327
|
+
"type": "js",
|
|
18328
|
+
"modulePath": "notebooklm/write-note.js",
|
|
18329
|
+
"sourceFile": "notebooklm/write-note.js",
|
|
18330
|
+
"navigateBefore": false
|
|
18331
|
+
},
|
|
16946
18332
|
{
|
|
16947
18333
|
"site": "nowcoder",
|
|
16948
18334
|
"name": "companies",
|
|
@@ -25366,6 +26752,168 @@
|
|
|
25366
26752
|
"sourceFile": "uiverse/preview.js",
|
|
25367
26753
|
"navigateBefore": "https://uiverse.io"
|
|
25368
26754
|
},
|
|
26755
|
+
{
|
|
26756
|
+
"site": "upwork",
|
|
26757
|
+
"name": "detail",
|
|
26758
|
+
"aliases": [
|
|
26759
|
+
"job",
|
|
26760
|
+
"view"
|
|
26761
|
+
],
|
|
26762
|
+
"description": "Read the full Upwork job posting by ciphertext id (e.g. ~022054964136512093518)",
|
|
26763
|
+
"access": "read",
|
|
26764
|
+
"domain": "www.upwork.com",
|
|
26765
|
+
"strategy": "cookie",
|
|
26766
|
+
"browser": true,
|
|
26767
|
+
"args": [
|
|
26768
|
+
{
|
|
26769
|
+
"name": "id",
|
|
26770
|
+
"type": "str",
|
|
26771
|
+
"required": true,
|
|
26772
|
+
"positional": true,
|
|
26773
|
+
"help": "Job ciphertext id (~01… / ~02…) or full /jobs/~02… URL"
|
|
26774
|
+
}
|
|
26775
|
+
],
|
|
26776
|
+
"columns": [
|
|
26777
|
+
"id",
|
|
26778
|
+
"title",
|
|
26779
|
+
"type",
|
|
26780
|
+
"budget",
|
|
26781
|
+
"experienceLevel",
|
|
26782
|
+
"workload",
|
|
26783
|
+
"category",
|
|
26784
|
+
"skills",
|
|
26785
|
+
"description",
|
|
26786
|
+
"clientCountry",
|
|
26787
|
+
"clientSpent",
|
|
26788
|
+
"clientHires",
|
|
26789
|
+
"clientRating",
|
|
26790
|
+
"proposalsCount",
|
|
26791
|
+
"publishedOn",
|
|
26792
|
+
"url"
|
|
26793
|
+
],
|
|
26794
|
+
"type": "js",
|
|
26795
|
+
"modulePath": "upwork/detail.js",
|
|
26796
|
+
"sourceFile": "upwork/detail.js",
|
|
26797
|
+
"navigateBefore": false
|
|
26798
|
+
},
|
|
26799
|
+
{
|
|
26800
|
+
"site": "upwork",
|
|
26801
|
+
"name": "feed",
|
|
26802
|
+
"aliases": [
|
|
26803
|
+
"best-matches"
|
|
26804
|
+
],
|
|
26805
|
+
"description": "Upwork personalized jobs feed (best-matches | most-recent) — requires login",
|
|
26806
|
+
"access": "read",
|
|
26807
|
+
"domain": "www.upwork.com",
|
|
26808
|
+
"strategy": "cookie",
|
|
26809
|
+
"browser": true,
|
|
26810
|
+
"args": [
|
|
26811
|
+
{
|
|
26812
|
+
"name": "tab",
|
|
26813
|
+
"type": "str",
|
|
26814
|
+
"default": "best-matches",
|
|
26815
|
+
"required": false,
|
|
26816
|
+
"positional": true,
|
|
26817
|
+
"help": "Feed tab: best-matches | most-recent"
|
|
26818
|
+
},
|
|
26819
|
+
{
|
|
26820
|
+
"name": "limit",
|
|
26821
|
+
"type": "int",
|
|
26822
|
+
"default": 20,
|
|
26823
|
+
"required": false,
|
|
26824
|
+
"help": "Max rows to return (1-50, capped at one page)"
|
|
26825
|
+
}
|
|
26826
|
+
],
|
|
26827
|
+
"columns": [
|
|
26828
|
+
"rank",
|
|
26829
|
+
"id",
|
|
26830
|
+
"title",
|
|
26831
|
+
"type",
|
|
26832
|
+
"budget",
|
|
26833
|
+
"experienceLevel",
|
|
26834
|
+
"proposalsTier",
|
|
26835
|
+
"skills",
|
|
26836
|
+
"clientCountry",
|
|
26837
|
+
"clientRating",
|
|
26838
|
+
"publishedOn",
|
|
26839
|
+
"url"
|
|
26840
|
+
],
|
|
26841
|
+
"type": "js",
|
|
26842
|
+
"modulePath": "upwork/feed.js",
|
|
26843
|
+
"sourceFile": "upwork/feed.js",
|
|
26844
|
+
"navigateBefore": false
|
|
26845
|
+
},
|
|
26846
|
+
{
|
|
26847
|
+
"site": "upwork",
|
|
26848
|
+
"name": "search",
|
|
26849
|
+
"description": "Upwork keyword job search (logged-in browser session, US site)",
|
|
26850
|
+
"access": "read",
|
|
26851
|
+
"domain": "www.upwork.com",
|
|
26852
|
+
"strategy": "cookie",
|
|
26853
|
+
"browser": true,
|
|
26854
|
+
"args": [
|
|
26855
|
+
{
|
|
26856
|
+
"name": "query",
|
|
26857
|
+
"type": "str",
|
|
26858
|
+
"required": true,
|
|
26859
|
+
"positional": true,
|
|
26860
|
+
"help": "Job keyword (skill / title / company)"
|
|
26861
|
+
},
|
|
26862
|
+
{
|
|
26863
|
+
"name": "location",
|
|
26864
|
+
"type": "string",
|
|
26865
|
+
"default": "",
|
|
26866
|
+
"required": false,
|
|
26867
|
+
"help": "Country/city filter (e.g. \"United States\", \"Remote\")"
|
|
26868
|
+
},
|
|
26869
|
+
{
|
|
26870
|
+
"name": "category",
|
|
26871
|
+
"type": "string",
|
|
26872
|
+
"default": "",
|
|
26873
|
+
"required": false,
|
|
26874
|
+
"help": "Category uid filter (advanced; from job detail `category` slug)"
|
|
26875
|
+
},
|
|
26876
|
+
{
|
|
26877
|
+
"name": "sort",
|
|
26878
|
+
"type": "string",
|
|
26879
|
+
"default": "recency",
|
|
26880
|
+
"required": false,
|
|
26881
|
+
"help": "Sort: recency | relevance | client_total_charge | client_total_reviews"
|
|
26882
|
+
},
|
|
26883
|
+
{
|
|
26884
|
+
"name": "page",
|
|
26885
|
+
"type": "int",
|
|
26886
|
+
"default": 1,
|
|
26887
|
+
"required": false,
|
|
26888
|
+
"help": "Page number (1-based)"
|
|
26889
|
+
},
|
|
26890
|
+
{
|
|
26891
|
+
"name": "per_page",
|
|
26892
|
+
"type": "int",
|
|
26893
|
+
"default": 10,
|
|
26894
|
+
"required": false,
|
|
26895
|
+
"help": "Rows per page (10-50, capped at one page)"
|
|
26896
|
+
}
|
|
26897
|
+
],
|
|
26898
|
+
"columns": [
|
|
26899
|
+
"rank",
|
|
26900
|
+
"id",
|
|
26901
|
+
"title",
|
|
26902
|
+
"type",
|
|
26903
|
+
"budget",
|
|
26904
|
+
"experienceLevel",
|
|
26905
|
+
"proposalsTier",
|
|
26906
|
+
"skills",
|
|
26907
|
+
"clientCountry",
|
|
26908
|
+
"clientRating",
|
|
26909
|
+
"publishedOn",
|
|
26910
|
+
"url"
|
|
26911
|
+
],
|
|
26912
|
+
"type": "js",
|
|
26913
|
+
"modulePath": "upwork/search.js",
|
|
26914
|
+
"sourceFile": "upwork/search.js",
|
|
26915
|
+
"navigateBefore": false
|
|
26916
|
+
},
|
|
25369
26917
|
{
|
|
25370
26918
|
"site": "v2ex",
|
|
25371
26919
|
"name": "daily",
|
|
@@ -26445,6 +27993,63 @@
|
|
|
26445
27993
|
"sourceFile": "weread/book.js",
|
|
26446
27994
|
"navigateBefore": "https://weread.qq.com"
|
|
26447
27995
|
},
|
|
27996
|
+
{
|
|
27997
|
+
"site": "weread",
|
|
27998
|
+
"name": "book-search",
|
|
27999
|
+
"description": "Search within a WeRead book after resolving it by title",
|
|
28000
|
+
"access": "read",
|
|
28001
|
+
"domain": "weread.qq.com",
|
|
28002
|
+
"strategy": "public",
|
|
28003
|
+
"browser": false,
|
|
28004
|
+
"args": [
|
|
28005
|
+
{
|
|
28006
|
+
"name": "book",
|
|
28007
|
+
"type": "str",
|
|
28008
|
+
"required": true,
|
|
28009
|
+
"positional": true,
|
|
28010
|
+
"help": "Book title keyword, numeric bookId, or reader URL"
|
|
28011
|
+
},
|
|
28012
|
+
{
|
|
28013
|
+
"name": "query",
|
|
28014
|
+
"type": "str",
|
|
28015
|
+
"required": true,
|
|
28016
|
+
"positional": true,
|
|
28017
|
+
"help": "Keyword to search inside the selected book"
|
|
28018
|
+
},
|
|
28019
|
+
{
|
|
28020
|
+
"name": "book-rank",
|
|
28021
|
+
"type": "int",
|
|
28022
|
+
"default": 1,
|
|
28023
|
+
"required": false,
|
|
28024
|
+
"help": "Which book search result to use when book is a title keyword"
|
|
28025
|
+
},
|
|
28026
|
+
{
|
|
28027
|
+
"name": "limit",
|
|
28028
|
+
"type": "int",
|
|
28029
|
+
"default": 20,
|
|
28030
|
+
"required": false,
|
|
28031
|
+
"help": "Max in-book matches to return (1-100)"
|
|
28032
|
+
},
|
|
28033
|
+
{
|
|
28034
|
+
"name": "fragment-size",
|
|
28035
|
+
"type": "int",
|
|
28036
|
+
"default": 150,
|
|
28037
|
+
"required": false,
|
|
28038
|
+
"help": "Snippet length around each match (1-500)"
|
|
28039
|
+
},
|
|
28040
|
+
{
|
|
28041
|
+
"name": "raw",
|
|
28042
|
+
"type": "boolean",
|
|
28043
|
+
"default": false,
|
|
28044
|
+
"required": false,
|
|
28045
|
+
"help": "Output structured rows instead of markdown text"
|
|
28046
|
+
}
|
|
28047
|
+
],
|
|
28048
|
+
"defaultFormat": "md",
|
|
28049
|
+
"type": "js",
|
|
28050
|
+
"modulePath": "weread/book-search.js",
|
|
28051
|
+
"sourceFile": "weread/book-search.js"
|
|
28052
|
+
},
|
|
26448
28053
|
{
|
|
26449
28054
|
"site": "weread",
|
|
26450
28055
|
"name": "highlights",
|