@stelis/say-ur-intent 0.0.0 → 0.0.2

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 (234) hide show
  1. package/README.md +4 -39
  2. package/dist/adapters/adapterLifecycleValidators.js +7 -0
  3. package/dist/adapters/adapterPromptSurfaces.js +71 -0
  4. package/dist/adapters/deepbook/deepbookHumanReviewProducer.js +175 -0
  5. package/dist/adapters/deepbook/deepbookQuotePolicy.js +112 -0
  6. package/dist/adapters/deepbook/deepbookReviewEvidence.js +507 -0
  7. package/dist/adapters/deepbook/deepbookReviewLifecycle.js +85 -0
  8. package/dist/adapters/deepbook/deepbookSwapIntent.js +79 -0
  9. package/dist/adapters/deepbook/deepbookTransactionMaterialProducer.js +269 -0
  10. package/dist/adapters/flowx/flowxSwapHumanReviewProducer.js +176 -0
  11. package/dist/adapters/flowx/flowxSwapIntent.js +79 -0
  12. package/dist/adapters/flowx/flowxSwapQuotePolicy.js +104 -0
  13. package/dist/adapters/flowx/flowxSwapReviewEvidence.js +468 -0
  14. package/dist/adapters/flowx/flowxSwapReviewLifecycle.js +85 -0
  15. package/dist/adapters/flowx/flowxSwapTransactionMaterialProducer.js +362 -0
  16. package/dist/adapters/intentPlanFactories.js +59 -0
  17. package/dist/adapters/reviewAdapters.js +81 -0
  18. package/dist/core/action/adapterLifecycleValidation.js +12 -0
  19. package/dist/core/action/forbiddenFields.js +43 -0
  20. package/dist/core/action/humanReadableReviewEvidence.js +203 -0
  21. package/dist/core/action/humanReadableReviewProjectionVerifier.js +29 -0
  22. package/dist/core/action/ptbVisualizationProducer.js +66 -0
  23. package/dist/core/action/reviewCheckResults.js +6 -0
  24. package/dist/core/action/reviewStateValidation.js +11 -0
  25. package/dist/core/action/reviewTimeSimulationEvidence.js +471 -0
  26. package/dist/core/action/schemas.js +529 -0
  27. package/dist/core/action/signableAdapterContract.js +993 -0
  28. package/dist/core/action/swapHumanReadableReviewProjection.js +124 -0
  29. package/dist/core/action/swapQuotePolicyEvidence.js +278 -0
  30. package/dist/core/action/transactionObjectOwnershipEvidence.js +247 -0
  31. package/dist/core/action/transactionObjectOwnershipProducer.js +329 -0
  32. package/dist/core/action/types.js +35 -0
  33. package/dist/core/action/walletReviewContractAssembler.js +282 -0
  34. package/dist/core/activity/activityStore.js +15 -0
  35. package/dist/core/activity/localDataService.js +258 -0
  36. package/dist/core/activity/localDataTypes.js +11 -0
  37. package/dist/core/activity/localDataValidation.js +396 -0
  38. package/dist/core/activity/schemaVersion.js +1 -0
  39. package/dist/core/activity/sqliteActivityStore.js +820 -0
  40. package/dist/core/activity/sqliteActivityStoreRows.js +430 -0
  41. package/dist/core/activity/sqliteActivityStoreSchema.js +258 -0
  42. package/dist/core/activity/sqliteActivityStoreTypes.js +5 -0
  43. package/dist/core/activity/suiFunctionTarget.js +43 -0
  44. package/dist/core/activity/transactionActivityAccountEffects.js +189 -0
  45. package/dist/core/activity/transactionActivityAnalysis.js +295 -0
  46. package/dist/core/activity/transactionActivityClassifier.js +306 -0
  47. package/dist/core/activity/transactionActivityDetails.js +229 -0
  48. package/dist/core/activity/transactionActivityProtocolRules.js +218 -0
  49. package/dist/core/activity/transactionActivityScanPolicy.js +170 -0
  50. package/dist/core/activity/transactionActivityService.js +379 -0
  51. package/dist/core/activity/transactionActivityTypes.js +18 -0
  52. package/dist/core/eventlog/sink.js +35 -0
  53. package/dist/core/evidence/settlementFamilies.js +87 -0
  54. package/dist/core/evidence/userAnswerUse.js +1 -0
  55. package/dist/core/numeric/rawU64.js +63 -0
  56. package/dist/core/preferences/preferencesStore.js +26 -0
  57. package/dist/core/preferences/sqlitePreferencesRepository.js +136 -0
  58. package/dist/core/proposal/externalProposalReview.js +347 -0
  59. package/dist/core/proposal/schemas.js +208 -0
  60. package/dist/core/proposal/types.js +35 -0
  61. package/dist/core/read/amounts.js +14 -0
  62. package/dist/core/read/coinMetadata.js +60 -0
  63. package/dist/core/read/deepbookRawQuoteClient.js +86 -0
  64. package/dist/core/read/deepbookReadHelpers.js +265 -0
  65. package/dist/core/read/deepbookRegistry.js +133 -0
  66. package/dist/core/read/flowxQuoteClient.js +117 -0
  67. package/dist/core/read/flowxReadHelpers.js +145 -0
  68. package/dist/core/read/flowxRegistry.js +174 -0
  69. package/dist/core/read/intentEvidenceResponseFormatting.js +228 -0
  70. package/dist/core/read/readResponseGuidance.js +451 -0
  71. package/dist/core/read/readService.js +1164 -0
  72. package/dist/core/read/readServiceTypes.js +59 -0
  73. package/dist/core/read/settlementParityFormatting.js +82 -0
  74. package/dist/core/read/walletReadHelpers.js +99 -0
  75. package/dist/core/review/reviewChecks.js +54 -0
  76. package/dist/core/review/reviewComputation.js +38 -0
  77. package/dist/core/review/reviewComputationResult.js +87 -0
  78. package/dist/core/session/localSession.js +31 -0
  79. package/dist/core/session/privateReviewArtifacts.js +73 -0
  80. package/dist/core/session/sessionErrors.js +9 -0
  81. package/dist/core/session/sessionStore.js +821 -0
  82. package/dist/core/session/settingsSession.js +1 -0
  83. package/dist/core/session/settingsSessions.js +43 -0
  84. package/dist/core/session/status.js +86 -0
  85. package/dist/core/session/transactionMaterialStore.js +205 -0
  86. package/dist/core/session/wait.js +102 -0
  87. package/dist/core/session/walletIdentity.js +103 -0
  88. package/dist/core/session/walletIdentitySessions.js +189 -0
  89. package/dist/core/suiAddress.js +18 -0
  90. package/dist/core/suiEndpoint.js +72 -0
  91. package/dist/mcp/activeAccountResponse.js +24 -0
  92. package/dist/mcp/prompts.js +146 -0
  93. package/dist/mcp/registerTool.js +19 -0
  94. package/dist/mcp/resources.js +72 -0
  95. package/dist/mcp/responseGuidance.js +381 -0
  96. package/dist/mcp/result.js +17 -0
  97. package/dist/mcp/schemas.js +8 -0
  98. package/dist/mcp/server.js +30 -0
  99. package/dist/mcp/serverInfo.js +123 -0
  100. package/dist/mcp/toolErrors.js +105 -0
  101. package/dist/mcp/toolNames.js +50 -0
  102. package/dist/mcp/tools/account/index.js +44 -0
  103. package/dist/mcp/tools/action/prepareSuiActionReview.js +120 -0
  104. package/dist/mcp/tools/read/commonSchemas.js +43 -0
  105. package/dist/mcp/tools/read/deepbookReadTools.js +453 -0
  106. package/dist/mcp/tools/read/flowxReadTools.js +135 -0
  107. package/dist/mcp/tools/read/index.js +16 -0
  108. package/dist/mcp/tools/read/readToolHelpers.js +68 -0
  109. package/dist/mcp/tools/read/reviewActivityTools.js +176 -0
  110. package/dist/mcp/tools/read/serverStatusTools.js +103 -0
  111. package/dist/mcp/tools/read/transactionActivityOutput.js +300 -0
  112. package/dist/mcp/tools/read/transactionActivityTools.js +544 -0
  113. package/dist/mcp/tools/read/walletReadTools.js +733 -0
  114. package/dist/mcp/tools/session/executionResultTools.js +92 -0
  115. package/dist/mcp/tools/session/index.js +8 -0
  116. package/dist/mcp/tools/session/shared.js +79 -0
  117. package/dist/mcp/tools/session/statusTools.js +134 -0
  118. package/dist/mcp/tools/session/walletIdentityTools.js +119 -0
  119. package/dist/mcp/tools/settings/index.js +64 -0
  120. package/dist/review-app/analysis.css +1 -0
  121. package/dist/review-app/analysis.js +1 -0
  122. package/dist/review-app/arc-BjIacwQm.js +1 -0
  123. package/dist/review-app/architecture-U656AL7Q-aSB9x1OK.js +1 -0
  124. package/dist/review-app/architectureDiagram-VXUJARFQ-C5W6re2I.js +36 -0
  125. package/dist/review-app/array-BmXUUrU6.js +1 -0
  126. package/dist/review-app/blockDiagram-VD42YOAC-20MLNcUm.js +122 -0
  127. package/dist/review-app/c4Diagram-YG6GDRKO-BZXRrcck.js +10 -0
  128. package/dist/review-app/channel-lk2p_CUu.js +1 -0
  129. package/dist/review-app/chunk-4BX2VUAB-BPITOdjX.js +1 -0
  130. package/dist/review-app/chunk-55IACEB6-Dz-pyw5k.js +1 -0
  131. package/dist/review-app/chunk-76Q3JFCE-cK_X1P_l.js +1 -0
  132. package/dist/review-app/chunk-ABZYJK2D-Dt4W53JI.js +81 -0
  133. package/dist/review-app/chunk-ATLVNIR6-fZHLXURb.js +1 -0
  134. package/dist/review-app/chunk-B4BG7PRW-BbgcjusC.js +165 -0
  135. package/dist/review-app/chunk-BJD4TVEz.js +1 -0
  136. package/dist/review-app/chunk-CVBHYZKI-CViawAKX.js +1 -0
  137. package/dist/review-app/chunk-DI55MBZ5-C5aoul-d.js +220 -0
  138. package/dist/review-app/chunk-FMBD7UC4-Chxmw62A.js +15 -0
  139. package/dist/review-app/chunk-FPAJGGOC-DDHjQ09H.js +80 -0
  140. package/dist/review-app/chunk-FWNWRKHM-CVVQUptk.js +1 -0
  141. package/dist/review-app/chunk-HN2XXSSU-yzNpjaSZ.js +1 -0
  142. package/dist/review-app/chunk-JA3XYJ7Z-C5ZJdU01.js +70 -0
  143. package/dist/review-app/chunk-JZLCHNYA-BBST4Cnk.js +54 -0
  144. package/dist/review-app/chunk-LBM3YZW2-CdwAPuHr.js +1 -0
  145. package/dist/review-app/chunk-LHMN2FUI-BtB5uDcp.js +1 -0
  146. package/dist/review-app/chunk-O7ZBX7Z2-pxdK4Sa3.js +1 -0
  147. package/dist/review-app/chunk-QN33PNHL-CbVv3uGK.js +1 -0
  148. package/dist/review-app/chunk-QXUST7PY-DKM2-t2c.js +7 -0
  149. package/dist/review-app/chunk-QZHKN3VN-C5ni2pN_.js +1 -0
  150. package/dist/review-app/chunk-S3R3BYOJ-BWvOhDs0.js +2 -0
  151. package/dist/review-app/chunk-S6J4BHB3-D9Fk0YeD.js +1 -0
  152. package/dist/review-app/chunk-T53DSG4Q-C1qEyzyV.js +1 -0
  153. package/dist/review-app/chunk-TZMSLE5B-B--7eU69.js +1 -0
  154. package/dist/review-app/classDiagram-2ON5EDUG-DlL1m2bp.js +1 -0
  155. package/dist/review-app/classDiagram-v2-WZHVMYZB-FXRskT1j.js +1 -0
  156. package/dist/review-app/clone-BZZb7gpZ.js +1 -0
  157. package/dist/review-app/cose-bilkent-S5V4N54A-CRIb8XEO.js +1 -0
  158. package/dist/review-app/cytoscape.esm-C7jYqDP5.js +321 -0
  159. package/dist/review-app/dagre-6UL2VRFP-FNCAXbdE.js +4 -0
  160. package/dist/review-app/dagre-Be46QtUd.js +1 -0
  161. package/dist/review-app/defaultLocale-BaWNtAUL.js +1 -0
  162. package/dist/review-app/diagram-PSM6KHXK-ylLWjiNM.js +24 -0
  163. package/dist/review-app/diagram-QEK2KX5R-BCDcESxs.js +43 -0
  164. package/dist/review-app/diagram-S2PKOQOG-Vdrc-vrO.js +24 -0
  165. package/dist/review-app/dist-WPc74x_f.js +1 -0
  166. package/dist/review-app/erDiagram-Q2GNP2WA-E5ZsUbDF.js +60 -0
  167. package/dist/review-app/flatten-DHf9IeNI.js +1 -0
  168. package/dist/review-app/flowDiagram-NV44I4VS-DBSQuj6x.js +162 -0
  169. package/dist/review-app/ganttDiagram-LVOFAZNH-CKUOsqwl.js +267 -0
  170. package/dist/review-app/gitGraph-F6HP7TQM-DsAD6qK1.js +1 -0
  171. package/dist/review-app/gitGraphDiagram-NY62KEGX-BCeIMWdl.js +65 -0
  172. package/dist/review-app/graphlib-CiX5CXxR.js +1 -0
  173. package/dist/review-app/http-DMvwuuFk.js +1 -0
  174. package/dist/review-app/identity-DY8PXc6t.js +1 -0
  175. package/dist/review-app/info-NVLQJR56-Dlx1nZic.js +1 -0
  176. package/dist/review-app/infoDiagram-F6ZHWCRC-CAuANIrz.js +2 -0
  177. package/dist/review-app/init-BvqephKz.js +1 -0
  178. package/dist/review-app/journeyDiagram-XKPGCS4Q-C-Z9phnx.js +139 -0
  179. package/dist/review-app/kanban-definition-3W4ZIXB7-DufgZABq.js +89 -0
  180. package/dist/review-app/katex-B-Z-NXXN.js +257 -0
  181. package/dist/review-app/line-DiIv3Jgw.js +1 -0
  182. package/dist/review-app/linear-Cv-UPvo1.js +1 -0
  183. package/dist/review-app/math-kmyYrkHL.js +1 -0
  184. package/dist/review-app/mermaid-parser.core-DkwUYTPl.js +4 -0
  185. package/dist/review-app/mindmap-definition-VGOIOE7T-TM_CqdmV.js +68 -0
  186. package/dist/review-app/ordinal-BliTlkoG.js +1 -0
  187. package/dist/review-app/packet-BFZMPI3H-DqbnU92v.js +1 -0
  188. package/dist/review-app/path-AEo9W6mQ.js +1 -0
  189. package/dist/review-app/pie-7BOR55EZ-LJzaLkgr.js +1 -0
  190. package/dist/review-app/pieDiagram-ADFJNKIX-BAs8OfRS.js +30 -0
  191. package/dist/review-app/quadrantDiagram-AYHSOK5B-CyUDZP5S.js +7 -0
  192. package/dist/review-app/radar-NHE76QYJ-DBpHc8_Y.js +1 -0
  193. package/dist/review-app/reduce-B-HuPpdd.js +1 -0
  194. package/dist/review-app/requirementDiagram-UZGBJVZJ-BEHix78P.js +64 -0
  195. package/dist/review-app/review.css +1 -0
  196. package/dist/review-app/review.js +43 -0
  197. package/dist/review-app/sankeyDiagram-TZEHDZUN-B2bKbmsm.js +10 -0
  198. package/dist/review-app/sequenceDiagram-WL72ISMW-DVLOORFJ.js +145 -0
  199. package/dist/review-app/settings.css +1 -0
  200. package/dist/review-app/settings.js +1 -0
  201. package/dist/review-app/src-Buml7cM5.js +1 -0
  202. package/dist/review-app/stateDiagram-FKZM4ZOC-sFGGp2kV.js +1 -0
  203. package/dist/review-app/stateDiagram-v2-4FDKWEC3-BHfCF4dX.js +1 -0
  204. package/dist/review-app/timeline-definition-IT6M3QCI-BESnBijC.js +61 -0
  205. package/dist/review-app/treemap-KMMF4GRG-wnVLBDeQ.js +1 -0
  206. package/dist/review-app/walletStatus-CcojOdGy.js +7 -0
  207. package/dist/review-app/xychartDiagram-PRI3JC2R-BGWVfCx4.js +7 -0
  208. package/dist/review-server/assets.js +48 -0
  209. package/dist/review-server/html.js +66 -0
  210. package/dist/review-server/http.js +47 -0
  211. package/dist/review-server/middleware/hostOrigin.js +48 -0
  212. package/dist/review-server/middleware/reviewToken.js +7 -0
  213. package/dist/review-server/reviewServerPolicy.js +10 -0
  214. package/dist/review-server/server.js +568 -0
  215. package/dist/review-server/settingsApi.js +182 -0
  216. package/dist/review-server/walletIdentityResponse.js +13 -0
  217. package/dist/runtime/config.js +103 -0
  218. package/dist/runtime/localSettingsService.js +198 -0
  219. package/dist/runtime/logger.js +50 -0
  220. package/dist/runtime/reviewServerAcquire.js +128 -0
  221. package/dist/runtime/smokeMainnetRead.js +529 -0
  222. package/dist/runtime/smokeMainnetReadAssertions.js +308 -0
  223. package/dist/runtime/start.js +295 -0
  224. package/dist/runtime/suiEndpoint.js +97 -0
  225. package/dist/runtime/suiTransactionGraphqlMapping.js +200 -0
  226. package/dist/runtime/suiTransactionGraphqlQueries.js +231 -0
  227. package/dist/runtime/suiTransactionGraphqlSource.js +148 -0
  228. package/docs/AGENT_BEHAVIOR.md +1 -1
  229. package/docs/AGENT_DEVELOPMENT_POLICY.md +20 -0
  230. package/docs/FRONTEND_POLICY.md +4 -3
  231. package/docs/MCP_SETUP.md +59 -7
  232. package/docs/MCP_TOOLS.md +1 -1
  233. package/docs/SDK_API.md +5 -1
  234. package/package.json +3 -2
