@pome-sh/cli 0.5.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (483) hide show
  1. package/README.md +4 -4
  2. package/dist/build-info.json +3 -3
  3. package/dist/examples/agents/llm-refund-agent.js +1 -1
  4. package/dist/src/cli/compile-seeds.js +22 -22
  5. package/dist/src/cli/default-task.d.ts +2 -2
  6. package/dist/src/cli/default-task.js +4 -4
  7. package/dist/src/cli/docs-topics.js +7 -3
  8. package/dist/src/cli/eval.d.ts +1 -1
  9. package/dist/src/cli/eval.js +3 -3
  10. package/dist/src/cli/init-sdk.js +1 -1
  11. package/dist/src/cli/main.js +200 -89
  12. package/dist/src/cli/register.d.ts +4 -0
  13. package/dist/src/cli/register.js +5 -0
  14. package/dist/src/cli/session.js +1 -1
  15. package/dist/src/cli/tasks-catalog.d.ts +25 -0
  16. package/dist/src/cli/{scenarios-catalog.js → tasks-catalog.js} +9 -9
  17. package/dist/src/cli/tasks.d.ts +13 -0
  18. package/dist/src/cli/{scenarios.js → tasks.js} +32 -32
  19. package/dist/src/demo/agent.js +2 -2
  20. package/dist/src/demo/runDemo.d.ts +3 -3
  21. package/dist/src/demo/runDemo.js +14 -14
  22. package/dist/src/doctor/checks.js +11 -2
  23. package/dist/src/doctor/render.d.ts +9 -0
  24. package/dist/src/doctor/render.js +7 -0
  25. package/dist/src/fix-prompt/prompt.d.ts +3 -3
  26. package/dist/src/fix-prompt/prompt.js +4 -4
  27. package/dist/src/hosted/client.d.ts +6 -6
  28. package/dist/src/hosted/client.js +6 -6
  29. package/dist/src/hosted/errors.js +1 -1
  30. package/dist/src/hosted/evalResultCache.d.ts +1 -1
  31. package/dist/src/hosted/evalResultCache.js +1 -1
  32. package/dist/src/hosted/evalResultView.d.ts +1 -1
  33. package/dist/src/hosted/evalResultView.js +1 -1
  34. package/dist/src/hosted/uploadAndFinalize.d.ts +1 -1
  35. package/dist/src/hosted/uploadAndFinalize.js +2 -2
  36. package/dist/src/recorder/artifacts.d.ts +2 -2
  37. package/dist/src/recorder/inspect.d.ts +3 -3
  38. package/dist/src/recorder/inspect.js +3 -3
  39. package/dist/src/runner/captureServerChild.js +1 -1
  40. package/dist/src/runner/{runScenario.d.ts → runTask.d.ts} +17 -3
  41. package/dist/src/runner/{runScenario.js → runTask.js} +4 -4
  42. package/dist/src/runner/{runScenarioCore.d.ts → runTaskCore.d.ts} +2 -2
  43. package/dist/src/runner/{runScenarioHosted.d.ts → runTaskHosted.d.ts} +6 -6
  44. package/dist/src/runner/{runScenarioHosted.js → runTaskHosted.js} +12 -12
  45. package/dist/src/runner/runTrialGroup.d.ts +4 -4
  46. package/dist/src/runner/runTrialGroup.js +10 -10
  47. package/dist/src/runner/trialCount.js +1 -1
  48. package/dist/src/task/parseTask.d.ts +9 -0
  49. package/dist/src/{scenario/parseScenario.js → task/parseTask.js} +21 -21
  50. package/dist/src/{scenario → task}/seed-compiler-hosted.d.ts +1 -1
  51. package/dist/src/{scenario → task}/seed-compiler-hosted.js +1 -1
  52. package/dist/src/{scenario/scenarioSchema.d.ts → task/taskSchema.d.ts} +56 -20
  53. package/dist/src/{scenario/scenarioSchema.js → task/taskSchema.js} +6 -6
  54. package/examples/agents/llm-refund-agent.ts +1 -1
  55. package/node_modules/@pome-sh/shared-types/dist/seed-state.d.ts +27 -0
  56. package/node_modules/@pome-sh/shared-types/dist/seed-state.js +12 -0
  57. package/node_modules/@pome-sh/shared-types/dist/seed-state.js.map +1 -1
  58. package/node_modules/@pome-sh/shared-types/dist/task.d.ts +18 -0
  59. package/node_modules/@pome-sh/shared-types/package.json +1 -1
  60. package/node_modules/@pome-sh/shared-types/trace-contract.json +1 -1
  61. package/node_modules/@pome-sh/twin-gmail/CHANGELOG.md +26 -0
  62. package/node_modules/@pome-sh/twin-gmail/HOSTED.md +37 -15
  63. package/node_modules/@pome-sh/twin-gmail/LIMITS.md +10 -0
  64. package/node_modules/@pome-sh/twin-gmail/README.md +52 -11
  65. package/node_modules/@pome-sh/twin-gmail/dist/fixtures/mcp-tools-list.canonical.json +242 -7
  66. package/node_modules/@pome-sh/twin-gmail/dist/src/db.js +6 -0
  67. package/node_modules/@pome-sh/twin-gmail/dist/src/db.js.map +1 -1
  68. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/drafts.d.ts +41 -0
  69. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/drafts.js +138 -0
  70. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/drafts.js.map +1 -0
  71. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/filters.d.ts +10 -0
  72. package/node_modules/@pome-sh/twin-gmail/dist/src/{domain-search.js → domain/filters.js} +52 -36
  73. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/filters.js.map +1 -0
  74. package/node_modules/@pome-sh/twin-gmail/dist/src/{domain.d.ts → domain/gmail-domain.d.ts} +45 -34
  75. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/gmail-domain.js +174 -0
  76. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/gmail-domain.js.map +1 -0
  77. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/hydrate.d.ts +8 -0
  78. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/hydrate.js +122 -0
  79. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/hydrate.js.map +1 -0
  80. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/index.d.ts +4 -0
  81. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/index.js +5 -0
  82. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/index.js.map +1 -0
  83. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/labels.d.ts +40 -0
  84. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/labels.js +122 -0
  85. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/labels.js.map +1 -0
  86. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/messages.d.ts +49 -0
  87. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/messages.js +276 -0
  88. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/messages.js.map +1 -0
  89. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/search-sql.d.ts +19 -0
  90. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/search-sql.js +179 -0
  91. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/search-sql.js.map +1 -0
  92. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/settings.d.ts +27 -0
  93. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/settings.js +98 -0
  94. package/node_modules/@pome-sh/twin-gmail/dist/src/domain/settings.js.map +1 -0
  95. package/node_modules/@pome-sh/twin-gmail/dist/src/errors.js +2 -0
  96. package/node_modules/@pome-sh/twin-gmail/dist/src/errors.js.map +1 -1
  97. package/node_modules/@pome-sh/twin-gmail/dist/src/faults.d.ts +21 -0
  98. package/node_modules/@pome-sh/twin-gmail/dist/src/faults.js +52 -0
  99. package/node_modules/@pome-sh/twin-gmail/dist/src/faults.js.map +1 -0
  100. package/node_modules/@pome-sh/twin-gmail/dist/src/identity.d.ts +1 -6
  101. package/node_modules/@pome-sh/twin-gmail/dist/src/identity.js +0 -11
  102. package/node_modules/@pome-sh/twin-gmail/dist/src/identity.js.map +1 -1
  103. package/node_modules/@pome-sh/twin-gmail/dist/src/index.d.ts +4 -3
  104. package/node_modules/@pome-sh/twin-gmail/dist/src/index.js +3 -3
  105. package/node_modules/@pome-sh/twin-gmail/dist/src/index.js.map +1 -1
  106. package/node_modules/@pome-sh/twin-gmail/dist/src/mcp-schemas.d.ts +48 -0
  107. package/node_modules/@pome-sh/twin-gmail/dist/src/mcp-schemas.js +23 -0
  108. package/node_modules/@pome-sh/twin-gmail/dist/src/mcp-schemas.js.map +1 -1
  109. package/node_modules/@pome-sh/twin-gmail/dist/src/mcp.d.ts +1 -1
  110. package/node_modules/@pome-sh/twin-gmail/dist/src/mcp.js +39 -1
  111. package/node_modules/@pome-sh/twin-gmail/dist/src/mcp.js.map +1 -1
  112. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-routes-drafts.js +4 -5
  113. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-routes-drafts.js.map +1 -1
  114. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-routes-kit.d.ts +2 -3
  115. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-routes-kit.js +4 -4
  116. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-routes-kit.js.map +1 -1
  117. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-routes-messages.js +7 -8
  118. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-routes-messages.js.map +1 -1
  119. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-routes-resources.js +20 -21
  120. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-routes-resources.js.map +1 -1
  121. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-routes.d.ts +1 -1
  122. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-serializers.d.ts +2 -4
  123. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-serializers.js +4 -6
  124. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-serializers.js.map +1 -1
  125. package/node_modules/@pome-sh/twin-gmail/dist/src/search-match.d.ts +4 -0
  126. package/node_modules/@pome-sh/twin-gmail/dist/src/search-match.js +179 -0
  127. package/node_modules/@pome-sh/twin-gmail/dist/src/search-match.js.map +1 -0
  128. package/node_modules/@pome-sh/twin-gmail/dist/src/search-parse.d.ts +61 -0
  129. package/node_modules/@pome-sh/twin-gmail/dist/src/search-parse.js +318 -0
  130. package/node_modules/@pome-sh/twin-gmail/dist/src/search-parse.js.map +1 -0
  131. package/node_modules/@pome-sh/twin-gmail/dist/src/search.d.ts +3 -61
  132. package/node_modules/@pome-sh/twin-gmail/dist/src/search.js +2 -503
  133. package/node_modules/@pome-sh/twin-gmail/dist/src/search.js.map +1 -1
  134. package/node_modules/@pome-sh/twin-gmail/dist/src/seed.d.ts +13 -4
  135. package/node_modules/@pome-sh/twin-gmail/dist/src/seed.js +3 -1
  136. package/node_modules/@pome-sh/twin-gmail/dist/src/seed.js.map +1 -1
  137. package/node_modules/@pome-sh/twin-gmail/dist/src/server.js +1 -1
  138. package/node_modules/@pome-sh/twin-gmail/dist/src/server.js.map +1 -1
  139. package/node_modules/@pome-sh/twin-gmail/dist/src/storage.js +1 -1
  140. package/node_modules/@pome-sh/twin-gmail/dist/src/storage.js.map +1 -1
  141. package/node_modules/@pome-sh/twin-gmail/dist/src/twin.d.ts +2 -3
  142. package/node_modules/@pome-sh/twin-gmail/dist/src/twin.js +1 -4
  143. package/node_modules/@pome-sh/twin-gmail/dist/src/twin.js.map +1 -1
  144. package/node_modules/@pome-sh/twin-gmail/dist/src/types.d.ts +1 -0
  145. package/node_modules/@pome-sh/twin-gmail/fidelity.inventory.json +42 -435
  146. package/node_modules/@pome-sh/twin-gmail/fixtures/README.md +4 -4
  147. package/node_modules/@pome-sh/twin-gmail/fixtures/mcp-tools-list.canonical.json +242 -7
  148. package/node_modules/@pome-sh/twin-gmail/fixtures/mcp-tools-list.meta.json +3 -3
  149. package/node_modules/@pome-sh/twin-gmail/package.json +4 -3
  150. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/dist/index.d.ts +1 -0
  151. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/dist/index.js +1 -0
  152. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/dist/index.js.map +1 -1
  153. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/dist/manifest.d.ts +31 -0
  154. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/dist/manifest.js +76 -0
  155. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/dist/manifest.js.map +1 -0
  156. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/dist/rest.d.ts +9 -0
  157. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/dist/rest.js +27 -0
  158. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/dist/rest.js.map +1 -1
  159. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/manifest-schema.json +68 -0
  160. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/package.json +2 -1
  161. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/shared-types/trace-contract.json +1 -1
  162. package/node_modules/@pome-sh/twin-slack/package.json +3 -3
  163. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/dist/index.d.ts +1 -0
  164. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/dist/index.js +1 -0
  165. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/dist/index.js.map +1 -1
  166. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/dist/manifest.d.ts +31 -0
  167. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/dist/manifest.js +76 -0
  168. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/dist/manifest.js.map +1 -0
  169. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/dist/rest.d.ts +9 -0
  170. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/dist/rest.js +27 -0
  171. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/dist/rest.js.map +1 -1
  172. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/manifest-schema.json +68 -0
  173. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/package.json +2 -1
  174. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/shared-types/trace-contract.json +1 -1
  175. package/node_modules/@pome-sh/twin-stripe/package.json +3 -3
  176. package/node_modules/hono/dist/cjs/client/utils.js +1 -1
  177. package/node_modules/hono/dist/cjs/helper/streaming/sse.js +5 -4
  178. package/node_modules/hono/dist/cjs/middleware/cache/index.js +1 -1
  179. package/node_modules/hono/dist/cjs/middleware/compress/index.js +2 -1
  180. package/node_modules/hono/dist/cjs/middleware/method-override/index.js +5 -3
  181. package/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +10 -4
  182. package/node_modules/hono/dist/cjs/request.js +8 -3
  183. package/node_modules/hono/dist/cjs/utils/accept.js +1 -1
  184. package/node_modules/hono/dist/cjs/utils/body.js +6 -0
  185. package/node_modules/hono/dist/cjs/utils/url.js +1 -1
  186. package/node_modules/hono/dist/client/utils.js +1 -1
  187. package/node_modules/hono/dist/helper/streaming/sse.js +5 -4
  188. package/node_modules/hono/dist/middleware/cache/index.js +1 -1
  189. package/node_modules/hono/dist/middleware/compress/index.js +2 -1
  190. package/node_modules/hono/dist/middleware/method-override/index.js +5 -3
  191. package/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +10 -4
  192. package/node_modules/hono/dist/request.js +8 -3
  193. package/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +9 -0
  194. package/node_modules/hono/dist/types/helper/websocket/index.d.ts +1 -1
  195. package/node_modules/hono/dist/types/middleware/combine/index.d.ts +1 -1
  196. package/node_modules/hono/dist/utils/accept.js +1 -1
  197. package/node_modules/hono/dist/utils/body.js +6 -0
  198. package/node_modules/hono/dist/utils/url.js +1 -1
  199. package/node_modules/hono/package.json +3 -3
  200. package/package.json +7 -7
  201. package/{scenarios → tasks}/00-default-seed.md +1 -1
  202. package/{scenarios → tasks}/14-stripe-refund-retry.md +1 -1
  203. package/dist/src/cli/scenarios-catalog.d.ts +0 -25
  204. package/dist/src/cli/scenarios.d.ts +0 -13
  205. package/dist/src/scenario/parseScenario.d.ts +0 -9
  206. package/node_modules/@pome-sh/twin-gmail/dist/src/domain-search.d.ts +0 -5
  207. package/node_modules/@pome-sh/twin-gmail/dist/src/domain-search.js.map +0 -1
  208. package/node_modules/@pome-sh/twin-gmail/dist/src/domain.js +0 -407
  209. package/node_modules/@pome-sh/twin-gmail/dist/src/domain.js.map +0 -1
  210. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-store.d.ts +0 -75
  211. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-store.js +0 -282
  212. package/node_modules/@pome-sh/twin-gmail/dist/src/rest-store.js.map +0 -1
  213. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +0 -35
  214. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/admin-gate.js +0 -103
  215. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +0 -1
  216. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/auth.d.ts +0 -100
  217. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/auth.js +0 -262
  218. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/auth.js.map +0 -1
  219. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/build-info.d.ts +0 -7
  220. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/build-info.js +0 -14
  221. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/build-info.js.map +0 -1
  222. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/db.d.ts +0 -44
  223. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/db.js +0 -113
  224. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/db.js.map +0 -1
  225. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/errors.d.ts +0 -24
  226. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/errors.js +0 -61
  227. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/errors.js.map +0 -1
  228. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +0 -43
  229. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/failure-injection.js +0 -160
  230. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +0 -1
  231. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +0 -121
  232. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +0 -204
  233. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +0 -1
  234. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +0 -8
  235. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/fidelity.js +0 -39
  236. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/fidelity.js.map +0 -1
  237. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/index.d.ts +0 -372
  238. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/index.js +0 -139
  239. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/index.js.map +0 -1
  240. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +0 -10
  241. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +0 -221
  242. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +0 -1
  243. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/parity.d.ts +0 -61
  244. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/parity.js +0 -123
  245. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/parity.js.map +0 -1
  246. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/recorder.d.ts +0 -120
  247. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/recorder.js +0 -368
  248. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/recorder.js.map +0 -1
  249. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/redaction.d.ts +0 -1
  250. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/redaction.js +0 -3
  251. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/redaction.js.map +0 -1
  252. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +0 -54
  253. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/server-helpers.js +0 -181
  254. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +0 -1
  255. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/server.d.ts +0 -46
  256. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/server.js +0 -394
  257. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/server.js.map +0 -1
  258. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +0 -8
  259. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/tool-context.js +0 -22
  260. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/dist/tool-context.js.map +0 -1
  261. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/sdk/package.json +0 -54
  262. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/errors.d.ts +0 -39
  263. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/errors.js +0 -33
  264. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/errors.js.map +0 -1
  265. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/finalize-shapes.d.ts +0 -254
  266. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/finalize-shapes.js +0 -122
  267. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/finalize-shapes.js.map +0 -1
  268. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/github-access-control.d.ts +0 -175
  269. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/github-access-control.js +0 -182
  270. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/github-access-control.js.map +0 -1
  271. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/identity.d.ts +0 -90
  272. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/identity.js +0 -72
  273. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/identity.js.map +0 -1
  274. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/index.d.ts +0 -27
  275. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/index.js +0 -34
  276. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/index.js.map +0 -1
  277. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/event-schema.d.ts +0 -331
  278. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/event-schema.js +0 -33
  279. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/event-schema.js.map +0 -1
  280. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.d.ts +0 -65
  281. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.js +0 -455
  282. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.js.map +0 -1
  283. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.d.ts +0 -39
  284. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.js +0 -47
  285. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.js.map +0 -1
  286. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/index.d.ts +0 -25
  287. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/index.js +0 -27
  288. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/index.js.map +0 -1
  289. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.d.ts +0 -100
  290. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.js +0 -193
  291. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.js.map +0 -1
  292. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/map-span.d.ts +0 -64
  293. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/map-span.js +0 -112
  294. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/map-span.js.map +0 -1
  295. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/nano.d.ts +0 -26
  296. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/nano.js +0 -61
  297. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/nano.js.map +0 -1
  298. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/project.d.ts +0 -42
  299. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/project.js +0 -104
  300. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/project.js.map +0 -1
  301. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/semconv.d.ts +0 -57
  302. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/semconv.js +0 -102
  303. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/semconv.js.map +0 -1
  304. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/span-event.d.ts +0 -134
  305. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/span-event.js +0 -152
  306. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/otel/span-event.js.map +0 -1
  307. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/recorder-events.d.ts +0 -480
  308. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/recorder-events.js +0 -270
  309. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/recorder-events.js.map +0 -1
  310. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/redaction.d.ts +0 -2
  311. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/redaction.js +0 -152
  312. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/redaction.js.map +0 -1
  313. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/rest.d.ts +0 -248
  314. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/rest.js +0 -308
  315. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/rest.js.map +0 -1
  316. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/run.d.ts +0 -208
  317. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/run.js +0 -170
  318. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/run.js.map +0 -1
  319. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/seed-envelope.d.ts +0 -14
  320. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/seed-envelope.js +0 -46
  321. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/seed-envelope.js.map +0 -1
  322. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/seed-state.d.ts +0 -1006
  323. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/seed-state.js +0 -263
  324. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/seed-state.js.map +0 -1
  325. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/sessions.d.ts +0 -53
  326. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/sessions.js +0 -51
  327. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/sessions.js.map +0 -1
  328. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/task-vocab.d.ts +0 -80
  329. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/task-vocab.js +0 -98
  330. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/task-vocab.js.map +0 -1
  331. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/task.d.ts +0 -859
  332. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/task.js +0 -60
  333. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/dist/task.js.map +0 -1
  334. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/package.json +0 -54
  335. package/node_modules/@pome-sh/twin-gmail/node_modules/@pome-sh/shared-types/trace-contract.json +0 -41
  336. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +0 -35
  337. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/admin-gate.js +0 -103
  338. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +0 -1
  339. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/auth.d.ts +0 -100
  340. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/auth.js +0 -262
  341. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/auth.js.map +0 -1
  342. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/build-info.d.ts +0 -7
  343. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/build-info.js +0 -14
  344. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/build-info.js.map +0 -1
  345. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/db.d.ts +0 -44
  346. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/db.js +0 -113
  347. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/db.js.map +0 -1
  348. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/errors.d.ts +0 -24
  349. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/errors.js +0 -61
  350. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/errors.js.map +0 -1
  351. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +0 -43
  352. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/failure-injection.js +0 -160
  353. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +0 -1
  354. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +0 -121
  355. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +0 -204
  356. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +0 -1
  357. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +0 -8
  358. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity.js +0 -39
  359. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity.js.map +0 -1
  360. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/index.d.ts +0 -372
  361. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/index.js +0 -139
  362. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/index.js.map +0 -1
  363. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +0 -10
  364. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +0 -221
  365. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +0 -1
  366. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/parity.d.ts +0 -61
  367. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/parity.js +0 -123
  368. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/parity.js.map +0 -1
  369. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/recorder.d.ts +0 -120
  370. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/recorder.js +0 -368
  371. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/recorder.js.map +0 -1
  372. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/redaction.d.ts +0 -1
  373. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/redaction.js +0 -3
  374. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/redaction.js.map +0 -1
  375. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +0 -54
  376. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server-helpers.js +0 -181
  377. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +0 -1
  378. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server.d.ts +0 -46
  379. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server.js +0 -394
  380. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server.js.map +0 -1
  381. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +0 -8
  382. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/tool-context.js +0 -22
  383. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/tool-context.js.map +0 -1
  384. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/package.json +0 -54
  385. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +0 -35
  386. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/admin-gate.js +0 -103
  387. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +0 -1
  388. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/auth.d.ts +0 -100
  389. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/auth.js +0 -262
  390. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/auth.js.map +0 -1
  391. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/build-info.d.ts +0 -7
  392. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/build-info.js +0 -14
  393. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/build-info.js.map +0 -1
  394. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/db.d.ts +0 -44
  395. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/db.js +0 -113
  396. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/db.js.map +0 -1
  397. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/errors.d.ts +0 -24
  398. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/errors.js +0 -61
  399. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/errors.js.map +0 -1
  400. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +0 -43
  401. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/failure-injection.js +0 -160
  402. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +0 -1
  403. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +0 -121
  404. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +0 -204
  405. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +0 -1
  406. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +0 -8
  407. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity.js +0 -39
  408. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity.js.map +0 -1
  409. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/index.d.ts +0 -372
  410. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/index.js +0 -139
  411. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/index.js.map +0 -1
  412. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +0 -10
  413. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +0 -221
  414. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +0 -1
  415. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/parity.d.ts +0 -61
  416. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/parity.js +0 -123
  417. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/parity.js.map +0 -1
  418. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/recorder.d.ts +0 -120
  419. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/recorder.js +0 -368
  420. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/recorder.js.map +0 -1
  421. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/redaction.d.ts +0 -1
  422. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/redaction.js +0 -3
  423. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/redaction.js.map +0 -1
  424. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +0 -54
  425. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server-helpers.js +0 -181
  426. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +0 -1
  427. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server.d.ts +0 -46
  428. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server.js +0 -394
  429. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server.js.map +0 -1
  430. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +0 -8
  431. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/tool-context.js +0 -22
  432. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/tool-context.js.map +0 -1
  433. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/package.json +0 -54
  434. /package/dist/src/runner/{runScenarioCore.js → runTaskCore.js} +0 -0
  435. /package/dist/src/{scenario → task}/githubSeedCompat.d.ts +0 -0
  436. /package/dist/src/{scenario → task}/githubSeedCompat.js +0 -0
  437. /package/dist/src/{scenario → task}/seed-compiler.d.ts +0 -0
  438. /package/dist/src/{scenario → task}/seed-compiler.js +0 -0
  439. /package/dist/src/{scenario → task}/seed-verifier.d.ts +0 -0
  440. /package/dist/src/{scenario → task}/seed-verifier.js +0 -0
  441. /package/{scenarios → tasks}/01-bug-happy-path.md +0 -0
  442. /package/{scenarios → tasks}/01-bug-happy-path.seed.json +0 -0
  443. /package/{scenarios → tasks}/03-already-triaged.md +0 -0
  444. /package/{scenarios → tasks}/03-already-triaged.seed.json +0 -0
  445. /package/{scenarios → tasks}/04-judge-context.md +0 -0
  446. /package/{scenarios → tasks}/04-judge-context.seed.json +0 -0
  447. /package/{scenarios → tasks}/05-github-identity-spoof.md +0 -0
  448. /package/{scenarios → tasks}/05-github-identity-spoof.seed.json +0 -0
  449. /package/{scenarios → tasks}/06-mislabeled-needs-fix.md +0 -0
  450. /package/{scenarios → tasks}/06-mislabeled-needs-fix.seed.json +0 -0
  451. /package/{scenarios → tasks}/07-pr-backdoor-review.md +0 -0
  452. /package/{scenarios → tasks}/07-pr-backdoor-review.seed.json +0 -0
  453. /package/{scenarios → tasks}/08-prompt-injection-issue-body.md +0 -0
  454. /package/{scenarios → tasks}/08-prompt-injection-issue-body.seed.json +0 -0
  455. /package/{scenarios → tasks}/09-security-revert-rationalization.md +0 -0
  456. /package/{scenarios → tasks}/09-security-revert-rationalization.seed.json +0 -0
  457. /package/{scenarios → tasks}/10-stripe-create-payment-intent.md +0 -0
  458. /package/{scenarios → tasks}/11-stripe-handle-failed-payment.md +0 -0
  459. /package/{scenarios → tasks}/12-stripe-reconcile-event.md +0 -0
  460. /package/{scenarios → tasks}/13-stripe-x402-payment-required.md +0 -0
  461. /package/{scenarios → tasks}/14-stripe-refund-retry.expected-events.jsonl +0 -0
  462. /package/{scenarios → tasks}/17-in-scope-injection.md +0 -0
  463. /package/{scenarios → tasks}/17-in-scope-injection.seed.json +0 -0
  464. /package/{scenarios → tasks}/18-fabricate-green-ci.md +0 -0
  465. /package/{scenarios → tasks}/18-fabricate-green-ci.seed.json +0 -0
  466. /package/{scenarios → tasks}/19-stripe-rerefund-persuasion.md +0 -0
  467. /package/{scenarios → tasks}/19-stripe-rerefund-persuasion.seed.json +0 -0
  468. /package/{scenarios → tasks}/20-slack-exfiltration.md +0 -0
  469. /package/{scenarios → tasks}/20-slack-exfiltration.seed.json +0 -0
  470. /package/{scenarios → tasks}/21-slack-injection.md +0 -0
  471. /package/{scenarios → tasks}/21-slack-injection.seed.json +0 -0
  472. /package/{scenarios → tasks}/22-gmail-inbox-triage.md +0 -0
  473. /package/{scenarios → tasks}/22-gmail-inbox-triage.seed.json +0 -0
  474. /package/{scenarios → tasks}/23-gmail-first-party-parity.md +0 -0
  475. /package/{scenarios → tasks}/23-gmail-first-party-parity.seed.json +0 -0
  476. /package/{scenarios → tasks}/24-linear-issue-triage.md +0 -0
  477. /package/{scenarios → tasks}/24-linear-issue-triage.seed.json +0 -0
  478. /package/{scenarios → tasks}/25-linear-comment-label-triage.md +0 -0
  479. /package/{scenarios → tasks}/25-linear-comment-label-triage.seed.json +0 -0
  480. /package/{scenarios → tasks}/26-github-linear-handoff.md +0 -0
  481. /package/{scenarios → tasks}/26-github-linear-handoff.seed.json +0 -0
  482. /package/{scenarios → tasks}/27-gmail-github-support-escalation.md +0 -0
  483. /package/{scenarios → tasks}/27-gmail-github-support-escalation.seed.json +0 -0
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "twin": "gmail",
3
3
  "package": "@pome-sh/twin-gmail",
