chainlesschain 0.145.0 → 0.152.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.
Files changed (113) hide show
  1. package/package.json +1 -1
  2. package/src/commands/activitypub.js +207 -0
  3. package/src/commands/agent-network.js +217 -0
  4. package/src/commands/automation.js +201 -0
  5. package/src/commands/bi.js +203 -0
  6. package/src/commands/browse.js +213 -0
  7. package/src/commands/codegen.js +207 -0
  8. package/src/commands/collab.js +211 -0
  9. package/src/commands/compliance.js +410 -0
  10. package/src/commands/cowork.js +203 -0
  11. package/src/commands/dbevo.js +227 -0
  12. package/src/commands/dev.js +207 -0
  13. package/src/commands/did-v2.js +217 -0
  14. package/src/commands/did.js +221 -0
  15. package/src/commands/dlp.js +213 -0
  16. package/src/commands/evomap.js +205 -0
  17. package/src/commands/export.js +213 -0
  18. package/src/commands/federation.js +209 -0
  19. package/src/commands/fusion.js +205 -0
  20. package/src/commands/governance.js +209 -0
  21. package/src/commands/hook.js +209 -0
  22. package/src/commands/import.js +209 -0
  23. package/src/commands/infra.js +203 -0
  24. package/src/commands/instinct.js +209 -0
  25. package/src/commands/ipfs.js +207 -0
  26. package/src/commands/llm.js +217 -0
  27. package/src/commands/matrix.js +207 -0
  28. package/src/commands/mcp.js +217 -0
  29. package/src/commands/memory.js +209 -0
  30. package/src/commands/multimodal.js +203 -0
  31. package/src/commands/nlprog.js +225 -0
  32. package/src/commands/nostr.js +209 -0
  33. package/src/commands/note.js +205 -0
  34. package/src/commands/ops.js +219 -0
  35. package/src/commands/org.js +209 -0
  36. package/src/commands/p2p.js +209 -0
  37. package/src/commands/perception.js +209 -0
  38. package/src/commands/permmem.js +203 -0
  39. package/src/commands/plugin-ecosystem.js +209 -0
  40. package/src/commands/pqc.js +213 -0
  41. package/src/commands/quantization.js +207 -0
  42. package/src/commands/rcache.js +205 -0
  43. package/src/commands/recommend.js +233 -0
  44. package/src/commands/runtime.js +205 -0
  45. package/src/commands/scim.js +209 -0
  46. package/src/commands/session.js +209 -0
  47. package/src/commands/skill.js +207 -0
  48. package/src/commands/social.js +201 -0
  49. package/src/commands/sso.js +209 -0
  50. package/src/commands/sync.js +209 -0
  51. package/src/commands/tech.js +209 -0
  52. package/src/commands/tenant.js +217 -0
  53. package/src/commands/tokens.js +209 -0
  54. package/src/commands/trust.js +217 -0
  55. package/src/commands/wallet.js +209 -0
  56. package/src/commands/workflow.js +203 -0
  57. package/src/index.js +140 -0
  58. package/src/lib/activitypub-bridge.js +334 -0
  59. package/src/lib/agent-network.js +341 -0
  60. package/src/lib/aiops.js +346 -0
  61. package/src/lib/automation-engine.js +335 -0
  62. package/src/lib/autonomous-developer.js +332 -0
  63. package/src/lib/bi-engine.js +333 -0
  64. package/src/lib/browser-automation.js +334 -0
  65. package/src/lib/code-agent.js +339 -0
  66. package/src/lib/collaboration-governance.js +334 -0
  67. package/src/lib/community-governance.js +346 -0
  68. package/src/lib/content-recommendation.js +351 -0
  69. package/src/lib/cowork-share.js +338 -0
  70. package/src/lib/dbevo.js +351 -0
  71. package/src/lib/decentral-infra.js +330 -0
  72. package/src/lib/did-manager.js +341 -0
  73. package/src/lib/did-v2-manager.js +341 -0
  74. package/src/lib/dlp-engine.js +339 -0
  75. package/src/lib/evomap-governance.js +334 -0
  76. package/src/lib/federation-hardening.js +340 -0
  77. package/src/lib/hook-manager.js +341 -0
  78. package/src/lib/instinct-manager.js +346 -0
  79. package/src/lib/ipfs-storage.js +334 -0
  80. package/src/lib/knowledge-exporter.js +341 -0
  81. package/src/lib/knowledge-importer.js +341 -0
  82. package/src/lib/llm-providers.js +346 -0
  83. package/src/lib/matrix-bridge.js +339 -0
  84. package/src/lib/mcp-registry.js +346 -0
  85. package/src/lib/memory-manager.js +336 -0
  86. package/src/lib/multimodal.js +330 -0
  87. package/src/lib/nl-programming.js +341 -0
  88. package/src/lib/nostr-bridge.js +336 -0
  89. package/src/lib/note-versioning.js +339 -0
  90. package/src/lib/org-manager.js +336 -0
  91. package/src/lib/p2p-manager.js +341 -0
  92. package/src/lib/perception.js +346 -0
  93. package/src/lib/permanent-memory.js +327 -0
  94. package/src/lib/plugin-ecosystem.js +346 -0
  95. package/src/lib/pqc-manager.js +346 -0
  96. package/src/lib/protocol-fusion.js +338 -0
  97. package/src/lib/quantization.js +337 -0
  98. package/src/lib/response-cache.js +333 -0
  99. package/src/lib/scim-manager.js +346 -0
  100. package/src/lib/session-manager.js +334 -0
  101. package/src/lib/skill-loader.js +334 -0
  102. package/src/lib/social-manager.js +330 -0
  103. package/src/lib/sso-manager.js +340 -0
  104. package/src/lib/sync-manager.js +336 -0
  105. package/src/lib/tech-learning-engine.js +341 -0
  106. package/src/lib/tenant-saas.js +341 -0
  107. package/src/lib/threat-intel.js +330 -0
  108. package/src/lib/token-tracker.js +336 -0
  109. package/src/lib/trust-security.js +343 -0
  110. package/src/lib/ueba.js +340 -0
  111. package/src/lib/universal-runtime.js +330 -0
  112. package/src/lib/wallet-manager.js +336 -0
  113. package/src/lib/workflow-engine.js +330 -0