@@ -738,3 +738,23 @@ Work is complete only when:
738
738
  - final repository status is checked, including untracked files;
739
739
  - unexpected files are classified or cleaned up before final response;
740
740
  - if previous progress was overstated, the final response corrects the record.
741
+
742
+ ## Quality direction
743
+
744
+ Quality work continues along three areas; progress in all three matters, and
745
+ work that advances more than one at once is preferred over work that advances
746
+ only one in isolation:
747
+
748
+ - Intent, evidence, and answer quality: understand the request, route it to the
749
+ right tool (prompt surfaces, `userAnswerUse` response guidance), and answer
750
+ only from verified mainnet evidence, including saying plainly when a question
751
+ cannot be answered from the returned evidence.
752
+ - Protocol breadth: additional protocol adapters registered through the
753
+ descriptor contract; protocol names appear in public docs only after a
754
+ concrete support decision. A second protocol is why the bare action prompt
755
+ asks the user to choose a venue instead of routing silently.
756
+ - Execution-trust foundation: what the user reviewed is exactly what gets
757
+ signed, under any wallet and any signing speed — the review-session state
758
+ machine, the one-transaction-per-session handoff lock, sign-only wallets and
759
+ slow hardware signers, review-page security headers, runtime lifecycle
760
+ stability, and packaging and runtime operability.
@@ -136,9 +136,10 @@ out-of-state buttons are removed, not disabled.
136
136
 