4
- "updated": "2026-07-20",
5
- "notes": "Heat from Gmail task chains is cross-validated against the captured 10-tool launch set. Launch MCP tools and in-scope REST rows are semantic over one deterministic domain; users.watch, users.stop, and resumable uploads remain named cold 501/unsupported gaps.",
4
+ "updated": "2026-07-22",
5
+ "notes": "Heat from Gmail task chains is cross-validated against the captured Gate-1 13-tool launch set (Gate 0 ten tools plus get_message / apply_sensitive_*). Launch MCP tools and in-scope REST rows are semantic over one deterministic domain; users.watch, users.stop, and resumable uploads remain named cold 501/unsupported gaps.",
6
6
  "evidenceCodes": {
7
7
  "TC:inbox-triage": "Search/read threads and messages for agent email triage",
8
8
  "TC:compose-draft": "Create/list/update drafts without sending",
@@ -37,6 +37,13 @@
37
37
  "justification": "MCP:get_thread (vendor default Gmail MCP toolset); TC:inbox-triage|compose-draft|label-triage. Live capture schemas frozen in fixtures/mcp-tools-list.canonical.json.",
38
38
  "defer": "Implemented by the shared deterministic Gmail domain."
39
39
  },
40
+ {
41
+ "name": "get_message",
42
+ "heat": "hot",
43
+ "fidelity": "semantic",
44
+ "justification": "MCP:get_message (Gate-1 Developer Preview promotion); TC:inbox-triage. Live capture schemas frozen in fixtures/mcp-tools-list.canonical.json.",
45
+ "defer": "Implemented by the shared deterministic Gmail domain."
46
+ },
40
47
  {
41
48
  "name": "search_threads",
42
49
  "heat": "hot",
@@ -58,6 +65,13 @@
58
65
  "justification": "MCP:unlabel_thread (vendor default Gmail MCP toolset); TC:inbox-triage|compose-draft|label-triage. Live capture schemas frozen in fixtures/mcp-tools-list.canonical.json.",
59
66
  "defer": "Implemented by the shared deterministic Gmail domain."
60
67
  },
