@wowok/agent-mcp 2.3.14 → 2.3.16

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 (156) hide show
  1. package/dist/config/index.d.ts +1 -0
  2. package/dist/config/index.js +1 -0
  3. package/dist/config/runtime.d.ts +26 -0
  4. package/dist/config/runtime.js +217 -0
  5. package/dist/customer/industry-risks.d.ts +36 -0
  6. package/dist/customer/industry-risks.js +424 -0
  7. package/dist/customer/info-puzzle.d.ts +102 -0
  8. package/dist/customer/info-puzzle.js +312 -0
  9. package/dist/customer/order-monitor.d.ts +75 -0
  10. package/dist/customer/order-monitor.js +327 -0
  11. package/dist/customer/order-strategy.d.ts +36 -0
  12. package/dist/customer/order-strategy.js +373 -0
  13. package/dist/customer/post-purchase.d.ts +42 -0
  14. package/dist/customer/post-purchase.js +350 -0
  15. package/dist/customer/reminder-system.d.ts +42 -0
  16. package/dist/customer/reminder-system.js +295 -0
  17. package/dist/customer/risk-assessment.d.ts +8 -0
  18. package/dist/customer/risk-assessment.js +337 -0
  19. package/dist/customer/types.d.ts +193 -0
  20. package/dist/customer/types.js +13 -0
  21. package/dist/customer/user-preferences.d.ts +67 -0
  22. package/dist/customer/user-preferences.js +451 -0
  23. package/dist/experience/experience-reuse.d.ts +10 -0
  24. package/dist/experience/experience-reuse.js +103 -0
  25. package/dist/experience/index.d.ts +6 -0
  26. package/dist/experience/index.js +5 -0
  27. package/dist/experience/intent-distill.d.ts +3 -0
  28. package/dist/experience/intent-distill.js +83 -0
  29. package/dist/experience/realtime-feedback.d.ts +5 -0
  30. package/dist/experience/realtime-feedback.js +77 -0
  31. package/dist/experience/types.d.ts +50 -0
  32. package/dist/experience/types.js +1 -0
  33. package/dist/experience/user-profile.d.ts +25 -0
  34. package/dist/experience/user-profile.js +171 -0
  35. package/dist/index.js +570 -186
  36. package/dist/knowledge/acquisition-flywheel.d.ts +50 -0
  37. package/dist/knowledge/acquisition-flywheel.js +183 -0
  38. package/dist/knowledge/arbitration-trust.d.ts +24 -0
  39. package/dist/knowledge/arbitration-trust.js +117 -0
  40. package/dist/knowledge/audit-rules.d.ts +28 -0
  41. package/dist/knowledge/audit-rules.js +141 -0
  42. package/dist/knowledge/demand-matching.d.ts +29 -0
  43. package/dist/knowledge/demand-matching.js +132 -0
  44. package/dist/knowledge/dynamic-pricing.d.ts +31 -0
  45. package/dist/knowledge/dynamic-pricing.js +87 -0
  46. package/dist/knowledge/flywheel-loop.d.ts +87 -0
  47. package/dist/knowledge/flywheel-loop.js +378 -0
  48. package/dist/knowledge/glossary.d.ts +18 -0
  49. package/dist/knowledge/glossary.js +209 -0
  50. package/dist/knowledge/index.d.ts +64 -0
  51. package/dist/knowledge/index.js +66 -0
  52. package/dist/knowledge/industry-evolution.d.ts +82 -0
  53. package/dist/knowledge/industry-evolution.js +323 -0
  54. package/dist/knowledge/industry-generalizer.d.ts +17 -0
  55. package/dist/knowledge/industry-generalizer.js +381 -0
  56. package/dist/knowledge/industry-registry.d.ts +49 -0
  57. package/dist/knowledge/industry-registry.js +167 -0
  58. package/dist/knowledge/intent-metrics.d.ts +42 -0
  59. package/dist/knowledge/intent-metrics.js +566 -0
  60. package/dist/knowledge/process-model.d.ts +24 -0
  61. package/dist/knowledge/process-model.js +160 -0
  62. package/dist/knowledge/reputation-rules.d.ts +42 -0
  63. package/dist/knowledge/reputation-rules.js +99 -0
  64. package/dist/knowledge/reward-templates.d.ts +25 -0
  65. package/dist/knowledge/reward-templates.js +125 -0
  66. package/dist/knowledge/safety-rules.d.ts +36 -0
  67. package/dist/knowledge/safety-rules.js +171 -0
  68. package/dist/knowledge/tool-constraints.d.ts +30 -0
  69. package/dist/knowledge/tool-constraints.js +185 -0
  70. package/dist/knowledge/trust-metrics.d.ts +37 -0
  71. package/dist/knowledge/trust-metrics.js +138 -0
  72. package/dist/loop-engineering/diagnose.d.ts +3 -2
  73. package/dist/loop-engineering/diagnose.js +94 -0
  74. package/dist/loop-engineering/improve.d.ts +1 -1
  75. package/dist/loop-engineering/improve.js +52 -1
  76. package/dist/project/graph.d.ts +71 -0
  77. package/dist/project/graph.js +314 -0
  78. package/dist/project/index.d.ts +62 -0
  79. package/dist/project/index.js +167 -0
  80. package/dist/project/namespace.d.ts +62 -0
  81. package/dist/project/namespace.js +181 -0
  82. package/dist/project/query.d.ts +40 -0
  83. package/dist/project/query.js +110 -0
  84. package/dist/safety/confirm-gate.d.ts +15 -0
  85. package/dist/safety/confirm-gate.js +44 -0
  86. package/dist/safety/index.d.ts +3 -0
  87. package/dist/safety/index.js +3 -0
  88. package/dist/safety/preview.d.ts +2 -0
  89. package/dist/safety/preview.js +36 -0
  90. package/dist/schema/call/allocation.d.ts +15 -0
  91. package/dist/schema/call/arbitration.d.ts +111 -96
  92. package/dist/schema/call/base.d.ts +1070 -44
  93. package/dist/schema/call/base.js +69 -1
  94. package/dist/schema/call/bridge.d.ts +709 -52
  95. package/dist/schema/call/bridge.js +13 -2
  96. package/dist/schema/call/contact.d.ts +15 -0
  97. package/dist/schema/call/demand.d.ts +69 -54
  98. package/dist/schema/call/guard.d.ts +125 -80
  99. package/dist/schema/call/handler.d.ts +3 -0
  100. package/dist/schema/call/handler.js +14 -0
  101. package/dist/schema/call/machine.d.ts +830 -800
  102. package/dist/schema/call/order.d.ts +15 -0
  103. package/dist/schema/call/payment.d.ts +15 -0
  104. package/dist/schema/call/permission.d.ts +15 -0
  105. package/dist/schema/call/personal.d.ts +15 -0
  106. package/dist/schema/call/progress.d.ts +15 -0
  107. package/dist/schema/call/proof.d.ts +42 -12
  108. package/dist/schema/call/proof.js +3 -3
  109. package/dist/schema/call/repository.d.ts +91 -76
  110. package/dist/schema/call/reward.d.ts +45 -30
  111. package/dist/schema/call/semantic.d.ts +1 -0
  112. package/dist/schema/call/semantic.js +217 -0
  113. package/dist/schema/call/service.d.ts +407 -392
  114. package/dist/schema/call/treasury.d.ts +15 -0
  115. package/dist/schema/common/index.js +3 -3
  116. package/dist/schema/local/index.d.ts +228 -72
  117. package/dist/schema/local/index.js +33 -6
  118. package/dist/schema/messenger/index.d.ts +668 -50
  119. package/dist/schema/messenger/index.js +9 -0
  120. package/dist/schema/operations.d.ts +1693 -1369
  121. package/dist/schema/operations.js +2 -2
  122. package/dist/schema/query/index.d.ts +1614 -1614
  123. package/dist/schema/query/index.js +30 -27
  124. package/dist/schemas/account_operation.output.json +25 -16
  125. package/dist/schemas/account_operation.schema.json +1 -1
  126. package/dist/schemas/bridge_operation.output.json +520 -0
  127. package/dist/schemas/bridge_operation.schema.json +15 -0
  128. package/dist/schemas/guard2file.schema.json +15 -0
  129. package/dist/schemas/index.json +1 -1
  130. package/dist/schemas/local_info_operation.output.json +23 -0
  131. package/dist/schemas/local_info_operation.schema.json +1 -1
  132. package/dist/schemas/local_mark_operation.output.json +24 -1
  133. package/dist/schemas/local_mark_operation.schema.json +4 -4
  134. package/dist/schemas/machineNode2file.schema.json +15 -0
  135. package/dist/schemas/messenger_operation.output.json +528 -0
  136. package/dist/schemas/onchain_operations.output.json +350 -16
  137. package/dist/schemas/onchain_operations.schema.json +96 -23
  138. package/dist/schemas/onchain_operations_allocation.schema.json +15 -0
  139. package/dist/schemas/onchain_operations_arbitration.schema.json +15 -0
  140. package/dist/schemas/onchain_operations_contact.schema.json +15 -0
  141. package/dist/schemas/onchain_operations_demand.schema.json +15 -0
  142. package/dist/schemas/onchain_operations_gen_passport.schema.json +30 -0
  143. package/dist/schemas/onchain_operations_guard.schema.json +15 -0
  144. package/dist/schemas/onchain_operations_machine.schema.json +81 -23
  145. package/dist/schemas/onchain_operations_order.schema.json +15 -0
  146. package/dist/schemas/onchain_operations_payment.schema.json +15 -0
  147. package/dist/schemas/onchain_operations_permission.schema.json +15 -0
  148. package/dist/schemas/onchain_operations_personal.schema.json +15 -0
  149. package/dist/schemas/onchain_operations_progress.schema.json +15 -0
  150. package/dist/schemas/onchain_operations_repository.schema.json +15 -0
  151. package/dist/schemas/onchain_operations_reward.schema.json +15 -0
  152. package/dist/schemas/onchain_operations_service.schema.json +15 -0
  153. package/dist/schemas/onchain_operations_treasury.schema.json +15 -0
  154. package/dist/schemas/onchain_table_data.output.json +221 -69
  155. package/dist/schemas/onchain_table_data.schema.json +2 -2
  156. package/package.json +2 -2