137
137
  The sign action appears only on `ready_for_wallet_review` with an emitted
138
138
  wallet review contract, a connected wallet whose account equals the reviewed
139
- account, and a successful digest-gated handoff. The signing wallet list offers
140
- only the wallet recorded for the active account; other detected wallets are
141
- not offered. While a handoff is outstanding the server locks the session
139
+ account, and a successful digest-gated handoff. The signing step shows no wallet picker:
140
+ dapp-kit autoconnect restores the wallet recorded for the active account on the
141
+ fixed-port origin, and the sign action stays gated on the connected account
142
+ matching the reviewed account. While a handoff is outstanding the server locks the session
142
143
  (state recomputes are refused) and the page shows a signing-in-progress state
143
144
  whose only action is cancel. Other states render:
144
145
 
package/docs/MCP_SETUP.md CHANGED
@@ -64,6 +64,58 @@ On native Windows clients that need `cmd`, use the same command through `cmd /c`
64
64
  }
65
65
  ```
66
66
 
67
+ ## Published Package Setup
68
+
69
+ Once `@stelis/say-ur-intent` is on npm there are two ways to run it. Both start
70
+ the same `say-ur-intent` stdio MCP server; pick based on whether you want
71
+ automatic updates or the fastest, most reliable startup.
72
+
73
+ ### Download on demand (npx, tracks the latest release)
74
+
75
+ ```json
76
+ {
77
+ "command": "npx",
78
+ "args": ["-y", "@stelis/say-ur-intent"]
79
+ }
80
+ ```
81
+
82
+ No install step, and each launch resolves the latest published version. The
83
+ trade-off: the first launch (or the first after the npx cache is cleared)
84
+ downloads the package and its native dependencies. On a cold cache this can take
85
+ long enough to exceed a client's MCP startup timeout, so the client may stop the
86
+ server before it connects. If that happens, warm the cache once in a terminal and
87
+ then restart the client:
88
+
89
+ ```bash
90
+ npx -y @stelis/say-ur-intent
91
+ # wait until it logs "review server started", then stop it with Ctrl-C
92
+ ```
93
+
94
+ ### Install once (global, fastest startup, pinned version)
95
+
96
+ ```bash
97
+ npm install -g @stelis/say-ur-intent
98
+ ```
99
+
100
+ ```json
101
+ {
102
+ "command": "say-ur-intent"
103
+ }
104
+ ```
105
+
106
+ The global `say-ur-intent` command starts with no per-launch download, so it
107
+ avoids the cold-start timeout, and it stays on the installed version until you
108
+ update it explicitly:
109
+
110
+ ```bash
111
+ npm install -g @stelis/say-ur-intent@latest
112
+ ```
113
+
114
+ The per-client sections below use the `npx` form. To use a global install
115
+ instead, replace the published-package command with `"command": "say-ur-intent"`
116
+ and drop the `args`. On native Windows clients that need `cmd`, wrap either
117
+ command, for example `"command": "cmd", "args": ["/c", "npx", "-y", "@stelis/say-ur-intent"]`.
118
+
67
119
  ## Claude Code
68
120
 
69
121
  Claude Code supports local stdio MCP servers through `claude mcp add`. Put Claude CLI options such as `--transport` and `--scope` before the server name; the `--` separator starts the command that runs Say Ur Intent.
@@ -81,7 +133,7 @@ Published npm package:
81
133
  ```bash