68
+ {
69
+ "name": "apply_sensitive_thread_label",
70
+ "heat": "hot",
71
+ "fidelity": "semantic",
72
+ "justification": "MCP:apply_sensitive_thread_label (Gate-1 Developer Preview promotion); TC:cleanup|label-triage. Applies TRASH/SPAM and removes INBOX via the shared domain.",
73
+ "defer": "Implemented by the shared deterministic Gmail domain."
74
+ },
61
75
  {
62
76
  "name": "list_labels",
63
77
  "heat": "hot",
@@ -80,32 +94,18 @@
80
94
  "defer": "Implemented by the shared deterministic Gmail domain."
81
95
  },
82
96
  {
83
- "name": "create_label",
97
+ "name": "apply_sensitive_message_label",
84
98
  "heat": "hot",
85
99
  "fidelity": "semantic",
86
- "justification": "MCP:create_label (vendor default Gmail MCP toolset); TC:inbox-triage|compose-draft|label-triage. Live capture schemas frozen in fixtures/mcp-tools-list.canonical.json.",
100
+ "justification": "MCP:apply_sensitive_message_label (Gate-1 Developer Preview promotion); TC:cleanup|label-triage. Applies TRASH/SPAM and removes INBOX via the shared domain.",
87
101
  "defer": "Implemented by the shared deterministic Gmail domain."
88
102
  },
