@jackwener/opencli 1.7.2 → 1.7.3

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.
Files changed (75) hide show
  1. package/README.md +4 -1
  2. package/README.zh-CN.md +5 -2
  3. package/cli-manifest.json +658 -31
  4. package/clis/barchart/flow.js +1 -1
  5. package/clis/barchart/greeks.js +2 -2
  6. package/clis/barchart/options.js +2 -2
  7. package/clis/barchart/quote.js +1 -1
  8. package/clis/bilibili/feed.js +202 -48
  9. package/clis/boss/utils.js +2 -1
  10. package/clis/chatgpt/image.js +97 -0
  11. package/clis/chatgpt/utils.js +297 -0
  12. package/clis/{chatgpt → chatgpt-app}/ask.js +1 -1
  13. package/clis/{chatgpt → chatgpt-app}/model.js +1 -1
  14. package/clis/{chatgpt → chatgpt-app}/new.js +1 -1
  15. package/clis/{chatgpt → chatgpt-app}/read.js +1 -1
  16. package/clis/{chatgpt → chatgpt-app}/send.js +1 -1
  17. package/clis/{chatgpt → chatgpt-app}/status.js +1 -1
  18. package/clis/discord-app/delete.js +114 -0
  19. package/clis/douban/utils.js +29 -2
  20. package/clis/douban/utils.test.js +121 -1
  21. package/clis/ke/chengjiao.js +77 -0
  22. package/clis/ke/ershoufang.js +100 -0
  23. package/clis/ke/utils.js +104 -0
  24. package/clis/ke/xiaoqu.js +77 -0
  25. package/clis/ke/zufang.js +94 -0
  26. package/clis/maimai/search-talents.js +172 -0
  27. package/clis/mubu/doc.js +40 -0
  28. package/clis/mubu/docs.js +43 -0
  29. package/clis/mubu/notes.js +244 -0
  30. package/clis/mubu/recent.js +27 -0
  31. package/clis/mubu/search.js +62 -0
  32. package/clis/mubu/utils.js +304 -0
  33. package/clis/reuters/search.js +1 -1
  34. package/clis/xiaohongshu/comments.js +18 -6
  35. package/clis/xiaohongshu/comments.test.js +36 -0
  36. package/clis/xiaohongshu/creator-note-detail.js +2 -0
  37. package/clis/xiaohongshu/creator-note-detail.test.js +32 -0
  38. package/clis/xiaohongshu/creator-notes-summary.js +4 -0
  39. package/clis/xiaohongshu/creator-notes-summary.test.js +39 -1
  40. package/clis/xiaohongshu/creator-notes.js +1 -0
  41. package/clis/xiaohongshu/creator-profile.js +1 -0
  42. package/clis/xiaohongshu/creator-stats.js +1 -0
  43. package/clis/xiaohongshu/download.js +12 -0
  44. package/clis/xiaohongshu/download.test.js +30 -0
  45. package/clis/xiaohongshu/navigation.test.js +34 -0
  46. package/clis/xiaohongshu/note.js +14 -5
  47. package/clis/xiaohongshu/note.test.js +28 -0
  48. package/clis/xiaohongshu/publish.js +1 -0
  49. package/clis/xiaohongshu/search.js +1 -0
  50. package/clis/xiaohongshu/user.js +1 -0
  51. package/clis/yahoo-finance/quote.js +1 -1
  52. package/dist/src/browser/base-page.d.ts +9 -0
  53. package/dist/src/browser/base-page.js +19 -0
  54. package/dist/src/browser/cdp.js +10 -2
  55. package/dist/src/browser/daemon-client.d.ts +1 -0
  56. package/dist/src/cli.js +4 -2
  57. package/dist/src/daemon.js +5 -0
  58. package/dist/src/doctor.d.ts +1 -0
  59. package/dist/src/doctor.js +51 -2
  60. package/dist/src/electron-apps.js +1 -1
  61. package/dist/src/errors.d.ts +1 -0
  62. package/dist/src/errors.js +13 -0
  63. package/dist/src/execution.js +36 -9
  64. package/dist/src/execution.test.js +23 -0
  65. package/dist/src/logger.d.ts +2 -2
  66. package/dist/src/logger.js +4 -9
  67. package/dist/src/registry.js +3 -4
  68. package/dist/src/types.d.ts +2 -0
  69. package/dist/src/update-check.d.ts +14 -0
  70. package/dist/src/update-check.js +48 -3
  71. package/dist/src/update-check.test.d.ts +1 -0
  72. package/dist/src/update-check.test.js +31 -0
  73. package/package.json +1 -1
  74. package/scripts/fetch-adapters.js +35 -8
  75. /package/clis/{chatgpt → chatgpt-app}/ax.js +0 -0