@@ -691,3 +691,212 @@ export function registerWalletCommand(program) {
691
691
  console.log(JSON.stringify(autoFailStuckTxV2(), null, 2));
692
692
  });
693
693
  }
694
+
695
+ // === Iter20 V2 governance overlay ===
696
+ export function registerWalgovV2Commands(program) {
697
+ const parent = program.commands.find((c) => c.name() === "wallet");
698
+ if (!parent) return;
699
+ const L = async () => await import("../lib/wallet-manager.js");
700
+ parent
701
+ .command("walgov-enums-v2")
702
+ .description("Show V2 enums")
703
+ .action(async () => {
704
+ const m = await L();
705
+ console.log(
706
+ JSON.stringify(
707
+ {
708
+ profileMaturity: m.WALGOV_PROFILE_MATURITY_V2,
709
+ transferLifecycle: m.WALGOV_TRANSFER_LIFECYCLE_V2,
710
+ },
711
+ null,
712
+ 2,
713
+ ),
714
+ );
715
+ });
716
+ parent
717
+ .command("walgov-config-v2")
718
+ .description("Show V2 config")
719
+ .action(async () => {
720
+ const m = await L();
721
+ console.log(
722
+ JSON.stringify(
723
+ {
724
+ maxActive: m.getMaxActiveWalgovProfilesPerOwnerV2(),
725
+ maxPending: m.getMaxPendingWalgovTransfersPerProfileV2(),
726
+ idleMs: m.getWalgovProfileIdleMsV2(),
727
+ stuckMs: m.getWalgovTransferStuckMsV2(),
728
+ },
729
+ null,
730
+ 2,
731
+ ),
732
+ );
733
+ });
734
+ parent
735
+ .command("walgov-set-max-active-v2 <n>")
736
+ .description("Set max active")
737
+ .action(async (n) => {
738
+ (await L()).setMaxActiveWalgovProfilesPerOwnerV2(Number(n));
739
+ console.log("ok");
740
+ });
741
+ parent
742
+ .command("walgov-set-max-pending-v2 <n>")
743
+ .description("Set max pending")
744
+ .action(async (n) => {
745
+ (await L()).setMaxPendingWalgovTransfersPerProfileV2(Number(n));
746
+ console.log("ok");
747
+ });
748
+ parent
749
+ .command("walgov-set-idle-ms-v2 <n>")
750
+ .description("Set idle threshold ms")
751
+ .action(async (n) => {
752
+ (await L()).setWalgovProfileIdleMsV2(Number(n));
753
+ console.log("ok");
754
+ });
755
+ parent
756
+ .command("walgov-set-stuck-ms-v2 <n>")
757
+ .description("Set stuck threshold ms")
758
+ .action(async (n) => {
759
+ (await L()).setWalgovTransferStuckMsV2(Number(n));
760
+ console.log("ok");
761
+ });
762
+ parent
763
+ .command("walgov-register-v2 <id> <owner>")
764
+ .description("Register V2 profile")
765
+ .option("--chain <v>", "chain")
766
+ .action(async (id, owner, o) => {
767
+ const m = await L();
768
+ console.log(
769
+ JSON.stringify(
770
+ m.registerWalgovProfileV2({ id, owner, chain: o.chain }),
771
+ null,
772
+ 2,
773
+ ),
774
+ );
775
+ });
776
+ parent
777
+ .command("walgov-activate-v2 <id>")
778
+ .description("Activate profile")
779
+ .action(async (id) => {
780
+ console.log(
781
+ JSON.stringify((await L()).activateWalgovProfileV2(id), null, 2),
782
+ );
783
+ });
784
+ parent
785
+ .command("walgov-freeze-v2 <id>")
786
+ .description("Freeze profile")
787
+ .action(async (id) => {
788
+ console.log(
789
+ JSON.stringify((await L()).freezeWalgovProfileV2(id), null, 2),
790
+ );
791
+ });
792
+ parent
793
+ .command("walgov-archive-v2 <id>")
794
+ .description("Archive profile")
795
+ .action(async (id) => {
796
+ console.log(
797
+ JSON.stringify((await L()).archiveWalgovProfileV2(id), null, 2),
798
+ );
799
+ });
800
+ parent
801
+ .command("walgov-touch-v2 <id>")
802
+ .description("Touch profile")
803
+ .action(async (id) => {
804
+ console.log(
805
+ JSON.stringify((await L()).touchWalgovProfileV2(id), null, 2),
806
+ );
807
+ });
808
+ parent
809
+ .command("walgov-get-v2 <id>")
810
+ .description("Get profile")
811
+ .action(async (id) => {
812
+ console.log(JSON.stringify((await L()).getWalgovProfileV2(id), null, 2));
813
+ });
814
+ parent
815
+ .command("walgov-list-v2")
816
+ .description("List profiles")
817
+ .action(async () => {
818
+ console.log(JSON.stringify((await L()).listWalgovProfilesV2(), null, 2));
819
+ });
820
+ parent
821
+ .command("walgov-create-transfer-v2 <id> <profileId>")
822
+ .description("Create transfer")
823
+ .option("--to <v>", "to")
824
+ .action(async (id, profileId, o) => {
825
+ const m = await L();
826
+ console.log(
827
+ JSON.stringify(
828
+ m.createWalgovTransferV2({ id, profileId, to: o.to }),
829
+ null,
830
+ 2,
831
+ ),
832
+ );
833
+ });
834
+ parent
835
+ .command("walgov-signing-transfer-v2 <id>")
836
+ .description("Mark transfer as signing")
837
+ .action(async (id) => {
838
+ console.log(
839
+ JSON.stringify((await L()).signingWalgovTransferV2(id), null, 2),
840
+ );
841
+ });
842
+ parent
843
+ .command("walgov-complete-transfer-v2 <id>")
844
+ .description("Complete transfer")
845
+ .action(async (id) => {
846
+ console.log(
847
+ JSON.stringify((await L()).completeTransferWalgovV2(id), null, 2),
848
+ );
849
+ });
850
+ parent
851
+ .command("walgov-fail-transfer-v2 <id> [reason]")
852
+ .description("Fail transfer")
853
+ .action(async (id, reason) => {
854
+ console.log(
855
+ JSON.stringify((await L()).failWalgovTransferV2(id, reason), null, 2),
856
+ );
857
+ });
858
+ parent
859
+ .command("walgov-cancel-transfer-v2 <id> [reason]")
860
+ .description("Cancel transfer")
861
+ .action(async (id, reason) => {
862
+ console.log(
863
+ JSON.stringify((await L()).cancelWalgovTransferV2(id, reason), null, 2),
864
+ );
865
+ });
866
+ parent
867
+ .command("walgov-get-transfer-v2 <id>")
868
+ .description("Get transfer")
869
+ .action(async (id) => {
870
+ console.log(JSON.stringify((await L()).getWalgovTransferV2(id), null, 2));
871
+ });
872
+ parent
873
+ .command("walgov-list-transfers-v2")
874
+ .description("List transfers")
875
+ .action(async () => {
876
+ console.log(JSON.stringify((await L()).listWalgovTransfersV2(), null, 2));
877
+ });
878
+ parent
879
+ .command("walgov-auto-freeze-idle-v2")
880
+ .description("Auto-freeze idle")
881
+ .action(async () => {
882
+ console.log(
883
+ JSON.stringify((await L()).autoFreezeIdleWalgovProfilesV2(), null, 2),
884
+ );
885
+ });
886
+ parent
887
+ .command("walgov-auto-fail-stuck-v2")
888
+ .description("Auto-fail stuck transfers")
889
+ .action(async () => {
890
+ console.log(
891
+ JSON.stringify((await L()).autoFailStuckWalgovTransfersV2(), null, 2),
892
+ );
893
+ });
894
+ parent
895
+ .command("walgov-gov-stats-v2")
896
+ .description("V2 gov stats")
897
+ .action(async () => {
898
+ console.log(
899
+ JSON.stringify((await L()).getWalletManagerGovStatsV2(), null, 2),
900
+ );
901
+ });
902
+ }
@@ -848,3 +848,206 @@ export function registerWorkflowCommand(program) {
848
848
  .description("V2 auto-fail stuck")
849
849
  .action(() => _v2json(autoFailStuckRunsV2()));
850
850
  }