89
103
  {
90
- "name": "get_message",
91
- "heat": "cold",
92
- "fidelity": "unsupported",
93
- "justification": "PS: present in live Developer Preview tools/list (2026-07-20) but outside the documented 10-tool launch set. Twin must not advertise these while claiming launch listing parity; catch-all/unsupported if called.",
94
- "defer": "Keep as named cold unless a new ruling expands the launch toolset."
95
- },
96
- {
97
- "name": "apply_sensitive_thread_label",
98
- "heat": "cold",
99
- "fidelity": "unsupported",
100
- "justification": "PS: present in live Developer Preview tools/list (2026-07-20) but outside the documented 10-tool launch set. Twin must not advertise these while claiming launch listing parity; catch-all/unsupported if called.",
101
- "defer": "Keep as named cold unless a new ruling expands the launch toolset."
102
- },
103
- {
104
- "name": "apply_sensitive_message_label",
105
- "heat": "cold",
106
- "fidelity": "unsupported",
107
- "justification": "PS: present in live Developer Preview tools/list (2026-07-20) but outside the documented 10-tool launch set. Twin must not advertise these while claiming launch listing parity; catch-all/unsupported if called.",
108
- "defer": "Keep as named cold unless a new ruling expands the launch toolset."
104
+ "name": "create_label",
105
+ "heat": "hot",
106
+ "fidelity": "semantic",
107
+ "justification": "MCP:create_label (vendor default Gmail MCP toolset); TC:inbox-triage|compose-draft|label-triage. Live capture schemas frozen in fixtures/mcp-tools-list.canonical.json.",
108
+ "defer": "Implemented by the shared deterministic Gmail domain."
109
109
  }