package/cli-manifest.json CHANGED
@@ -1322,31 +1322,47 @@
1322
1322
  {
1323
1323
  "site": "bilibili",
1324
1324
  "name": "feed",
1325
- "description": "关注的人的动态时间线",
1325
+ "description": "动态时间线(不传 uid 查关注时间线,传 uid 查指定用户动态)",
1326
1326
  "domain": "www.bilibili.com",
1327
1327
  "strategy": "cookie",
1328
1328
  "browser": true,
1329
1329
  "args": [
1330
+ {
1331
+ "name": "uid",
1332
+ "type": "str",
1333
+ "required": false,
1334
+ "positional": true,
1335
+ "help": "用户 UID 或用户名(不传则显示关注时间线)"
1336
+ },
1330
1337
  {
1331
1338
  "name": "limit",
1332
1339
  "type": "int",
1333
1340
  "default": 20,
1334
1341
  "required": false,
1335
- "help": "Number of results"
1342
+ "help": "Max results to return"
1336
1343
  },
1337
1344
  {
1338
1345
  "name": "type",
1339
1346
  "type": "str",
1340
1347
  "default": "all",
1341
1348
  "required": false,
1342
- "help": "Filter: all, video, article"
1349
+ "help": "Filter: all, video, article, draw, text"
1350
+ },
1351
+ {
1352
+ "name": "pages",
1353
+ "type": "int",
1354
+ "default": 1,
1355
+ "required": false,
1356
+ "help": "Number of pages to fetch (each ~20 items)"
1343
1357
  }
1344
1358
  ],
1345
1359
  "columns": [
1346
1360
  "rank",
1361
+ "time",
1347
1362
  "author",
1348
1363
  "title",
1349
1364
  "type",
1365
+ "likes",
1350
1366
  "url"
1351
1367
  ],
1352
1368
  "type": "js",
@@ -1354,6 +1370,31 @@
1354
1370
  "sourceFile": "bilibili/feed.js",
1355
1371
  "navigateBefore": "https://www.bilibili.com"
1356
1372
  },
1373
+ {
1374
+ "site": "bilibili",
1375
+ "name": "feed-detail",
1376
+ "description": "查看 Bilibili 动态详情(支持充电专属内容)",
1377
+ "domain": "www.bilibili.com",
1378
+ "strategy": "cookie",
1379
+ "browser": true,
1380
+ "args": [
1381
+ {
1382
+ "name": "id",
1383
+ "type": "str",
1384
+ "required": true,
1385
+ "positional": true,
1386
+ "help": "动态 ID(从 feed 命令的 url 中获取)"
1387
+ }
1388
+ ],
1389
+ "columns": [
1390
+ "field",
1391
+ "value"
1392
+ ],
1393
+ "type": "js",
1394
+ "modulePath": "bilibili/feed.js",
1395
+ "sourceFile": "bilibili/feed.js",
1396
+ "navigateBefore": "https://www.bilibili.com"
1397
+ },
1357
1398
  {
1358
1399
  "site": "bilibili",
1359
1400
  "name": "following",
@@ -3148,6 +3189,47 @@
3148
3189
  },
3149
3190
  {
3150
3191
  "site": "chatgpt",
3192
+ "name": "image",
3193
+ "description": "Generate images with ChatGPT web and save them locally",
3194
+ "domain": "chatgpt.com",
3195
+ "strategy": "cookie",
3196
+ "browser": true,
3197
+ "args": [
3198
+ {
3199
+ "name": "prompt",
3200
+ "type": "str",
3201
+ "required": true,
3202
+ "positional": true,
3203
+ "help": "Image prompt to send to ChatGPT"
3204
+ },
3205
+ {
3206
+ "name": "op",
3207
+ "type": "str",
3208
+ "default": "/home/runner/Pictures/chatgpt",
3209
+ "required": false,
3210
+ "help": "Output directory"
3211
+ },
3212
+ {
3213
+ "name": "sd",
3214
+ "type": "boolean",
3215
+ "default": false,
3216
+ "required": false,
3217
+ "help": "Skip download shorthand; only show ChatGPT link"
3218
+ }
3219
+ ],
3220
+ "columns": [
3221
+ "status",
3222
+ "file",
3223
+ "link"
3224
+ ],
3225
+ "timeout": 240,
3226
+ "type": "js",
3227
+ "modulePath": "chatgpt/image.js",
3228
+ "sourceFile": "chatgpt/image.js",
3229
+ "navigateBefore": false
3230
+ },
3231
+ {
3232
+ "site": "chatgpt-app",
3151
3233
  "name": "ask",
3152
3234
  "description": "Send a prompt and wait for the AI response (send + wait + read)",
3153
3235
  "domain": "localhost",
@@ -3187,11 +3269,11 @@
3187
3269
  "Text"
3188
3270
  ],