851
+
852
+ // === Iter21 V2 governance overlay ===
853
+ export function registerWfgovV2Commands(program) {
854
+ const parent = program.commands.find((c) => c.name() === "workflow");
855
+ if (!parent) return;
856
+ const L = async () => await import("../lib/workflow-engine.js");
857
+ parent
858
+ .command("wfgov-enums-v2")
859
+ .description("Show V2 enums")
860
+ .action(async () => {
861
+ const m = await L();
862
+ console.log(
863
+ JSON.stringify(
864
+ {
865
+ profileMaturity: m.WFGOV_PROFILE_MATURITY_V2,
866
+ stepLifecycle: m.WFGOV_STEP_LIFECYCLE_V2,
867
+ },
868
+ null,
869
+ 2,
870
+ ),
871
+ );
872
+ });
873
+ parent
874
+ .command("wfgov-config-v2")
875
+ .description("Show V2 config")
876
+ .action(async () => {
877
+ const m = await L();
878
+ console.log(
879
+ JSON.stringify(
880
+ {
881
+ maxActive: m.getMaxActiveWfgovProfilesPerOwnerV2(),
882
+ maxPending: m.getMaxPendingWfgovStepsPerProfileV2(),
883
+ idleMs: m.getWfgovProfileIdleMsV2(),
884
+ stuckMs: m.getWfgovStepStuckMsV2(),
885
+ },
886
+ null,
887
+ 2,
888
+ ),
889
+ );
890
+ });
891
+ parent
892
+ .command("wfgov-set-max-active-v2 <n>")
893
+ .description("Set max active")
894
+ .action(async (n) => {
895
+ (await L()).setMaxActiveWfgovProfilesPerOwnerV2(Number(n));
896
+ console.log("ok");
897
+ });
898
+ parent
899
+ .command("wfgov-set-max-pending-v2 <n>")
900
+ .description("Set max pending")
901
+ .action(async (n) => {
902
+ (await L()).setMaxPendingWfgovStepsPerProfileV2(Number(n));
903
+ console.log("ok");
904
+ });
905
+ parent
906
+ .command("wfgov-set-idle-ms-v2 <n>")
907
+ .description("Set idle threshold ms")
908
+ .action(async (n) => {
909
+ (await L()).setWfgovProfileIdleMsV2(Number(n));
910
+ console.log("ok");
911
+ });
912
+ parent
913
+ .command("wfgov-set-stuck-ms-v2 <n>")
914
+ .description("Set stuck threshold ms")
915
+ .action(async (n) => {
916
+ (await L()).setWfgovStepStuckMsV2(Number(n));
917
+ console.log("ok");
918
+ });
919
+ parent
920
+ .command("wfgov-register-v2 <id> <owner>")
921
+ .description("Register V2 profile")
922
+ .option("--kind <v>", "kind")
923
+ .action(async (id, owner, o) => {
924
+ const m = await L();
925
+ console.log(
926
+ JSON.stringify(
927
+ m.registerWfgovProfileV2({ id, owner, kind: o.kind }),
928
+ null,
929
+ 2,
930
+ ),
931
+ );
932
+ });
933
+ parent
934
+ .command("wfgov-activate-v2 <id>")
935
+ .description("Activate profile")
936
+ .action(async (id) => {
937
+ console.log(
938
+ JSON.stringify((await L()).activateWfgovProfileV2(id), null, 2),
939
+ );
940
+ });
941
+ parent
942
+ .command("wfgov-pause-v2 <id>")
943
+ .description("Pause profile")
944
+ .action(async (id) => {
945
+ console.log(JSON.stringify((await L()).pauseWfgovProfileV2(id), null, 2));
946
+ });
947
+ parent
948
+ .command("wfgov-archive-v2 <id>")
949
+ .description("Archive profile")
950
+ .action(async (id) => {
951
+ console.log(
952
+ JSON.stringify((await L()).archiveWfgovProfileV2(id), null, 2),
953
+ );
954
+ });
955
+ parent
956
+ .command("wfgov-touch-v2 <id>")
957
+ .description("Touch profile")
958
+ .action(async (id) => {
959
+ console.log(JSON.stringify((await L()).touchWfgovProfileV2(id), null, 2));
960
+ });
961
+ parent
962
+ .command("wfgov-get-v2 <id>")
963
+ .description("Get profile")
964
+ .action(async (id) => {
965
+ console.log(JSON.stringify((await L()).getWfgovProfileV2(id), null, 2));
966
+ });
967
+ parent
968
+ .command("wfgov-list-v2")
969
+ .description("List profiles")
970
+ .action(async () => {
971
+ console.log(JSON.stringify((await L()).listWfgovProfilesV2(), null, 2));
972
+ });
973
+ parent
974
+ .command("wfgov-create-step-v2 <id> <profileId>")
975
+ .description("Create step")
976
+ .option("--stepName <v>", "stepName")
977
+ .action(async (id, profileId, o) => {
978
+ const m = await L();
979
+ console.log(
980
+ JSON.stringify(
981
+ m.createWfgovStepV2({ id, profileId, stepName: o.stepName }),
982
+ null,
983
+ 2,
984
+ ),
985
+ );
986
+ });
987
+ parent
988
+ .command("wfgov-executing-step-v2 <id>")
989
+ .description("Mark step as executing")
990
+ .action(async (id) => {
991
+ console.log(
992
+ JSON.stringify((await L()).executingWfgovStepV2(id), null, 2),
993
+ );
994
+ });
995
+ parent
996
+ .command("wfgov-complete-step-v2 <id>")
997
+ .description("Complete step")
998
+ .action(async (id) => {
999
+ console.log(JSON.stringify((await L()).completeStepWfgovV2(id), null, 2));
1000
+ });
1001
+ parent
1002
+ .command("wfgov-fail-step-v2 <id> [reason]")
1003
+ .description("Fail step")
1004
+ .action(async (id, reason) => {
1005
+ console.log(
1006
+ JSON.stringify((await L()).failWfgovStepV2(id, reason), null, 2),
1007
+ );
1008
+ });
1009
+ parent
1010
+ .command("wfgov-cancel-step-v2 <id> [reason]")
1011
+ .description("Cancel step")
1012
+ .action(async (id, reason) => {
1013
+ console.log(
1014
+ JSON.stringify((await L()).cancelWfgovStepV2(id, reason), null, 2),
1015
+ );
1016
+ });
1017
+ parent
1018
+ .command("wfgov-get-step-v2 <id>")
1019
+ .description("Get step")
1020
+ .action(async (id) => {
1021
+ console.log(JSON.stringify((await L()).getWfgovStepV2(id), null, 2));
1022
+ });
1023
+ parent
1024
+ .command("wfgov-list-steps-v2")
1025
+ .description("List steps")
1026
+ .action(async () => {
1027
+ console.log(JSON.stringify((await L()).listWfgovStepsV2(), null, 2));
1028
+ });
1029
+ parent
1030
+ .command("wfgov-auto-pause-idle-v2")
1031
+ .description("Auto-pause idle")
1032
+ .action(async () => {
1033
+ console.log(
1034
+ JSON.stringify((await L()).autoPauseIdleWfgovProfilesV2(), null, 2),
1035
+ );
1036
+ });
1037
+ parent
1038
+ .command("wfgov-auto-fail-stuck-v2")
1039
+ .description("Auto-fail stuck steps")
1040
+ .action(async () => {
1041
+ console.log(
1042
+ JSON.stringify((await L()).autoFailStuckWfgovStepsV2(), null, 2),
1043
+ );
1044
+ });
1045
+ parent
1046
+ .command("wfgov-gov-stats-v2")
1047
+ .description("V2 gov stats")
1048
+ .action(async () => {
1049
+ console.log(
1050
+ JSON.stringify((await L()).getWorkflowEngineGovStatsV2(), null, 2),
1051
+ );
1052
+ });
1053
+ }
package/src/index.js CHANGED
@@ -229,6 +229,76 @@ import { registerPcgovV2Commands } from "./commands/privacy.js";
229
229
  import { registerIncgovV2Commands } from "./commands/incentive.js";