@@ -676,21 +676,7 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
676
676
  feedback: string;
677
677
  indemnity: number;
678
678
  } | undefined;
679
- location?: string | undefined;
680
- owner_receive?: {
681
- received: {
682
- id: string;
683
- balance: string | number;
684
- payment: string;
685
- }[];
686
- balance: string | number;
687
- token_type: string;
688
- } | "recently" | {
689
- type: string;
690
- id: string;
691
- content_raw?: any;
692
- }[] | undefined;
693
- um?: string | null | undefined;
679
+ pause?: boolean | undefined;
694
680
  dispute?: {
695
681
  order: string;
696
682
  proposition: string[];
@@ -707,6 +693,21 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
707
693
  onChain?: boolean | undefined;
708
694
  } | undefined;
709
695
  } | undefined;
696
+ location?: string | undefined;
697
+ owner_receive?: {
698
+ received: {
699
+ id: string;
700
+ balance: string | number;
701
+ payment: string;
702
+ }[];
703
+ balance: string | number;
704
+ token_type: string;
705
+ } | "recently" | {
706
+ type: string;
707
+ id: string;
708
+ content_raw?: any;
709
+ }[] | undefined;
710
+ um?: string | null | undefined;
710
711
  fee?: string | number | undefined;
711
712
  feedback?: {
712
713
  arb: string;
@@ -729,7 +730,6 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
729
730
  op: "clear";
730
731
  } | undefined;
