chainlesschain 0.143.0 → 0.145.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/package.json +1 -1
- package/src/commands/a2a.js +196 -28
- package/src/commands/activitypub.js +157 -27
- package/src/commands/agent.js +587 -103
- package/src/commands/audit.js +206 -0
- package/src/commands/bi.js +152 -27
- package/src/commands/bm25.js +111 -27
- package/src/commands/browse.js +190 -29
- package/src/commands/ccron.js +128 -28
- package/src/commands/chat.js +207 -0
- package/src/commands/compliance.js +414 -34
- package/src/commands/compt.js +127 -29
- package/src/commands/consol.js +8 -2
- package/src/commands/cowork.js +580 -34
- package/src/commands/crosschain.js +182 -28
- package/src/commands/dao.js +182 -28
- package/src/commands/dlp.js +172 -27
- package/src/commands/economy.js +205 -50
- package/src/commands/evolution.js +203 -50
- package/src/commands/evomap.js +182 -27
- package/src/commands/fflag.js +74 -22
- package/src/commands/git.js +177 -37
- package/src/commands/hardening.js +209 -0
- package/src/commands/hmemory.js +204 -50
- package/src/commands/incentive.js +209 -0
- package/src/commands/inference.js +170 -34
- package/src/commands/itbudget.js +149 -33
- package/src/commands/kg.js +206 -0
- package/src/commands/lowcode.js +195 -38
- package/src/commands/marketplace.js +206 -0
- package/src/commands/matrix.js +179 -27
- package/src/commands/mcpscaf.js +145 -33
- package/src/commands/meminj.js +145 -33
- package/src/commands/nostr.js +178 -27
- package/src/commands/orchestrate.js +217 -0
- package/src/commands/orchgov.js +144 -33
- package/src/commands/pdfp.js +109 -27
- package/src/commands/perf.js +169 -32
- package/src/commands/perm.js +144 -33
- package/src/commands/pipeline.js +207 -52
- package/src/commands/planmode.js +141 -32
- package/src/commands/privacy.js +203 -0
- package/src/commands/promcomp.js +111 -27
- package/src/commands/recommend.js +177 -34
- package/src/commands/reputation.js +208 -0
- package/src/commands/sandbox.js +206 -0
- package/src/commands/seshhook.js +145 -33
- package/src/commands/seshsearch.js +141 -33
- package/src/commands/seshtail.js +144 -33
- package/src/commands/seshu.js +152 -33
- package/src/commands/sganal.js +123 -29
- package/src/commands/siem.js +201 -34
- package/src/commands/sla.js +212 -0
- package/src/commands/slotfill.js +146 -33
- package/src/commands/social.js +157 -32
- package/src/commands/stress.js +206 -0
- package/src/commands/svccont.js +145 -33
- package/src/commands/terraform.js +206 -0
- package/src/commands/tms.js +171 -33
- package/src/commands/topiccls.js +146 -33
- package/src/commands/uprof.js +141 -32
- package/src/commands/vcheck.js +122 -28
- package/src/commands/webfetch.js +141 -32
- package/src/commands/zkp.js +184 -28
- package/src/index.js +40 -0
- package/src/lib/a2a-protocol.js +319 -51
- package/src/lib/activitypub-bridge.js +288 -50
- package/src/lib/agent-economy.js +304 -51
- package/src/lib/app-builder.js +279 -46
- package/src/lib/audit-logger.js +321 -0
- package/src/lib/autonomous-agent.js +284 -48
- package/src/lib/bi-engine.js +283 -49
- package/src/lib/bm25-search.js +301 -49
- package/src/lib/browser-automation.js +296 -49
- package/src/lib/chat-core.js +336 -0
- package/src/lib/claude-code-bridge.js +341 -0
- package/src/lib/compliance-framework-reporter.js +305 -51
- package/src/lib/compliance-manager.js +330 -0
- package/src/lib/compression-telemetry.js +301 -49
- package/src/lib/content-recommender.js +317 -52
- package/src/lib/cowork-cron.js +298 -49
- package/src/lib/cowork-learning.js +333 -0
- package/src/lib/cowork-task-runner.js +308 -51
- package/src/lib/cowork-workflow.js +327 -0
- package/src/lib/cross-chain.js +311 -51
- package/src/lib/dao-governance.js +280 -46
- package/src/lib/dlp-engine.js +287 -49
- package/src/lib/evolution-system.js +278 -47
- package/src/lib/evomap-manager.js +280 -46
- package/src/lib/execution-backend.js +294 -48
- package/src/lib/feature-flags.js +294 -49
- package/src/lib/git-integration.js +285 -47
- package/src/lib/hardening-manager.js +341 -0
- package/src/lib/hierarchical-memory.js +284 -48
- package/src/lib/inference-network.js +308 -51
- package/src/lib/iteration-budget.js +302 -50
- package/src/lib/knowledge-graph.js +333 -0
- package/src/lib/matrix-bridge.js +281 -47
- package/src/lib/mcp-scaffold.js +318 -54
- package/src/lib/memory-injection.js +288 -49
- package/src/lib/nostr-bridge.js +286 -49
- package/src/lib/orchestrator.js +293 -48
- package/src/lib/pdf-parser.js +298 -49
- package/src/lib/perf-tuning.js +309 -50
- package/src/lib/permission-engine.js +287 -49
- package/src/lib/pipeline-orchestrator.js +289 -49
- package/src/lib/plan-mode.js +298 -51
- package/src/lib/privacy-computing.js +335 -0
- package/src/lib/reputation-optimizer.js +340 -0
- package/src/lib/sandbox-v2.js +327 -0
- package/src/lib/service-container.js +313 -52
- package/src/lib/session-consolidator.js +296 -49
- package/src/lib/session-hooks.js +312 -53
- package/src/lib/session-search.js +304 -51
- package/src/lib/session-tail.js +288 -49
- package/src/lib/session-usage.js +298 -52
- package/src/lib/siem-exporter.js +298 -51
- package/src/lib/skill-marketplace.js +345 -0
- package/src/lib/sla-manager.js +341 -0
- package/src/lib/slot-filler.js +303 -51
- package/src/lib/social-graph-analytics.js +295 -49
- package/src/lib/social-graph.js +272 -49
- package/src/lib/stress-tester.js +342 -0
- package/src/lib/sub-agent-registry.js +302 -53
- package/src/lib/task-model-selector.js +302 -50
- package/src/lib/terraform-manager.js +333 -0
- package/src/lib/todo-manager.js +281 -47
- package/src/lib/token-incentive.js +341 -0
- package/src/lib/topic-classifier.js +297 -49
- package/src/lib/user-profile.js +294 -50
- package/src/lib/version-checker.js +304 -50
- package/src/lib/web-fetch.js +292 -51
- package/src/lib/zkp-engine.js +286 -49
package/src/commands/perf.js
CHANGED
|
@@ -434,39 +434,176 @@ export function registerPerfCommand(program) {
|
|
|
434
434
|
}
|
|
435
435
|
|
|
436
436
|
import {
|
|
437
|
-
PERF_TUNING_PROFILE_MATURITY_V2,
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
437
|
+
PERF_TUNING_PROFILE_MATURITY_V2,
|
|
438
|
+
PERF_BENCH_LIFECYCLE_V2,
|
|
439
|
+
setMaxActivePerfTuningProfilesPerOwnerV2,
|
|
440
|
+
getMaxActivePerfTuningProfilesPerOwnerV2,
|
|
441
|
+
setMaxPendingPerfBenchesPerProfileV2,
|
|
442
|
+
getMaxPendingPerfBenchesPerProfileV2,
|
|
443
|
+
setPerfTuningProfileIdleMsV2,
|
|
444
|
+
getPerfTuningProfileIdleMsV2,
|
|
445
|
+
setPerfBenchStuckMsV2,
|
|
446
|
+
getPerfBenchStuckMsV2,
|
|
447
|
+
registerPerfTuningProfileV2,
|
|
448
|
+
activatePerfTuningProfileV2,
|
|
449
|
+
stalePerfTuningProfileV2,
|
|
450
|
+
decommissionPerfTuningProfileV2,
|
|
451
|
+
touchPerfTuningProfileV2,
|
|
452
|
+
getPerfTuningProfileV2,
|
|
453
|
+
listPerfTuningProfilesV2,
|
|
454
|
+
createPerfBenchV2,
|
|
455
|
+
startPerfBenchV2,
|
|
456
|
+
completePerfBenchV2,
|
|
457
|
+
failPerfBenchV2,
|
|
458
|
+
cancelPerfBenchV2,
|
|
459
|
+
getPerfBenchV2,
|
|
460
|
+
listPerfBenchesV2,
|
|
461
|
+
autoStaleIdlePerfTuningProfilesV2,
|
|
462
|
+
autoFailStuckPerfBenchesV2,
|
|
463
|
+
getPerfTuningGovStatsV2,
|
|
464
|
+
_resetStatePerfTuningV2,
|
|
445
465
|
} from "../lib/perf-tuning.js";
|
|
446
466
|
|
|
447
467
|
function _registerPerfV2(parent) {
|
|
448
|
-
parent.command("enums-v2").action(() =>
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
parent.command("
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
468
|
+
parent.command("enums-v2").action(() =>
|
|
469
|
+
console.log(
|
|
470
|
+
JSON.stringify(
|
|
471
|
+
{
|
|
472
|
+
profileMaturity: PERF_TUNING_PROFILE_MATURITY_V2,
|
|
473
|
+
benchLifecycle: PERF_BENCH_LIFECYCLE_V2,
|
|
474
|
+
},
|
|
475
|
+
null,
|
|
476
|
+
2,
|
|
477
|
+
),
|
|
478
|
+
),
|
|
479
|
+
);
|
|
480
|
+
parent.command("config-v2").action(() =>
|
|
481
|
+
console.log(
|
|
482
|
+
JSON.stringify(
|
|
483
|
+
{
|
|
484
|
+
maxActivePerfTuningProfilesPerOwner:
|
|
485
|
+
getMaxActivePerfTuningProfilesPerOwnerV2(),
|
|
486
|
+
maxPendingPerfBenchesPerProfile:
|
|
487
|
+
getMaxPendingPerfBenchesPerProfileV2(),
|
|
488
|
+
perfTuningProfileIdleMs: getPerfTuningProfileIdleMsV2(),
|
|
489
|
+
perfBenchStuckMs: getPerfBenchStuckMsV2(),
|
|
490
|
+
},
|
|
491
|
+
null,
|
|
492
|
+
2,
|
|
493
|
+
),
|
|
494
|
+
),
|
|
495
|
+
);
|
|
496
|
+
parent.command("set-max-active-v2 <n>").action((n) => {
|
|
497
|
+
setMaxActivePerfTuningProfilesPerOwnerV2(Number(n));
|
|
498
|
+
console.log("ok");
|
|
499
|
+
});
|
|
500
|
+
parent.command("set-max-pending-v2 <n>").action((n) => {
|
|
501
|
+
setMaxPendingPerfBenchesPerProfileV2(Number(n));
|
|
502
|
+
console.log("ok");
|
|
503
|
+
});
|
|
504
|
+
parent.command("set-idle-ms-v2 <n>").action((n) => {
|
|
505
|
+
setPerfTuningProfileIdleMsV2(Number(n));
|
|
506
|
+
console.log("ok");
|
|
507
|
+
});
|
|
508
|
+
parent.command("set-stuck-ms-v2 <n>").action((n) => {
|
|
509
|
+
setPerfBenchStuckMsV2(Number(n));
|
|
510
|
+
console.log("ok");
|
|
511
|
+
});
|
|
512
|
+
parent
|
|
513
|
+
.command("register-profile-v2 <id> <owner>")
|
|
514
|
+
.option("--target <t>", "target")
|
|
515
|
+
.action((id, owner, o) =>
|
|
516
|
+
console.log(
|
|
517
|
+
JSON.stringify(
|
|
518
|
+
registerPerfTuningProfileV2({ id, owner, target: o.target }),
|
|
519
|
+
null,
|
|
520
|
+
2,
|
|
521
|
+
),
|
|
522
|
+
),
|
|
523
|
+
);
|
|
524
|
+
parent
|
|
525
|
+
.command("activate-profile-v2 <id>")
|
|
526
|
+
.action((id) =>
|
|
527
|
+
console.log(JSON.stringify(activatePerfTuningProfileV2(id), null, 2)),
|
|
528
|
+
);
|
|
529
|
+
parent
|
|
530
|
+
.command("stale-profile-v2 <id>")
|
|
531
|
+
.action((id) =>
|
|
532
|
+
console.log(JSON.stringify(stalePerfTuningProfileV2(id), null, 2)),
|
|
533
|
+
);
|
|
534
|
+
parent
|
|
535
|
+
.command("decommission-profile-v2 <id>")
|
|
536
|
+
.action((id) =>
|
|
537
|
+
console.log(JSON.stringify(decommissionPerfTuningProfileV2(id), null, 2)),
|
|
538
|
+
);
|
|
539
|
+
parent
|
|
540
|
+
.command("touch-profile-v2 <id>")
|
|
541
|
+
.action((id) =>
|
|
542
|
+
console.log(JSON.stringify(touchPerfTuningProfileV2(id), null, 2)),
|
|
543
|
+
);
|
|
544
|
+
parent
|
|
545
|
+
.command("get-profile-v2 <id>")
|
|
546
|
+
.action((id) =>
|
|
547
|
+
console.log(JSON.stringify(getPerfTuningProfileV2(id), null, 2)),
|
|
548
|
+
);
|
|
549
|
+
parent
|
|
550
|
+
.command("list-profiles-v2")
|
|
551
|
+
.action(() =>
|
|
552
|
+
console.log(JSON.stringify(listPerfTuningProfilesV2(), null, 2)),
|
|
553
|
+
);
|
|
554
|
+
parent
|
|
555
|
+
.command("create-bench-v2 <id> <profileId>")
|
|
556
|
+
.option("--scenario <s>", "scenario")
|
|
557
|
+
.action((id, profileId, o) =>
|
|
558
|
+
console.log(
|
|
559
|
+
JSON.stringify(
|
|
560
|
+
createPerfBenchV2({ id, profileId, scenario: o.scenario }),
|
|
561
|
+
null,
|
|
562
|
+
2,
|
|
563
|
+
),
|
|
564
|
+
),
|
|
565
|
+
);
|
|
566
|
+
parent
|
|
567
|
+
.command("start-bench-v2 <id>")
|
|
568
|
+
.action((id) => console.log(JSON.stringify(startPerfBenchV2(id), null, 2)));
|
|
569
|
+
parent
|
|
570
|
+
.command("complete-bench-v2 <id>")
|
|
571
|
+
.action((id) =>
|
|
572
|
+
console.log(JSON.stringify(completePerfBenchV2(id), null, 2)),
|
|
573
|
+
);
|
|
574
|
+
parent
|
|
575
|
+
.command("fail-bench-v2 <id> [reason]")
|
|
576
|
+
.action((id, reason) =>
|
|
577
|
+
console.log(JSON.stringify(failPerfBenchV2(id, reason), null, 2)),
|
|
578
|
+
);
|
|
579
|
+
parent
|
|
580
|
+
.command("cancel-bench-v2 <id> [reason]")
|
|
581
|
+
.action((id, reason) =>
|
|
582
|
+
console.log(JSON.stringify(cancelPerfBenchV2(id, reason), null, 2)),
|
|
583
|
+
);
|
|
584
|
+
parent
|
|
585
|
+
.command("get-bench-v2 <id>")
|
|
586
|
+
.action((id) => console.log(JSON.stringify(getPerfBenchV2(id), null, 2)));
|
|
587
|
+
parent
|
|
588
|
+
.command("list-benches-v2")
|
|
589
|
+
.action(() => console.log(JSON.stringify(listPerfBenchesV2(), null, 2)));
|
|
590
|
+
parent
|
|
591
|
+
.command("auto-stale-idle-v2")
|
|
592
|
+
.action(() =>
|
|
593
|
+
console.log(JSON.stringify(autoStaleIdlePerfTuningProfilesV2(), null, 2)),
|
|
594
|
+
);
|
|
595
|
+
parent
|
|
596
|
+
.command("auto-fail-stuck-v2")
|
|
597
|
+
.action(() =>
|
|
598
|
+
console.log(JSON.stringify(autoFailStuckPerfBenchesV2(), null, 2)),
|
|
599
|
+
);
|
|
600
|
+
parent
|
|
601
|
+
.command("gov-stats-v2")
|
|
602
|
+
.action(() =>
|
|
603
|
+
console.log(JSON.stringify(getPerfTuningGovStatsV2(), null, 2)),
|
|
604
|
+
);
|
|
605
|
+
parent.command("reset-state-v2").action(() => {
|
|
606
|
+
_resetStatePerfTuningV2();
|
|
607
|
+
console.log(JSON.stringify({ ok: true }, null, 2));
|
|
608
|
+
});
|
|
472
609
|
}
|
package/src/commands/perm.js
CHANGED
|
@@ -6,40 +6,151 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
import {
|
|
9
|
-
PERM_RULE_MATURITY_V2,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
9
|
+
PERM_RULE_MATURITY_V2,
|
|
10
|
+
PERM_CHECK_LIFECYCLE_V2,
|
|
11
|
+
setMaxActivePermRulesPerOwnerV2,
|
|
12
|
+
getMaxActivePermRulesPerOwnerV2,
|
|
13
|
+
setMaxPendingPermChecksPerRuleV2,
|
|
14
|
+
getMaxPendingPermChecksPerRuleV2,
|
|
15
|
+
setPermRuleIdleMsV2,
|
|
16
|
+
getPermRuleIdleMsV2,
|
|
17
|
+
setPermCheckStuckMsV2,
|
|
18
|
+
getPermCheckStuckMsV2,
|
|
19
|
+
registerPermRuleV2,
|
|
20
|
+
activatePermRuleV2,
|
|
21
|
+
disablePermRuleV2,
|
|
22
|
+
retirePermRuleV2,
|
|
23
|
+
touchPermRuleV2,
|
|
24
|
+
getPermRuleV2,
|
|
25
|
+
listPermRulesV2,
|
|
26
|
+
createPermCheckV2,
|
|
27
|
+
evaluatePermCheckV2,
|
|
28
|
+
allowPermCheckV2,
|
|
29
|
+
denyPermCheckV2,
|
|
30
|
+
cancelPermCheckV2,
|
|
31
|
+
getPermCheckV2,
|
|
32
|
+
listPermChecksV2,
|
|
33
|
+
autoDisableIdlePermRulesV2,
|
|
34
|
+
autoDenyStuckPermChecksV2,
|
|
35
|
+
getPermissionEngineGovStatsV2,
|
|
36
|
+
_resetStatePermissionEngineV2,
|
|
17
37
|
} from "../lib/permission-engine.js";
|
|
18
38
|
|
|
19
39
|
export function registerPermCommand(program) {
|
|
20
|
-
const pe = program
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
pe.command("
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
pe.command("
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
const pe = program
|
|
41
|
+
.command("perm")
|
|
42
|
+
.description("Permission Engine V2 governance");
|
|
43
|
+
pe.command("enums-v2").action(() =>
|
|
44
|
+
console.log(
|
|
45
|
+
JSON.stringify(
|
|
46
|
+
{
|
|
47
|
+
ruleMaturity: PERM_RULE_MATURITY_V2,
|
|
48
|
+
checkLifecycle: PERM_CHECK_LIFECYCLE_V2,
|
|
49
|
+
},
|
|
50
|
+
null,
|
|
51
|
+
2,
|
|
52
|
+
),
|
|
53
|
+
),
|
|
54
|
+
);
|
|
55
|
+
pe.command("config-v2").action(() =>
|
|
56
|
+
console.log(
|
|
57
|
+
JSON.stringify(
|
|
58
|
+
{
|
|
59
|
+
maxActivePermRulesPerOwner: getMaxActivePermRulesPerOwnerV2(),
|
|
60
|
+
maxPendingPermChecksPerRule: getMaxPendingPermChecksPerRuleV2(),
|
|
61
|
+
permRuleIdleMs: getPermRuleIdleMsV2(),
|
|
62
|
+
permCheckStuckMs: getPermCheckStuckMsV2(),
|
|
63
|
+
},
|
|
64
|
+
null,
|
|
65
|
+
2,
|
|
66
|
+
),
|
|
67
|
+
),
|
|
68
|
+
);
|
|
69
|
+
pe.command("set-max-active-v2 <n>").action((n) => {
|
|
70
|
+
setMaxActivePermRulesPerOwnerV2(Number(n));
|
|
71
|
+
console.log("ok");
|
|
72
|
+
});
|
|
73
|
+
pe.command("set-max-pending-v2 <n>").action((n) => {
|
|
74
|
+
setMaxPendingPermChecksPerRuleV2(Number(n));
|
|
75
|
+
console.log("ok");
|
|
76
|
+
});
|
|
77
|
+
pe.command("set-idle-ms-v2 <n>").action((n) => {
|
|
78
|
+
setPermRuleIdleMsV2(Number(n));
|
|
79
|
+
console.log("ok");
|
|
80
|
+
});
|
|
81
|
+
pe.command("set-stuck-ms-v2 <n>").action((n) => {
|
|
82
|
+
setPermCheckStuckMsV2(Number(n));
|
|
83
|
+
console.log("ok");
|
|
84
|
+
});
|
|
85
|
+
pe.command("register-rule-v2 <id> <owner>")
|
|
86
|
+
.option("--scope <s>", "scope")
|
|
87
|
+
.action((id, owner, o) =>
|
|
88
|
+
console.log(
|
|
89
|
+
JSON.stringify(
|
|
90
|
+
registerPermRuleV2({ id, owner, scope: o.scope }),
|
|
91
|
+
null,
|
|
92
|
+
2,
|
|
93
|
+
),
|
|
94
|
+
),
|
|
95
|
+
);
|
|
96
|
+
pe.command("activate-rule-v2 <id>").action((id) =>
|
|
97
|
+
console.log(JSON.stringify(activatePermRuleV2(id), null, 2)),
|
|
98
|
+
);
|
|
99
|
+
pe.command("disable-rule-v2 <id>").action((id) =>
|
|
100
|
+
console.log(JSON.stringify(disablePermRuleV2(id), null, 2)),
|
|
101
|
+
);
|
|
102
|
+
pe.command("retire-rule-v2 <id>").action((id) =>
|
|
103
|
+
console.log(JSON.stringify(retirePermRuleV2(id), null, 2)),
|
|
104
|
+
);
|
|
105
|
+
pe.command("touch-rule-v2 <id>").action((id) =>
|
|
106
|
+
console.log(JSON.stringify(touchPermRuleV2(id), null, 2)),
|
|
107
|
+
);
|
|
108
|
+
pe.command("get-rule-v2 <id>").action((id) =>
|
|
109
|
+
console.log(JSON.stringify(getPermRuleV2(id), null, 2)),
|
|
110
|
+
);
|
|
111
|
+
pe.command("list-rules-v2").action(() =>
|
|
112
|
+
console.log(JSON.stringify(listPermRulesV2(), null, 2)),
|
|
113
|
+
);
|
|
114
|
+
pe.command("create-check-v2 <id> <ruleId>")
|
|
115
|
+
.option("--subject <s>", "subject")
|
|
116
|
+
.action((id, ruleId, o) =>
|
|
117
|
+
console.log(
|
|
118
|
+
JSON.stringify(
|
|
119
|
+
createPermCheckV2({ id, ruleId, subject: o.subject }),
|
|
120
|
+
null,
|
|
121
|
+
2,
|
|
122
|
+
),
|
|
123
|
+
),
|
|
124
|
+
);
|
|
125
|
+
pe.command("evaluate-check-v2 <id>").action((id) =>
|
|
126
|
+
console.log(JSON.stringify(evaluatePermCheckV2(id), null, 2)),
|
|
127
|
+
);
|
|
128
|
+
pe.command("allow-check-v2 <id>").action((id) =>
|
|
129
|
+
console.log(JSON.stringify(allowPermCheckV2(id), null, 2)),
|
|
130
|
+
);
|
|
131
|
+
pe.command("deny-check-v2 <id> [reason]").action((id, reason) =>
|
|
132
|
+
console.log(JSON.stringify(denyPermCheckV2(id, reason), null, 2)),
|
|
133
|
+
);
|
|
134
|
+
pe.command("cancel-check-v2 <id> [reason]").action((id, reason) =>
|
|
135
|
+
console.log(JSON.stringify(cancelPermCheckV2(id, reason), null, 2)),
|
|
136
|
+
);
|
|
137
|
+
pe.command("get-check-v2 <id>").action((id) =>
|
|
138
|
+
console.log(JSON.stringify(getPermCheckV2(id), null, 2)),
|
|
139
|
+
);
|
|
140
|
+
pe.command("list-checks-v2").action(() =>
|
|
141
|
+
console.log(JSON.stringify(listPermChecksV2(), null, 2)),
|
|
142
|
+
);
|
|
143
|
+
pe.command("auto-disable-idle-v2").action(() =>
|
|
144
|
+
console.log(JSON.stringify(autoDisableIdlePermRulesV2(), null, 2)),
|
|
145
|
+
);
|
|
146
|
+
pe.command("auto-deny-stuck-v2").action(() =>
|
|
147
|
+
console.log(JSON.stringify(autoDenyStuckPermChecksV2(), null, 2)),
|
|
148
|
+
);
|
|
149
|
+
pe.command("gov-stats-v2").action(() =>
|
|
150
|
+
console.log(JSON.stringify(getPermissionEngineGovStatsV2(), null, 2)),
|
|
151
|
+
);
|
|
152
|
+
pe.command("reset-state-v2").action(() => {
|
|
153
|
+
_resetStatePermissionEngineV2();
|
|
154
|
+
console.log(JSON.stringify({ ok: true }, null, 2));
|
|
155
|
+
});
|
|
45
156
|
}
|