3189
3271
  "type": "js",
3190
- "modulePath": "chatgpt/ask.js",
3191
- "sourceFile": "chatgpt/ask.js"
3272
+ "modulePath": "chatgpt-app/ask.js",
3273
+ "sourceFile": "chatgpt-app/ask.js"
3192
3274
  },
3193
3275
  {
3194
- "site": "chatgpt",
3276
+ "site": "chatgpt-app",
3195
3277
  "name": "model",
3196
3278
  "description": "Switch ChatGPT Desktop model/mode (auto, instant, thinking, 5.2-instant, 5.2-thinking)",
3197
3279
  "domain": "localhost",
@@ -3218,11 +3300,11 @@
3218
3300
  "Model"
3219
3301
  ],
3220
3302
  "type": "js",
3221
- "modulePath": "chatgpt/model.js",
3222
- "sourceFile": "chatgpt/model.js"
3303
+ "modulePath": "chatgpt-app/model.js",
3304
+ "sourceFile": "chatgpt-app/model.js"
3223
3305
  },
3224
3306
  {
3225
- "site": "chatgpt",
3307
+ "site": "chatgpt-app",
3226
3308
  "name": "new",
3227
3309
  "description": "Open a new chat in ChatGPT Desktop App",
3228
3310
  "domain": "localhost",
@@ -3233,11 +3315,11 @@
3233
3315
  "Status"
3234
3316
  ],
3235
3317
  "type": "js",
3236
- "modulePath": "chatgpt/new.js",
3237
- "sourceFile": "chatgpt/new.js"
3318
+ "modulePath": "chatgpt-app/new.js",
3319
+ "sourceFile": "chatgpt-app/new.js"
3238
3320
  },
3239
3321
  {
3240
- "site": "chatgpt",
3322
+ "site": "chatgpt-app",
3241
3323
  "name": "read",
3242
3324
  "description": "Read the last visible message from the focused ChatGPT Desktop window",
3243
3325
  "domain": "localhost",
@@ -3249,11 +3331,11 @@
3249
3331
  "Text"
3250
3332
  ],
3251
3333
  "type": "js",
3252
- "modulePath": "chatgpt/read.js",
3253
- "sourceFile": "chatgpt/read.js"
3334
+ "modulePath": "chatgpt-app/read.js",
3335
+ "sourceFile": "chatgpt-app/read.js"
3254
3336
  },
3255
3337
  {
3256
- "site": "chatgpt",
3338
+ "site": "chatgpt-app",
3257
3339
  "name": "send",
3258
3340
  "description": "Send a message to the active ChatGPT Desktop App window",
3259
3341
  "domain": "localhost",
@@ -3285,11 +3367,11 @@
3285
3367
  "Status"
3286
3368
  ],
3287
3369
  "type": "js",
3288
- "modulePath": "chatgpt/send.js",
3289
- "sourceFile": "chatgpt/send.js"
3370
+ "modulePath": "chatgpt-app/send.js",
3371
+ "sourceFile": "chatgpt-app/send.js"
3290
3372
  },
3291
3373
  {
3292
- "site": "chatgpt",
3374
+ "site": "chatgpt-app",
3293
3375
  "name": "status",
3294
3376
  "description": "Check if ChatGPT Desktop App is running natively on macOS",
3295
3377
  "domain": "localhost",
@@ -3300,8 +3382,8 @@
3300
3382
  "Status"
3301
3383
  ],
3302
3384
  "type": "js",
3303
- "modulePath": "chatgpt/status.js",
3304
- "sourceFile": "chatgpt/status.js"
3385
+ "modulePath": "chatgpt-app/status.js",
3386
+ "sourceFile": "chatgpt-app/status.js"
3305
3387
  },
3306
3388
  {
3307
3389
  "site": "chatwise",
@@ -4127,6 +4209,31 @@
4127
4209
  "sourceFile": "discord-app/channels.js",
4128
4210
  "navigateBefore": true
4129
4211
  },
4212
+ {
4213
+ "site": "discord-app",
4214
+ "name": "delete",
4215
+ "description": "Delete a message by its ID in the active Discord channel",
4216
+ "domain": "localhost",
4217
+ "strategy": "ui",
4218
+ "browser": true,
4219
+ "args": [
4220
+ {
4221
+ "name": "message_id",
4222
+ "type": "string",
4223
+ "required": true,
4224
+ "positional": true,
4225
+ "help": "The ID of the message to delete (visible via Developer Mode or the read command)"
4226
+ }
4227
+ ],
4228
+ "columns": [
4229
+ "status",
4230
+ "message"
4231
+ ],
4232
+ "type": "js",
4233
+ "modulePath": "discord-app/delete.js",
4234
+ "sourceFile": "discord-app/delete.js",
4235
+ "navigateBefore": true
4236
+ },
4130
4237
  {
4131
4238
  "site": "discord-app",
4132
4239
  "name": "members",
@@ -8298,6 +8405,206 @@
8298
8405
  "sourceFile": "jimeng/workspaces.js",
8299
8406
  "navigateBefore": "https://jimeng.jianying.com"
8300
8407
  },