82
134
  claude mcp add --transport stdio \
83
135
  say-ur-intent \
84
- -- npx -y @stelis/say-ur-intent@next
136
+ -- npx -y @stelis/say-ur-intent
85
137
  ```
86
138
 
87
139
  Claude Code scopes:
@@ -144,7 +196,7 @@ Published npm package:
144
196
  "mcpServers": {
145
197
  "say-ur-intent": {
146
198
  "command": "npx",
147
- "args": ["-y", "@stelis/say-ur-intent@next"]
199
+ "args": ["-y", "@stelis/say-ur-intent"]
148
200
  }
149
201
  }
150
202
  }
@@ -157,7 +209,7 @@ On native Windows, use `cmd /c` if direct `npx` or `node` resolution fails:
157
209
  "mcpServers": {
158
210
  "say-ur-intent": {
159
211
  "command": "cmd",
160
- "args": ["/c", "npx", "-y", "@stelis/say-ur-intent@next"]
212
+ "args": ["/c", "npx", "-y", "@stelis/say-ur-intent"]
161
213
  }
162
214
  }
163
215
  }
@@ -185,7 +237,7 @@ Published npm package:
185
237
 
186
238
  ```bash
187
239
  codex mcp add say-ur-intent \
188
- -- npx -y @stelis/say-ur-intent@next
240
+ -- npx -y @stelis/say-ur-intent
189
241
  ```
190
242
 
191
243
  Verify with:
@@ -211,7 +263,7 @@ Equivalent `~/.codex/config.toml` entry after npm publication:
211
263
  ```toml