230
230
  import { registerHardgovV2Commands } from "./commands/hardening.js";
231
231
 
232
+ // Iter18 V2 governance overlays
233
+ import { registerAiopsgovV2Commands } from "./commands/ops.js";
234
+ import { registerMmgovV2Commands } from "./commands/multimodal.js";
235
+ import { registerInstgovV2Commands } from "./commands/instinct.js";
236
+ import { registerTnsgovV2Commands } from "./commands/tenant.js";
237
+ import { registerQntgovV2Commands } from "./commands/quantization.js";
238
+ import { registerTrustgovV2Commands } from "./commands/trust.js";
239
+ import { registerNlpgovV2Commands } from "./commands/nlprog.js";
240
+ import { registerPercgovV2Commands } from "./commands/perception.js";
241
+
242
+ // Iter19 V2 governance overlays
243
+ import { registerCdagovV2Commands } from "./commands/codegen.js";
244
+ import { registerCogovV2Commands } from "./commands/collab.js";
245
+ import { registerCommgovV2Commands } from "./commands/governance.js";
246
+ import { registerDidgovV2Commands } from "./commands/did.js";
247
+ import { registerSsogovV2Commands } from "./commands/sso.js";
248
+ import { registerOrggovV2Commands } from "./commands/org.js";
249
+ import { registerScimgovV2Commands } from "./commands/scim.js";
250
+ import { registerSyncgovV2Commands } from "./commands/sync.js";
251
+
252
+ // Iter20 V2 governance overlays
253
+ import { registerAnetgovV2Commands } from "./commands/agent-network.js";
254
+ import { registerBagovV2Commands } from "./commands/browse.js";
255
+ import { registerDlpgovV2Commands } from "./commands/dlp.js";
256
+ import { registerEvgovV2Commands } from "./commands/evomap.js";
257
+ import { registerFedgovV2Commands } from "./commands/federation.js";
258
+ import { registerIpfsgovV2Commands } from "./commands/ipfs.js";
259
+ import { registerP2pgovV2Commands } from "./commands/p2p.js";
260
+ import { registerWalgovV2Commands } from "./commands/wallet.js";
261
+
262
+ // Iter21 V2 governance overlays
263
+ import { registerApgovV2Commands } from "./commands/activitypub.js";
264
+ import { registerMatgovV2Commands } from "./commands/matrix.js";
265
+ import { registerNosgovV2Commands } from "./commands/nostr.js";
266
+ import { registerBigovV2Commands } from "./commands/bi.js";
267
+ import { registerMemgovV2Commands } from "./commands/memory.js";
268
+ import { registerSesgovV2Commands } from "./commands/session.js";
269
+ import { registerHookgovV2Commands } from "./commands/hook.js";
270
+ import { registerWfgovV2Commands } from "./commands/workflow.js";
271
+
272
+ // Iter22 V2 governance overlays
273
+ import { registerAugovV2Commands } from "./commands/automation.js";
274
+ import { registerShgovV2Commands } from "./commands/cowork.js";
275
+ import { registerDv2govV2Commands } from "./commands/did-v2.js";
276
+ import { registerKexpgovV2Commands } from "./commands/export.js";
277
+ import { registerKimpgovV2Commands } from "./commands/import.js";
278
+ import { registerLlmgovV2Commands } from "./commands/llm.js";
279
+ import { registerPqcgovV2Commands } from "./commands/pqc.js";
280
+ import { registerSmgovV2Commands } from "./commands/social.js";
281
+
282
+ // Iter23 V2 governance overlays
283
+ import { registerRcgovV2Commands } from "./commands/rcache.js";
284
+ import { registerTechgovV2Commands } from "./commands/tech.js";
285
+ import { registerRtgovV2Commands } from "./commands/runtime.js";
286
+ import { registerNtgovV2Commands } from "./commands/note.js";
287
+ import { registerPmgovV2Commands } from "./commands/permmem.js";
288
+ import { registerPfgovV2Commands } from "./commands/fusion.js";
289
+ import { registerDbevogovV2Commands } from "./commands/dbevo.js";
290
+ import { registerDigovV2Commands } from "./commands/infra.js";
291
+
292
+ // Iter24 V2 governance overlays
293
+ import { registerRcmdgovV2Commands } from "./commands/recommend.js";
294
+ import { registerMcpgovV2Commands } from "./commands/mcp.js";
295
+ import { registerEcogovV2Commands } from "./commands/plugin-ecosystem.js";
296
+ import { registerSklgovV2Commands } from "./commands/skill.js";
297
+ import { registerToktgovV2Commands } from "./commands/tokens.js";
298
+ import { registerDevgovV2Commands } from "./commands/dev.js";
299
+ import { registerTigovV2Commands } from "./commands/compliance.js";
300
+ import { registerUebgovV2Commands } from "./commands/compliance.js";
301
+
232
302
  export function createProgram() {
233
303
  const program = new Command();
234
304
 
@@ -468,5 +538,75 @@ export function createProgram() {
468
538
  registerIncgovV2Commands(program);
469
539
  registerHardgovV2Commands(program);
470
540
 
541
+ // Iter18 V2 governance overlays
542
+ registerAiopsgovV2Commands(program);
543
+ registerMmgovV2Commands(program);
544
+ registerInstgovV2Commands(program);
545
+ registerTnsgovV2Commands(program);
546
+ registerQntgovV2Commands(program);
547
+ registerTrustgovV2Commands(program);
548
+ registerNlpgovV2Commands(program);
549
+ registerPercgovV2Commands(program);
550
+
551
+ // Iter19 V2 governance overlays
552
+ registerCdagovV2Commands(program);
553
+ registerCogovV2Commands(program);
554
+ registerCommgovV2Commands(program);
555
+ registerDidgovV2Commands(program);
556
+ registerSsogovV2Commands(program);
557
+ registerOrggovV2Commands(program);
558
+ registerScimgovV2Commands(program);
559
+ registerSyncgovV2Commands(program);
560
+
561
+ // Iter20 V2 governance overlays
562
+ registerAnetgovV2Commands(program);
563
+ registerBagovV2Commands(program);
564
+ registerDlpgovV2Commands(program);
565
+ registerEvgovV2Commands(program);
566
+ registerFedgovV2Commands(program);
567
+ registerIpfsgovV2Commands(program);
568
+ registerP2pgovV2Commands(program);
569
+ registerWalgovV2Commands(program);
570
+
571
+ // Iter21 V2 governance overlays
572
+ registerApgovV2Commands(program);
573
+ registerMatgovV2Commands(program);
574
+ registerNosgovV2Commands(program);
575
+ registerBigovV2Commands(program);
576
+ registerMemgovV2Commands(program);
577
+ registerSesgovV2Commands(program);
578
+ registerHookgovV2Commands(program);
579
+ registerWfgovV2Commands(program);
580
+
581
+ // Iter22 V2 governance overlays
582
+ registerAugovV2Commands(program);
583
+ registerShgovV2Commands(program);
584
+ registerDv2govV2Commands(program);
585
+ registerKexpgovV2Commands(program);
586
+ registerKimpgovV2Commands(program);
587
+ registerLlmgovV2Commands(program);
588
+ registerPqcgovV2Commands(program);
589
+ registerSmgovV2Commands(program);
590
+
591
+ // Iter23 V2 governance overlays
592
+ registerRcgovV2Commands(program);
593
+ registerTechgovV2Commands(program);
594
+ registerRtgovV2Commands(program);
595
+ registerNtgovV2Commands(program);
596
+ registerPmgovV2Commands(program);
597
+ registerPfgovV2Commands(program);
598
+ registerDbevogovV2Commands(program);
599
+ registerDigovV2Commands(program);
600
+
601
+ // Iter24 V2 governance overlays
602
+ registerRcmdgovV2Commands(program);
603
+ registerMcpgovV2Commands(program);
604
+ registerEcogovV2Commands(program);
605
+ registerSklgovV2Commands(program);
606
+ registerToktgovV2Commands(program);
607
+ registerDevgovV2Commands(program);
608
+ registerTigovV2Commands(program);
609
+ registerUebgovV2Commands(program);
610
+
471
611
  return program;
472
612
  }