731
732
  usage_guard?: string | null | undefined;
732
- pause?: boolean | undefined;
733
733
  confirm?: {
734
734
  arb: string;
735
735
  voting_deadline: number | null;
@@ -786,21 +786,7 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
786
786
  feedback: string;
787
787
  indemnity: number;
788
788
  } | undefined;
789
- location?: string | undefined;
790
- owner_receive?: {
791
- received: {
792
- id: string;
793
- balance: string | number;
794
- payment: string;
795
- }[];
796
- balance: string | number;
797
- token_type: string;
798
- } | "recently" | {
799
- type: string;
800
- id: string;
801
- content_raw?: any;
802
- }[] | undefined;
803
- um?: string | null | undefined;
789
+ pause?: boolean | undefined;
804
790
  dispute?: {
805
791
  order: string;
806
792
  proposition: string[];
@@ -817,6 +803,21 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
817
803
  onChain?: boolean | undefined;
818
804
  } | undefined;
819
805
  } | undefined;
806
+ location?: string | undefined;
807
+ owner_receive?: {
808
+ received: {
809
+ id: string;
810
+ balance: string | number;
811
+ payment: string;
812
+ }[];
813
+ balance: string | number;
814
+ token_type: string;
815
+ } | "recently" | {
816
+ type: string;
817
+ id: string;
818
+ content_raw?: any;
819
+ }[] | undefined;
820
+ um?: string | null | undefined;
820
821
  fee?: string | number | undefined;
821
822
  feedback?: {
822
823
  arb: string;
@@ -839,7 +840,6 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
839
840
  op: "clear";
840
841
  } | undefined;
841
842
  usage_guard?: string | null | undefined;
842
- pause?: boolean | undefined;
843
843
  confirm?: {
844
844
  arb: string;
845
845
  voting_deadline: number | null;
@@ -1271,21 +1271,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1271
1271
  feedback: string;
1272
1272
  indemnity: number;
1273
1273
  } | undefined;