8408
+ {
8409
+ "site": "ke",
8410
+ "name": "chengjiao",
8411
+ "description": "贝壳找房成交记录",
8412
+ "domain": "ke.com",
8413
+ "strategy": "cookie",
8414
+ "browser": true,
8415
+ "args": [
8416
+ {
8417
+ "name": "city",
8418
+ "type": "str",
8419
+ "default": "bj",
8420
+ "required": false,
8421
+ "help": "城市代码,如 bj(北京), sh(上海), gz(广州), sz(深圳), zs(中山)"
8422
+ },
8423
+ {
8424
+ "name": "district",
8425
+ "type": "str",
8426
+ "required": false,
8427
+ "help": "区域拼音,如 chaoyang, haidian"
8428
+ },
8429
+ {
8430
+ "name": "limit",
8431
+ "type": "int",
8432
+ "default": 20,
8433
+ "required": false,
8434
+ "help": "返回数量"
8435
+ }
8436
+ ],
8437
+ "columns": [
8438
+ "title",
8439
+ "community",
8440
+ "layout",
8441
+ "area",
8442
+ "deal_price",
8443
+ "unit_price",
8444
+ "deal_date"
8445
+ ],
8446
+ "type": "js",
8447
+ "modulePath": "ke/chengjiao.js",
8448
+ "sourceFile": "ke/chengjiao.js",
8449
+ "navigateBefore": "https://ke.com"
8450
+ },
8451
+ {
8452
+ "site": "ke",
8453
+ "name": "ershoufang",
8454
+ "description": "贝壳找房二手房列表",
8455
+ "domain": "ke.com",
8456
+ "strategy": "cookie",
8457
+ "browser": true,
8458
+ "args": [
8459
+ {
8460
+ "name": "city",
8461
+ "type": "str",
8462
+ "default": "bj",
8463
+ "required": false,
8464
+ "help": "城市代码,如 bj(北京), sh(上海), gz(广州), sz(深圳), zs(中山)"
8465
+ },
8466
+ {
8467
+ "name": "district",
8468
+ "type": "str",
8469
+ "required": false,
8470
+ "help": "区域拼音,如 chaoyang, haidian, tianhe"
8471
+ },
8472
+ {
8473
+ "name": "min-price",
8474
+ "type": "int",
8475
+ "required": false,
8476
+ "help": "最低总价(万元)"
8477
+ },
8478
+ {
8479
+ "name": "max-price",
8480
+ "type": "int",
8481
+ "required": false,
8482
+ "help": "最高总价(万元)"
8483
+ },
8484
+ {
8485
+ "name": "rooms",
8486
+ "type": "int",
8487
+ "required": false,
8488
+ "help": "几居室 (1-5)"
8489
+ },
8490
+ {
8491
+ "name": "limit",
8492
+ "type": "int",
8493
+ "default": 20,
8494
+ "required": false,
8495
+ "help": "返回数量"
8496
+ }
8497
+ ],
8498
+ "columns": [
8499
+ "title",
8500
+ "community",
8501
+ "layout",
8502
+ "area",
8503
+ "direction",
8504
+ "total_price",
8505
+ "unit_price",
8506
+ "url"
8507
+ ],
8508
+ "type": "js",
8509
+ "modulePath": "ke/ershoufang.js",
8510
+ "sourceFile": "ke/ershoufang.js",
8511
+ "navigateBefore": "https://ke.com"
8512
+ },
8513
+ {
8514
+ "site": "ke",
8515
+ "name": "xiaoqu",
8516
+ "description": "贝壳找房小区列表",
8517
+ "domain": "ke.com",
8518
+ "strategy": "cookie",
8519
+ "browser": true,
8520
+ "args": [
8521
+ {
8522
+ "name": "city",
8523
+ "type": "str",
8524
+ "default": "bj",
8525
+ "required": false,
8526
+ "help": "城市代码,如 bj(北京), sh(上海), gz(广州), sz(深圳), zs(中山)"
8527
+ },
8528
+ {
8529
+ "name": "district",
8530
+ "type": "str",
8531
+ "required": false,
8532
+ "help": "区域拼音,如 chaoyang, haidian"
8533
+ },
8534
+ {
8535
+ "name": "limit",
8536
+ "type": "int",
8537
+ "default": 20,
8538
+ "required": false,
8539
+ "help": "返回数量"
8540
+ }
8541
+ ],
8542
+ "columns": [
8543
+ "name",
8544
+ "district",
8545
+ "avg_price",
8546
+ "year",
8547
+ "on_sale"
8548
+ ],
8549
+ "type": "js",
8550
+ "modulePath": "ke/xiaoqu.js",
8551
+ "sourceFile": "ke/xiaoqu.js",
8552
+ "navigateBefore": "https://ke.com"
8553
+ },
8554
+ {
8555
+ "site": "ke",
8556
+ "name": "zufang",
8557
+ "description": "贝壳找房租房列表",
8558
+ "domain": "ke.com",
8559
+ "strategy": "cookie",
8560
+ "browser": true,
8561
+ "args": [
8562
+ {
8563
+ "name": "city",
8564
+ "type": "str",
8565
+ "default": "bj",
8566
+ "required": false,
8567
+ "help": "城市代码,如 bj(北京), sh(上海), gz(广州), sz(深圳), zs(中山)"
8568
+ },
8569
+ {
8570
+ "name": "district",
8571
+ "type": "str",
8572
+ "required": false,
8573
+ "help": "区域拼音,如 chaoyang, haidian"
8574
+ },
8575
+ {
8576
+ "name": "min-price",
8577
+ "type": "int",
8578
+ "required": false,
8579
+ "help": "最低月租(元)"
8580
+ },
8581
+ {
8582
+ "name": "max-price",
8583
+ "type": "int",
8584
+ "required": false,
8585
+ "help": "最高月租(元)"
8586
+ },
8587
+ {
8588
+ "name": "limit",
8589
+ "type": "int",
8590
+ "default": 20,
8591
+ "required": false,
8592
+ "help": "返回数量"
8593
+ }
8594
+ ],
8595
+ "columns": [
8596
+ "title",
8597
+ "community",
8598
+ "area",
8599
+ "layout",
8600
+ "price",
8601
+ "url"
8602
+ ],
8603
+ "type": "js",
8604
+ "modulePath": "ke/zufang.js",
8605
+ "sourceFile": "ke/zufang.js",
8606
+ "navigateBefore": "https://ke.com"
8607
+ },
8301
8608
  {
8302
8609
  "site": "lesswrong",
8303
8610
  "name": "comments",
@@ -9409,6 +9716,129 @@
9409
9716
  "modulePath": "lobsters/tag.js",
9410
9717
  "sourceFile": "lobsters/tag.js"
9411
9718
  },
