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
|
@@ -677,3 +677,220 @@ function _statusColor(status) {
|
|
|
677
677
|
};
|
|
678
678
|
return (colors[status] || chalk.white)(status);
|
|
679
679
|
}
|
|
680
|
+
|
|
681
|
+
// === Iter17 V2 governance overlay ===
|
|
682
|
+
export function registerCcbgovV2Commands(program) {
|
|
683
|
+
const parent = program.commands.find((c) => c.name() === "orchestrate");
|
|
684
|
+
if (!parent) return;
|
|
685
|
+
const L = async () => await import("../lib/claude-code-bridge.js");
|
|
686
|
+
parent
|
|
687
|
+
.command("ccbgov-enums-v2")
|
|
688
|
+
.description("Show V2 enums")
|
|
689
|
+
.action(async () => {
|
|
690
|
+
const m = await L();
|
|
691
|
+
console.log(
|
|
692
|
+
JSON.stringify(
|
|
693
|
+
{
|
|
694
|
+
profileMaturity: m.CCBGOV_PROFILE_MATURITY_V2,
|
|
695
|
+
invocationLifecycle: m.CCBGOV_INVOCATION_LIFECYCLE_V2,
|
|
696
|
+
},
|
|
697
|
+
null,
|
|
698
|
+
2,
|
|
699
|
+
),
|
|
700
|
+
);
|
|
701
|
+
});
|
|
702
|
+
parent
|
|
703
|
+
.command("ccbgov-config-v2")
|
|
704
|
+
.description("Show V2 config")
|
|
705
|
+
.action(async () => {
|
|
706
|
+
const m = await L();
|
|
707
|
+
console.log(
|
|
708
|
+
JSON.stringify(
|
|
709
|
+
{
|
|
710
|
+
maxActive: m.getMaxActiveCcbgovProfilesPerOwnerV2(),
|
|
711
|
+
maxPending: m.getMaxPendingCcbgovInvocationsPerProfileV2(),
|
|
712
|
+
idleMs: m.getCcbgovProfileIdleMsV2(),
|
|
713
|
+
stuckMs: m.getCcbgovInvocationStuckMsV2(),
|
|
714
|
+
},
|
|
715
|
+
null,
|
|
716
|
+
2,
|
|
717
|
+
),
|
|
718
|
+
);
|
|
719
|
+
});
|
|
720
|
+
parent
|
|
721
|
+
.command("ccbgov-set-max-active-v2 <n>")
|
|
722
|
+
.description("Set max active")
|
|
723
|
+
.action(async (n) => {
|
|
724
|
+
(await L()).setMaxActiveCcbgovProfilesPerOwnerV2(Number(n));
|
|
725
|
+
console.log("ok");
|
|
726
|
+
});
|
|
727
|
+
parent
|
|
728
|
+
.command("ccbgov-set-max-pending-v2 <n>")
|
|
729
|
+
.description("Set max pending")
|
|
730
|
+
.action(async (n) => {
|
|
731
|
+
(await L()).setMaxPendingCcbgovInvocationsPerProfileV2(Number(n));
|
|
732
|
+
console.log("ok");
|
|
733
|
+
});
|
|
734
|
+
parent
|
|
735
|
+
.command("ccbgov-set-idle-ms-v2 <n>")
|
|
736
|
+
.description("Set idle threshold ms")
|
|
737
|
+
.action(async (n) => {
|
|
738
|
+
(await L()).setCcbgovProfileIdleMsV2(Number(n));
|
|
739
|
+
console.log("ok");
|
|
740
|
+
});
|
|
741
|
+
parent
|
|
742
|
+
.command("ccbgov-set-stuck-ms-v2 <n>")
|
|
743
|
+
.description("Set stuck threshold ms")
|
|
744
|
+
.action(async (n) => {
|
|
745
|
+
(await L()).setCcbgovInvocationStuckMsV2(Number(n));
|
|
746
|
+
console.log("ok");
|
|
747
|
+
});
|
|
748
|
+
parent
|
|
749
|
+
.command("ccbgov-register-v2 <id> <owner>")
|
|
750
|
+
.description("Register V2 profile")
|
|
751
|
+
.option("--channel <v>", "channel")
|
|
752
|
+
.action(async (id, owner, o) => {
|
|
753
|
+
const m = await L();
|
|
754
|
+
console.log(
|
|
755
|
+
JSON.stringify(
|
|
756
|
+
m.registerCcbgovProfileV2({ id, owner, channel: o.channel }),
|
|
757
|
+
null,
|
|
758
|
+
2,
|
|
759
|
+
),
|
|
760
|
+
);
|
|
761
|
+
});
|
|
762
|
+
parent
|
|
763
|
+
.command("ccbgov-activate-v2 <id>")
|
|
764
|
+
.description("Activate profile")
|
|
765
|
+
.action(async (id) => {
|
|
766
|
+
console.log(
|
|
767
|
+
JSON.stringify((await L()).activateCcbgovProfileV2(id), null, 2),
|
|
768
|
+
);
|
|
769
|
+
});
|
|
770
|
+
parent
|
|
771
|
+
.command("ccbgov-degrade-v2 <id>")
|
|
772
|
+
.description("Degrade profile")
|
|
773
|
+
.action(async (id) => {
|
|
774
|
+
console.log(
|
|
775
|
+
JSON.stringify((await L()).degradeCcbgovProfileV2(id), null, 2),
|
|
776
|
+
);
|
|
777
|
+
});
|
|
778
|
+
parent
|
|
779
|
+
.command("ccbgov-archive-v2 <id>")
|
|
780
|
+
.description("Archive profile")
|
|
781
|
+
.action(async (id) => {
|
|
782
|
+
console.log(
|
|
783
|
+
JSON.stringify((await L()).archiveCcbgovProfileV2(id), null, 2),
|
|
784
|
+
);
|
|
785
|
+
});
|
|
786
|
+
parent
|
|
787
|
+
.command("ccbgov-touch-v2 <id>")
|
|
788
|
+
.description("Touch profile")
|
|
789
|
+
.action(async (id) => {
|
|
790
|
+
console.log(
|
|
791
|
+
JSON.stringify((await L()).touchCcbgovProfileV2(id), null, 2),
|
|
792
|
+
);
|
|
793
|
+
});
|
|
794
|
+
parent
|
|
795
|
+
.command("ccbgov-get-v2 <id>")
|
|
796
|
+
.description("Get profile")
|
|
797
|
+
.action(async (id) => {
|
|
798
|
+
console.log(JSON.stringify((await L()).getCcbgovProfileV2(id), null, 2));
|
|
799
|
+
});
|
|
800
|
+
parent
|
|
801
|
+
.command("ccbgov-list-v2")
|
|
802
|
+
.description("List profiles")
|
|
803
|
+
.action(async () => {
|
|
804
|
+
console.log(JSON.stringify((await L()).listCcbgovProfilesV2(), null, 2));
|
|
805
|
+
});
|
|
806
|
+
parent
|
|
807
|
+
.command("ccbgov-create-invocation-v2 <id> <profileId>")
|
|
808
|
+
.description("Create invocation")
|
|
809
|
+
.option("--command <v>", "command")
|
|
810
|
+
.action(async (id, profileId, o) => {
|
|
811
|
+
const m = await L();
|
|
812
|
+
console.log(
|
|
813
|
+
JSON.stringify(
|
|
814
|
+
m.createCcbgovInvocationV2({ id, profileId, command: o.command }),
|
|
815
|
+
null,
|
|
816
|
+
2,
|
|
817
|
+
),
|
|
818
|
+
);
|
|
819
|
+
});
|
|
820
|
+
parent
|
|
821
|
+
.command("ccbgov-running-invocation-v2 <id>")
|
|
822
|
+
.description("Mark invocation as running")
|
|
823
|
+
.action(async (id) => {
|
|
824
|
+
console.log(
|
|
825
|
+
JSON.stringify((await L()).runningCcbgovInvocationV2(id), null, 2),
|
|
826
|
+
);
|
|
827
|
+
});
|
|
828
|
+
parent
|
|
829
|
+
.command("ccbgov-complete-invocation-v2 <id>")
|
|
830
|
+
.description("Complete invocation")
|
|
831
|
+
.action(async (id) => {
|
|
832
|
+
console.log(
|
|
833
|
+
JSON.stringify((await L()).completeInvocationCcbgovV2(id), null, 2),
|
|
834
|
+
);
|
|
835
|
+
});
|
|
836
|
+
parent
|
|
837
|
+
.command("ccbgov-fail-invocation-v2 <id> [reason]")
|
|
838
|
+
.description("Fail invocation")
|
|
839
|
+
.action(async (id, reason) => {
|
|
840
|
+
console.log(
|
|
841
|
+
JSON.stringify((await L()).failCcbgovInvocationV2(id, reason), null, 2),
|
|
842
|
+
);
|
|
843
|
+
});
|
|
844
|
+
parent
|
|
845
|
+
.command("ccbgov-cancel-invocation-v2 <id> [reason]")
|
|
846
|
+
.description("Cancel invocation")
|
|
847
|
+
.action(async (id, reason) => {
|
|
848
|
+
console.log(
|
|
849
|
+
JSON.stringify(
|
|
850
|
+
(await L()).cancelCcbgovInvocationV2(id, reason),
|
|
851
|
+
null,
|
|
852
|
+
2,
|
|
853
|
+
),
|
|
854
|
+
);
|
|
855
|
+
});
|
|
856
|
+
parent
|
|
857
|
+
.command("ccbgov-get-invocation-v2 <id>")
|
|
858
|
+
.description("Get invocation")
|
|
859
|
+
.action(async (id) => {
|
|
860
|
+
console.log(
|
|
861
|
+
JSON.stringify((await L()).getCcbgovInvocationV2(id), null, 2),
|
|
862
|
+
);
|
|
863
|
+
});
|
|
864
|
+
parent
|
|
865
|
+
.command("ccbgov-list-invocations-v2")
|
|
866
|
+
.description("List invocations")
|
|
867
|
+
.action(async () => {
|
|
868
|
+
console.log(
|
|
869
|
+
JSON.stringify((await L()).listCcbgovInvocationsV2(), null, 2),
|
|
870
|
+
);
|
|
871
|
+
});
|
|
872
|
+
parent
|
|
873
|
+
.command("ccbgov-auto-degrade-idle-v2")
|
|
874
|
+
.description("Auto-degrade idle")
|
|
875
|
+
.action(async () => {
|
|
876
|
+
console.log(
|
|
877
|
+
JSON.stringify((await L()).autoDegradeIdleCcbgovProfilesV2(), null, 2),
|
|
878
|
+
);
|
|
879
|
+
});
|
|
880
|
+
parent
|
|
881
|
+
.command("ccbgov-auto-fail-stuck-v2")
|
|
882
|
+
.description("Auto-fail stuck invocations")
|
|
883
|
+
.action(async () => {
|
|
884
|
+
console.log(
|
|
885
|
+
JSON.stringify((await L()).autoFailStuckCcbgovInvocationsV2(), null, 2),
|
|
886
|
+
);
|
|
887
|
+
});
|
|
888
|
+
parent
|
|
889
|
+
.command("ccbgov-gov-stats-v2")
|
|
890
|
+
.description("V2 gov stats")
|
|
891
|
+
.action(async () => {
|
|
892
|
+
console.log(
|
|
893
|
+
JSON.stringify((await L()).getClaudeCodeBridgeGovStatsV2(), null, 2),
|
|
894
|
+
);
|
|
895
|
+
});
|
|
896
|
+
}
|
package/src/commands/orchgov.js
CHANGED
|
@@ -6,40 +6,151 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
import {
|
|
9
|
-
ORCH_PROFILE_MATURITY_V2,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
9
|
+
ORCH_PROFILE_MATURITY_V2,
|
|
10
|
+
ORCH_TASK_LIFECYCLE_V2,
|
|
11
|
+
setMaxActiveOrchProfilesPerOwnerV2,
|
|
12
|
+
getMaxActiveOrchProfilesPerOwnerV2,
|
|
13
|
+
setMaxPendingOrchTasksPerProfileV2,
|
|
14
|
+
getMaxPendingOrchTasksPerProfileV2,
|
|
15
|
+
setOrchProfileIdleMsV2,
|
|
16
|
+
getOrchProfileIdleMsV2,
|
|
17
|
+
setOrchTaskStuckMsV2,
|
|
18
|
+
getOrchTaskStuckMsV2,
|
|
19
|
+
registerOrchProfileV2,
|
|
20
|
+
activateOrchProfileV2,
|
|
21
|
+
pauseOrchProfileV2,
|
|
22
|
+
retireOrchProfileV2,
|
|
23
|
+
touchOrchProfileV2,
|
|
24
|
+
getOrchProfileV2,
|
|
25
|
+
listOrchProfilesV2,
|
|
26
|
+
createOrchTaskV2,
|
|
27
|
+
dispatchOrchTaskV2,
|
|
28
|
+
completeOrchTaskV2,
|
|
29
|
+
failOrchTaskV2,
|
|
30
|
+
cancelOrchTaskV2,
|
|
31
|
+
getOrchTaskV2,
|
|
32
|
+
listOrchTasksV2,
|
|
33
|
+
autoPauseIdleOrchProfilesV2,
|
|
34
|
+
autoFailStuckOrchTasksV2,
|
|
35
|
+
getOrchestratorGovStatsV2,
|
|
36
|
+
_resetStateOrchestratorV2,
|
|
17
37
|
} from "../lib/orchestrator.js";
|
|
18
38
|
|
|
19
39
|
export function registerOrchGovCommand(program) {
|
|
20
|
-
const og = program
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
og.command("
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
og.command("
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
const og = program
|
|
41
|
+
.command("orchgov")
|
|
42
|
+
.description("Orchestrator V2 governance");
|
|
43
|
+
og.command("enums-v2").action(() =>
|
|
44
|
+
console.log(
|
|
45
|
+
JSON.stringify(
|
|
46
|
+
{
|
|
47
|
+
profileMaturity: ORCH_PROFILE_MATURITY_V2,
|
|
48
|
+
taskLifecycle: ORCH_TASK_LIFECYCLE_V2,
|
|
49
|
+
},
|
|
50
|
+
null,
|
|
51
|
+
2,
|
|
52
|
+
),
|
|
53
|
+
),
|
|
54
|
+
);
|
|
55
|
+
og.command("config-v2").action(() =>
|
|
56
|
+
console.log(
|
|
57
|
+
JSON.stringify(
|
|
58
|
+
{
|
|
59
|
+
maxActiveOrchProfilesPerOwner: getMaxActiveOrchProfilesPerOwnerV2(),
|
|
60
|
+
maxPendingOrchTasksPerProfile: getMaxPendingOrchTasksPerProfileV2(),
|
|
61
|
+
orchProfileIdleMs: getOrchProfileIdleMsV2(),
|
|
62
|
+
orchTaskStuckMs: getOrchTaskStuckMsV2(),
|
|
63
|
+
},
|
|
64
|
+
null,
|
|
65
|
+
2,
|
|
66
|
+
),
|
|
67
|
+
),
|
|
68
|
+
);
|
|
69
|
+
og.command("set-max-active-v2 <n>").action((n) => {
|
|
70
|
+
setMaxActiveOrchProfilesPerOwnerV2(Number(n));
|
|
71
|
+
console.log("ok");
|
|
72
|
+
});
|
|
73
|
+
og.command("set-max-pending-v2 <n>").action((n) => {
|
|
74
|
+
setMaxPendingOrchTasksPerProfileV2(Number(n));
|
|
75
|
+
console.log("ok");
|
|
76
|
+
});
|
|
77
|
+
og.command("set-idle-ms-v2 <n>").action((n) => {
|
|
78
|
+
setOrchProfileIdleMsV2(Number(n));
|
|
79
|
+
console.log("ok");
|
|
80
|
+
});
|
|
81
|
+
og.command("set-stuck-ms-v2 <n>").action((n) => {
|
|
82
|
+
setOrchTaskStuckMsV2(Number(n));
|
|
83
|
+
console.log("ok");
|
|
84
|
+
});
|
|
85
|
+
og.command("register-profile-v2 <id> <owner>")
|
|
86
|
+
.option("--source <s>", "source")
|
|
87
|
+
.action((id, owner, o) =>
|
|
88
|
+
console.log(
|
|
89
|
+
JSON.stringify(
|
|
90
|
+
registerOrchProfileV2({ id, owner, source: o.source }),
|
|
91
|
+
null,
|
|
92
|
+
2,
|
|
93
|
+
),
|
|
94
|
+
),
|
|
95
|
+
);
|
|
96
|
+
og.command("activate-profile-v2 <id>").action((id) =>
|
|
97
|
+
console.log(JSON.stringify(activateOrchProfileV2(id), null, 2)),
|
|
98
|
+
);
|
|
99
|
+
og.command("pause-profile-v2 <id>").action((id) =>
|
|
100
|
+
console.log(JSON.stringify(pauseOrchProfileV2(id), null, 2)),
|
|
101
|
+
);
|
|
102
|
+
og.command("retire-profile-v2 <id>").action((id) =>
|
|
103
|
+
console.log(JSON.stringify(retireOrchProfileV2(id), null, 2)),
|
|
104
|
+
);
|
|
105
|
+
og.command("touch-profile-v2 <id>").action((id) =>
|
|
106
|
+
console.log(JSON.stringify(touchOrchProfileV2(id), null, 2)),
|
|
107
|
+
);
|
|
108
|
+
og.command("get-profile-v2 <id>").action((id) =>
|
|
109
|
+
console.log(JSON.stringify(getOrchProfileV2(id), null, 2)),
|
|
110
|
+
);
|
|
111
|
+
og.command("list-profiles-v2").action(() =>
|
|
112
|
+
console.log(JSON.stringify(listOrchProfilesV2(), null, 2)),
|
|
113
|
+
);
|
|
114
|
+
og.command("create-task-v2 <id> <profileId>")
|
|
115
|
+
.option("--prompt <p>", "prompt")
|
|
116
|
+
.action((id, profileId, o) =>
|
|
117
|
+
console.log(
|
|
118
|
+
JSON.stringify(
|
|
119
|
+
createOrchTaskV2({ id, profileId, prompt: o.prompt }),
|
|
120
|
+
null,
|
|
121
|
+
2,
|
|
122
|
+
),
|
|
123
|
+
),
|
|
124
|
+
);
|
|
125
|
+
og.command("dispatch-task-v2 <id>").action((id) =>
|
|
126
|
+
console.log(JSON.stringify(dispatchOrchTaskV2(id), null, 2)),
|
|
127
|
+
);
|
|
128
|
+
og.command("complete-task-v2 <id>").action((id) =>
|
|
129
|
+
console.log(JSON.stringify(completeOrchTaskV2(id), null, 2)),
|
|
130
|
+
);
|
|
131
|
+
og.command("fail-task-v2 <id> [reason]").action((id, reason) =>
|
|
132
|
+
console.log(JSON.stringify(failOrchTaskV2(id, reason), null, 2)),
|
|
133
|
+
);
|
|
134
|
+
og.command("cancel-task-v2 <id> [reason]").action((id, reason) =>
|
|
135
|
+
console.log(JSON.stringify(cancelOrchTaskV2(id, reason), null, 2)),
|
|
136
|
+
);
|
|
137
|
+
og.command("get-task-v2 <id>").action((id) =>
|
|
138
|
+
console.log(JSON.stringify(getOrchTaskV2(id), null, 2)),
|
|
139
|
+
);
|
|
140
|
+
og.command("list-tasks-v2").action(() =>
|
|
141
|
+
console.log(JSON.stringify(listOrchTasksV2(), null, 2)),
|
|
142
|
+
);
|
|
143
|
+
og.command("auto-pause-idle-v2").action(() =>
|
|
144
|
+
console.log(JSON.stringify(autoPauseIdleOrchProfilesV2(), null, 2)),
|
|
145
|
+
);
|
|
146
|
+
og.command("auto-fail-stuck-v2").action(() =>
|
|
147
|
+
console.log(JSON.stringify(autoFailStuckOrchTasksV2(), null, 2)),
|
|
148
|
+
);
|
|
149
|
+
og.command("gov-stats-v2").action(() =>
|
|
150
|
+
console.log(JSON.stringify(getOrchestratorGovStatsV2(), null, 2)),
|
|
151
|
+
);
|
|
152
|
+
og.command("reset-state-v2").action(() => {
|
|
153
|
+
_resetStateOrchestratorV2();
|
|
154
|
+
console.log(JSON.stringify({ ok: true }, null, 2));
|
|
155
|
+
});
|
|
45
156
|
}
|
package/src/commands/pdfp.js
CHANGED
|
@@ -37,42 +37,124 @@ export function registerPdfpCommand(program) {
|
|
|
37
37
|
.command("pdfp")
|
|
38
38
|
.description("PDF Parser V2 governance (in-memory, CLI v0.143.0)");
|
|
39
39
|
|
|
40
|
-
p.command("enums-v2").action(() =>
|
|
40
|
+
p.command("enums-v2").action(() =>
|
|
41
|
+
console.log(
|
|
42
|
+
JSON.stringify(
|
|
43
|
+
{ PDFP_PROFILE_MATURITY_V2, PDFP_PARSE_LIFECYCLE_V2 },
|
|
44
|
+
null,
|
|
45
|
+
2,
|
|
46
|
+
),
|
|
47
|
+
),
|
|
48
|
+
);
|
|
41
49
|
p.command("register-profile-v2")
|
|
42
50
|
.requiredOption("--id <id>")
|
|
43
51
|
.requiredOption("--owner <owner>")
|
|
44
52
|
.option("--encoding <encoding>", "encoding", "utf-8")
|
|
45
|
-
.action((o) =>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
p.command("
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
p.command("
|
|
53
|
+
.action((o) =>
|
|
54
|
+
console.log(JSON.stringify(registerPdfpProfileV2(o), null, 2)),
|
|
55
|
+
);
|
|
56
|
+
p.command("activate-profile-v2 <id>").action((id) =>
|
|
57
|
+
console.log(JSON.stringify(activatePdfpProfileV2(id), null, 2)),
|
|
58
|
+
);
|
|
59
|
+
p.command("stale-profile-v2 <id>").action((id) =>
|
|
60
|
+
console.log(JSON.stringify(stalePdfpProfileV2(id), null, 2)),
|
|
61
|
+
);
|
|
62
|
+
p.command("archive-profile-v2 <id>").action((id) =>
|
|
63
|
+
console.log(JSON.stringify(archivePdfpProfileV2(id), null, 2)),
|
|
64
|
+
);
|
|
65
|
+
p.command("touch-profile-v2 <id>").action((id) =>
|
|
66
|
+
console.log(JSON.stringify(touchPdfpProfileV2(id), null, 2)),
|
|
67
|
+
);
|
|
68
|
+
p.command("get-profile-v2 <id>").action((id) =>
|
|
69
|
+
console.log(JSON.stringify(getPdfpProfileV2(id), null, 2)),
|
|
70
|
+
);
|
|
71
|
+
p.command("list-profiles-v2").action(() =>
|
|
72
|
+
console.log(JSON.stringify(listPdfpProfilesV2(), null, 2)),
|
|
73
|
+
);
|
|
52
74
|
|
|
53
75
|
p.command("create-parse-v2")
|
|
54
76
|
.requiredOption("--id <id>")
|
|
55
77
|
.requiredOption("--profile-id <profileId>")
|
|
56
78
|
.option("--path <path>", "pdf path", "")
|
|
57
79
|
.action((o) => console.log(JSON.stringify(createPdfpParseV2(o), null, 2)));
|
|
58
|
-
p.command("parsing-parse-v2 <id>").action((id) =>
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
p.command("
|
|
62
|
-
|
|
63
|
-
|
|
80
|
+
p.command("parsing-parse-v2 <id>").action((id) =>
|
|
81
|
+
console.log(JSON.stringify(parsingPdfpParseV2(id), null, 2)),
|
|
82
|
+
);
|
|
83
|
+
p.command("parse-parse-v2 <id>").action((id) =>
|
|
84
|
+
console.log(JSON.stringify(parsePdfpParseV2(id), null, 2)),
|
|
85
|
+
);
|
|
86
|
+
p.command("fail-parse-v2 <id>")
|
|
87
|
+
.option("--reason <r>")
|
|
88
|
+
.action((id, o) =>
|
|
89
|
+
console.log(JSON.stringify(failPdfpParseV2(id, o.reason), null, 2)),
|
|
90
|
+
);
|
|
91
|
+
p.command("cancel-parse-v2 <id>")
|
|
92
|
+
.option("--reason <r>")
|
|
93
|
+
.action((id, o) =>
|
|
94
|
+
console.log(JSON.stringify(cancelPdfpParseV2(id, o.reason), null, 2)),
|
|
95
|
+
);
|
|
96
|
+
p.command("get-parse-v2 <id>").action((id) =>
|
|
97
|
+
console.log(JSON.stringify(getPdfpParseV2(id), null, 2)),
|
|
98
|
+
);
|
|
99
|
+
p.command("list-parses-v2").action(() =>
|
|
100
|
+
console.log(JSON.stringify(listPdfpParsesV2(), null, 2)),
|
|
101
|
+
);
|
|
64
102
|
|
|
65
|
-
p.command("config-v2").action(() =>
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
103
|
+
p.command("config-v2").action(() =>
|
|
104
|
+
console.log(
|
|
105
|
+
JSON.stringify(
|
|
106
|
+
{
|
|
107
|
+
maxActivePdfpProfilesPerOwner: getMaxActivePdfpProfilesPerOwnerV2(),
|
|
108
|
+
maxPendingPdfpParsesPerProfile: getMaxPendingPdfpParsesPerProfileV2(),
|
|
109
|
+
pdfpProfileIdleMs: getPdfpProfileIdleMsV2(),
|
|
110
|
+
pdfpParseStuckMs: getPdfpParseStuckMsV2(),
|
|
111
|
+
},
|
|
112
|
+
null,
|
|
113
|
+
2,
|
|
114
|
+
),
|
|
115
|
+
),
|
|
116
|
+
);
|
|
117
|
+
p.command("set-max-active-profiles-v2 <n>").action((n) => {
|
|
118
|
+
setMaxActivePdfpProfilesPerOwnerV2(Number(n));
|
|
119
|
+
console.log(
|
|
120
|
+
JSON.stringify(
|
|
121
|
+
{ maxActivePdfpProfilesPerOwner: getMaxActivePdfpProfilesPerOwnerV2() },
|
|
122
|
+
null,
|
|
123
|
+
2,
|
|
124
|
+
),
|
|
125
|
+
);
|
|
126
|
+
});
|
|
127
|
+
p.command("set-max-pending-parses-v2 <n>").action((n) => {
|
|
128
|
+
setMaxPendingPdfpParsesPerProfileV2(Number(n));
|
|
129
|
+
console.log(
|
|
130
|
+
JSON.stringify(
|
|
131
|
+
{
|
|
132
|
+
maxPendingPdfpParsesPerProfile: getMaxPendingPdfpParsesPerProfileV2(),
|
|
133
|
+
},
|
|
134
|
+
null,
|
|
135
|
+
2,
|
|
136
|
+
),
|
|
137
|
+
);
|
|
138
|
+
});
|
|
139
|
+
p.command("set-profile-idle-ms-v2 <ms>").action((ms) => {
|
|
140
|
+
setPdfpProfileIdleMsV2(Number(ms));
|
|
141
|
+
console.log(
|
|
142
|
+
JSON.stringify({ pdfpProfileIdleMs: getPdfpProfileIdleMsV2() }, null, 2),
|
|
143
|
+
);
|
|
144
|
+
});
|
|
145
|
+
p.command("set-parse-stuck-ms-v2 <ms>").action((ms) => {
|
|
146
|
+
setPdfpParseStuckMsV2(Number(ms));
|
|
147
|
+
console.log(
|
|
148
|
+
JSON.stringify({ pdfpParseStuckMs: getPdfpParseStuckMsV2() }, null, 2),
|
|
149
|
+
);
|
|
150
|
+
});
|
|
151
|
+
p.command("auto-stale-idle-v2").action(() =>
|
|
152
|
+
console.log(JSON.stringify(autoStaleIdlePdfpProfilesV2(), null, 2)),
|
|
153
|
+
);
|
|
154
|
+
p.command("auto-fail-stuck-v2").action(() =>
|
|
155
|
+
console.log(JSON.stringify(autoFailStuckPdfpParsesV2(), null, 2)),
|
|
156
|
+
);
|
|
157
|
+
p.command("gov-stats-v2").action(() =>
|
|
158
|
+
console.log(JSON.stringify(getPdfParserGovStatsV2(), null, 2)),
|
|
159
|
+
);
|
|
78
160
|
}
|