@eightstate/escli 0.7.1 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/mcp/index.js +23 -0
- package/dist/commands/mcp/register.js +71 -0
- package/dist/commands/mcp/revoke.js +35 -0
- package/dist/commands/mcp/serve.js +75 -0
- package/dist/commands/mcp/status.js +67 -0
- package/dist/commands/notion/comments/add.js +7 -3
- package/dist/commands/notion/comments/reply.js +7 -3
- package/dist/commands/notion/db/create.js +26 -5
- package/dist/commands/notion/ds/create.js +3 -3
- package/dist/commands/notion/page/replace-content.js +1 -4
- package/dist/commands/notion/page/replace-text.js +1 -4
- package/dist/commands/notion/upload/index.js +20 -3
- package/dist/commands/notion/view/create.js +3 -1
- package/dist/lib/manifest.js +1 -1
- package/dist/lib/notion/comments/shared.js +127 -3
- package/dist/lib/notion/page/content-common.js +1 -1
- package/dist/lib/registry.js +36 -0
- package/dist/services/mcp/audit.js +18 -0
- package/dist/services/mcp/cloudflare.js +88 -0
- package/dist/services/mcp/cloudflared.js +59 -0
- package/dist/services/mcp/common.js +65 -0
- package/dist/services/mcp/config.js +131 -0
- package/dist/services/mcp/gate-client.js +92 -0
- package/dist/services/mcp/protocol.js +68 -0
- package/dist/services/mcp/server.js +131 -0
- package/dist/services/mcp/tools.js +228 -0
- package/dist/services/notion.js +55 -3
- package/oclif.manifest.json +565 -1
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -3385,6 +3385,556 @@
|
|
|
3385
3385
|
"index.js"
|
|
3386
3386
|
]
|
|
3387
3387
|
},
|
|
3388
|
+
"mcp": {
|
|
3389
|
+
"aliases": [],
|
|
3390
|
+
"args": {},
|
|
3391
|
+
"description": "Register, serve, inspect, and revoke a local MCP machine exposed through a Cloudflare tunnel.",
|
|
3392
|
+
"examples": [
|
|
3393
|
+
"<%= config.bin %> mcp register --root . --label \"work repo\"",
|
|
3394
|
+
"<%= config.bin %> mcp serve --root .",
|
|
3395
|
+
"<%= config.bin %> mcp status",
|
|
3396
|
+
"<%= config.bin %> mcp revoke --slug my-repo"
|
|
3397
|
+
],
|
|
3398
|
+
"flags": {
|
|
3399
|
+
"json": {
|
|
3400
|
+
"description": "Format output as json.",
|
|
3401
|
+
"helpGroup": "GLOBAL",
|
|
3402
|
+
"name": "json",
|
|
3403
|
+
"allowNo": false,
|
|
3404
|
+
"type": "boolean"
|
|
3405
|
+
},
|
|
3406
|
+
"quiet": {
|
|
3407
|
+
"description": "Suppress diagnostic output.",
|
|
3408
|
+
"name": "quiet",
|
|
3409
|
+
"allowNo": false,
|
|
3410
|
+
"type": "boolean"
|
|
3411
|
+
},
|
|
3412
|
+
"api-key": {
|
|
3413
|
+
"description": "API key override.",
|
|
3414
|
+
"helpGroup": "GLOBAL",
|
|
3415
|
+
"name": "api-key",
|
|
3416
|
+
"hasDynamicHelp": false,
|
|
3417
|
+
"multiple": false,
|
|
3418
|
+
"type": "option"
|
|
3419
|
+
},
|
|
3420
|
+
"base-url": {
|
|
3421
|
+
"description": "Base URL override.",
|
|
3422
|
+
"helpGroup": "GLOBAL",
|
|
3423
|
+
"name": "base-url",
|
|
3424
|
+
"hasDynamicHelp": false,
|
|
3425
|
+
"multiple": false,
|
|
3426
|
+
"type": "option"
|
|
3427
|
+
},
|
|
3428
|
+
"timeout": {
|
|
3429
|
+
"description": "Request timeout in seconds.",
|
|
3430
|
+
"helpGroup": "GLOBAL",
|
|
3431
|
+
"name": "timeout",
|
|
3432
|
+
"default": 300,
|
|
3433
|
+
"hasDynamicHelp": false,
|
|
3434
|
+
"multiple": false,
|
|
3435
|
+
"type": "option"
|
|
3436
|
+
},
|
|
3437
|
+
"describe": {
|
|
3438
|
+
"description": "Emit compact machine-readable command description.",
|
|
3439
|
+
"helpGroup": "GLOBAL",
|
|
3440
|
+
"name": "describe",
|
|
3441
|
+
"allowNo": false,
|
|
3442
|
+
"type": "boolean"
|
|
3443
|
+
},
|
|
3444
|
+
"schema": {
|
|
3445
|
+
"description": "Emit full machine-readable command schema.",
|
|
3446
|
+
"helpGroup": "GLOBAL",
|
|
3447
|
+
"name": "schema",
|
|
3448
|
+
"allowNo": false,
|
|
3449
|
+
"type": "boolean"
|
|
3450
|
+
},
|
|
3451
|
+
"version": {
|
|
3452
|
+
"char": "v",
|
|
3453
|
+
"description": "Emit version envelope.",
|
|
3454
|
+
"helpGroup": "GLOBAL",
|
|
3455
|
+
"name": "version",
|
|
3456
|
+
"allowNo": false,
|
|
3457
|
+
"type": "boolean"
|
|
3458
|
+
}
|
|
3459
|
+
},
|
|
3460
|
+
"hasDynamicHelp": false,
|
|
3461
|
+
"hiddenAliases": [],
|
|
3462
|
+
"id": "mcp",
|
|
3463
|
+
"pluginAlias": "@eightstate/escli",
|
|
3464
|
+
"pluginName": "@eightstate/escli",
|
|
3465
|
+
"pluginType": "core",
|
|
3466
|
+
"strict": true,
|
|
3467
|
+
"summary": "Expose a local directory to ChatGPT via a remote MCP server",
|
|
3468
|
+
"enableJsonFlag": true,
|
|
3469
|
+
"emitsJsonEnvelope": false,
|
|
3470
|
+
"errors": [
|
|
3471
|
+
"usage.invalid"
|
|
3472
|
+
],
|
|
3473
|
+
"isESM": true,
|
|
3474
|
+
"relativePath": [
|
|
3475
|
+
"dist",
|
|
3476
|
+
"commands",
|
|
3477
|
+
"mcp",
|
|
3478
|
+
"index.js"
|
|
3479
|
+
]
|
|
3480
|
+
},
|
|
3481
|
+
"mcp:register": {
|
|
3482
|
+
"aliases": [],
|
|
3483
|
+
"args": {},
|
|
3484
|
+
"examples": [
|
|
3485
|
+
"<%= config.bin %> mcp register --root .",
|
|
3486
|
+
"<%= config.bin %> mcp register --root . --slug my-repo --label \"My Repo\""
|
|
3487
|
+
],
|
|
3488
|
+
"flags": {
|
|
3489
|
+
"json": {
|
|
3490
|
+
"description": "Format output as json.",
|
|
3491
|
+
"helpGroup": "GLOBAL",
|
|
3492
|
+
"name": "json",
|
|
3493
|
+
"allowNo": false,
|
|
3494
|
+
"type": "boolean"
|
|
3495
|
+
},
|
|
3496
|
+
"quiet": {
|
|
3497
|
+
"description": "Suppress diagnostic output.",
|
|
3498
|
+
"name": "quiet",
|
|
3499
|
+
"allowNo": false,
|
|
3500
|
+
"type": "boolean"
|
|
3501
|
+
},
|
|
3502
|
+
"api-key": {
|
|
3503
|
+
"description": "API key override.",
|
|
3504
|
+
"helpGroup": "GLOBAL",
|
|
3505
|
+
"name": "api-key",
|
|
3506
|
+
"hasDynamicHelp": false,
|
|
3507
|
+
"multiple": false,
|
|
3508
|
+
"type": "option"
|
|
3509
|
+
},
|
|
3510
|
+
"base-url": {
|
|
3511
|
+
"description": "Base URL override.",
|
|
3512
|
+
"helpGroup": "GLOBAL",
|
|
3513
|
+
"name": "base-url",
|
|
3514
|
+
"hasDynamicHelp": false,
|
|
3515
|
+
"multiple": false,
|
|
3516
|
+
"type": "option"
|
|
3517
|
+
},
|
|
3518
|
+
"timeout": {
|
|
3519
|
+
"description": "Request timeout in seconds.",
|
|
3520
|
+
"helpGroup": "GLOBAL",
|
|
3521
|
+
"name": "timeout",
|
|
3522
|
+
"default": 300,
|
|
3523
|
+
"hasDynamicHelp": false,
|
|
3524
|
+
"multiple": false,
|
|
3525
|
+
"type": "option"
|
|
3526
|
+
},
|
|
3527
|
+
"describe": {
|
|
3528
|
+
"description": "Emit compact machine-readable command description.",
|
|
3529
|
+
"helpGroup": "GLOBAL",
|
|
3530
|
+
"name": "describe",
|
|
3531
|
+
"allowNo": false,
|
|
3532
|
+
"type": "boolean"
|
|
3533
|
+
},
|
|
3534
|
+
"schema": {
|
|
3535
|
+
"description": "Emit full machine-readable command schema.",
|
|
3536
|
+
"helpGroup": "GLOBAL",
|
|
3537
|
+
"name": "schema",
|
|
3538
|
+
"allowNo": false,
|
|
3539
|
+
"type": "boolean"
|
|
3540
|
+
},
|
|
3541
|
+
"version": {
|
|
3542
|
+
"char": "v",
|
|
3543
|
+
"description": "Emit version envelope.",
|
|
3544
|
+
"helpGroup": "GLOBAL",
|
|
3545
|
+
"name": "version",
|
|
3546
|
+
"allowNo": false,
|
|
3547
|
+
"type": "boolean"
|
|
3548
|
+
},
|
|
3549
|
+
"root": {
|
|
3550
|
+
"description": "Root directory to expose.",
|
|
3551
|
+
"name": "root",
|
|
3552
|
+
"required": true,
|
|
3553
|
+
"hasDynamicHelp": false,
|
|
3554
|
+
"multiple": false,
|
|
3555
|
+
"type": "option"
|
|
3556
|
+
},
|
|
3557
|
+
"slug": {
|
|
3558
|
+
"description": "Machine slug. Defaults from --label, root basename, or hostname.",
|
|
3559
|
+
"name": "slug",
|
|
3560
|
+
"hasDynamicHelp": false,
|
|
3561
|
+
"multiple": false,
|
|
3562
|
+
"type": "option"
|
|
3563
|
+
},
|
|
3564
|
+
"port": {
|
|
3565
|
+
"description": "Local MCP origin port.",
|
|
3566
|
+
"name": "port",
|
|
3567
|
+
"default": 9315,
|
|
3568
|
+
"hasDynamicHelp": false,
|
|
3569
|
+
"multiple": false,
|
|
3570
|
+
"type": "option"
|
|
3571
|
+
},
|
|
3572
|
+
"label": {
|
|
3573
|
+
"description": "Human label for this machine.",
|
|
3574
|
+
"name": "label",
|
|
3575
|
+
"hasDynamicHelp": false,
|
|
3576
|
+
"multiple": false,
|
|
3577
|
+
"type": "option"
|
|
3578
|
+
}
|
|
3579
|
+
},
|
|
3580
|
+
"hasDynamicHelp": false,
|
|
3581
|
+
"hiddenAliases": [],
|
|
3582
|
+
"id": "mcp:register",
|
|
3583
|
+
"pluginAlias": "@eightstate/escli",
|
|
3584
|
+
"pluginName": "@eightstate/escli",
|
|
3585
|
+
"pluginType": "core",
|
|
3586
|
+
"strict": true,
|
|
3587
|
+
"summary": "Register a local directory as an MCP machine",
|
|
3588
|
+
"enableJsonFlag": true,
|
|
3589
|
+
"emitsJsonEnvelope": false,
|
|
3590
|
+
"errors": [
|
|
3591
|
+
"auth.required",
|
|
3592
|
+
"usage.invalid",
|
|
3593
|
+
"config.invalid",
|
|
3594
|
+
"api.error",
|
|
3595
|
+
"gate.unavailable",
|
|
3596
|
+
"gate.invalid_response",
|
|
3597
|
+
"network.error"
|
|
3598
|
+
],
|
|
3599
|
+
"isESM": true,
|
|
3600
|
+
"relativePath": [
|
|
3601
|
+
"dist",
|
|
3602
|
+
"commands",
|
|
3603
|
+
"mcp",
|
|
3604
|
+
"register.js"
|
|
3605
|
+
]
|
|
3606
|
+
},
|
|
3607
|
+
"mcp:revoke": {
|
|
3608
|
+
"aliases": [],
|
|
3609
|
+
"args": {},
|
|
3610
|
+
"examples": [
|
|
3611
|
+
"<%= config.bin %> mcp revoke --slug my-repo",
|
|
3612
|
+
"<%= config.bin %> mcp revoke --slug my-repo --yes"
|
|
3613
|
+
],
|
|
3614
|
+
"flags": {
|
|
3615
|
+
"json": {
|
|
3616
|
+
"description": "Format output as json.",
|
|
3617
|
+
"helpGroup": "GLOBAL",
|
|
3618
|
+
"name": "json",
|
|
3619
|
+
"allowNo": false,
|
|
3620
|
+
"type": "boolean"
|
|
3621
|
+
},
|
|
3622
|
+
"quiet": {
|
|
3623
|
+
"description": "Suppress diagnostic output.",
|
|
3624
|
+
"name": "quiet",
|
|
3625
|
+
"allowNo": false,
|
|
3626
|
+
"type": "boolean"
|
|
3627
|
+
},
|
|
3628
|
+
"api-key": {
|
|
3629
|
+
"description": "API key override.",
|
|
3630
|
+
"helpGroup": "GLOBAL",
|
|
3631
|
+
"name": "api-key",
|
|
3632
|
+
"hasDynamicHelp": false,
|
|
3633
|
+
"multiple": false,
|
|
3634
|
+
"type": "option"
|
|
3635
|
+
},
|
|
3636
|
+
"base-url": {
|
|
3637
|
+
"description": "Base URL override.",
|
|
3638
|
+
"helpGroup": "GLOBAL",
|
|
3639
|
+
"name": "base-url",
|
|
3640
|
+
"hasDynamicHelp": false,
|
|
3641
|
+
"multiple": false,
|
|
3642
|
+
"type": "option"
|
|
3643
|
+
},
|
|
3644
|
+
"timeout": {
|
|
3645
|
+
"description": "Request timeout in seconds.",
|
|
3646
|
+
"helpGroup": "GLOBAL",
|
|
3647
|
+
"name": "timeout",
|
|
3648
|
+
"default": 300,
|
|
3649
|
+
"hasDynamicHelp": false,
|
|
3650
|
+
"multiple": false,
|
|
3651
|
+
"type": "option"
|
|
3652
|
+
},
|
|
3653
|
+
"describe": {
|
|
3654
|
+
"description": "Emit compact machine-readable command description.",
|
|
3655
|
+
"helpGroup": "GLOBAL",
|
|
3656
|
+
"name": "describe",
|
|
3657
|
+
"allowNo": false,
|
|
3658
|
+
"type": "boolean"
|
|
3659
|
+
},
|
|
3660
|
+
"schema": {
|
|
3661
|
+
"description": "Emit full machine-readable command schema.",
|
|
3662
|
+
"helpGroup": "GLOBAL",
|
|
3663
|
+
"name": "schema",
|
|
3664
|
+
"allowNo": false,
|
|
3665
|
+
"type": "boolean"
|
|
3666
|
+
},
|
|
3667
|
+
"version": {
|
|
3668
|
+
"char": "v",
|
|
3669
|
+
"description": "Emit version envelope.",
|
|
3670
|
+
"helpGroup": "GLOBAL",
|
|
3671
|
+
"name": "version",
|
|
3672
|
+
"allowNo": false,
|
|
3673
|
+
"type": "boolean"
|
|
3674
|
+
},
|
|
3675
|
+
"slug": {
|
|
3676
|
+
"description": "Machine slug. Optional only when one config exists.",
|
|
3677
|
+
"name": "slug",
|
|
3678
|
+
"hasDynamicHelp": false,
|
|
3679
|
+
"multiple": false,
|
|
3680
|
+
"type": "option"
|
|
3681
|
+
},
|
|
3682
|
+
"cloudflare": {
|
|
3683
|
+
"description": "Also delete Cloudflare DNS record and tunnel.",
|
|
3684
|
+
"name": "cloudflare",
|
|
3685
|
+
"allowNo": false,
|
|
3686
|
+
"type": "boolean"
|
|
3687
|
+
},
|
|
3688
|
+
"yes": {
|
|
3689
|
+
"char": "y",
|
|
3690
|
+
"description": "Skip confirmation for --cloudflare.",
|
|
3691
|
+
"name": "yes",
|
|
3692
|
+
"allowNo": false,
|
|
3693
|
+
"type": "boolean"
|
|
3694
|
+
}
|
|
3695
|
+
},
|
|
3696
|
+
"hasDynamicHelp": false,
|
|
3697
|
+
"hiddenAliases": [],
|
|
3698
|
+
"id": "mcp:revoke",
|
|
3699
|
+
"pluginAlias": "@eightstate/escli",
|
|
3700
|
+
"pluginName": "@eightstate/escli",
|
|
3701
|
+
"pluginType": "core",
|
|
3702
|
+
"strict": true,
|
|
3703
|
+
"summary": "Revoke an MCP machine and delete its Cloudflare tunnel",
|
|
3704
|
+
"enableJsonFlag": true,
|
|
3705
|
+
"emitsJsonEnvelope": false,
|
|
3706
|
+
"errors": [
|
|
3707
|
+
"config.invalid",
|
|
3708
|
+
"auth.required",
|
|
3709
|
+
"gate.unavailable",
|
|
3710
|
+
"api.error"
|
|
3711
|
+
],
|
|
3712
|
+
"isESM": true,
|
|
3713
|
+
"relativePath": [
|
|
3714
|
+
"dist",
|
|
3715
|
+
"commands",
|
|
3716
|
+
"mcp",
|
|
3717
|
+
"revoke.js"
|
|
3718
|
+
]
|
|
3719
|
+
},
|
|
3720
|
+
"mcp:serve": {
|
|
3721
|
+
"aliases": [],
|
|
3722
|
+
"args": {},
|
|
3723
|
+
"examples": [
|
|
3724
|
+
"<%= config.bin %> mcp serve --root .",
|
|
3725
|
+
"<%= config.bin %> mcp serve --root . --slug my-repo --verbose"
|
|
3726
|
+
],
|
|
3727
|
+
"flags": {
|
|
3728
|
+
"json": {
|
|
3729
|
+
"description": "Format output as json.",
|
|
3730
|
+
"helpGroup": "GLOBAL",
|
|
3731
|
+
"name": "json",
|
|
3732
|
+
"allowNo": false,
|
|
3733
|
+
"type": "boolean"
|
|
3734
|
+
},
|
|
3735
|
+
"quiet": {
|
|
3736
|
+
"description": "Suppress diagnostic output.",
|
|
3737
|
+
"name": "quiet",
|
|
3738
|
+
"allowNo": false,
|
|
3739
|
+
"type": "boolean"
|
|
3740
|
+
},
|
|
3741
|
+
"api-key": {
|
|
3742
|
+
"description": "API key override.",
|
|
3743
|
+
"helpGroup": "GLOBAL",
|
|
3744
|
+
"name": "api-key",
|
|
3745
|
+
"hasDynamicHelp": false,
|
|
3746
|
+
"multiple": false,
|
|
3747
|
+
"type": "option"
|
|
3748
|
+
},
|
|
3749
|
+
"base-url": {
|
|
3750
|
+
"description": "Base URL override.",
|
|
3751
|
+
"helpGroup": "GLOBAL",
|
|
3752
|
+
"name": "base-url",
|
|
3753
|
+
"hasDynamicHelp": false,
|
|
3754
|
+
"multiple": false,
|
|
3755
|
+
"type": "option"
|
|
3756
|
+
},
|
|
3757
|
+
"timeout": {
|
|
3758
|
+
"description": "Request timeout in seconds.",
|
|
3759
|
+
"helpGroup": "GLOBAL",
|
|
3760
|
+
"name": "timeout",
|
|
3761
|
+
"default": 300,
|
|
3762
|
+
"hasDynamicHelp": false,
|
|
3763
|
+
"multiple": false,
|
|
3764
|
+
"type": "option"
|
|
3765
|
+
},
|
|
3766
|
+
"describe": {
|
|
3767
|
+
"description": "Emit compact machine-readable command description.",
|
|
3768
|
+
"helpGroup": "GLOBAL",
|
|
3769
|
+
"name": "describe",
|
|
3770
|
+
"allowNo": false,
|
|
3771
|
+
"type": "boolean"
|
|
3772
|
+
},
|
|
3773
|
+
"schema": {
|
|
3774
|
+
"description": "Emit full machine-readable command schema.",
|
|
3775
|
+
"helpGroup": "GLOBAL",
|
|
3776
|
+
"name": "schema",
|
|
3777
|
+
"allowNo": false,
|
|
3778
|
+
"type": "boolean"
|
|
3779
|
+
},
|
|
3780
|
+
"version": {
|
|
3781
|
+
"char": "v",
|
|
3782
|
+
"description": "Emit version envelope.",
|
|
3783
|
+
"helpGroup": "GLOBAL",
|
|
3784
|
+
"name": "version",
|
|
3785
|
+
"allowNo": false,
|
|
3786
|
+
"type": "boolean"
|
|
3787
|
+
},
|
|
3788
|
+
"root": {
|
|
3789
|
+
"description": "Root directory to expose.",
|
|
3790
|
+
"name": "root",
|
|
3791
|
+
"required": true,
|
|
3792
|
+
"hasDynamicHelp": false,
|
|
3793
|
+
"multiple": false,
|
|
3794
|
+
"type": "option"
|
|
3795
|
+
},
|
|
3796
|
+
"slug": {
|
|
3797
|
+
"description": "Machine slug. Optional only when one config exists.",
|
|
3798
|
+
"name": "slug",
|
|
3799
|
+
"hasDynamicHelp": false,
|
|
3800
|
+
"multiple": false,
|
|
3801
|
+
"type": "option"
|
|
3802
|
+
},
|
|
3803
|
+
"port": {
|
|
3804
|
+
"description": "Override local MCP origin port.",
|
|
3805
|
+
"name": "port",
|
|
3806
|
+
"hasDynamicHelp": false,
|
|
3807
|
+
"multiple": false,
|
|
3808
|
+
"type": "option"
|
|
3809
|
+
},
|
|
3810
|
+
"verbose": {
|
|
3811
|
+
"description": "Print redacted per-call and cloudflared logs.",
|
|
3812
|
+
"name": "verbose",
|
|
3813
|
+
"allowNo": false,
|
|
3814
|
+
"type": "boolean"
|
|
3815
|
+
}
|
|
3816
|
+
},
|
|
3817
|
+
"hasDynamicHelp": false,
|
|
3818
|
+
"hiddenAliases": [],
|
|
3819
|
+
"id": "mcp:serve",
|
|
3820
|
+
"pluginAlias": "@eightstate/escli",
|
|
3821
|
+
"pluginName": "@eightstate/escli",
|
|
3822
|
+
"pluginType": "core",
|
|
3823
|
+
"strict": true,
|
|
3824
|
+
"summary": "Serve the local MCP origin and Cloudflare tunnel",
|
|
3825
|
+
"enableJsonFlag": true,
|
|
3826
|
+
"emitsJsonEnvelope": false,
|
|
3827
|
+
"errors": [
|
|
3828
|
+
"usage.invalid",
|
|
3829
|
+
"config.invalid",
|
|
3830
|
+
"file.not_found",
|
|
3831
|
+
"internal"
|
|
3832
|
+
],
|
|
3833
|
+
"isESM": true,
|
|
3834
|
+
"relativePath": [
|
|
3835
|
+
"dist",
|
|
3836
|
+
"commands",
|
|
3837
|
+
"mcp",
|
|
3838
|
+
"serve.js"
|
|
3839
|
+
]
|
|
3840
|
+
},
|
|
3841
|
+
"mcp:status": {
|
|
3842
|
+
"aliases": [],
|
|
3843
|
+
"args": {},
|
|
3844
|
+
"examples": [
|
|
3845
|
+
"<%= config.bin %> mcp status",
|
|
3846
|
+
"<%= config.bin %> mcp status --slug my-repo"
|
|
3847
|
+
],
|
|
3848
|
+
"flags": {
|
|
3849
|
+
"json": {
|
|
3850
|
+
"description": "Format output as json.",
|
|
3851
|
+
"helpGroup": "GLOBAL",
|
|
3852
|
+
"name": "json",
|
|
3853
|
+
"allowNo": false,
|
|
3854
|
+
"type": "boolean"
|
|
3855
|
+
},
|
|
3856
|
+
"quiet": {
|
|
3857
|
+
"description": "Suppress diagnostic output.",
|
|
3858
|
+
"name": "quiet",
|
|
3859
|
+
"allowNo": false,
|
|
3860
|
+
"type": "boolean"
|
|
3861
|
+
},
|
|
3862
|
+
"api-key": {
|
|
3863
|
+
"description": "API key override.",
|
|
3864
|
+
"helpGroup": "GLOBAL",
|
|
3865
|
+
"name": "api-key",
|
|
3866
|
+
"hasDynamicHelp": false,
|
|
3867
|
+
"multiple": false,
|
|
3868
|
+
"type": "option"
|
|
3869
|
+
},
|
|
3870
|
+
"base-url": {
|
|
3871
|
+
"description": "Base URL override.",
|
|
3872
|
+
"helpGroup": "GLOBAL",
|
|
3873
|
+
"name": "base-url",
|
|
3874
|
+
"hasDynamicHelp": false,
|
|
3875
|
+
"multiple": false,
|
|
3876
|
+
"type": "option"
|
|
3877
|
+
},
|
|
3878
|
+
"timeout": {
|
|
3879
|
+
"description": "Request timeout in seconds.",
|
|
3880
|
+
"helpGroup": "GLOBAL",
|
|
3881
|
+
"name": "timeout",
|
|
3882
|
+
"default": 300,
|
|
3883
|
+
"hasDynamicHelp": false,
|
|
3884
|
+
"multiple": false,
|
|
3885
|
+
"type": "option"
|
|
3886
|
+
},
|
|
3887
|
+
"describe": {
|
|
3888
|
+
"description": "Emit compact machine-readable command description.",
|
|
3889
|
+
"helpGroup": "GLOBAL",
|
|
3890
|
+
"name": "describe",
|
|
3891
|
+
"allowNo": false,
|
|
3892
|
+
"type": "boolean"
|
|
3893
|
+
},
|
|
3894
|
+
"schema": {
|
|
3895
|
+
"description": "Emit full machine-readable command schema.",
|
|
3896
|
+
"helpGroup": "GLOBAL",
|
|
3897
|
+
"name": "schema",
|
|
3898
|
+
"allowNo": false,
|
|
3899
|
+
"type": "boolean"
|
|
3900
|
+
},
|
|
3901
|
+
"version": {
|
|
3902
|
+
"char": "v",
|
|
3903
|
+
"description": "Emit version envelope.",
|
|
3904
|
+
"helpGroup": "GLOBAL",
|
|
3905
|
+
"name": "version",
|
|
3906
|
+
"allowNo": false,
|
|
3907
|
+
"type": "boolean"
|
|
3908
|
+
},
|
|
3909
|
+
"slug": {
|
|
3910
|
+
"description": "Machine slug. Optional only when one config exists.",
|
|
3911
|
+
"name": "slug",
|
|
3912
|
+
"hasDynamicHelp": false,
|
|
3913
|
+
"multiple": false,
|
|
3914
|
+
"type": "option"
|
|
3915
|
+
}
|
|
3916
|
+
},
|
|
3917
|
+
"hasDynamicHelp": false,
|
|
3918
|
+
"hiddenAliases": [],
|
|
3919
|
+
"id": "mcp:status",
|
|
3920
|
+
"pluginAlias": "@eightstate/escli",
|
|
3921
|
+
"pluginName": "@eightstate/escli",
|
|
3922
|
+
"pluginType": "core",
|
|
3923
|
+
"strict": true,
|
|
3924
|
+
"summary": "Show MCP machine status",
|
|
3925
|
+
"enableJsonFlag": true,
|
|
3926
|
+
"emitsJsonEnvelope": false,
|
|
3927
|
+
"errors": [
|
|
3928
|
+
"config.invalid"
|
|
3929
|
+
],
|
|
3930
|
+
"isESM": true,
|
|
3931
|
+
"relativePath": [
|
|
3932
|
+
"dist",
|
|
3933
|
+
"commands",
|
|
3934
|
+
"mcp",
|
|
3935
|
+
"status.js"
|
|
3936
|
+
]
|
|
3937
|
+
},
|
|
3388
3938
|
"notion:enroll": {
|
|
3389
3939
|
"aliases": [],
|
|
3390
3940
|
"args": {},
|
|
@@ -4150,6 +4700,13 @@
|
|
|
4150
4700
|
"name": "raw",
|
|
4151
4701
|
"allowNo": false,
|
|
4152
4702
|
"type": "boolean"
|
|
4703
|
+
},
|
|
4704
|
+
"mention": {
|
|
4705
|
+
"description": "Resolve @name/email/user-id placeholders to real Notion user mentions. Repeat or comma-separate.",
|
|
4706
|
+
"name": "mention",
|
|
4707
|
+
"hasDynamicHelp": false,
|
|
4708
|
+
"multiple": true,
|
|
4709
|
+
"type": "option"
|
|
4153
4710
|
}
|
|
4154
4711
|
},
|
|
4155
4712
|
"hasDynamicHelp": false,
|
|
@@ -4518,6 +5075,13 @@
|
|
|
4518
5075
|
"name": "raw",
|
|
4519
5076
|
"allowNo": false,
|
|
4520
5077
|
"type": "boolean"
|
|
5078
|
+
},
|
|
5079
|
+
"mention": {
|
|
5080
|
+
"description": "Resolve @name/email/user-id placeholders to real Notion user mentions. Repeat or comma-separate.",
|
|
5081
|
+
"name": "mention",
|
|
5082
|
+
"hasDynamicHelp": false,
|
|
5083
|
+
"multiple": true,
|
|
5084
|
+
"type": "option"
|
|
4521
5085
|
}
|
|
4522
5086
|
},
|
|
4523
5087
|
"hasDynamicHelp": false,
|
|
@@ -7456,5 +8020,5 @@
|
|
|
7456
8020
|
]
|
|
7457
8021
|
}
|
|
7458
8022
|
},
|
|
7459
|
-
"version": "0.
|
|
8023
|
+
"version": "0.9.0"
|
|
7460
8024
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eightstate/escli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@oclif/core": "4.11.3",
|
|
25
25
|
"chalk": "5.6.2",
|
|
26
26
|
"zod": "4.4.3",
|
|
27
|
-
"@eightstate/contracts": "0.
|
|
27
|
+
"@eightstate/contracts": "0.9.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@eslint/js": "9.39.1",
|