@wowok/agent-mcp 2.3.16 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/customer/index.d.ts +9 -0
- package/dist/customer/index.js +9 -0
- package/dist/customer/industry-risks.d.ts +4 -0
- package/dist/customer/industry-risks.js +45 -31
- package/dist/customer/order-monitor.js +57 -57
- package/dist/customer/order-strategy.js +89 -89
- package/dist/customer/post-purchase.js +97 -97
- package/dist/customer/reminder-system.js +26 -26
- package/dist/customer/risk-assessment.js +46 -46
- package/dist/customer/types.d.ts +4 -4
- package/dist/customer/types.js +4 -4
- package/dist/customer/user-preferences.d.ts +3 -0
- package/dist/customer/user-preferences.js +59 -50
- package/dist/experience/intent-distill.js +6 -6
- package/dist/experience/realtime-feedback.js +17 -0
- package/dist/index.js +360 -273
- package/dist/knowledge/acquisition-flywheel.d.ts +3 -0
- package/dist/knowledge/acquisition-flywheel.js +73 -64
- package/dist/knowledge/arbitration-trust.js +10 -10
- package/dist/knowledge/demand-matching.js +8 -8
- package/dist/knowledge/dynamic-pricing.js +18 -18
- package/dist/knowledge/flywheel-loop.js +11 -11
- package/dist/knowledge/glossary.js +22 -22
- package/dist/knowledge/guard-ledger.d.ts +19 -0
- package/dist/knowledge/guard-ledger.js +246 -0
- package/dist/knowledge/guard-lint.d.ts +76 -0
- package/dist/knowledge/guard-lint.js +590 -0
- package/dist/knowledge/guard-puzzle.d.ts +188 -0
- package/dist/knowledge/guard-puzzle.js +804 -0
- package/dist/knowledge/guard-risk.d.ts +67 -0
- package/dist/knowledge/guard-risk.js +1046 -0
- package/dist/knowledge/guard-templates.d.ts +37 -0
- package/dist/knowledge/guard-templates.js +329 -0
- package/dist/knowledge/guard-translation.d.ts +58 -0
- package/dist/knowledge/guard-translation.js +1118 -0
- package/dist/knowledge/index.d.ts +17 -0
- package/dist/knowledge/index.js +17 -0
- package/dist/knowledge/industry-evolution.js +29 -29
- package/dist/knowledge/industry-generalizer.js +52 -52
- package/dist/knowledge/industry-registry.d.ts +1 -2
- package/dist/knowledge/industry-registry.js +43 -36
- package/dist/knowledge/intent-metrics.js +67 -67
- package/dist/knowledge/process-model.js +80 -80
- package/dist/knowledge/reputation-rules.js +9 -9
- package/dist/knowledge/reward-templates.js +51 -51
- package/dist/knowledge/safety-rules.js +63 -2
- package/dist/knowledge/tool-constraints.js +17 -11
- package/dist/knowledge/trust-metrics.js +26 -26
- package/dist/safety/confirm-gate.d.ts +4 -2
- package/dist/safety/confirm-gate.js +48 -4
- package/dist/schema/call/allocation.d.ts +24 -14
- package/dist/schema/call/arbitration.d.ts +142 -132
- package/dist/schema/call/base.d.ts +901 -43
- package/dist/schema/call/base.js +77 -13
- package/dist/schema/call/bridge-handler.js +15 -2
- package/dist/schema/call/bridge.d.ts +795 -27
- package/dist/schema/call/bridge.js +37 -0
- package/dist/schema/call/contact.d.ts +10 -0
- package/dist/schema/call/demand.d.ts +94 -84
- package/dist/schema/call/guard.d.ts +229 -46
- package/dist/schema/call/guard.js +50 -0
- package/dist/schema/call/handler.js +46 -14
- package/dist/schema/call/machine.d.ts +158 -138
- package/dist/schema/call/order.d.ts +10 -0
- package/dist/schema/call/payment.d.ts +10 -0
- package/dist/schema/call/permission.d.ts +314 -304
- package/dist/schema/call/personal.d.ts +10 -0
- package/dist/schema/call/progress.d.ts +10 -0
- package/dist/schema/call/proof.d.ts +20 -0
- package/dist/schema/call/repository.d.ts +32 -22
- package/dist/schema/call/reward.d.ts +10 -0
- package/dist/schema/call/semantic.d.ts +9 -2
- package/dist/schema/call/semantic.js +617 -25
- package/dist/schema/call/service.d.ts +20 -10
- package/dist/schema/call/treasury.d.ts +10 -0
- package/dist/schema/config/index.d.ts +18 -0
- package/dist/schema/config/index.js +17 -0
- package/dist/schema/index.d.ts +6 -0
- package/dist/schema/index.js +5 -0
- package/dist/schema/local/index.d.ts +9 -9
- package/dist/schema/local/index.js +9 -0
- package/dist/schema/local/wip.d.ts +39 -19
- package/dist/schema/local/wip.js +5 -5
- package/dist/schema/messenger/index.d.ts +376 -55
- package/dist/schema/messenger/index.js +19 -19
- package/dist/schema/operations.d.ts +1881 -681
- package/dist/schema/operations.js +91 -96
- package/dist/schema/project/index.d.ts +21 -0
- package/dist/schema/project/index.js +32 -0
- package/dist/schema/query/index.d.ts +1074 -168
- package/dist/schema/query/index.js +8 -8
- package/dist/schema/schema-query/index.d.ts +33 -0
- package/dist/schema/schema-query/index.js +36 -0
- package/dist/schema/schema-version.d.ts +25 -0
- package/dist/schema/schema-version.js +76 -0
- package/dist/schema/trust/index.d.ts +407 -0
- package/dist/schema/trust/index.js +113 -0
- package/dist/schema/utils/guard-parser.js +4 -4
- package/dist/schema/utils/node-parser.js +14 -14
- package/dist/schemas/bridge_operation.output.json +233 -9
- package/dist/schemas/bridge_operation.schema.json +67 -8
- package/dist/schemas/config_operation.output.json +18 -0
- package/dist/schemas/config_operation.schema.json +34 -0
- package/dist/schemas/guard-node-schema.json +82 -0
- package/dist/schemas/guard2file.schema.json +8 -0
- package/dist/schemas/index.json +19 -1
- package/dist/schemas/machineNode2file.schema.json +8 -0
- package/dist/schemas/messenger_operation.output.json +236 -10
- package/dist/schemas/onchain_events.output.json +718 -0
- package/dist/schemas/onchain_operations.output.json +286 -11
- package/dist/schemas/onchain_operations.schema.json +19 -16
- package/dist/schemas/onchain_operations_allocation.schema.json +8 -0
- package/dist/schemas/onchain_operations_arbitration.schema.json +8 -0
- package/dist/schemas/onchain_operations_contact.schema.json +8 -0
- package/dist/schemas/onchain_operations_demand.schema.json +8 -0
- package/dist/schemas/onchain_operations_gen_passport.schema.json +16 -0
- package/dist/schemas/onchain_operations_guard.schema.json +11 -16
- package/dist/schemas/onchain_operations_machine.schema.json +8 -0
- package/dist/schemas/onchain_operations_order.schema.json +8 -0
- package/dist/schemas/onchain_operations_payment.schema.json +8 -0
- package/dist/schemas/onchain_operations_permission.schema.json +8 -0
- package/dist/schemas/onchain_operations_personal.schema.json +8 -0
- package/dist/schemas/onchain_operations_progress.schema.json +8 -0
- package/dist/schemas/onchain_operations_repository.schema.json +8 -0
- package/dist/schemas/onchain_operations_reward.schema.json +8 -0
- package/dist/schemas/onchain_operations_service.schema.json +8 -0
- package/dist/schemas/onchain_operations_treasury.schema.json +8 -0
- package/dist/schemas/onchain_table_data.output.json +718 -0
- package/dist/schemas/project_operation.output.json +18 -0
- package/dist/schemas/project_operation.schema.json +42 -0
- package/dist/schemas/query_toolkit.schema.json +360 -368
- package/dist/schemas/schema_query.schema.json +6 -3
- package/dist/schemas/trust_score.output.json +327 -0
- package/dist/schemas/trust_score.schema.json +46 -0
- package/dist/schemas/wip_file.output.json +24 -1
- package/package.json +2 -2
|
@@ -556,7 +556,9 @@
|
|
|
556
556
|
}
|
|
557
557
|
},
|
|
558
558
|
"required": [
|
|
559
|
-
"valid"
|
|
559
|
+
"valid",
|
|
560
|
+
"hashValid",
|
|
561
|
+
"hasSignature"
|
|
560
562
|
],
|
|
561
563
|
"additionalProperties": false,
|
|
562
564
|
"description": "WTS verification result"
|
|
@@ -1390,7 +1392,7 @@
|
|
|
1390
1392
|
}
|
|
1391
1393
|
},
|
|
1392
1394
|
"additionalProperties": false,
|
|
1393
|
-
"description": "Experience layer feedback from past operations (Phase 2
|
|
1395
|
+
"description": "Experience layer feedback from past operations (Phase 2 Topic 2)"
|
|
1394
1396
|
},
|
|
1395
1397
|
"service_status": {
|
|
1396
1398
|
"type": "object",
|
|
@@ -1440,7 +1442,7 @@
|
|
|
1440
1442
|
"items": {
|
|
1441
1443
|
"type": "string"
|
|
1442
1444
|
},
|
|
1443
|
-
"description": "Actionable recommendations for the buyer. Example: ['
|
|
1445
|
+
"description": "Actionable recommendations for the buyer. Example: ['Require merchant to configure arbitration','Negotiate refund terms via Messenger']"
|
|
1444
1446
|
},
|
|
1445
1447
|
"reminders": {
|
|
1446
1448
|
"type": "array",
|
|
@@ -1475,7 +1477,7 @@
|
|
|
1475
1477
|
},
|
|
1476
1478
|
"message": {
|
|
1477
1479
|
"type": "string",
|
|
1478
|
-
"description": "Human-readable reminder message. Example: '
|
|
1480
|
+
"description": "Human-readable reminder message. Example: 'Composite risk score 25/100, strongly discourage purchase'"
|
|
1479
1481
|
},
|
|
1480
1482
|
"action": {
|
|
1481
1483
|
"type": "string",
|
|
@@ -1491,7 +1493,7 @@
|
|
|
1491
1493
|
"additionalProperties": false,
|
|
1492
1494
|
"description": "A buyer-side reminder triggered at a specific order lifecycle stage (Phase 3 C-3)."
|
|
1493
1495
|
},
|
|
1494
|
-
"description": "Stage-specific reminders (deduped, sorted by priority, capped to 3 high-risk). Example: [{priority:'required', message:'
|
|
1496
|
+
"description": "Stage-specific reminders (deduped, sorted by priority, capped to 3 high-risk). Example: [{priority:'required', message:'Ambiguous Guard must be human-reviewed'}]"
|
|
1495
1497
|
},
|
|
1496
1498
|
"preference_match": {
|
|
1497
1499
|
"type": "object",
|
|
@@ -1507,14 +1509,14 @@
|
|
|
1507
1509
|
"items": {
|
|
1508
1510
|
"type": "string"
|
|
1509
1511
|
},
|
|
1510
|
-
"description": "Aspects that match user preferences. Example: ['
|
|
1512
|
+
"description": "Aspects that match user preferences. Example: ['Price 10% below average','Has arbitration']"
|
|
1511
1513
|
},
|
|
1512
1514
|
"mismatches": {
|
|
1513
1515
|
"type": "array",
|
|
1514
1516
|
"items": {
|
|
1515
1517
|
"type": "string"
|
|
1516
1518
|
},
|
|
1517
|
-
"description": "Aspects that mismatch user preferences. Example: ['
|
|
1519
|
+
"description": "Aspects that mismatch user preferences. Example: ['Delivery cycle exceeds expectation']"
|
|
1518
1520
|
}
|
|
1519
1521
|
},
|
|
1520
1522
|
"required": [
|
|
@@ -1538,11 +1540,11 @@
|
|
|
1538
1540
|
"properties": {
|
|
1539
1541
|
"industry_signal": {
|
|
1540
1542
|
"type": "string",
|
|
1541
|
-
"description": "Industry evolution signal summary. Example: '
|
|
1543
|
+
"description": "Industry evolution signal summary. Example: 'Industry health 82/100 (healthy); 25 cumulative industry signals'"
|
|
1542
1544
|
},
|
|
1543
1545
|
"evolution_advice": {
|
|
1544
1546
|
"type": "string",
|
|
1545
|
-
"description": "Evolution advice for the current operation. Example: '
|
|
1547
|
+
"description": "Evolution advice for the current operation. Example: 'Recommend mandatory arbitration + compensation fund + delivery Guard'"
|
|
1546
1548
|
},
|
|
1547
1549
|
"confidence": {
|
|
1548
1550
|
"type": "number",
|
|
@@ -1579,7 +1581,7 @@
|
|
|
1579
1581
|
"items": {
|
|
1580
1582
|
"type": "string"
|
|
1581
1583
|
},
|
|
1582
|
-
"description": "Phase 4 P4-6.C: Role-targeted advice strings (user/merchant/arbitrator). Example: ['
|
|
1584
|
+
"description": "Phase 4 P4-6.C: Role-targeted advice strings (user/merchant/arbitrator). Example: ['Strengthen loyalty flywheel','Optimize first-order conversion']"
|
|
1583
1585
|
},
|
|
1584
1586
|
"role": {
|
|
1585
1587
|
"type": "string",
|
|
@@ -1596,6 +1598,230 @@
|
|
|
1596
1598
|
],
|
|
1597
1599
|
"additionalProperties": false,
|
|
1598
1600
|
"description": "Phase 4 industry evolution context (populated when industry_evolution service is enabled). Provides AI with industry health signals and evolution advice."
|
|
1601
|
+
},
|
|
1602
|
+
"guard_advice": {
|
|
1603
|
+
"type": "object",
|
|
1604
|
+
"properties": {
|
|
1605
|
+
"current_round": {
|
|
1606
|
+
"type": "string",
|
|
1607
|
+
"enum": [
|
|
1608
|
+
"R1",
|
|
1609
|
+
"R2",
|
|
1610
|
+
"R3",
|
|
1611
|
+
"R4",
|
|
1612
|
+
"R5",
|
|
1613
|
+
"R6",
|
|
1614
|
+
"R7",
|
|
1615
|
+
"R8",
|
|
1616
|
+
"R9",
|
|
1617
|
+
"R10"
|
|
1618
|
+
],
|
|
1619
|
+
"description": "Current R1-R10 dialogue round. R1=intent, R2=table, R3=tree, R4=rely, R5=binding, R6=review, R7=CREATE, R8=test, R9=bind, R10=verify. Example: 'R3'"
|
|
1620
|
+
},
|
|
1621
|
+
"puzzle_status": {
|
|
1622
|
+
"type": "object",
|
|
1623
|
+
"properties": {
|
|
1624
|
+
"intent": {
|
|
1625
|
+
"type": "boolean",
|
|
1626
|
+
"description": "Intent dimension complete (action + rule + failure conditions)"
|
|
1627
|
+
},
|
|
1628
|
+
"binding": {
|
|
1629
|
+
"type": "boolean",
|
|
1630
|
+
"description": "Binding dimension complete (host object + field + circular ref)"
|
|
1631
|
+
},
|
|
1632
|
+
"data": {
|
|
1633
|
+
"type": "boolean",
|
|
1634
|
+
"description": "Data dimension complete (table entries + witnesses)"
|
|
1635
|
+
},
|
|
1636
|
+
"query": {
|
|
1637
|
+
"type": "boolean",
|
|
1638
|
+
"description": "Query dimension complete (query instructions if needed)"
|
|
1639
|
+
},
|
|
1640
|
+
"logic": {
|
|
1641
|
+
"type": "boolean",
|
|
1642
|
+
"description": "Logic dimension complete (root node returns Bool)"
|
|
1643
|
+
},
|
|
1644
|
+
"constraints": {
|
|
1645
|
+
"type": "boolean",
|
|
1646
|
+
"description": "Constraints dimension complete (10 Pitfalls checked)"
|
|
1647
|
+
}
|
|
1648
|
+
},
|
|
1649
|
+
"required": [
|
|
1650
|
+
"intent",
|
|
1651
|
+
"binding",
|
|
1652
|
+
"data",
|
|
1653
|
+
"query",
|
|
1654
|
+
"logic",
|
|
1655
|
+
"constraints"
|
|
1656
|
+
],
|
|
1657
|
+
"additionalProperties": false,
|
|
1658
|
+
"description": "Information puzzle completeness (6 dimensions). Missing dimensions need user input before CREATE."
|
|
1659
|
+
},
|
|
1660
|
+
"matched_scene": {
|
|
1661
|
+
"type": "string",
|
|
1662
|
+
"description": "Matched Guard scene id from the 8 binding scenarios ledger. Example: 'machine_forward_guard'"
|
|
1663
|
+
},
|
|
1664
|
+
"scene_description": {
|
|
1665
|
+
"type": "string",
|
|
1666
|
+
"description": "Human-readable scene description. Example: 'Workflow node forward validation (Forward.guard)'"
|
|
1667
|
+
},
|
|
1668
|
+
"scene_constraints": {
|
|
1669
|
+
"type": "array",
|
|
1670
|
+
"items": {
|
|
1671
|
+
"type": "string"
|
|
1672
|
+
},
|
|
1673
|
+
"description": "Special constraints for the matched scene. Example: ['Forward.guard cannot be modified after Machine is published']"
|
|
1674
|
+
},
|
|
1675
|
+
"suggested_patterns": {
|
|
1676
|
+
"type": "array",
|
|
1677
|
+
"items": {
|
|
1678
|
+
"type": "string"
|
|
1679
|
+
},
|
|
1680
|
+
"description": "Suggested Guard patterns based on user intent. Example: ['time lock','progress status check']"
|
|
1681
|
+
},
|
|
1682
|
+
"available_queries": {
|
|
1683
|
+
"type": "array",
|
|
1684
|
+
"items": {
|
|
1685
|
+
"type": "object",
|
|
1686
|
+
"properties": {
|
|
1687
|
+
"id": {
|
|
1688
|
+
"type": "integer",
|
|
1689
|
+
"description": "Query instruction ID. Example: 1253"
|
|
1690
|
+
},
|
|
1691
|
+
"name": {
|
|
1692
|
+
"type": "string",
|
|
1693
|
+
"description": "Query instruction name. Example: 'progress.current_node_name'"
|
|
1694
|
+
},
|
|
1695
|
+
"objectType": {
|
|
1696
|
+
"type": "string",
|
|
1697
|
+
"description": "Target object type. Example: 'Progress'"
|
|
1698
|
+
},
|
|
1699
|
+
"returnType": {
|
|
1700
|
+
"type": "string",
|
|
1701
|
+
"description": "Return value type. Example: 'String'"
|
|
1702
|
+
},
|
|
1703
|
+
"description": {
|
|
1704
|
+
"type": "string",
|
|
1705
|
+
"description": "Query description"
|
|
1706
|
+
}
|
|
1707
|
+
},
|
|
1708
|
+
"required": [
|
|
1709
|
+
"id",
|
|
1710
|
+
"name",
|
|
1711
|
+
"objectType",
|
|
1712
|
+
"returnType"
|
|
1713
|
+
],
|
|
1714
|
+
"additionalProperties": false,
|
|
1715
|
+
"description": "A Guard query instruction available for the current context (subset of GUARDQUERY 375 entries)."
|
|
1716
|
+
},
|
|
1717
|
+
"description": "Available query instructions for the current context (subset of 375 GUARDQUERY entries)"
|
|
1718
|
+
},
|
|
1719
|
+
"risk_warnings": {
|
|
1720
|
+
"type": "array",
|
|
1721
|
+
"items": {
|
|
1722
|
+
"type": "string"
|
|
1723
|
+
},
|
|
1724
|
+
"description": "Risk warnings for the current Guard design. Example: ['Guard cannot be modified after creation','Time lock test uses 1000ms']"
|
|
1725
|
+
},
|
|
1726
|
+
"pending_questions": {
|
|
1727
|
+
"type": "array",
|
|
1728
|
+
"items": {
|
|
1729
|
+
"type": "string"
|
|
1730
|
+
},
|
|
1731
|
+
"description": "Questions for the user to complete the puzzle. Example: ['Which Host Object will the Guard bind to?']"
|
|
1732
|
+
},
|
|
1733
|
+
"confirmation_text": {
|
|
1734
|
+
"type": "string",
|
|
1735
|
+
"description": "Structured semantic confirmation text for user review (generated when puzzle is complete). User must explicitly confirm before CREATE."
|
|
1736
|
+
},
|
|
1737
|
+
"test_result": {
|
|
1738
|
+
"type": "object",
|
|
1739
|
+
"properties": {
|
|
1740
|
+
"status": {
|
|
1741
|
+
"type": "string",
|
|
1742
|
+
"enum": [
|
|
1743
|
+
"pass",
|
|
1744
|
+
"fail",
|
|
1745
|
+
"not_tested"
|
|
1746
|
+
]
|
|
1747
|
+
},
|
|
1748
|
+
"failure_node": {
|
|
1749
|
+
"type": "string",
|
|
1750
|
+
"description": "Node that caused failure (if fail)"
|
|
1751
|
+
},
|
|
1752
|
+
"passport_id": {
|
|
1753
|
+
"type": "string",
|
|
1754
|
+
"description": "Generated Passport ID (if pass)"
|
|
1755
|
+
}
|
|
1756
|
+
},
|
|
1757
|
+
"required": [
|
|
1758
|
+
"status"
|
|
1759
|
+
],
|
|
1760
|
+
"additionalProperties": false,
|
|
1761
|
+
"description": "gen_passport static test result. Must pass before CREATE."
|
|
1762
|
+
},
|
|
1763
|
+
"risk_assessment": {
|
|
1764
|
+
"type": "object",
|
|
1765
|
+
"properties": {
|
|
1766
|
+
"overall_risk": {
|
|
1767
|
+
"type": "string",
|
|
1768
|
+
"enum": [
|
|
1769
|
+
"critical",
|
|
1770
|
+
"high",
|
|
1771
|
+
"medium",
|
|
1772
|
+
"low",
|
|
1773
|
+
"info"
|
|
1774
|
+
],
|
|
1775
|
+
"description": "Overall risk level (highest from all risks)"
|
|
1776
|
+
},
|
|
1777
|
+
"risk_count": {
|
|
1778
|
+
"type": "integer",
|
|
1779
|
+
"description": "Total number of detected risks"
|
|
1780
|
+
},
|
|
1781
|
+
"critical_count": {
|
|
1782
|
+
"type": "integer",
|
|
1783
|
+
"description": "Number of critical risks"
|
|
1784
|
+
},
|
|
1785
|
+
"high_count": {
|
|
1786
|
+
"type": "integer",
|
|
1787
|
+
"description": "Number of high risks"
|
|
1788
|
+
},
|
|
1789
|
+
"needs_human_review": {
|
|
1790
|
+
"type": "boolean",
|
|
1791
|
+
"description": "Whether human review is required (critical or 2+ high risks)"
|
|
1792
|
+
},
|
|
1793
|
+
"top_risks": {
|
|
1794
|
+
"type": "array",
|
|
1795
|
+
"items": {
|
|
1796
|
+
"type": "string"
|
|
1797
|
+
},
|
|
1798
|
+
"description": "Top risk titles (critical and high, max 3)"
|
|
1799
|
+
},
|
|
1800
|
+
"stakeholder_advice": {
|
|
1801
|
+
"type": "object",
|
|
1802
|
+
"additionalProperties": {
|
|
1803
|
+
"type": "array",
|
|
1804
|
+
"items": {
|
|
1805
|
+
"type": "string"
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
"description": "Per-stakeholder advice. Key=stakeholder (customer/provider/arbitrator/claimant), value=advice list"
|
|
1809
|
+
}
|
|
1810
|
+
},
|
|
1811
|
+
"required": [
|
|
1812
|
+
"overall_risk",
|
|
1813
|
+
"risk_count",
|
|
1814
|
+
"critical_count",
|
|
1815
|
+
"high_count",
|
|
1816
|
+
"needs_human_review",
|
|
1817
|
+
"top_risks"
|
|
1818
|
+
],
|
|
1819
|
+
"additionalProperties": false,
|
|
1820
|
+
"description": "Business-layer risk assessment (game theory, data source trust, logic gaps). Populated during Guard design to warn about business risks beyond syntax."
|
|
1821
|
+
}
|
|
1822
|
+
},
|
|
1823
|
+
"additionalProperties": false,
|
|
1824
|
+
"description": "Phase 5 Guard capability advice (populated when user intent involves Guard). Provides puzzle status, scene matching, suggested patterns, available queries, risk warnings, and confirmation text. AI uses this to guide Guard design dialogue (R1-R10)."
|
|
1599
1825
|
}
|
|
1600
1826
|
},
|
|
1601
1827
|
"required": [
|