9719
+ {
9720
+ "site": "maimai",
9721
+ "name": "search-talents",
9722
+ "description": "Search for candidates on Maimai with multi-dimensional filters",
9723
+ "domain": "maimai.cn",
9724
+ "strategy": "cookie",
9725
+ "browser": true,
9726
+ "args": [
9727
+ {
9728
+ "name": "query",
9729
+ "type": "str",
9730
+ "required": true,
9731
+ "positional": true,
9732
+ "help": "Search keyword (e.g., \"Java\", \"产品经理\")"
9733
+ },
9734
+ {
9735
+ "name": "page",
9736
+ "type": "int",
9737
+ "default": 0,
9738
+ "required": false,
9739
+ "help": "Page number (0-based)"
9740
+ },
9741
+ {
9742
+ "name": "size",
9743
+ "type": "int",
9744
+ "default": 20,
9745
+ "required": false,
9746
+ "help": "Results per page"
9747
+ },
9748
+ {
9749
+ "name": "positions",
9750
+ "type": "str",
9751
+ "required": false,
9752
+ "help": "Positions (e.g., \"运营\", \"Java 开发工程师\")"
9753
+ },
9754
+ {
9755
+ "name": "companies",
9756
+ "type": "str",
9757
+ "required": false,
9758
+ "help": "Companies, comma-separated (e.g., \"百度\", \"字节跳动,阿里巴巴\")"
9759
+ },
9760
+ {
9761
+ "name": "schools",
9762
+ "type": "str",
9763
+ "required": false,
9764
+ "help": "Schools, comma-separated (e.g., \"北京大学\", \"清华大学,复旦大学\")"
9765
+ },
9766
+ {
9767
+ "name": "provinces",
9768
+ "type": "str",
9769
+ "required": false,
9770
+ "help": "Provinces (e.g., \"北京\", \"上海\")"
9771
+ },
9772
+ {
9773
+ "name": "cities",
9774
+ "type": "str",
9775
+ "required": false,
9776
+ "help": "Cities (e.g., \"北京市\", \"上海市\")"
9777
+ },
9778
+ {
9779
+ "name": "worktimes",
9780
+ "type": "str",
9781
+ "required": false,
9782
+ "help": "Work years: 1=1-3y, 2=3-5y, 3=5-10y, 4=10+y"
9783
+ },
9784
+ {
9785
+ "name": "degrees",
9786
+ "type": "str",
9787
+ "required": false,
9788
+ "help": "Education: 1=大专,2=本科,3=硕士,4=博士,5=MBA"
9789
+ },
9790
+ {
9791
+ "name": "professions",
9792
+ "type": "str",
9793
+ "required": false,
9794
+ "help": "Industries: 01=互联网,02=金融,03=电子,04=通信"
9795
+ },
9796
+ {
9797
+ "name": "is_211",
9798
+ "type": "int",
9799
+ "required": false,
9800
+ "help": "211 university: 0=any, 1=211"
9801
+ },
9802
+ {
9803
+ "name": "is_985",
9804
+ "type": "int",
9805
+ "required": false,
9806
+ "help": "985 university: 0=any, 1=985"
9807
+ },
9808
+ {
9809
+ "name": "sortby",
9810
+ "type": "int",
9811
+ "default": 0,
9812
+ "required": false,
9813
+ "help": "Sort: 0=relevance, 1=activity, 2=work_years, 3=education"
9814
+ },
9815
+ {
9816
+ "name": "is_direct_chat",
9817
+ "type": "int",
9818
+ "default": 0,
9819
+ "required": false,
9820
+ "help": "Direct chat: 0=any, 1=available"
9821
+ }
9822
+ ],
9823
+ "columns": [
9824
+ "name",
9825
+ "job_title",
9826
+ "company",
9827
+ "historical_companies",
9828
+ "location",
9829
+ "work_year",
9830
+ "school",
9831
+ "degree",
9832
+ "active_status",
9833
+ "age",
9834
+ "tags",
9835
+ "mutual_friends"
9836
+ ],
9837
+ "type": "js",
9838
+ "modulePath": "maimai/search-talents.js",
9839
+ "sourceFile": "maimai/search-talents.js",
9840
+ "navigateBefore": "https://maimai.cn"
9841
+ },
9412
9842
  {
9413
9843
  "site": "medium",
9414
9844
  "name": "feed",
@@ -9518,6 +9948,203 @@
9518
9948
  "sourceFile": "medium/user.js",
9519
9949
  "navigateBefore": "https://medium.com"
9520
9950
  },
