@wowok/agent-mcp 2.3.18 → 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.
Files changed (65) hide show
  1. package/dist/customer/industry-risks.js +31 -31
  2. package/dist/customer/order-monitor.js +57 -57
  3. package/dist/customer/order-strategy.js +89 -89
  4. package/dist/customer/post-purchase.js +97 -97
  5. package/dist/customer/reminder-system.js +26 -26
  6. package/dist/customer/risk-assessment.js +46 -46
  7. package/dist/customer/types.d.ts +4 -4
  8. package/dist/customer/types.js +4 -4
  9. package/dist/customer/user-preferences.js +50 -50
  10. package/dist/experience/intent-distill.js +6 -6
  11. package/dist/knowledge/acquisition-flywheel.js +64 -64
  12. package/dist/knowledge/arbitration-trust.js +10 -10
  13. package/dist/knowledge/demand-matching.js +8 -8
  14. package/dist/knowledge/dynamic-pricing.js +18 -18
  15. package/dist/knowledge/flywheel-loop.js +11 -11
  16. package/dist/knowledge/glossary.js +22 -22
  17. package/dist/knowledge/guard-ledger.d.ts +1 -1
  18. package/dist/knowledge/guard-ledger.js +131 -104
  19. package/dist/knowledge/guard-lint.d.ts +76 -0
  20. package/dist/knowledge/guard-lint.js +590 -0
  21. package/dist/knowledge/guard-puzzle.d.ts +109 -14
  22. package/dist/knowledge/guard-puzzle.js +627 -101
  23. package/dist/knowledge/guard-risk.d.ts +8 -1
  24. package/dist/knowledge/guard-risk.js +868 -296
  25. package/dist/knowledge/guard-templates.d.ts +37 -0
  26. package/dist/knowledge/guard-templates.js +329 -0
  27. package/dist/knowledge/guard-translation.d.ts +14 -2
  28. package/dist/knowledge/guard-translation.js +825 -194
  29. package/dist/knowledge/index.d.ts +8 -4
  30. package/dist/knowledge/index.js +9 -5
  31. package/dist/knowledge/industry-evolution.js +29 -29
  32. package/dist/knowledge/industry-generalizer.js +52 -52
  33. package/dist/knowledge/industry-registry.js +20 -33
  34. package/dist/knowledge/intent-metrics.js +67 -67
  35. package/dist/knowledge/process-model.js +80 -80
  36. package/dist/knowledge/reputation-rules.js +9 -9
  37. package/dist/knowledge/reward-templates.js +51 -51
  38. package/dist/knowledge/safety-rules.js +3 -3
  39. package/dist/knowledge/tool-constraints.js +20 -4
  40. package/dist/knowledge/trust-metrics.js +26 -26
  41. package/dist/schema/call/base.js +16 -16
  42. package/dist/schema/call/bridge.d.ts +32 -32
  43. package/dist/schema/call/demand.d.ts +84 -84
  44. package/dist/schema/call/guard.d.ts +153 -0
  45. package/dist/schema/call/guard.js +50 -0
  46. package/dist/schema/call/permission.d.ts +78 -78
  47. package/dist/schema/call/repository.d.ts +22 -22
  48. package/dist/schema/call/semantic.js +228 -24
  49. package/dist/schema/local/wip.d.ts +39 -19
  50. package/dist/schema/local/wip.js +5 -5
  51. package/dist/schema/messenger/index.d.ts +26 -26
  52. package/dist/schema/messenger/index.js +2 -2
  53. package/dist/schema/operations.d.ts +222 -144
  54. package/dist/schema/query/index.d.ts +38 -38
  55. package/dist/schema/trust/index.d.ts +4 -4
  56. package/dist/schema/utils/guard-parser.js +4 -4
  57. package/dist/schema/utils/node-parser.js +14 -14
  58. package/dist/schemas/bridge_operation.output.json +14 -14
  59. package/dist/schemas/index.json +1 -1
  60. package/dist/schemas/messenger_operation.output.json +17 -15
  61. package/dist/schemas/onchain_events.output.json +14 -14
  62. package/dist/schemas/onchain_operations.output.json +14 -14
  63. package/dist/schemas/onchain_table_data.output.json +14 -14
  64. package/dist/schemas/wip_file.output.json +24 -1
  65. package/package.json +2 -2