212
264
  [mcp_servers.say-ur-intent]
213
265
  command = "npx"
214
- args = ["-y", "@stelis/say-ur-intent@next"]
266
+ args = ["-y", "@stelis/say-ur-intent"]
215
267
  startup_timeout_sec = 10
216
268
  tool_timeout_sec = 60
217
269
  ```
@@ -247,7 +299,7 @@ Published npm package:
247
299
  "mcpServers": {
248
300
  "say-ur-intent": {
249
301
  "command": "npx",
250
- "args": ["-y", "@stelis/say-ur-intent@next"]
302
+ "args": ["-y", "@stelis/say-ur-intent"]
251
303
  }
252
304
  }
253
305
  }
@@ -358,7 +410,7 @@ To reset local product data files, stop the MCP server and delete `say-ur-intent
358
410
  ### Fixed review server port
359
411
 
360
412
  `SAY_UR_INTENT_REVIEW_PORT` pins the local review server to a fixed loopback
361
- port (1-65535; default is a random free port). A fixed port keeps the review
413
+ port (1-65535; default `8765`). A fixed port keeps the review
362
414
  page origin stable across server restarts, so the browser wallet's
363
415
  authorization and the signing auto-reconnect persist instead of being asked
364
416
  again on every restart. If the port is taken, the server fails to start