9951
+ {
9952
+ "site": "mubu",
9953
+ "name": "doc",
9954
+ "description": "读取幕布文档内容(默认输出 Markdown,可用 --output text 输出纯文本)",
9955
+ "domain": "mubu.com",
9956
+ "strategy": "cookie",
9957
+ "browser": true,
9958
+ "args": [
9959
+ {
9960
+ "name": "id",
9961
+ "type": "str",
9962
+ "required": true,
9963
+ "positional": true,
9964
+ "help": "文档 ID"
9965
+ },
9966
+ {
9967
+ "name": "output",
9968
+ "type": "str",
9969
+ "default": "md",
9970
+ "required": false,
9971
+ "help": "输出格式:md(默认,缩进列表 Markdown,适合导入 Obsidian)或 text(纯文本,适合终端阅读)"
9972
+ }
9973
+ ],
9974
+ "columns": [
9975
+ "content"
9976
+ ],
9977
+ "type": "js",
9978
+ "modulePath": "mubu/doc.js",
9979
+ "sourceFile": "mubu/doc.js",
9980
+ "navigateBefore": "https://mubu.com"
9981
+ },
9982
+ {
9983
+ "site": "mubu",
9984
+ "name": "docs",
9985
+ "description": "列出幕布文档(默认根目录,--starred 查看快速访问列表)",
9986
+ "domain": "mubu.com",
9987
+ "strategy": "cookie",
9988
+ "browser": true,
9989
+ "args": [
9990
+ {
9991
+ "name": "folder",
9992
+ "type": "str",
9993
+ "default": "0",
9994
+ "required": false,
9995
+ "help": "文件夹 ID(默认根目录 0)"
9996
+ },
9997
+ {
9998
+ "name": "starred",
9999
+ "type": "bool",
10000
+ "default": false,
10001
+ "required": false,
10002
+ "help": "只显示快速访问的文档和文件夹"
10003
+ },
10004
+ {
10005
+ "name": "limit",
10006
+ "type": "int",
10007
+ "default": 50,
10008
+ "required": false,
10009
+ "help": "最多显示条数"
10010
+ }
10011
+ ],
10012
+ "columns": [
10013
+ "type",
10014
+ "id",
10015
+ "name",
10016
+ "updated",
10017
+ "stared"
10018
+ ],
10019
+ "type": "js",
10020
+ "modulePath": "mubu/docs.js",
10021
+ "sourceFile": "mubu/docs.js",
10022
+ "navigateBefore": "https://mubu.com"
10023
+ },
10024
+ {
10025
+ "site": "mubu",
10026
+ "name": "notes",
10027
+ "description": "读取幕布速记(默认今天)。支持 --date/--month/--year/--from/--to 指定时间范围,--list 为概览模式(日期+条数)。",
10028
+ "domain": "mubu.com",
10029
+ "strategy": "cookie",
10030
+ "browser": true,
10031
+ "args": [
10032
+ {
10033
+ "name": "list",
10034
+ "type": "bool",
10035
+ "default": false,
10036
+ "required": false,
10037
+ "help": "概览模式:只输出日期和条数,不含速记内容。可与任意时间范围参数组合。"
10038
+ },
10039
+ {
10040
+ "name": "date",
10041
+ "type": "str",
10042
+ "required": false,
10043
+ "help": "单日,格式 YYYY-MM-DD。不指定时间范围则默认今天(系统本地时间)。"
10044
+ },
10045
+ {
10046
+ "name": "month",
10047
+ "type": "str",
10048
+ "required": false,
10049
+ "help": "整月,格式 YYYY-MM。"
10050
+ },
10051
+ {
10052
+ "name": "year",
10053
+ "type": "int",
10054
+ "required": false,
10055
+ "help": "整年,格式 YYYY(整数)。"
10056
+ },
10057
+ {
10058
+ "name": "from",
10059
+ "type": "str",
10060
+ "required": false,
10061
+ "help": "范围起始日,格式 YYYY-MM-DD。须与 --to 同时使用。"
10062
+ },
10063
+ {
10064
+ "name": "to",
10065
+ "type": "str",
10066
+ "required": false,
10067
+ "help": "范围截止日,格式 YYYY-MM-DD。须与 --from 同时使用。"
10068
+ },
10069
+ {
10070
+ "name": "output",
10071
+ "type": "str",
10072
+ "default": "md",
10073
+ "required": false,
10074
+ "help": "输出格式:md(默认,Markdown)或 text(纯文本)"
10075
+ }
10076
+ ],
10077
+ "columns": [
10078
+ "date",
10079
+ "content"
10080
+ ],
10081
+ "type": "js",
10082
+ "modulePath": "mubu/notes.js",
10083
+ "sourceFile": "mubu/notes.js",
10084
+ "navigateBefore": "https://mubu.com"
10085
+ },
10086
+ {
10087
+ "site": "mubu",
10088
+ "name": "recent",
10089
+ "description": "最近编辑的幕布文档",
10090
+ "domain": "mubu.com",
10091
+ "strategy": "cookie",
10092
+ "browser": true,
10093
+ "args": [
10094
+ {
10095
+ "name": "limit",
10096
+ "type": "int",
10097
+ "default": 20,
10098
+ "required": false,
10099
+ "help": "最多显示条数"
10100
+ }
10101
+ ],
10102
+ "columns": [
10103
+ "id",
10104
+ "name",
10105
+ "updated"
10106
+ ],
10107
+ "type": "js",
10108
+ "modulePath": "mubu/recent.js",
10109
+ "sourceFile": "mubu/recent.js",
10110
+ "navigateBefore": "https://mubu.com"
10111
+ },
10112
+ {
10113
+ "site": "mubu",
10114
+ "name": "search",
10115
+ "description": "全局搜索幕布文档和文件夹(标题+内容,服务端全量匹配)。结果含 type/id/name/path/hits/snippet 字段。",
10116
+ "domain": "mubu.com",
10117
+ "strategy": "cookie",
10118
+ "browser": true,
10119
+ "args": [
10120
+ {
10121
+ "name": "query",
10122
+ "type": "str",
10123
+ "required": true,
10124
+ "positional": true,
10125
+ "help": "搜索关键词"
10126
+ },
10127
+ {
10128
+ "name": "limit",
10129
+ "type": "int",
10130
+ "default": 100,
10131
+ "required": false,
10132
+ "help": "最多显示条数(默认 100,结果被截断时用 --limit N 调大)"
10133
+ }
10134
+ ],
10135
+ "columns": [
10136
+ "type",
10137
+ "id",
10138
+ "name",
10139
+ "path",
10140
+ "hits",
10141
+ "snippet"
10142
+ ],
10143
+ "type": "js",
10144
+ "modulePath": "mubu/search.js",
10145
+ "sourceFile": "mubu/search.js",
10146
+ "navigateBefore": "https://mubu.com"
10147
+ },
9521
10148
  {
9522
10149
  "site": "notebooklm",
9523
10150
  "name": "current",
@@ -15261,7 +15888,7 @@
15261
15888
  "type": "js",
15262
15889
  "modulePath": "xiaohongshu/comments.js",
15263
15890
  "sourceFile": "xiaohongshu/comments.js",
15264
- "navigateBefore": "https://www.xiaohongshu.com"
15891
+ "navigateBefore": false
15265
15892
  },