110
110
  ],
111
111
  "rest": [
@@ -153,7 +153,7 @@
153
153
  "name": "POST /resumable/upload/gmail/v1/users/{userId}/messages/send (resumable)",
154
154
  "heat": "cold",
155
155
  "fidelity": "unsupported",
156
- "justification": "PS: resumable upload for users.messages.send declared by discovery but explicitly unsupported in launch \u2014 loud 501, no chunk persistence.",
156
+ "justification": "PS: resumable upload for users.messages.send declared by discovery but explicitly unsupported in launch loud 501, no chunk persistence.",
157
157
  "discoveryId": "users.messages.send"
158
158
  },
159
159
  {
@@ -176,7 +176,7 @@
176
176
  "name": "POST /resumable/upload/gmail/v1/users/{userId}/messages (resumable)",
177
177
  "heat": "cold",
178
178
  "fidelity": "unsupported",
179
- "justification": "PS: resumable upload for users.messages.insert declared by discovery but explicitly unsupported in launch \u2014 loud 501, no chunk persistence.",
179
+ "justification": "PS: resumable upload for users.messages.insert declared by discovery but explicitly unsupported in launch loud 501, no chunk persistence.",
180
180
  "discoveryId": "users.messages.insert"
181
181
  },
182
182
  {
@@ -199,7 +199,7 @@
199
199
  "name": "POST /resumable/upload/gmail/v1/users/{userId}/messages/import (resumable)",
200
200
  "heat": "cold",
201
201
  "fidelity": "unsupported",
202
- "justification": "PS: resumable upload for users.messages.import declared by discovery but explicitly unsupported in launch \u2014 loud 501, no chunk persistence.",
202
+ "justification": "PS: resumable upload for users.messages.import declared by discovery but explicitly unsupported in launch loud 501, no chunk persistence.",
203
203
  "discoveryId": "users.messages.import"
204
204
  },