1274
- location?: string | undefined;
1275
- owner_receive?: {
1276
- received: {
1277
- id: string;
1278
- balance: string | number;
1279
- payment: string;
1280
- }[];
1281
- balance: string | number;
1282
- token_type: string;
1283
- } | "recently" | {
1284
- type: string;
1285
- id: string;
1286
- content_raw?: any;
1287
- }[] | undefined;
1288
- um?: string | null | undefined;
1274
+ pause?: boolean | undefined;
1289
1275
  dispute?: {
1290
1276
  order: string;
1291
1277
  proposition: string[];
@@ -1302,6 +1288,21 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1302
1288
  onChain?: boolean | undefined;
1303
1289
  } | undefined;
1304
1290
  } | undefined;
1291
+ location?: string | undefined;
1292
+ owner_receive?: {
1293
+ received: {
1294
+ id: string;
1295
+ balance: string | number;
1296
+ payment: string;
1297
+ }[];
1298
+ balance: string | number;
1299
+ token_type: string;
1300
+ } | "recently" | {
1301
+ type: string;
1302
+ id: string;
1303
+ content_raw?: any;
1304
+ }[] | undefined;
1305
+ um?: string | null | undefined;
1305
1306
  fee?: string | number | undefined;
1306
1307
  feedback?: {
1307
1308
  arb: string;
@@ -1324,7 +1325,6 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1324
1325
  op: "clear";
1325
1326
  } | undefined;
1326
1327
  usage_guard?: string | null | undefined;
1327
- pause?: boolean | undefined;
1328
1328
  confirm?: {
1329
1329
  arb: string;
1330
1330
  voting_deadline: number | null;
@@ -1381,21 +1381,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1381
1381
  feedback: string;
1382
1382
  indemnity: number;
1383
1383
  } | undefined;
1384
- location?: string | undefined;
1385
- owner_receive?: {
1386
- received: {
1387
- id: string;
1388
- balance: string | number;
1389
- payment: string;
1390
- }[];
1391
- balance: string | number;
1392
- token_type: string;
1393
- } | "recently" | {
1394
- type: string;
1395
- id: string;
1396
- content_raw?: any;
1397
- }[] | undefined;
1398
- um?: string | null | undefined;
1384
+ pause?: boolean | undefined;
1399
1385
  dispute?: {
1400
1386
  order: string;
1401
1387
  proposition: string[];
@@ -1412,6 +1398,21 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1412
1398
  onChain?: boolean | undefined;
1413
1399
  } | undefined;
1414
1400
  } | undefined;
1401
+ location?: string | undefined;
1402
+ owner_receive?: {
1403
+ received: {
1404
+ id: string;
1405
+ balance: string | number;
1406
+ payment: string;
1407
+ }[];
1408
+ balance: string | number;
1409
+ token_type: string;
1410
+ } | "recently" | {
1411
+ type: string;
1412
+ id: string;
1413
+ content_raw?: any;
1414
+ }[] | undefined;
1415
+ um?: string | null | undefined;
1415
1416
  fee?: string | number | undefined;
1416
1417
  feedback?: {
1417
1418
  arb: string;
@@ -1434,7 +1435,6 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1434
1435
  op: "clear";
1435
1436
  } | undefined;
1436
1437
  usage_guard?: string | null | undefined;
1437
- pause?: boolean | undefined;
1438
1438
  confirm?: {
1439
1439
  arb: string;
1440
1440
  voting_deadline: number | null;
@@ -1473,18 +1473,27 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1473
1473
  no_cache: z.ZodOptional<z.ZodBoolean>;
1474
1474
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
1475
1475
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1476
+ confirmed: z.ZodOptional<z.ZodBoolean>;
1477
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1478
+ project: z.ZodOptional<z.ZodString>;
1476
1479
  }, "strict", z.ZodTypeAny, {
1477
1480
  account: string;
1478
1481
  no_cache?: boolean | undefined;
1479
1482
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1480
1483
  permission_guard?: string[] | undefined;
1481
1484
  referrer?: string | undefined;
1485
+ confirmed?: boolean | undefined;
1486
+ user_intent_phrases?: string[] | undefined;
1487
+ project?: string | undefined;
1482
1488
  }, {
1483
1489
  no_cache?: boolean | undefined;
1484
1490
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1485
1491
  account?: string | undefined;
1486
1492
  permission_guard?: string[] | undefined;
1487
1493
  referrer?: string | undefined;
1494
+ confirmed?: boolean | undefined;
1495
+ user_intent_phrases?: string[] | undefined;
1496
+ project?: string | undefined;
1488
1497
  }>>;