15266
15893
  {
15267
15894
  "site": "xiaohongshu",
@@ -15288,7 +15915,7 @@
15288
15915
  "type": "js",
15289
15916
  "modulePath": "xiaohongshu/creator-note-detail.js",
15290
15917
  "sourceFile": "xiaohongshu/creator-note-detail.js",
15291
- "navigateBefore": "https://creator.xiaohongshu.com"
15918
+ "navigateBefore": false
15292
15919
  },
15293
15920
  {
15294
15921
  "site": "xiaohongshu",
@@ -15320,7 +15947,7 @@
15320
15947
  "type": "js",
15321
15948
  "modulePath": "xiaohongshu/creator-notes-summary.js",
15322
15949
  "sourceFile": "xiaohongshu/creator-notes-summary.js",
15323
- "navigateBefore": "https://creator.xiaohongshu.com"
15950
+ "navigateBefore": false
15324
15951
  },
15325
15952
  {
15326
15953
  "site": "xiaohongshu",
@@ -15357,7 +15984,7 @@
15357
15984
  "type": "js",
15358
15985
  "modulePath": "xiaohongshu/creator-notes-summary.js",
15359
15986
  "sourceFile": "xiaohongshu/creator-notes-summary.js",
15360
- "navigateBefore": "https://creator.xiaohongshu.com"
15987
+ "navigateBefore": false
15361
15988
  },