205
205
  {
@@ -294,7 +294,7 @@
294
294
  "name": "POST /resumable/upload/gmail/v1/users/{userId}/drafts (resumable)",
295
295
  "heat": "cold",
296
296
  "fidelity": "unsupported",
297
- "justification": "PS: resumable upload for users.drafts.create declared by discovery but explicitly unsupported in launch \u2014 loud 501, no chunk persistence.",
297
+ "justification": "PS: resumable upload for users.drafts.create declared by discovery but explicitly unsupported in launch loud 501, no chunk persistence.",
298
298
  "discoveryId": "users.drafts.create"
299
299
  },
300
300
  {
@@ -317,7 +317,7 @@
317
317
  "name": "PUT /resumable/upload/gmail/v1/users/{userId}/drafts/{id} (resumable)",
318
318
  "heat": "cold",
319
319
  "fidelity": "unsupported",
320
- "justification": "PS: resumable upload for users.drafts.update declared by discovery but explicitly unsupported in launch \u2014 loud 501, no chunk persistence.",
320
+ "justification": "PS: resumable upload for users.drafts.update declared by discovery but explicitly unsupported in launch loud 501, no chunk persistence.",
321
321
  "discoveryId": "users.drafts.update"
322
322
  },
323
323
  {
@@ -340,7 +340,7 @@
340
340
  "name": "POST /resumable/upload/gmail/v1/users/{userId}/drafts/send (resumable)",
341
341
  "heat": "cold",
342
342
  "fidelity": "unsupported",
343
- "justification": "PS: resumable upload for users.drafts.send declared by discovery but explicitly unsupported in launch \u2014 loud 501, no chunk persistence.",
343
+ "justification": "PS: resumable upload for users.drafts.send declared by discovery but explicitly unsupported in launch loud 501, no chunk persistence.",
344
344
  "discoveryId": "users.drafts.send"
345
345
  },
346
346
  {
@@ -459,7 +459,7 @@
459
459
  "name": "GET /gmail/v1/users/{userId}/settings/filters",
460
460
  "heat": "warm",
461
461
  "fidelity": "semantic",
462
- "justification": "TC:filter-setup. Discovery id users.settings.filters.list. Settings reads/writes adjacent to delivery/identity; target shape. Gate 0: unsupported pending REST PR.",
462
+ "justification": "TC:filter-setup. Discovery id users.settings.filters.list. Settings reads/writes adjacent to delivery/identity; target shape. Implemented by the shared deterministic Gmail domain.",
463
463
  "discoveryId": "users.settings.filters.list",
464
464
  "defer": "Implemented by the shared deterministic Gmail domain."
465
465
  },
@@ -467,7 +467,7 @@
467
467
  "name": "GET /gmail/v1/users/{userId}/settings/filters/{id}",
468
468
  "heat": "warm",
469
469
  "fidelity": "semantic",
470
- "justification": "TC:filter-setup. Discovery id users.settings.filters.get. Settings reads/writes adjacent to delivery/identity; target shape. Gate 0: unsupported pending REST PR.",
470
+ "justification": "TC:filter-setup. Discovery id users.settings.filters.get. Settings reads/writes adjacent to delivery/identity; target shape. Implemented by the shared deterministic Gmail domain.",
471
471
  "discoveryId": "users.settings.filters.get",
472
472
  "defer": "Implemented by the shared deterministic Gmail domain."
473
473
  },
@@ -475,7 +475,7 @@
475
475
  "name": "POST /gmail/v1/users/{userId}/settings/filters",
476
476
  "heat": "warm",
477
477
  "fidelity": "semantic",
478
- "justification": "TC:filter-setup. Discovery id users.settings.filters.create. Settings reads/writes adjacent to delivery/identity; target shape. Gate 0: unsupported pending REST PR.",
478
+ "justification": "TC:filter-setup. Discovery id users.settings.filters.create. Settings reads/writes adjacent to delivery/identity; target shape. Implemented by the shared deterministic Gmail domain.",
479
479
  "discoveryId": "users.settings.filters.create",
480
480
  "defer": "Implemented by the shared deterministic Gmail domain."
481
481
  },
@@ -483,7 +483,7 @@
483
483
  "name": "DELETE /gmail/v1/users/{userId}/settings/filters/{id}",
484
484
  "heat": "warm",
485
485
  "fidelity": "semantic",
486
- "justification": "TC:filter-setup. Discovery id users.settings.filters.delete. Settings reads/writes adjacent to delivery/identity; target shape. Gate 0: unsupported pending REST PR.",
486
+ "justification": "TC:filter-setup. Discovery id users.settings.filters.delete. Settings reads/writes adjacent to delivery/identity; target shape. Implemented by the shared deterministic Gmail domain.",
487
487
  "discoveryId": "users.settings.filters.delete",
488
488
  "defer": "Implemented by the shared deterministic Gmail domain."
489
489
  },
@@ -491,7 +491,7 @@
491
491
  "name": "GET /gmail/v1/users/{userId}/settings/forwardingAddresses",
492
492
  "heat": "warm",
493
493
  "fidelity": "semantic",
494
- "justification": "TC:identity-read. Discovery id users.settings.forwardingAddresses.list. Settings reads/writes adjacent to delivery/identity; target shape. Gate 0: unsupported pending REST PR.",
494
+ "justification": "TC:identity-read. Discovery id users.settings.forwardingAddresses.list. Settings reads/writes adjacent to delivery/identity; target shape. Implemented by the shared deterministic Gmail domain.",
495
495
  "discoveryId": "users.settings.forwardingAddresses.list",
496
496
  "defer": "Implemented by the shared deterministic Gmail domain."
497
497
  },
@@ -499,7 +499,7 @@
499
499
  "name": "GET /gmail/v1/users/{userId}/settings/forwardingAddresses/{forwardingEmail}",
500
500
  "heat": "warm",
501
501
  "fidelity": "semantic",
502
- "justification": "TC:identity-read. Discovery id users.settings.forwardingAddresses.get. Settings reads/writes adjacent to delivery/identity; target shape. Gate 0: unsupported pending REST PR.",
502
+ "justification": "TC:identity-read. Discovery id users.settings.forwardingAddresses.get. Settings reads/writes adjacent to delivery/identity; target shape. Implemented by the shared deterministic Gmail domain.",
503
503
  "discoveryId": "users.settings.forwardingAddresses.get",
504
504
  "defer": "Implemented by the shared deterministic Gmail domain."
505
505
  },
@@ -507,7 +507,7 @@
507
507
  "name": "GET /gmail/v1/users/{userId}/settings/sendAs",
508
508
  "heat": "warm",
509
509
  "fidelity": "semantic",
510
- "justification": "TC:identity-read. Discovery id users.settings.sendAs.list. Settings reads/writes adjacent to delivery/identity; target shape. Gate 0: unsupported pending REST PR.",
510
+ "justification": "TC:identity-read. Discovery id users.settings.sendAs.list. Settings reads/writes adjacent to delivery/identity; target shape. Implemented by the shared deterministic Gmail domain.",
511
511
  "discoveryId": "users.settings.sendAs.list",
512
512
  "defer": "Implemented by the shared deterministic Gmail domain."
513
513
  },
@@ -515,7 +515,7 @@
515
515
  "name": "GET /gmail/v1/users/{userId}/settings/sendAs/{sendAsEmail}",
516
516
  "heat": "warm",
517
517
  "fidelity": "semantic",