1489
1498
  submission: z.ZodOptional<z.ZodObject<{
1490
1499
  type: z.ZodLiteral<"submission">;
@@ -1692,21 +1701,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1692
1701
  feedback: string;
1693
1702
  indemnity: number;
1694
1703
  } | undefined;
1695
- location?: string | undefined;
1696
- owner_receive?: {
1697
- received: {
1698
- id: string;
1699
- balance: string | number;
1700
- payment: string;
1701
- }[];
1702
- balance: string | number;
1703
- token_type: string;
1704
- } | "recently" | {
1705
- type: string;
1706
- id: string;
1707
- content_raw?: any;
1708
- }[] | undefined;
1709
- um?: string | null | undefined;
1704
+ pause?: boolean | undefined;
1710
1705
  dispute?: {
1711
1706
  order: string;
1712
1707
  proposition: string[];
@@ -1723,6 +1718,21 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1723
1718
  onChain?: boolean | undefined;
1724
1719
  } | undefined;
1725
1720
  } | undefined;
1721
+ location?: string | undefined;
1722
+ owner_receive?: {
1723
+ received: {
1724
+ id: string;
1725
+ balance: string | number;
1726
+ payment: string;
1727
+ }[];
1728
+ balance: string | number;
1729
+ token_type: string;
1730
+ } | "recently" | {
1731
+ type: string;
1732
+ id: string;
1733
+ content_raw?: any;
1734
+ }[] | undefined;
1735
+ um?: string | null | undefined;
1726
1736
  fee?: string | number | undefined;
1727
1737
  feedback?: {
1728
1738
  arb: string;
@@ -1745,7 +1755,6 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1745
1755
  op: "clear";
1746
1756
  } | undefined;
1747
1757
  usage_guard?: string | null | undefined;
1748
- pause?: boolean | undefined;
1749
1758
  confirm?: {
1750
1759
  arb: string;
1751
1760
  voting_deadline: number | null;
@@ -1811,6 +1820,9 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1811
1820
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1812
1821
  permission_guard?: string[] | undefined;
1813
1822
  referrer?: string | undefined;
1823
+ confirmed?: boolean | undefined;
1824
+ user_intent_phrases?: string[] | undefined;
1825
+ project?: string | undefined;
1814
1826
  } | undefined;
1815
1827
  }, {
1816
1828
  data: {
@@ -1838,21 +1850,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1838
1850
  feedback: string;
1839
1851
  indemnity: number;
1840
1852
  } | undefined;
1841
- location?: string | undefined;
1842
- owner_receive?: {
1843
- received: {
1844
- id: string;
1845
- balance: string | number;
1846
- payment: string;
1847
- }[];
1848
- balance: string | number;
1849
- token_type: string;
1850
- } | "recently" | {
1851
- type: string;
1852
- id: string;
1853
- content_raw?: any;
1854
- }[] | undefined;
1855
- um?: string | null | undefined;
1853
+ pause?: boolean | undefined;
1856
1854
  dispute?: {
1857
1855
  order: string;
1858
1856
  proposition: string[];
@@ -1869,6 +1867,21 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1869
1867
  onChain?: boolean | undefined;
1870
1868
  } | undefined;
1871
1869
  } | undefined;
1870
+ location?: string | undefined;
1871
+ owner_receive?: {
1872
+ received: {
1873
+ id: string;
1874
+ balance: string | number;
1875
+ payment: string;
1876
+ }[];
1877
+ balance: string | number;
1878
+ token_type: string;
1879
+ } | "recently" | {
1880
+ type: string;
1881
+ id: string;
1882
+ content_raw?: any;
1883
+ }[] | undefined;
1884
+ um?: string | null | undefined;
1872
1885
  fee?: string | number | undefined;
1873
1886
  feedback?: {
1874
1887
  arb: string;
@@ -1891,7 +1904,6 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1891
1904
  op: "clear";
1892
1905
  } | undefined;
1893
1906
  usage_guard?: string | null | undefined;
1894
- pause?: boolean | undefined;
1895
1907
  confirm?: {
1896
1908
  arb: string;
1897
1909
  voting_deadline: number | null;
@@ -1957,6 +1969,9 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1957
1969
  account?: string | undefined;
1958
1970
  permission_guard?: string[] | undefined;
1959
1971
  referrer?: string | undefined;
1972
+ confirmed?: boolean | undefined;
1973
+ user_intent_phrases?: string[] | undefined;
1974
+ project?: string | undefined;
1960
1975
  } | undefined;
1961
1976
  }>;
1962
1977
  export type Dispute = z.infer<typeof DisputeSchema>;