package/docs/MCP_TOOLS.md CHANGED
@@ -156,7 +156,7 @@ Every quote fails closed unless all of the following hold:
156
156
  - the echoed input amount equals the requested raw amount;
157
157
  - the protocol config carried by the quoter response matches the pinned package and object ids (`protocolConfigPinMatch: true`).
158
158
 
159
- `source.chainVerified: false` and `quantitySemantics.chainVerified: false` state that this quote comes from the FlowX quoter API over HTTPS, not from a chain read. `amountOut.indicative: true` marks the output as an indicative estimate. Signable FlowX review, when it ships, re-verifies any quote through review-time simulation before a transaction can be reviewed.
159
+ `source.chainVerified: false` and `quantitySemantics.chainVerified: false` state that this quote comes from the FlowX quoter API over HTTPS, not from a chain read. `amountOut.indicative: true` marks the output as an indicative estimate. Signable FlowX review re-verifies the quote through review-time simulation before the account-bound review reaches `ready_for_wallet_review`.
160
160
 
161
161
  The same payment-answer blocks as the DeepBook quotes apply: `canUseForPaymentAnswer: false`, `doNotCombineWithPaymentAnswer: true`, and `read.preview_intent_evidence` `responseSummary` stays the only payment-coverage answer source.
162
162
 