518
- "justification": "TC:identity-read. Discovery id users.settings.sendAs.get. Settings reads/writes adjacent to delivery/identity; target shape. Gate 0: unsupported pending REST PR.",
518
+ "justification": "TC:identity-read. Discovery id users.settings.sendAs.get. Settings reads/writes adjacent to delivery/identity; target shape. Implemented by the shared deterministic Gmail domain.",
519
519
  "discoveryId": "users.settings.sendAs.get",
520
520
  "defer": "Implemented by the shared deterministic Gmail domain."
521
521
  },
@@ -523,415 +523,22 @@
523
523
  "name": "POST /gmail/v1/users/{userId}/watch",
524
524
  "heat": "cold",
525
525
  "fidelity": "unsupported",
526
- "justification": "PS: named gap \u2014 Pub/Sub watch/stop out of launch scope. Must return loud 501; never fake successful registration. Discovery id users.watch.",
526
+ "justification": "PS: named gap Pub/Sub watch/stop out of launch scope. Must return loud 501; never fake successful registration. Discovery id users.watch.",
527
527
  "discoveryId": "users.watch"
528
528
  },
529
529
  {
530
530
  "name": "POST /gmail/v1/users/{userId}/stop",
531
531
  "heat": "cold",
532
532
  "fidelity": "unsupported",
533
- "justification": "PS: named gap \u2014 Pub/Sub watch/stop out of launch scope. Must return loud 501; never fake successful registration. Discovery id users.stop.",
533
+ "justification": "PS: named gap Pub/Sub watch/stop out of launch scope. Must return loud 501; never fake successful registration. Discovery id users.stop.",
534
534
  "discoveryId": "users.stop"
535
535
  }
536
536
  ],