15362
15989
  {
15363
15990
  "site": "xiaohongshu",
@@ -15374,7 +16001,7 @@
15374
16001
  "type": "js",
15375
16002
  "modulePath": "xiaohongshu/creator-profile.js",
15376
16003
  "sourceFile": "xiaohongshu/creator-profile.js",
15377
- "navigateBefore": "https://creator.xiaohongshu.com"
16004
+ "navigateBefore": false
15378
16005
  },
15379
16006
  {
15380
16007
  "site": "xiaohongshu",
@@ -15404,7 +16031,7 @@
15404
16031
  "type": "js",
15405
16032
  "modulePath": "xiaohongshu/creator-stats.js",
15406
16033
  "sourceFile": "xiaohongshu/creator-stats.js",
15407
- "navigateBefore": "https://creator.xiaohongshu.com"
16034
+ "navigateBefore": false
15408
16035
  },
15409
16036
  {
15410
16037
  "site": "xiaohongshu",
@@ -15438,7 +16065,7 @@
15438
16065
  "type": "js",
15439
16066
  "modulePath": "xiaohongshu/download.js",
15440
16067
  "sourceFile": "xiaohongshu/download.js",
15441
- "navigateBefore": "https://www.xiaohongshu.com"
16068
+ "navigateBefore": false
15442
16069
  },
15443
16070
  {
15444
16071
  "site": "xiaohongshu",
@@ -15491,7 +16118,7 @@
15491
16118
  "type": "js",
15492
16119
  "modulePath": "xiaohongshu/note.js",
15493
16120
  "sourceFile": "xiaohongshu/note.js",
15494
- "navigateBefore": "https://www.xiaohongshu.com"
16121
+ "navigateBefore": false
15495
16122
  },
15496
16123
  {
15497
16124
  "site": "xiaohongshu",
@@ -15577,7 +16204,7 @@
15577
16204
  "type": "js",
15578
16205
  "modulePath": "xiaohongshu/publish.js",
15579
16206
  "sourceFile": "xiaohongshu/publish.js",
15580
- "navigateBefore": "https://creator.xiaohongshu.com"
16207
+ "navigateBefore": false
15581
16208
  },
15582
16209
  {
15583
16210
  "site": "xiaohongshu",
@@ -15613,7 +16240,7 @@
15613
16240
  "type": "js",
15614
16241
  "modulePath": "xiaohongshu/search.js",
15615
16242
  "sourceFile": "xiaohongshu/search.js",
15616
- "navigateBefore": "https://www.xiaohongshu.com"
16243
+ "navigateBefore": false
15617
16244
  },
15618
16245
  {
15619
16246
  "site": "xiaohongshu",
@@ -15648,7 +16275,7 @@
15648
16275
  "type": "js",
15649
16276
  "modulePath": "xiaohongshu/user.js",
15650
16277
  "sourceFile": "xiaohongshu/user.js",
15651
- "navigateBefore": "https://www.xiaohongshu.com"
16278
+ "navigateBefore": false
15652
16279
  },
15653
16280
  {
15654
16281
  "site": "xiaoyuzhou",