package/docs/SDK_API.md CHANGED
@@ -4,9 +4,13 @@ This document records the pinned SDK APIs used by the current runtime. The sourc
4
4
 
5
5
  ## Package Versions
6
6
 
7
- - `@mysten/sui`: `2.16.2`
7
+ - `@mysten/sui`: `2.17.0`
8
8
  - `@mysten/deepbook-v3`: `1.3.6`
9
9
  - `@mysten/dapp-kit-core`: `1.3.2`
10
+ - `@flowx-finance/sdk`: `2.1.0`
11
+ - `@stelis/agent-q-provider-sui`: `0.0.5`
12
+ - `@zktx.io/ptb-model`: `0.5.0`
13
+ - `mermaid`: `11.12.0`
10
14
 
11
15
  ## Sui gRPC Client
12
16
 
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@stelis/say-ur-intent",
3
- "version": "0.0.0",
3
+ "version": "0.0.2",
4
+ "mcpName": "io.github.stelis-dev/say-ur-intent",
4
5
  "description": "Say Ur Intent is a local-first toolkit for helping AI applications and users inspect Sui DeFi actions before execution.",
5
6
  "license": "MIT",
6
7
  "type": "module",
@@ -33,7 +34,7 @@
33
34
  "homepage": "https://github.com/stelis-dev/say-ur-intent#readme",
34
35
  "publishConfig": {
35
36
  "access": "public",
36
- "tag": "next"
37
+ "tag": "latest"
37
38
  },
38
39
  "scripts": {
39
40
  "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",