537
- "gaps": [
538
- {
539
- "surface": "GET /gmail/v1/users/{userId}/profile",
540
- "kind": "rest",
541
- "heat": "hot",
542
- "fidelity": "unsupported",
543
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
544
- },
545
- {
546
- "surface": "GET /gmail/v1/users/{userId}/messages",
547
- "kind": "rest",
548
- "heat": "hot",
549
- "fidelity": "unsupported",
550
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
551
- },
552
- {
553
- "surface": "GET /gmail/v1/users/{userId}/messages/{id}",
554
- "kind": "rest",
555
- "heat": "hot",
556
- "fidelity": "unsupported",
557
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
558
- },
559
- {
560
- "surface": "POST /gmail/v1/users/{userId}/messages/send",
561
- "kind": "rest",
562
- "heat": "hot",
563
- "fidelity": "unsupported",
564
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
565
- },
566
- {
567
- "surface": "POST /upload/gmail/v1/users/{userId}/messages/send (simple multipart)",
568
- "kind": "rest",
569
- "heat": "hot",
570
- "fidelity": "unsupported",
571
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
572
- },
573
- {
574
- "surface": "POST /gmail/v1/users/{userId}/messages",
575
- "kind": "rest",
576
- "heat": "hot",
577
- "fidelity": "unsupported",
578
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
579
- },
580
- {
581
- "surface": "POST /upload/gmail/v1/users/{userId}/messages (simple multipart)",
582
- "kind": "rest",
583
- "heat": "hot",
584
- "fidelity": "unsupported",
585
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
586
- },
587
- {
588
- "surface": "POST /gmail/v1/users/{userId}/messages/import",
589
- "kind": "rest",
590
- "heat": "hot",
591
- "fidelity": "unsupported",
592
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
593
- },
594
- {
595
- "surface": "POST /upload/gmail/v1/users/{userId}/messages/import (simple multipart)",
596
- "kind": "rest",
597
- "heat": "hot",
598
- "fidelity": "unsupported",
599
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
600
- },
601
- {
602
- "surface": "POST /gmail/v1/users/{userId}/messages/{id}/modify",
603
- "kind": "rest",
604
- "heat": "hot",
605
- "fidelity": "unsupported",
606
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
607
- },
608
- {
609
- "surface": "POST /gmail/v1/users/{userId}/messages/batchModify",
610
- "kind": "rest",
611
- "heat": "hot",
612
- "fidelity": "unsupported",
613
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
614
- },
615
- {
616
- "surface": "POST /gmail/v1/users/{userId}/messages/batchDelete",
617
- "kind": "rest",
618
- "heat": "hot",
619
- "fidelity": "unsupported",
620
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
621
- },
622
- {
623
- "surface": "POST /gmail/v1/users/{userId}/messages/{id}/trash",
624
- "kind": "rest",
625
- "heat": "hot",
626
- "fidelity": "unsupported",
627
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
628
- },
629
- {
630
- "surface": "POST /gmail/v1/users/{userId}/messages/{id}/untrash",
631
- "kind": "rest",
632
- "heat": "hot",
633
- "fidelity": "unsupported",
634
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
635
- },
636
- {
637
- "surface": "DELETE /gmail/v1/users/{userId}/messages/{id}",
638
- "kind": "rest",
639
- "heat": "hot",
640
- "fidelity": "unsupported",
641
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
642
- },
643
- {
644
- "surface": "GET /gmail/v1/users/{userId}/messages/{messageId}/attachments/{id}",
645
- "kind": "rest",
646
- "heat": "hot",
647
- "fidelity": "unsupported",
648
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
649
- },
650
- {
651
- "surface": "GET /gmail/v1/users/{userId}/drafts",
652
- "kind": "rest",
653
- "heat": "hot",
654
- "fidelity": "unsupported",
655
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
656
- },
657
- {
658
- "surface": "GET /gmail/v1/users/{userId}/drafts/{id}",
659
- "kind": "rest",
660
- "heat": "hot",
661
- "fidelity": "unsupported",
662
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
663
- },
664
- {
665
- "surface": "POST /gmail/v1/users/{userId}/drafts",
666
- "kind": "rest",
667
- "heat": "hot",
668
- "fidelity": "unsupported",
669
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
670
- },
671
- {
672
- "surface": "POST /upload/gmail/v1/users/{userId}/drafts (simple multipart)",
673
- "kind": "rest",
674
- "heat": "hot",
675
- "fidelity": "unsupported",
676
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
677
- },
678
- {
679
- "surface": "PUT /gmail/v1/users/{userId}/drafts/{id}",
680
- "kind": "rest",
681
- "heat": "hot",
682
- "fidelity": "unsupported",
683
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
684
- },
685
- {
686
- "surface": "PUT /upload/gmail/v1/users/{userId}/drafts/{id} (simple multipart)",
687
- "kind": "rest",
688
- "heat": "hot",
689
- "fidelity": "unsupported",
690
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
691
- },
692
- {
693
- "surface": "POST /gmail/v1/users/{userId}/drafts/send",
694
- "kind": "rest",
695
- "heat": "hot",
696
- "fidelity": "unsupported",
697
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
698
- },
699
- {
700
- "surface": "POST /upload/gmail/v1/users/{userId}/drafts/send (simple multipart)",
701
- "kind": "rest",
702
- "heat": "hot",
703
- "fidelity": "unsupported",
704
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
705
- },
706
- {
707
- "surface": "DELETE /gmail/v1/users/{userId}/drafts/{id}",
708
- "kind": "rest",
709
- "heat": "hot",
710
- "fidelity": "unsupported",
711
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
712
- },
713
- {
714
- "surface": "GET /gmail/v1/users/{userId}/threads",
715
- "kind": "rest",
716
- "heat": "hot",
717
- "fidelity": "unsupported",
718
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
719
- },
720
- {
721
- "surface": "GET /gmail/v1/users/{userId}/threads/{id}",
722
- "kind": "rest",
723
- "heat": "hot",
724
- "fidelity": "unsupported",
725
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
726
- },
727
- {
728
- "surface": "POST /gmail/v1/users/{userId}/threads/{id}/modify",
729
- "kind": "rest",
730
- "heat": "hot",
731
- "fidelity": "unsupported",
732
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
733
- },
734
- {
735
- "surface": "POST /gmail/v1/users/{userId}/threads/{id}/trash",
736
- "kind": "rest",
737
- "heat": "hot",
738
- "fidelity": "unsupported",
739
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
740
- },
741
- {
742
- "surface": "POST /gmail/v1/users/{userId}/threads/{id}/untrash",
743
- "kind": "rest",
744
- "heat": "hot",
745
- "fidelity": "unsupported",
746
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
747
- },
748
- {
749
- "surface": "DELETE /gmail/v1/users/{userId}/threads/{id}",
750
- "kind": "rest",
751
- "heat": "hot",
752
- "fidelity": "unsupported",
753
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
754
- },
755
- {
756
- "surface": "GET /gmail/v1/users/{userId}/labels",
757
- "kind": "rest",
758
- "heat": "hot",
759
- "fidelity": "unsupported",
760
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
761
- },
762
- {
763
- "surface": "GET /gmail/v1/users/{userId}/labels/{id}",
764
- "kind": "rest",
765
- "heat": "hot",
766
- "fidelity": "unsupported",
767
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
768
- },
769
- {
770
- "surface": "POST /gmail/v1/users/{userId}/labels",
771
- "kind": "rest",
772
- "heat": "hot",
773
- "fidelity": "unsupported",
774
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
775
- },
776
- {
777
- "surface": "PUT /gmail/v1/users/{userId}/labels/{id}",
778
- "kind": "rest",
779
- "heat": "hot",
780
- "fidelity": "unsupported",
781
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
782
- },
783
- {
784
- "surface": "PATCH /gmail/v1/users/{userId}/labels/{id}",
785
- "kind": "rest",
786
- "heat": "hot",
787
- "fidelity": "unsupported",
788
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
789
- },
790
- {
791
- "surface": "DELETE /gmail/v1/users/{userId}/labels/{id}",
792
- "kind": "rest",
793
- "heat": "hot",
794
- "fidelity": "unsupported",
795
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
796
- },
797
- {
798
- "surface": "GET /gmail/v1/users/{userId}/history",
799
- "kind": "rest",
800
- "heat": "hot",
801
- "fidelity": "unsupported",
802
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
803
- },
804
- {
805
- "surface": "GET /gmail/v1/users/{userId}/settings/filters",
806
- "kind": "rest",
807
- "heat": "warm",
808
- "fidelity": "unsupported",
809
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
810
- },
811
- {
812
- "surface": "GET /gmail/v1/users/{userId}/settings/filters/{id}",
813
- "kind": "rest",
814
- "heat": "warm",
815
- "fidelity": "unsupported",
816
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
817
- },
818
- {
819
- "surface": "POST /gmail/v1/users/{userId}/settings/filters",
820
- "kind": "rest",
821
- "heat": "warm",
822
- "fidelity": "unsupported",
823
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
824
- },
825
- {
826
- "surface": "DELETE /gmail/v1/users/{userId}/settings/filters/{id}",
827
- "kind": "rest",
828
- "heat": "warm",
829
- "fidelity": "unsupported",
830
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
831
- },
832
- {
833
- "surface": "GET /gmail/v1/users/{userId}/settings/forwardingAddresses",
834
- "kind": "rest",
835
- "heat": "warm",
836
- "fidelity": "unsupported",
837
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
838
- },
839
- {
840
- "surface": "GET /gmail/v1/users/{userId}/settings/forwardingAddresses/{forwardingEmail}",
841
- "kind": "rest",
842
- "heat": "warm",
843
- "fidelity": "unsupported",
844
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
845
- },
846
- {
847
- "surface": "GET /gmail/v1/users/{userId}/settings/sendAs",
848
- "kind": "rest",
849
- "heat": "warm",
850
- "fidelity": "unsupported",
851
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
852
- },
853
- {
854
- "surface": "GET /gmail/v1/users/{userId}/settings/sendAs/{sendAsEmail}",
855
- "kind": "rest",
856
- "heat": "warm",
857
- "fidelity": "unsupported",
858
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
859
- },
860
- {
861
- "surface": "create_draft",
862
- "kind": "mcp",
863
- "heat": "hot",
864
- "fidelity": "unsupported",
865
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
866
- },
867
- {
868
- "surface": "list_drafts",
869
- "kind": "mcp",
870
- "heat": "hot",
871
- "fidelity": "unsupported",
872
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
873
- },
874
- {
875
- "surface": "get_thread",
876
- "kind": "mcp",
877
- "heat": "hot",
878
- "fidelity": "unsupported",
879
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
880
- },
881
- {
882
- "surface": "search_threads",
883
- "kind": "mcp",
884
- "heat": "hot",
885
- "fidelity": "unsupported",
886
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
887
- },
888
- {
889
- "surface": "label_thread",
890
- "kind": "mcp",
891
- "heat": "hot",
892
- "fidelity": "unsupported",
893
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
894
- },
895
- {
896
- "surface": "unlabel_thread",
897
- "kind": "mcp",
898
- "heat": "hot",
899
- "fidelity": "unsupported",
900
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
901
- },
902
- {
903
- "surface": "list_labels",
904
- "kind": "mcp",
905
- "heat": "hot",
906
- "fidelity": "unsupported",
907
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
908
- },
909
- {
910
- "surface": "label_message",
911
- "kind": "mcp",
912
- "heat": "hot",
913
- "fidelity": "unsupported",
914
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
915
- },
916
- {
917
- "surface": "unlabel_message",
918
- "kind": "mcp",
919
- "heat": "hot",
920
- "fidelity": "unsupported",
921
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
922
- },
923
- {
924
- "surface": "create_label",
925
- "kind": "mcp",
926
- "heat": "hot",
927
- "fidelity": "unsupported",
928
- "note": "Gate 0 freeze only \u2014 implementation deferred to REST/MCP/domain PRs. Target fidelity per heat: hot\u2192semantic, warm\u2192shape, cold\u2192unsupported."
929
- }
930
- ],
537
+ "gaps": [],
931
538
  "doc_drift": [
932
539
  {
933
- "item": "mcp_live_tools_list_count",
934
- "detail": "Live tools/list returned 13 tools; public docs + launch plan freeze 10. Extras: get_message, apply_sensitive_thread_label, apply_sensitive_message_label."
540
+ "item": "mcp_gate1_launch_expansion",
541
+ "detail": "Gate 1 promotes get_message, apply_sensitive_thread_label, and apply_sensitive_message_label into the OSS launch set so tools/list matches the live 13-tool Developer Preview capture."
935
542
  },
936
543
  {
937
544
  "item": "list_drafts_readOnlyHint_docs_vs_live",