@@ -2,7 +2,7 @@ export function checkPuzzleCompleteness(puzzle) {
2
2
  const dimensions = {
3
3
  intent: isIntentComplete(puzzle.intent),
4
4
  binding: isBindingComplete(puzzle.binding),
5
- data: isDataComplete(puzzle.data),
5
+ data_sources: isDataSourcesComplete(puzzle.data_sources),
6
6
  query: isQueryComplete(puzzle.queries),
7
7
  logic: isLogicComplete(puzzle.logic),
8
8
  constraints: isConstraintsComplete(puzzle.constraints),
@@ -10,22 +10,22 @@ export function checkPuzzleCompleteness(puzzle) {
10
10
  const missing = Object.keys(dimensions).filter((k) => !dimensions[k]);
11
11
  const missing_details = [];
12
12
  if (!dimensions.intent) {
13
- missing_details.push("A. 意图:未明确被保护动作、验证规则或失败条件");
13
+ missing_details.push("A. Intent: protected action, validation rule, or failure conditions not clarified");
14
14
  }
15
15
  if (!dimensions.binding) {
16
- missing_details.push("B. 绑定:未确定 Host Object、绑定字段或循环引用模式");
16
+ missing_details.push("B. Binding: Host Object, binding field, or circular reference mode not determined");
17
17
  }
18
- if (!dimensions.data) {
19
- missing_details.push("C. 数据:未声明 table 条目(常量/提交)或 convert_witness");
18
+ if (!dimensions.data_sources) {
19
+ missing_details.push("C. Data sources: data sources not declared by 4 classifications (on-chain constant / witness-derived / submitted object / system context)");
20
20
  }
21
21
  if (!dimensions.query) {
22
- missing_details.push("D. 查询:未确定查询指令(如果 Guard 需要查询链上数据)");
22
+ missing_details.push("D. Query: query instruction not determined (if the Guard needs to query on-chain data)");
23
23
  }
24
24
  if (!dimensions.logic) {
25
- missing_details.push("E. 逻辑:未设计计算树 root rely 组合");
25
+ missing_details.push("E. Logic: computation tree root or rely composition not designed");
26
26
  }
27
27
  if (!dimensions.constraints) {
28
- missing_details.push("F. 约束:未完成 10 Common Pitfalls 检查");
28
+ missing_details.push("F. Constraints: creation-time 10 + runtime 6 constraint checks not completed");
29
29
  }
30
30
  const complete = missing.length === 0;
31
31
  const next_step = recommendNextStep(puzzle, missing);
@@ -37,8 +37,21 @@ function isIntentComplete(intent) {
37
37
  function isBindingComplete(binding) {
38
38
  return !!binding && !!binding.host_object && !!binding.binding_field;
39
39
  }
40
- function isDataComplete(data) {
41
- return !!data && data.entries.length > 0;
40
+ function isDataSourcesComplete(data_sources) {
41
+ if (!data_sources)
42
+ return false;
43
+ const hasType1 = data_sources.on_chain_constants.length > 0;
44
+ const hasType2 = data_sources.witness_derived.length > 0;
45
+ const hasType3Obj = data_sources.submitted_objects.length > 0;
46
+ const hasType3Val = data_sources.submitted_values.length > 0;
47
+ const hasType4 = data_sources.system_contexts.length > 0;
48
+ if (!hasType1 && !hasType2 && !hasType3Obj && !hasType3Val && !hasType4) {
49
+ return false;
50
+ }
51
+ const unboundedSubmission = data_sources.submitted_objects.some((e) => !e.binding_constraint);
52
+ if (unboundedSubmission)
53
+ return false;
54
+ return true;
42
55
  }
43
56
  function isQueryComplete(queries) {
44
57
  return true;
@@ -55,186 +68,262 @@ function recommendNextStep(puzzle, missing) {
55
68
  if (missing.includes("intent")) {
56
69
  return {
57
70
  round: "R1",
58
- action: "捕获验证意图",
71
+ action: "Capture validation intent",
59
72
  questions: [
60
- "你要保护什么动作?(buy/forward/claim/vote/dispute/write/allocate",
61
- "用一句话描述验证规则",
62
- "列出 Guard 应该 FAIL 的情况",
73
+ "What action do you want to protect? (buy/forward/claim/vote/dispute/write/allocate)",
74
+ "Describe the validation rule in one sentence",
75
+ "List the conditions under which the Guard should FAIL",
63
76
  ],
64
77
  };
65
78
  }
66
79
  if (missing.includes("binding")) {
67
80
  return {
68
81
  round: "R5",
69
- action: "确定绑定目标",
82
+ action: "Determine binding target",
70
83
  questions: [
71
- "Guard 将绑定到哪个 Host Object?(Service/Machine/Arbitration/Reward/Repository",
72
- "绑定到哪个字段?(buy_guard/order_allocators/Forward.guard/...)",
73
- "Guard 是否需要引用 Host Object?(循环引用模式)",
84
+ "Which Host Object will the Guard bind to? (Service/Machine/Arbitration/Reward/Repository)",
85
+ "Which field will it bind to? (buy_guard/order_allocators/Forward.guard/...)",
86
+ "Does the Guard need to reference the Host Object? (circular reference mode)",
74
87
  ],
75
88
  };
76
89
  }
77
- if (missing.includes("data")) {
90
+ if (missing.includes("data_sources")) {
78
91
  return {
79
92
  round: "R2",
80
- action: "声明数据表",
93
+ action: "Declare data sources by 4 classifications",
81
94
  questions: [
82
- "Guard 需要哪些常量数据?(已知且不变的值)",
83
- "Guard 需要哪些提交数据?(运行时由 caller 提供)",
84
- "每个提交数据的 value_type 是什么?",
85
- "是否需要查询 EntityRegistrar(0xaab) EntityLinker(0xaaa)",
95
+ "Type1 (on-chain constant): Which already-published on-chain objects does the Guard need to query? (Service/Machine/Reward addresses)",
96
+ "Type2 (witness-derived): Do you need to derive Progress/Machine/Service from Order/Arb? (choose witness 100-108)",
97
+ "Type3 (submitted object): Which object addresses does the caller need to submit? (Order/Reward/Progress) — constraint rules must be designed",
98
+ "Type3 (submitted value): Which scalar values does the caller need to submit? (amount/weight/node name)",
99
+ "Type4 (system context): Do you need Signer (identity) / Clock (time) / Guard (self-reference)?",
100
+ "Do you need to query EntityRegistrar(0xaab) or EntityLinker(0xaaa)?",
86
101
  ],
87
102
  };
88
103
  }
89
104
  if (missing.includes("query")) {
90
105
  return {
91
106
  round: "R3",
92
- action: "设计查询节点",
107
+ action: "Design query nodes",
93
108
  questions: [
94
- "Guard 需要查询哪些链上对象?",
95
- "每个查询使用哪个指令 ID?(从 GUARDQUERY 查询)",
96
- "是否需要 convert_witness 转换对象?",
109
+ "Which on-chain objects does the Guard need to query?",
110
+ "Which instruction ID does each query use? (look up from GUARDQUERY)",
111
+ "Do you need convert_witness to convert objects? (linked to Type2 declaration)",
97
112
  ],
98
113
  };
99
114
  }
100
115
  if (missing.includes("logic")) {
101
116
  return {
102
117
  round: "R3",
103
- action: "设计计算树",
118
+ action: "Design computation tree",
104
119
  questions: [
105
- "root 节点是什么?(必须返回 Bool",
106
- "数据源节点有哪些?(identifier/context/query",
107
- "中间转换节点有哪些?(calc_*/convert_*/vec_*)",
108
- "是否需要 rely 组合其他 Guard?",
120
+ "What is the root node? (must return Bool)",
121
+ "Which data source nodes are there? (by 4 classifications: identifier/context/query)",
122
+ "Which intermediate conversion nodes are there? (calc_*/convert_*/vec_*)",
123
+ "Do you need rely to compose with other Guards?",
109
124
  ],
110
125
  };
111
126
  }
112
127
  if (missing.includes("constraints")) {
113
128
  return {
114
129
  round: "R6",
115
- action: "预创建审查",
116
- questions: ["运行 10 Common Pitfalls 检查清单"],
130
+ action: "Pre-creation review",
131
+ questions: ["Run the creation-time 10 + runtime 6 constraint checklist"],
117
132
  };
118
133
  }
119
134
  return {
120
135
  round: "R7",
121
- action: "准备链上创建",
122
- questions: ["所有维度已补全,准备生成语义确认文本"],
136
+ action: "Prepare for on-chain creation",
137
+ questions: ["All dimensions are complete; ready to generate the semantic confirmation text"],
123
138
  };
124
139
  }
125
140
  export function generateConfirmationText(puzzle) {
126
- if (!puzzle.intent || !puzzle.binding || !puzzle.data || !puzzle.logic) {
127
- return "【拼图未完整】无法生成确认文本,请先补全所有维度";
141
+ if (!puzzle.intent || !puzzle.binding || !puzzle.data_sources || !puzzle.logic) {
142
+ return "[Puzzle incomplete] Cannot generate confirmation text; please complete all dimensions first";
128
143
  }
129
144
  const lines = [];
130
145
  lines.push("═══════════════════════════════════════════════════════");
131
- lines.push(" Guard 语义确认报告(用户审核版)");
146
+ lines.push(" Guard Semantic Confirmation Report (User Review Edition)");
132
147
  lines.push("═══════════════════════════════════════════════════════");
133
148
  lines.push("");
134
- lines.push("【意图】");
135
- lines.push(`被保护动作: ${puzzle.intent.action}`);
136
- lines.push(`验证规则: ${puzzle.intent.rule_sentence}`);
137
- lines.push("失败条件:");
149
+ lines.push("[Intent]");
150
+ lines.push(`Protected action: ${puzzle.intent.action}`);
151
+ lines.push(`Validation rule: ${puzzle.intent.rule_sentence}`);
152
+ lines.push("Failure conditions:");
138
153
  puzzle.intent.failure_conditions.forEach((c, i) => {
139
154
  lines.push(` ${i + 1}. ${c}`);
140
155
  });
141
156
  lines.push("");
142
- lines.push("【绑定】");
157
+ lines.push("[Binding]");
143
158
  lines.push(`Host Object: ${puzzle.binding.host_object}`);
144
159
  if (puzzle.binding.host_object_name) {
145
- lines.push(`Host Object 名称: ${puzzle.binding.host_object_name}`);
160
+ lines.push(`Host Object name: ${puzzle.binding.host_object_name}`);
146
161
  }
147
- lines.push(`绑定字段: ${puzzle.binding.binding_field}`);
148
- lines.push(`循环引用: ${puzzle.binding.circular_reference ? "是(Guard 引用 Host Object" : ""}`);
149
- lines.push(`Host Object 状态: ${puzzle.binding.host_object_state}`);
162
+ lines.push(`Binding field: ${puzzle.binding.binding_field}`);
163
+ lines.push(`Circular reference: ${puzzle.binding.circular_reference ? "Yes (Guard references Host Object)" : "No"}`);
164
+ lines.push(`Host Object state: ${puzzle.binding.host_object_state}`);
150
165
  lines.push("");
151
- lines.push("【数据表】");
152
- lines.push("┌─────┬──────────┬──────────┬───────────────┬─────────────────────────┐");
153
- lines.push("│ ID │ 类型 │ 提交/常量│ 值/占位 │ 名称描述 │");
154
- lines.push("├─────┼──────────┼──────────┼───────────────┼─────────────────────────┤");
155
- puzzle.data.entries.forEach((e) => {
156
- const id = String(e.identifier).padEnd(3);
157
- const type = e.value_type.padEnd(8);
158
- const src = (e.b_submission ? "提交" : "常量").padEnd(8);
159
- const val = (e.b_submission ? "(运行时)" : String(e.value ?? "")).padEnd(13);
160
- const name = e.name.length > 23 ? e.name.slice(0, 22) + "…" : e.name.padEnd(23);
161
- lines.push(`│ ${id} │ ${type} │ ${src} │ ${val} │ ${name} │`);
162
- });
163
- lines.push("└─────┴──────────┴──────────┴───────────────┴─────────────────────────┘");
164
- if (puzzle.data.witnesses.length > 0) {
165
- lines.push("");
166
- lines.push("【对象转换 (convert_witness)】");
167
- puzzle.data.witnesses.forEach((w) => {
168
- lines.push(` ${w.witness_type} (${w.witness_name}): ${w.source_type} → ${w.target_type}`);
169
- lines.push(` 场景: ${w.scenario}`);
170
- });
171
- }
166
+ lines.push("[Data sources (4 classifications)]");
167
+ printDataSources(lines, puzzle.data_sources);
172
168
  lines.push("");
173
169
  if (puzzle.queries && puzzle.queries.length > 0) {
174
- lines.push("【查询指令】");
170
+ lines.push("[Query instructions]");
175
171
  lines.push("┌──────┬──────────────────────────┬────────────┬──────────┬──────────┐");
176
- lines.push("│ ID │ 查询指令 目标对象 参数 返回类型 │");
172
+ lines.push("│ ID │ Query instruction Target obj Params Return │");
177
173
  lines.push("├──────┼──────────────────────────┼────────────┼──────────┼──────────┤");
178
174
  puzzle.queries.forEach((q) => {
179
175
  const id = String(q.query_id).padEnd(4);
180
176
  const name = q.query_name.length > 24 ? q.query_name.slice(0, 23) + "…" : q.query_name.padEnd(24);
181
177
  const obj = q.object_type.padEnd(10);
182
- const params = (q.parameters.length === 0 ? "()" : q.parameters.join(",")).padEnd(8);
178
+ const params = (q.parameters.length === 0 ? "(none)" : q.parameters.join(",")).padEnd(8);
183
179
  const ret = q.return_type.padEnd(8);
184
180
  lines.push(`│ ${id} │ ${name} │ ${obj} │ ${params} │ ${ret} │`);
185
181
  });
186
182
  lines.push("└──────┴──────────────────────────┴────────────┴──────────┴──────────┘");
187
183
  lines.push("");
188
184
  }
189
- lines.push("【计算树】");
190
- lines.push(`root: ${puzzle.logic.root.node_type} (返回: ${puzzle.logic.root.return_type})`);
185
+ lines.push("[Computation tree]");
186
+ lines.push(`root: ${puzzle.logic.root.node_type} (returns: ${puzzle.logic.root.return_type})`);
191
187
  lines.push(` ${puzzle.logic.root.description}`);
192
188
  if (puzzle.logic.root.children) {
193
189
  printLogicTree(lines, puzzle.logic.root.children, 1);
194
190
  }
195
191
  lines.push("");
196
192
  if (puzzle.logic.rely) {
197
- lines.push("rely 组合】");
198
- lines.push(`依赖 Guard: ${puzzle.logic.rely.guards.join(", ")}`);
199
- lines.push(`逻辑: ${puzzle.logic.rely.logic_or ? "OR(任一通过即可)" : "AND(全部必须通过)"}`);
200
- lines.push(`rep 验证: ${puzzle.logic.rely.rep_verified.every((v) => v) ? "全部通过" : "有未验证"}`);
193
+ lines.push("[rely composition]");
194
+ lines.push(`Dependent Guards: ${puzzle.logic.rely.guards.join(", ")}`);
195
+ lines.push(`Logic: ${puzzle.logic.rely.logic_or ? "OR (any passes)" : "AND (all must pass)"}`);
196
+ lines.push(`rep verification: ${puzzle.logic.rely.rep_verified.every((v) => v) ? "all passed" : "some unverified"}`);
201
197
  lines.push("");
202
198
  }
203
199
  if (puzzle.constraints) {
204
- lines.push("【约束检查清单 (10 Common Pitfalls)");
205
- const checks = [
206
- ["01", "所有 identifier table 中存在", puzzle.constraints.pitfall_01_identifiers_in_table],
207
- ["02", "比较节点类型兼容", puzzle.constraints.pitfall_02_type_compatibility],
208
- ["03", "查询指令 ID 和参数数量正确", puzzle.constraints.pitfall_03_query_instruction_valid],
209
- ["04", "convert_witness 类型正确", puzzle.constraints.pitfall_04_witness_correct],
210
- ["05", "时间锁测试用小值", puzzle.constraints.pitfall_05_time_lock_test_safe],
211
- ["06", "迭代前已导出旧 Guard", puzzle.constraints.pitfall_06_exported_before_recreate],
212
- ["07", "root 返回 Bool", puzzle.constraints.pitfall_07_root_returns_bool],
213
- ["08", "rely 依赖 rep=true", puzzle.constraints.pitfall_08_rely_rep_true],
200
+ lines.push("[Constraint checklist (creation-time 22 + runtime 11 = 33; MCP layer static check 16)]");
201
+ const creationChecks = [
202
+ ["01", "All identifiers exist in the table", puzzle.constraints.pitfall_01_identifiers_in_table],
203
+ ["02", "Comparison node types are compatible", puzzle.constraints.pitfall_02_type_compatibility],
204
+ ["03", "Query instruction ID and parameter count are correct", puzzle.constraints.pitfall_03_query_instruction_valid],
205
+ ["04", "convert_witness type is correct", puzzle.constraints.pitfall_04_witness_correct],
206
+ ["05", "Time-lock tests use small values", puzzle.constraints.pitfall_05_time_lock_test_safe],
207
+ ["06", "Old Guard exported before iteration", puzzle.constraints.pitfall_06_exported_before_recreate],
208
+ ["07", "root returns Bool", puzzle.constraints.pitfall_07_root_returns_bool],
209
+ ["08", "rely dependency rep=true", puzzle.constraints.pitfall_08_rely_rep_true],
214
210
  ["09", "voting_guard GuardIdentifier numeric", puzzle.constraints.pitfall_09_voting_weight_numeric],
215
- ["10", "Arbitration 未暂停", puzzle.constraints.pitfall_10_arbitration_not_paused],
211
+ ["10", "Arbitration not paused", puzzle.constraints.pitfall_10_arbitration_not_paused],
216
212
  ];
217
- checks.forEach(([num, desc, pass]) => {
213
+ const runtimeChecks = [
214
+ ["R1", "Guard immutable=true to verify", puzzle.constraints.runtime_01_guard_immutable],
215
+ ["R2", "submission type bytes match table declaration", puzzle.constraints.runtime_02_submission_type_match],
216
+ ["R3", "b_submission=true entry found in submission", puzzle.constraints.runtime_03_submission_complete],
217
+ ["R4", "submission total bytes ≤ 256", puzzle.constraints.runtime_04_submission_size],
218
+ ["R5", "witness derivation source object has related field", puzzle.constraints.runtime_05_witness_source_valid],
219
+ ["R6", "query target object exists and types match", puzzle.constraints.runtime_06_query_object_valid],
220
+ ];
221
+ lines.push(" Creation-time constraints:");
222
+ creationChecks.forEach(([num, desc, pass]) => {
223
+ lines.push(` ${pass ? "✓" : "✗"} [${num}] ${desc}`);
224
+ });
225
+ lines.push(" Runtime constraints:");
226
+ runtimeChecks.forEach(([num, desc, pass]) => {
218
227
  lines.push(` ${pass ? "✓" : "✗"} [${num}] ${desc}`);
219
228
  });
220
229
  lines.push("");
221
230
  }
222
- lines.push("【风险提示】");
223
- lines.push(" ⚠ Guard 创建后不可修改、不可删除(CREATE-only");
224
- lines.push(" ⚠ 链上执行将消耗 gas");
225
- lines.push(" ⚠ 创建后如需修改,需 export → 编辑新建重新绑定");
231
+ lines.push("[Risk warnings]");
232
+ lines.push(" ⚠ Guard cannot be modified or deleted after creation (CREATE-only)");
233
+ lines.push(" ⚠ On-chain execution will consume gas");
234
+ lines.push(" ⚠ To modify after creation: export → editcreate new rebind");
226
235
  lines.push("");
227
- lines.push("【测试计划 (gen_passport 静态测试)");
228
- lines.push(" 预期通过场景: 提交符合条件的数据 → PASS → 生成 Passport");
229
- lines.push(" 预期失败场景: 提交不符合条件的数据 → FAIL → 验证逻辑方向正确");
236
+ lines.push("[Test plan (gen_passport static test)]");
237
+ lines.push(" Expected pass scenario: submit data meeting conditions → PASS → Passport generated");
238
+ lines.push(" Expected fail scenario: submit data not meeting conditions → FAIL → verify logic direction");
239
+ lines.push("");
240
+ lines.push("[Post-creation actions (important)]");
241
+ lines.push(" 1. Use guard2file to export the Guard backup (JSON file) for later rebuild or migration");
242
+ lines.push(" 2. Record the Guard object ID for subsequent binding and invocation");
243
+ lines.push(" 3. If the Guard binds to a Host Object, ensure the Host Object is published after Guard creation");
244
+ lines.push(" 4. Verify the Guard logic direction via gen_passport static test");
245
+ lines.push("");
246
+ const allCreationPass = creationChecksForReadiness(puzzle);
247
+ lines.push("[Creation readiness signal]");
248
+ lines.push(` Puzzle completeness: ${allCreationPass ? "✓ All passed — ready for on-chain CREATE" : "✗ Some items not passed — please fix first"}`);
230
249
  lines.push("");
231
250
  lines.push("═══════════════════════════════════════════════════════");
232
- lines.push(" 请审核以上 Guard 语义确认报告");
233
- lines.push(" 确认无误后回复「确认创建」以执行链上 CREATE");
234
- lines.push(" 如需修改,请指出需要调整的部分");
251
+ lines.push(" Please review the Guard semantic confirmation report above");
252
+ lines.push(" After confirming no issues, reply \"confirm creation\" to execute on-chain CREATE");
253
+ lines.push(" If modifications are needed, please point out the parts to adjust");
235
254
  lines.push("═══════════════════════════════════════════════════════");
236
255
  return lines.join("\n");
237
256
  }
257
+ function creationChecksForReadiness(puzzle) {
258
+ if (!puzzle.intent || !puzzle.binding || !puzzle.data_sources || !puzzle.logic || !puzzle.constraints) {
259
+ return false;
260
+ }
261
+ const c = puzzle.constraints;
262
+ const creationPass = c.pitfall_01_identifiers_in_table &&
263
+ c.pitfall_02_type_compatibility &&
264
+ c.pitfall_03_query_instruction_valid &&
265
+ c.pitfall_04_witness_correct &&
266
+ c.pitfall_05_time_lock_test_safe &&
267
+ c.pitfall_06_exported_before_recreate &&
268
+ c.pitfall_07_root_returns_bool &&
269
+ c.pitfall_08_rely_rep_true &&
270
+ c.pitfall_09_voting_weight_numeric &&
271
+ c.pitfall_10_arbitration_not_paused;
272
+ const runtimePass = c.runtime_01_guard_immutable &&
273
+ c.runtime_02_submission_type_match &&
274
+ c.runtime_03_submission_complete &&
275
+ c.runtime_04_submission_size &&
276
+ c.runtime_05_witness_source_valid &&
277
+ c.runtime_06_query_object_valid;
278
+ return creationPass && runtimePass;
279
+ }
280
+ function printDataSources(lines, ds) {
281
+ if (ds.on_chain_constants.length > 0) {
282
+ lines.push(" Type1 — On-chain constant objects (OnChainConstant, b_submission=false):");
283
+ ds.on_chain_constants.forEach((e) => {
284
+ const sysMark = e.is_system_address ? " [system address]" : "";
285
+ lines.push(` [id=${e.identifier}] ${e.object_type}(${e.object_address})${sysMark} — ${e.name}`);
286
+ });
287
+ }
288
+ if (ds.witness_derived.length > 0) {
289
+ lines.push(" Type2 — Witness-derived objects (WitnessDerived, convert_witness 100-108):");
290
+ ds.witness_derived.forEach((e) => {
291
+ const srcKind = e.source_b_submission ? "submitted" : "constant";
292
+ lines.push(` [id=${e.identifier}] ${e.source_type}(${srcKind}) → ${e.target_type} via ${e.witness_name}(${e.witness_type}) — ${e.name}`);
293
+ });
294
+ }
295
+ if (ds.submitted_objects.length > 0) {
296
+ lines.push(" Type3 — Submitted objects (SubmittedObject, b_submission=true):");
297
+ ds.submitted_objects.forEach((e) => {
298
+ lines.push(` [id=${e.identifier}] ${e.expected_object_type}(${e.value_type}) — ${e.name}`);
299
+ if (e.binding_constraint) {
300
+ lines.push(` Constraint: ${e.binding_constraint}`);
301
+ }
302
+ });
303
+ }
304
+ if (ds.submitted_values.length > 0) {
305
+ lines.push(" Type3 — Submitted values (SubmittedValue, b_submission=true, scalar):");
306
+ ds.submitted_values.forEach((e) => {
307
+ lines.push(` [id=${e.identifier}] ${e.value_type} — ${e.name}`);
308
+ if (e.binding_constraint) {
309
+ lines.push(` Constraint: ${e.binding_constraint}`);
310
+ }
311
+ });
312
+ }
313
+ if (ds.system_contexts.length > 0) {
314
+ lines.push(" Type4 — System contexts (SystemContext, not in table):");
315
+ ds.system_contexts.forEach((e) => {
316
+ lines.push(` context(${e.context_type}) — ${e.usage}`);
317
+ });
318
+ }
319
+ if (ds.on_chain_constants.length === 0 &&
320
+ ds.witness_derived.length === 0 &&
321
+ ds.submitted_objects.length === 0 &&
322
+ ds.submitted_values.length === 0 &&
323
+ ds.system_contexts.length === 0) {
324
+ lines.push(" (No data sources declared)");
325
+ }
326
+ }
238
327
  function printLogicTree(lines, nodes, depth) {
239
328
  const indent = " ".repeat(depth + 1);
240
329
  nodes.forEach((node, i) => {
@@ -276,3 +365,440 @@ export function inferBindingFromAction(action) {
276
365
  };
277
366
  return map[action] ?? {};
278
367
  }
368
+ export function emptyDataSources() {
369
+ return {
370
+ on_chain_constants: [],
371
+ witness_derived: [],
372
+ submitted_objects: [],
373
+ submitted_values: [],
374
+ system_contexts: [],
375
+ };
376
+ }
377
+ export const WITNESS_NAME_MAP = {
378
+ 100: { name: "TypeOrderProgress", source: "Order", target: "Progress" },
379
+ 101: { name: "TypeOrderMachine", source: "Order", target: "Machine" },
380
+ 102: { name: "TypeOrderService", source: "Order", target: "Service" },
381
+ 103: { name: "TypeProgressMachine", source: "Progress", target: "Machine" },
382
+ 104: { name: "TypeArbOrder", source: "Arb", target: "Order" },
383
+ 105: { name: "TypeArbArbitration", source: "Arb", target: "Arbitration" },
384
+ 106: { name: "TypeArbProgress", source: "Arb", target: "Progress" },
385
+ 107: { name: "TypeArbMachine", source: "Arb", target: "Machine" },
386
+ 108: { name: "TypeArbService", source: "Arb", target: "Service" },
387
+ };
388
+ export function getWitnessInfo(witness_type) {
389
+ return WITNESS_NAME_MAP[witness_type];
390
+ }
391
+ function traverseRoot(node, collectors) {
392
+ if (!node)
393
+ return;
394
+ if (node.type === "identifier" && typeof node.identifier === "number") {
395
+ collectors.referencedIdentifiers.add(node.identifier);
396
+ }
397
+ if (node.type === "context" && node.context) {
398
+ collectors.contexts.add(node.context);
399
+ }
400
+ if (node.type === "query" && node.object) {
401
+ const objId = node.object.identifier;
402
+ collectors.referencedIdentifiers.add(objId);
403
+ const witnessCode = node.object.convert_witness;
404
+ if (typeof witnessCode === "number" && witnessCode >= 100 && witnessCode <= 108) {
405
+ collectors.witnessCodes.push({ code: witnessCode, objectIdentifier: objId });
406
+ }
407
+ collectors.queries.push({
408
+ query: node.query ?? "",
409
+ objectIdentifier: objId,
410
+ convertWitness: witnessCode,
411
+ parametersCount: node.parameters?.length ?? 0,
412
+ });
413
+ if (node.parameters) {
414
+ for (const param of node.parameters) {
415
+ traverseRoot(param, collectors);
416
+ }
417
+ }
418
+ }
419
+ if (node.nodes) {
420
+ for (const child of node.nodes) {
421
+ traverseRoot(child, collectors);
422
+ }
423
+ }
424
+ if (node.node) {
425
+ traverseRoot(node.node, collectors);
426
+ }
427
+ if (node.nodeLeft) {
428
+ traverseRoot(node.nodeLeft, collectors);
429
+ }
430
+ if (node.nodeRight) {
431
+ traverseRoot(node.nodeRight, collectors);
432
+ }
433
+ }
434
+ function buildLogicTree(node) {
435
+ if (!node)
436
+ return undefined;
437
+ const logicNode = {
438
+ node_type: node.type,
439
+ return_type: inferNodeType(node.type),
440
+ description: describeNode(node),
441
+ };
442
+ if (node.type === "identifier" && typeof node.identifier === "number") {
443
+ logicNode.references_identifier = node.identifier;
444
+ }
445
+ if (node.type === "query" && node.object) {
446
+ logicNode.query = {
447
+ query_id: typeof node.query === "number" ? node.query : 0,
448
+ query_name: typeof node.query === "string" ? node.query : String(node.query ?? ""),
449
+ object_type: "",
450
+ parameters: [],
451
+ return_type: "",
452
+ purpose: "",
453
+ };
454
+ if (node.object.convert_witness) {
455
+ const wInfo = getWitnessInfo(node.object.convert_witness);
456
+ if (wInfo) {
457
+ logicNode.query.witness = {
458
+ witness_type: node.object.convert_witness,
459
+ witness_name: wInfo.name,
460
+ source_type: wInfo.source,
461
+ target_type: wInfo.target,
462
+ scenario: "",
463
+ };
464
+ }
465
+ }
466
+ }
467
+ if (node.nodes) {
468
+ const children = node.nodes
469
+ .map((c) => buildLogicTree(c))
470
+ .filter((c) => c !== undefined);
471
+ if (children.length > 0) {
472
+ logicNode.children = children;
473
+ }
474
+ }
475
+ if (node.node) {
476
+ const child = buildLogicTree(node.node);
477
+ if (child) {
478
+ logicNode.children = [child];
479
+ }
480
+ }
481
+ if (node.nodeLeft) {
482
+ const child = buildLogicTree(node.nodeLeft);
483
+ if (child) {
484
+ logicNode.children = [...(logicNode.children ?? []), child];
485
+ }
486
+ }
487
+ if (node.nodeRight) {
488
+ const child = buildLogicTree(node.nodeRight);
489
+ if (child) {
490
+ logicNode.children = [...(logicNode.children ?? []), child];
491
+ }
492
+ }
493
+ return logicNode;
494
+ }
495
+ function inferNodeType(nodeType) {
496
+ const boolTypes = [
497
+ "logic_equal", "logic_not", "logic_and", "logic_or",
498
+ "logic_as_u256_greater", "logic_as_u256_lesser", "logic_as_u256_equal",
499
+ "logic_as_u256_greater_or_equal", "logic_as_u256_lesser_or_equal",
500
+ "logic_string_contains", "logic_string_nocase_contains", "logic_string_nocase_equal",
501
+ "calc_string_contains", "calc_string_nocase_contains", "calc_string_nocase_equal",
502
+ "vec_contains_bool", "vec_contains_address", "vec_contains_string",
503
+ "vec_contains_string_nocase", "vec_contains_number",
504
+ "query_reward_record_exists",
505
+ ];
506
+ if (boolTypes.includes(nodeType))
507
+ return "Bool";
508
+ const u256Types = [
509
+ "calc_number_add", "calc_number_subtract", "calc_number_multiply",
510
+ "calc_number_divide", "calc_number_mod",
511
+ "convert_address_number", "convert_string_number",
512
+ ];
513
+ if (u256Types.includes(nodeType))
514
+ return "U256";
515
+ const u64Types = [
516
+ "calc_string_length", "calc_string_indexof", "calc_string_nocase_indexof",
517
+ "vec_length", "vec_indexof_bool", "vec_indexof_address", "vec_indexof_string",
518
+ "vec_indexof_string_nocase", "vec_indexof_number",
519
+ "query_reward_record_count",
520
+ "query_progress_history_session_count",
521
+ "query_progress_history_session_forward_count",
522
+ "query_progress_history_session_forward_retained_submission_count",
523
+ ];
524
+ if (u64Types.includes(nodeType))
525
+ return "U64";
526
+ const addressTypes = ["convert_number_address"];
527
+ if (addressTypes.includes(nodeType))
528
+ return "Address";
529
+ const stringTypes = ["convert_number_string"];
530
+ if (stringTypes.includes(nodeType))
531
+ return "String";
532
+ const safeTypes = ["convert_safe_u8", "convert_safe_u16", "convert_safe_u32", "convert_safe_u64", "convert_safe_u128", "convert_safe_u256"];
533
+ if (safeTypes.includes(nodeType)) {
534
+ return nodeType.replace("convert_safe_", "U");
535
+ }
536
+ if (nodeType === "value_type")
537
+ return "U8";
538
+ if (nodeType === "query")
539
+ return "query_defined";
540
+ if (nodeType === "identifier")
541
+ return "table_defined";
542
+ if (nodeType === "context")
543
+ return "context_defined";
544
+ return "unknown";
545
+ }
546
+ function describeNode(node) {
547
+ switch (node.type) {
548
+ case "identifier":
549
+ return `Reference to table[${node.identifier ?? "?"}]`;
550
+ case "context":
551
+ return `System context: ${node.context ?? "?"}`;
552
+ case "query":
553
+ return `Query instruction ${node.query ?? "?"} (target: table[${node.object?.identifier ?? "?"}])`;
554
+ case "logic_equal":
555
+ return "Equality comparison (==)";
556
+ case "logic_not":
557
+ return "Logical NOT (!)";
558
+ case "logic_and":
559
+ return "Logical AND";
560
+ case "logic_or":
561
+ return "Logical OR";
562
+ case "logic_as_u256_greater":
563
+ return "Numeric greater than (>)";
564
+ case "logic_as_u256_lesser":
565
+ return "Numeric less than (<)";
566
+ case "logic_as_u256_equal":
567
+ return "Numeric equality (==)";
568
+ case "logic_as_u256_greater_or_equal":
569
+ return "Numeric greater than or equal (>=)";
570
+ case "logic_as_u256_lesser_or_equal":
571
+ return "Numeric less than or equal (<=)";
572
+ case "calc_number_add":
573
+ return "Numeric addition (+)";
574
+ case "calc_number_subtract":
575
+ return "Numeric subtraction (-)";
576
+ case "calc_number_multiply":
577
+ return "Numeric multiplication (*)";
578
+ case "calc_number_divide":
579
+ return "Numeric division (/)";
580
+ case "calc_number_mod":
581
+ return "Numeric modulo (%)";
582
+ case "vec_contains_address":
583
+ return "Whitelist check (vec_contains_address)";
584
+ case "vec_length":
585
+ return "Vector length";
586
+ case "convert_safe_u64":
587
+ return "Safe conversion to U64";
588
+ default:
589
+ return node.type;
590
+ }
591
+ }
592
+ function deriveConstraints(table, root, rely, collectors) {
593
+ const pitfall01 = Array.from(collectors.referencedIdentifiers).every((id) => table.some((t) => t.identifier === id));
594
+ const pitfall02 = root !== undefined;
595
+ const pitfall03 = true;
596
+ const pitfall04 = collectors.witnessCodes.every((w) => w.code >= 100 && w.code <= 108);
597
+ const pitfall05 = true;
598
+ const pitfall06 = true;
599
+ const pitfall07 = root !== undefined;
600
+ const pitfall08 = rely ? rely.guards.length <= 4 : true;
601
+ const pitfall09 = true;
602
+ const pitfall10 = true;
603
+ const runtime01 = true;
604
+ const runtime02 = true;
605
+ const runtime03 = true;
606
+ const submissionEntries = table.filter((t) => t.b_submission);
607
+ const runtime04 = submissionEntries.length <= 256;
608
+ const runtime05 = true;
609
+ const runtime06 = true;
610
+ return {
611
+ pitfall_01_identifiers_in_table: pitfall01,
612
+ pitfall_02_type_compatibility: pitfall02,
613
+ pitfall_03_query_instruction_valid: pitfall03,
614
+ pitfall_04_witness_correct: pitfall04,
615
+ pitfall_05_time_lock_test_safe: pitfall05,
616
+ pitfall_06_exported_before_recreate: pitfall06,
617
+ pitfall_07_root_returns_bool: pitfall07,
618
+ pitfall_08_rely_rep_true: pitfall08,
619
+ pitfall_09_voting_weight_numeric: pitfall09,
620
+ pitfall_10_arbitration_not_paused: pitfall10,
621
+ runtime_01_guard_immutable: runtime01,
622
+ runtime_02_submission_type_match: runtime02,
623
+ runtime_03_submission_complete: runtime03,
624
+ runtime_04_submission_size: runtime04,
625
+ runtime_05_witness_source_valid: runtime05,
626
+ runtime_06_query_object_valid: runtime06,
627
+ };
628
+ }
629
+ export function derivePuzzleFromCallData(input) {
630
+ const table = input.table ?? [];
631
+ const root = input.root;
632
+ const rely = input.rely;
633
+ const bindingHint = input.binding_hint;
634
+ const collectors = {
635
+ referencedIdentifiers: new Set(),
636
+ queries: [],
637
+ contexts: new Set(),
638
+ witnessCodes: [],
639
+ };
640
+ if (root) {
641
+ traverseRoot(root, collectors);
642
+ }
643
+ let intent;
644
+ if (bindingHint) {
645
+ intent = {
646
+ action: bindingHint.action,
647
+ rule_sentence: bindingHint.rule_sentence ?? "",
648
+ failure_conditions: bindingHint.failure_conditions ?? [],
649
+ };
650
+ }
651
+ let binding;
652
+ if (bindingHint) {
653
+ binding = {
654
+ host_object: bindingHint.host_object,
655
+ binding_field: bindingHint.binding_field,
656
+ circular_reference: bindingHint.circular_reference ?? false,
657
+ host_object_state: "unknown",
658
+ };
659
+ }
660
+ const witnessCodesByIdentifier = new Map();
661
+ for (const w of collectors.witnessCodes) {
662
+ witnessCodesByIdentifier.set(w.objectIdentifier, w.code);
663
+ }
664
+ const onChainConstants = [];
665
+ const witnessDerived = [];
666
+ const submittedObjects = [];
667
+ const submittedValues = [];
668
+ for (const item of table) {
669
+ const isReferencedByQuery = collectors.referencedIdentifiers.has(item.identifier);
670
+ const witnessCode = witnessCodesByIdentifier.get(item.identifier);
671
+ if (witnessCode !== undefined) {
672
+ const wInfo = getWitnessInfo(witnessCode);
673
+ if (wInfo) {
674
+ witnessDerived.push({
675
+ identifier: item.identifier,
676
+ source_type: wInfo.source,
677
+ witness_type: witnessCode,
678
+ witness_name: wInfo.name,
679
+ target_type: wInfo.target,
680
+ source_b_submission: item.b_submission,
681
+ name: item.name || `${wInfo.source}→${wInfo.target} via ${wInfo.name}`,
682
+ });
683
+ continue;
684
+ }
685
+ }
686
+ if (!item.b_submission) {
687
+ const valueStr = typeof item.value === "string" ? item.value.toLowerCase() : "";
688
+ const isSystemAddr = valueStr === "0xaab" || valueStr === "0xaaa";
689
+ onChainConstants.push({
690
+ identifier: item.identifier,
691
+ object_address: typeof item.value === "string" ? item.value : String(item.value ?? ""),
692
+ object_type: item.object_type ?? "",
693
+ name: item.name || `constant #${item.identifier}`,
694
+ is_system_address: isSystemAddr,
695
+ });
696
+ }
697
+ else {
698
+ const valueTypeStr = typeof item.value_type === "string"
699
+ ? item.value_type.toLowerCase()
700
+ : String(item.value_type);
701
+ if (valueTypeStr === "address") {
702
+ submittedObjects.push({
703
+ identifier: item.identifier,
704
+ expected_object_type: item.object_type ?? "",
705
+ value_type: "Address",
706
+ name: item.name || `submitted object #${item.identifier}`,
707
+ binding_constraint: item.object_type
708
+ ? `must be an on-chain object address of type ${item.object_type}`
709
+ : "must be a valid on-chain object address",
710
+ });
711
+ }
712
+ else {
713
+ submittedValues.push({
714
+ identifier: item.identifier,
715
+ value_type: typeof item.value_type === "string" ? item.value_type : String(item.value_type),
716
+ name: item.name || `submitted value #${item.identifier}`,
717
+ binding_constraint: `value type must be ${item.value_type}`,
718
+ });
719
+ }
720
+ }
721
+ }
722
+ const systemContexts = [];
723
+ for (const ctxType of collectors.contexts) {
724
+ const usageMap = {
725
+ Signer: "Current transaction signer address verification",
726
+ Clock: "On-chain timestamp (used for time-lock/time-window)",
727
+ Guard: "Guard self object ID self-reference",
728
+ };
729
+ systemContexts.push({
730
+ context_type: ctxType,
731
+ usage: usageMap[ctxType] ?? "",
732
+ });
733
+ }
734
+ const dataSources = {
735
+ on_chain_constants: onChainConstants,
736
+ witness_derived: witnessDerived,
737
+ submitted_objects: submittedObjects,
738
+ submitted_values: submittedValues,
739
+ system_contexts: systemContexts,
740
+ };
741
+ const queries = collectors.queries.map((q) => {
742
+ const wInfo = q.convertWitness !== undefined ? getWitnessInfo(q.convertWitness) : undefined;
743
+ return {
744
+ query_id: typeof q.query === "number" ? q.query : 0,
745
+ query_name: typeof q.query === "string" ? q.query : String(q.query),
746
+ object_type: "",
747
+ parameters: [],
748
+ return_type: "",
749
+ witness: wInfo ? {
750
+ witness_type: q.convertWitness,
751
+ witness_name: wInfo.name,
752
+ source_type: wInfo.source,
753
+ target_type: wInfo.target,
754
+ scenario: "",
755
+ } : undefined,
756
+ purpose: "",
757
+ };
758
+ });
759
+ let logic;
760
+ if (root) {
761
+ const logicRoot = buildLogicTree(root);
762
+ if (logicRoot) {
763
+ logicRoot.return_type = "Bool";
764
+ let logicRely;
765
+ if (rely && rely.guards.length > 0) {
766
+ logicRely = {
767
+ guards: rely.guards,
768
+ logic_or: rely.logic_or ?? false,
769
+ rep_verified: rely.guards.map(() => true),
770
+ };
771
+ }
772
+ logic = { root: logicRoot, rely: logicRely };
773
+ }
774
+ }
775
+ const constraints = deriveConstraints(table, root, rely, collectors);
776
+ const puzzle = {
777
+ current_round: "R7",
778
+ intent,
779
+ binding,
780
+ data_sources: dataSources,
781
+ queries,
782
+ logic,
783
+ constraints,
784
+ };
785
+ return puzzle;
786
+ }
787
+ export function getPuzzleStatusBooleans(puzzle) {
788
+ const completeness = checkPuzzleCompleteness(puzzle);
789
+ return {
790
+ intent: completeness.dimensions.intent,
791
+ binding: completeness.dimensions.binding,
792
+ data: completeness.dimensions.data_sources,
793
+ query: completeness.dimensions.query,
794
+ logic: completeness.dimensions.logic,
795
+ constraints: completeness.dimensions.constraints,
796
+ };
797
+ }
798
+ export function getPendingQuestions(puzzle) {
799
+ const completeness = checkPuzzleCompleteness(puzzle);
800
+ if (completeness.complete) {
801
+ return [];
802
+ }
803
+ return completeness.next_step.questions;
804
+ }