@pome-sh/cli 0.9.0 → 0.11.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 (449) hide show
  1. package/dist/build-info.json +3 -3
  2. package/dist/src/cli/agent-resolver.d.ts +3 -0
  3. package/dist/src/cli/agent-resolver.js +10 -0
  4. package/dist/src/cli/checks-add.d.ts +32 -0
  5. package/dist/src/cli/checks-add.js +236 -0
  6. package/dist/src/cli/checks.d.ts +21 -0
  7. package/dist/src/cli/checks.js +150 -0
  8. package/dist/src/cli/main.js +28 -0
  9. package/dist/src/runner/runTask.d.ts +10 -10
  10. package/dist/src/task/insertCriterion.d.ts +15 -0
  11. package/dist/src/task/insertCriterion.js +62 -0
  12. package/dist/src/task/parseTask.d.ts +5 -0
  13. package/dist/src/task/parseTask.js +11 -0
  14. package/dist/src/task/taskSchema.d.ts +4 -4
  15. package/node_modules/@pome-sh/sdk/dist/checks.d.ts +58 -0
  16. package/node_modules/@pome-sh/sdk/dist/checks.js +203 -0
  17. package/node_modules/@pome-sh/sdk/dist/checks.js.map +1 -0
  18. package/node_modules/@pome-sh/sdk/package.json +7 -3
  19. package/node_modules/@pome-sh/twin-github/dist/src/access-control.d.ts +3 -3
  20. package/node_modules/@pome-sh/twin-github/dist/src/check-issues.d.ts +30 -0
  21. package/node_modules/@pome-sh/twin-github/dist/src/check-issues.js +203 -0
  22. package/node_modules/@pome-sh/twin-github/dist/src/check-issues.js.map +1 -0
  23. package/node_modules/@pome-sh/twin-github/dist/src/check-kind.d.ts +3 -0
  24. package/node_modules/@pome-sh/twin-github/dist/src/check-kind.js +10 -0
  25. package/node_modules/@pome-sh/twin-github/dist/src/check-kind.js.map +1 -0
  26. package/node_modules/@pome-sh/twin-github/dist/src/check-params.d.ts +12 -0
  27. package/node_modules/@pome-sh/twin-github/dist/src/check-params.js +99 -0
  28. package/node_modules/@pome-sh/twin-github/dist/src/check-params.js.map +1 -0
  29. package/node_modules/@pome-sh/twin-github/dist/src/check-pulls.d.ts +11 -0
  30. package/node_modules/@pome-sh/twin-github/dist/src/check-pulls.js +102 -0
  31. package/node_modules/@pome-sh/twin-github/dist/src/check-pulls.js.map +1 -0
  32. package/node_modules/@pome-sh/twin-github/dist/src/check-repos.d.ts +13 -0
  33. package/node_modules/@pome-sh/twin-github/dist/src/check-repos.js +132 -0
  34. package/node_modules/@pome-sh/twin-github/dist/src/check-repos.js.map +1 -0
  35. package/node_modules/@pome-sh/twin-github/dist/src/check-state.d.ts +56 -0
  36. package/node_modules/@pome-sh/twin-github/dist/src/check-state.js +80 -0
  37. package/node_modules/@pome-sh/twin-github/dist/src/check-state.js.map +1 -0
  38. package/node_modules/@pome-sh/twin-github/dist/src/checks.d.ts +43 -0
  39. package/node_modules/@pome-sh/twin-github/dist/src/checks.js +65 -0
  40. package/node_modules/@pome-sh/twin-github/dist/src/checks.js.map +1 -0
  41. package/node_modules/@pome-sh/twin-github/dist/src/domain/checks.d.ts +153 -0
  42. package/node_modules/@pome-sh/twin-github/dist/src/domain/checks.js +66 -0
  43. package/node_modules/@pome-sh/twin-github/dist/src/domain/checks.js.map +1 -0
  44. package/node_modules/@pome-sh/twin-github/dist/src/domain/git.d.ts +567 -0
  45. package/node_modules/@pome-sh/twin-github/dist/src/domain/git.js +198 -0
  46. package/node_modules/@pome-sh/twin-github/dist/src/domain/git.js.map +1 -0
  47. package/node_modules/@pome-sh/twin-github/dist/src/{domain.d.ts → domain/github-domain.d.ts} +340 -71
  48. package/node_modules/@pome-sh/twin-github/dist/src/domain/github-domain.js +794 -0
  49. package/node_modules/@pome-sh/twin-github/dist/src/domain/github-domain.js.map +1 -0
  50. package/node_modules/@pome-sh/twin-github/dist/src/domain/helpers.d.ts +5 -0
  51. package/node_modules/@pome-sh/twin-github/dist/src/domain/helpers.js +15 -0
  52. package/node_modules/@pome-sh/twin-github/dist/src/domain/helpers.js.map +1 -0
  53. package/node_modules/@pome-sh/twin-github/dist/src/domain/index.d.ts +2 -0
  54. package/node_modules/@pome-sh/twin-github/dist/src/domain/index.js +5 -0
  55. package/node_modules/@pome-sh/twin-github/dist/src/domain/index.js.map +1 -0
  56. package/node_modules/@pome-sh/twin-github/dist/src/domain/issues.d.ts +545 -0
  57. package/node_modules/@pome-sh/twin-github/dist/src/domain/issues.js +272 -0
  58. package/node_modules/@pome-sh/twin-github/dist/src/domain/issues.js.map +1 -0
  59. package/node_modules/@pome-sh/twin-github/dist/src/domain/pulls.d.ts +816 -0
  60. package/node_modules/@pome-sh/twin-github/dist/src/domain/pulls.js +256 -0
  61. package/node_modules/@pome-sh/twin-github/dist/src/domain/pulls.js.map +1 -0
  62. package/node_modules/@pome-sh/twin-github/dist/src/domain/releases.d.ts +160 -0
  63. package/node_modules/@pome-sh/twin-github/dist/src/domain/releases.js +63 -0
  64. package/node_modules/@pome-sh/twin-github/dist/src/domain/releases.js.map +1 -0
  65. package/node_modules/@pome-sh/twin-github/dist/src/domain/repos.d.ts +219 -0
  66. package/node_modules/@pome-sh/twin-github/dist/src/domain/repos.js +131 -0
  67. package/node_modules/@pome-sh/twin-github/dist/src/domain/repos.js.map +1 -0
  68. package/node_modules/@pome-sh/twin-github/dist/src/domain/search.d.ts +252 -0
  69. package/node_modules/@pome-sh/twin-github/dist/src/domain/search.js +83 -0
  70. package/node_modules/@pome-sh/twin-github/dist/src/domain/search.js.map +1 -0
  71. package/node_modules/@pome-sh/twin-github/dist/src/domain/types.d.ts +15 -0
  72. package/node_modules/@pome-sh/twin-github/dist/src/domain/types.js +2 -0
  73. package/node_modules/@pome-sh/twin-github/dist/src/domain/types.js.map +1 -0
  74. package/node_modules/@pome-sh/twin-github/dist/src/index.d.ts +2 -1
  75. package/node_modules/@pome-sh/twin-github/dist/src/index.js +1 -1
  76. package/node_modules/@pome-sh/twin-github/dist/src/index.js.map +1 -1
  77. package/node_modules/@pome-sh/twin-github/dist/src/routes.d.ts +1 -1
  78. package/node_modules/@pome-sh/twin-github/dist/src/seed.d.ts +1 -1
  79. package/node_modules/@pome-sh/twin-github/dist/src/serializers.d.ts +3 -3
  80. package/node_modules/@pome-sh/twin-github/dist/src/tools.d.ts +188 -188
  81. package/node_modules/@pome-sh/twin-github/dist/src/twin.d.ts +1 -1
  82. package/node_modules/@pome-sh/twin-github/dist/src/twin.js +1 -1
  83. package/node_modules/@pome-sh/twin-github/dist/src/twin.js.map +1 -1
  84. package/node_modules/@pome-sh/twin-github/package.json +4 -4
  85. package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/package.json +2 -2
  86. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +35 -0
  87. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/admin-gate.js +103 -0
  88. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +1 -0
  89. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/auth.d.ts +100 -0
  90. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/auth.js +262 -0
  91. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/auth.js.map +1 -0
  92. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/build-info.d.ts +7 -0
  93. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/build-info.js +14 -0
  94. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/build-info.js.map +1 -0
  95. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/db.d.ts +44 -0
  96. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/db.js +113 -0
  97. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/db.js.map +1 -0
  98. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/errors.d.ts +24 -0
  99. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/errors.js +61 -0
  100. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/errors.js.map +1 -0
  101. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +43 -0
  102. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/failure-injection.js +160 -0
  103. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +1 -0
  104. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +121 -0
  105. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +204 -0
  106. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +1 -0
  107. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +8 -0
  108. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity.js +39 -0
  109. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/fidelity.js.map +1 -0
  110. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/index.d.ts +372 -0
  111. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/index.js +139 -0
  112. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/index.js.map +1 -0
  113. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +10 -0
  114. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +221 -0
  115. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +1 -0
  116. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/parity.d.ts +61 -0
  117. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/parity.js +123 -0
  118. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/parity.js.map +1 -0
  119. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/recorder.d.ts +120 -0
  120. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/recorder.js +368 -0
  121. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/recorder.js.map +1 -0
  122. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/redaction.d.ts +1 -0
  123. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/redaction.js +3 -0
  124. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/redaction.js.map +1 -0
  125. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +54 -0
  126. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server-helpers.js +181 -0
  127. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +1 -0
  128. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server.d.ts +46 -0
  129. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server.js +394 -0
  130. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/server.js.map +1 -0
  131. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +8 -0
  132. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/tool-context.js +22 -0
  133. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/dist/tool-context.js.map +1 -0
  134. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/sdk/package.json +54 -0
  135. package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/index.d.ts +1 -0
  136. package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/index.js +1 -0
  137. package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/index.js.map +1 -1
  138. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/shared-types/dist/manifest.d.ts +31 -0
  139. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/shared-types/dist/manifest.js +76 -0
  140. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/shared-types/dist/manifest.js.map +1 -0
  141. package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/rest.d.ts +9 -0
  142. package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/rest.js +27 -0
  143. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/shared-types/dist/rest.js.map +1 -0
  144. package/node_modules/@pome-sh/twin-linear/node_modules/@pome-sh/shared-types/manifest-schema.json +68 -0
  145. package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/package.json +2 -1
  146. package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/trace-contract.json +1 -1
  147. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +35 -0
  148. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/admin-gate.js +103 -0
  149. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +1 -0
  150. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/auth.d.ts +100 -0
  151. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/auth.js +262 -0
  152. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/auth.js.map +1 -0
  153. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/build-info.d.ts +7 -0
  154. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/build-info.js +14 -0
  155. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/build-info.js.map +1 -0
  156. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/db.d.ts +44 -0
  157. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/db.js +113 -0
  158. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/db.js.map +1 -0
  159. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/errors.d.ts +24 -0
  160. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/errors.js +61 -0
  161. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/errors.js.map +1 -0
  162. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +43 -0
  163. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/failure-injection.js +160 -0
  164. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +1 -0
  165. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +121 -0
  166. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +204 -0
  167. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +1 -0
  168. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +8 -0
  169. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity.js +39 -0
  170. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/fidelity.js.map +1 -0
  171. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/index.d.ts +372 -0
  172. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/index.js +139 -0
  173. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/index.js.map +1 -0
  174. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +10 -0
  175. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +221 -0
  176. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +1 -0
  177. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/parity.d.ts +61 -0
  178. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/parity.js +123 -0
  179. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/parity.js.map +1 -0
  180. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/recorder.d.ts +120 -0
  181. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/recorder.js +368 -0
  182. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/recorder.js.map +1 -0
  183. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/redaction.d.ts +1 -0
  184. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/redaction.js +3 -0
  185. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/redaction.js.map +1 -0
  186. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +54 -0
  187. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server-helpers.js +181 -0
  188. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +1 -0
  189. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server.d.ts +46 -0
  190. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server.js +394 -0
  191. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/server.js.map +1 -0
  192. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +8 -0
  193. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/tool-context.js +22 -0
  194. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/dist/tool-context.js.map +1 -0
  195. package/node_modules/@pome-sh/twin-slack/node_modules/@pome-sh/sdk/package.json +54 -0
  196. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +35 -0
  197. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/admin-gate.js +103 -0
  198. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +1 -0
  199. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/auth.d.ts +100 -0
  200. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/auth.js +262 -0
  201. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/auth.js.map +1 -0
  202. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/build-info.d.ts +7 -0
  203. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/build-info.js +14 -0
  204. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/build-info.js.map +1 -0
  205. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/db.d.ts +44 -0
  206. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/db.js +113 -0
  207. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/db.js.map +1 -0
  208. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/errors.d.ts +24 -0
  209. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/errors.js +61 -0
  210. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/errors.js.map +1 -0
  211. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +43 -0
  212. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/failure-injection.js +160 -0
  213. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +1 -0
  214. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +121 -0
  215. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +204 -0
  216. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +1 -0
  217. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +8 -0
  218. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity.js +39 -0
  219. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/fidelity.js.map +1 -0
  220. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/index.d.ts +372 -0
  221. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/index.js +139 -0
  222. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/index.js.map +1 -0
  223. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +10 -0
  224. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +221 -0
  225. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +1 -0
  226. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/parity.d.ts +61 -0
  227. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/parity.js +123 -0
  228. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/parity.js.map +1 -0
  229. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/recorder.d.ts +120 -0
  230. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/recorder.js +368 -0
  231. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/recorder.js.map +1 -0
  232. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/redaction.d.ts +1 -0
  233. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/redaction.js +3 -0
  234. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/redaction.js.map +1 -0
  235. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +54 -0
  236. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server-helpers.js +181 -0
  237. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +1 -0
  238. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server.d.ts +46 -0
  239. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server.js +394 -0
  240. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/server.js.map +1 -0
  241. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +8 -0
  242. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/tool-context.js +22 -0
  243. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/dist/tool-context.js.map +1 -0
  244. package/node_modules/@pome-sh/twin-stripe/node_modules/@pome-sh/sdk/package.json +54 -0
  245. package/package.json +3 -3
  246. package/tasks/00-default-seed.md +2 -2
  247. package/tasks/01-bug-happy-path.md +3 -3
  248. package/tasks/03-already-triaged.md +3 -3
  249. package/tasks/04-judge-context.md +1 -1
  250. package/tasks/06-mislabeled-needs-fix.md +4 -4
  251. package/tasks/08-prompt-injection-issue-body.md +1 -1
  252. package/tasks/17-in-scope-injection.md +4 -4
  253. package/tasks/26-github-linear-handoff.md +1 -1
  254. package/tasks/27-gmail-github-support-escalation.md +3 -3
  255. package/node_modules/@pome-sh/twin-github/dist/src/domain.js +0 -0
  256. package/node_modules/@pome-sh/twin-github/dist/src/domain.js.map +0 -1
  257. package/node_modules/@pome-sh/twin-github/node_modules/@pome-sh/shared-types/dist/rest.js.map +0 -1
  258. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/admin-gate.d.ts +0 -0
  259. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/admin-gate.js +0 -0
  260. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/admin-gate.js.map +0 -0
  261. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/auth.d.ts +0 -0
  262. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/auth.js +0 -0
  263. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/auth.js.map +0 -0
  264. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/build-info.d.ts +0 -0
  265. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/build-info.js +0 -0
  266. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/build-info.js.map +0 -0
  267. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/db.d.ts +0 -0
  268. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/db.js +0 -0
  269. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/db.js.map +0 -0
  270. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/errors.d.ts +0 -0
  271. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/errors.js +0 -0
  272. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/errors.js.map +0 -0
  273. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/failure-injection.d.ts +0 -0
  274. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/failure-injection.js +0 -0
  275. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/failure-injection.js.map +0 -0
  276. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity-inventory.d.ts +0 -0
  277. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js +0 -0
  278. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity-inventory.js.map +0 -0
  279. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity.d.ts +0 -0
  280. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity.js +0 -0
  281. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/fidelity.js.map +0 -0
  282. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/index.d.ts +0 -0
  283. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/index.js +0 -0
  284. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/index.js.map +0 -0
  285. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.d.ts +0 -0
  286. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js +0 -0
  287. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/mcp-jsonrpc.js.map +0 -0
  288. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/parity.d.ts +0 -0
  289. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/parity.js +0 -0
  290. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/parity.js.map +0 -0
  291. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/recorder.d.ts +0 -0
  292. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/recorder.js +0 -0
  293. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/recorder.js.map +0 -0
  294. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/redaction.d.ts +0 -0
  295. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/redaction.js +0 -0
  296. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/redaction.js.map +0 -0
  297. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server-helpers.d.ts +0 -0
  298. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server-helpers.js +0 -0
  299. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server-helpers.js.map +0 -0
  300. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server.d.ts +0 -0
  301. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server.js +0 -0
  302. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/server.js.map +0 -0
  303. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/tool-context.d.ts +0 -0
  304. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/tool-context.js +0 -0
  305. /package/node_modules/@pome-sh/{twin-github → twin-gmail}/node_modules/@pome-sh/sdk/dist/tool-context.js.map +0 -0
  306. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/errors.d.ts +0 -0
  307. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/errors.js +0 -0
  308. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/errors.js.map +0 -0
  309. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.d.ts +0 -0
  310. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.js +0 -0
  311. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.js.map +0 -0
  312. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/github-access-control.d.ts +0 -0
  313. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/github-access-control.js +0 -0
  314. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/github-access-control.js.map +0 -0
  315. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/identity.d.ts +0 -0
  316. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/identity.js +0 -0
  317. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/identity.js.map +0 -0
  318. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/index.d.ts +0 -0
  319. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/index.js +0 -0
  320. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/index.js.map +0 -0
  321. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/manifest.d.ts +0 -0
  322. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/manifest.js +0 -0
  323. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/manifest.js.map +0 -0
  324. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.d.ts +0 -0
  325. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.js +0 -0
  326. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.js.map +0 -0
  327. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.d.ts +0 -0
  328. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.js +0 -0
  329. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.js.map +0 -0
  330. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.d.ts +0 -0
  331. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.js +0 -0
  332. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.js.map +0 -0
  333. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/index.d.ts +0 -0
  334. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/index.js +0 -0
  335. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/index.js.map +0 -0
  336. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.d.ts +0 -0
  337. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.js +0 -0
  338. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.js.map +0 -0
  339. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/map-span.d.ts +0 -0
  340. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/map-span.js +0 -0
  341. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/map-span.js.map +0 -0
  342. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/nano.d.ts +0 -0
  343. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/nano.js +0 -0
  344. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/nano.js.map +0 -0
  345. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/project.d.ts +0 -0
  346. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/project.js +0 -0
  347. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/project.js.map +0 -0
  348. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/semconv.d.ts +0 -0
  349. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/semconv.js +0 -0
  350. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/semconv.js.map +0 -0
  351. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/span-event.d.ts +0 -0
  352. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/span-event.js +0 -0
  353. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/otel/span-event.js.map +0 -0
  354. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/recorder-events.d.ts +0 -0
  355. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/recorder-events.js +0 -0
  356. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/recorder-events.js.map +0 -0
  357. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/redaction.d.ts +0 -0
  358. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/redaction.js +0 -0
  359. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/redaction.js.map +0 -0
  360. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/rest.d.ts +0 -0
  361. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/rest.js +0 -0
  362. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/rest.js.map +0 -0
  363. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/run.d.ts +0 -0
  364. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/run.js +0 -0
  365. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/run.js.map +0 -0
  366. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-envelope.d.ts +0 -0
  367. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-envelope.js +0 -0
  368. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-envelope.js.map +0 -0
  369. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-state.d.ts +0 -0
  370. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-state.js +0 -0
  371. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/seed-state.js.map +0 -0
  372. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/sessions.d.ts +0 -0
  373. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/sessions.js +0 -0
  374. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/sessions.js.map +0 -0
  375. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task-vocab.d.ts +0 -0
  376. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task-vocab.js +0 -0
  377. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task-vocab.js.map +0 -0
  378. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task.d.ts +0 -0
  379. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task.js +0 -0
  380. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/dist/task.js.map +0 -0
  381. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/manifest-schema.json +0 -0
  382. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/package.json +0 -0
  383. /package/node_modules/@pome-sh/{sdk → twin-gmail}/node_modules/@pome-sh/shared-types/trace-contract.json +0 -0
  384. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/errors.d.ts +0 -0
  385. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/errors.js +0 -0
  386. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/errors.js.map +0 -0
  387. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.d.ts +0 -0
  388. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.js +0 -0
  389. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/finalize-shapes.js.map +0 -0
  390. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/github-access-control.d.ts +0 -0
  391. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/github-access-control.js +0 -0
  392. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/github-access-control.js.map +0 -0
  393. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/identity.d.ts +0 -0
  394. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/identity.js +0 -0
  395. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/identity.js.map +0 -0
  396. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.d.ts +0 -0
  397. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.js +0 -0
  398. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/event-schema.js.map +0 -0
  399. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.d.ts +0 -0
  400. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.js +0 -0
  401. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/data.js.map +0 -0
  402. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.d.ts +0 -0
  403. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.js +0 -0
  404. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/fixtures/index.js.map +0 -0
  405. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/index.d.ts +0 -0
  406. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/index.js +0 -0
  407. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/index.js.map +0 -0
  408. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.d.ts +0 -0
  409. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.js +0 -0
  410. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/legacy-shim.js.map +0 -0
  411. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/map-span.d.ts +0 -0
  412. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/map-span.js +0 -0
  413. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/map-span.js.map +0 -0
  414. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/nano.d.ts +0 -0
  415. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/nano.js +0 -0
  416. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/nano.js.map +0 -0
  417. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/project.d.ts +0 -0
  418. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/project.js +0 -0
  419. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/project.js.map +0 -0
  420. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/semconv.d.ts +0 -0
  421. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/semconv.js +0 -0
  422. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/semconv.js.map +0 -0
  423. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/span-event.d.ts +0 -0
  424. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/span-event.js +0 -0
  425. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/otel/span-event.js.map +0 -0
  426. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/recorder-events.d.ts +0 -0
  427. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/recorder-events.js +0 -0
  428. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/recorder-events.js.map +0 -0
  429. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/redaction.d.ts +0 -0
  430. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/redaction.js +0 -0
  431. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/redaction.js.map +0 -0
  432. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/run.d.ts +0 -0
  433. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/run.js +0 -0
  434. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/run.js.map +0 -0
  435. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-envelope.d.ts +0 -0
  436. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-envelope.js +0 -0
  437. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-envelope.js.map +0 -0
  438. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-state.d.ts +0 -0
  439. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-state.js +0 -0
  440. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/seed-state.js.map +0 -0
  441. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/sessions.d.ts +0 -0
  442. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/sessions.js +0 -0
  443. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/sessions.js.map +0 -0
  444. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task-vocab.d.ts +0 -0
  445. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task-vocab.js +0 -0
  446. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task-vocab.js.map +0 -0
  447. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task.d.ts +0 -0
  448. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task.js +0 -0
  449. /package/node_modules/@pome-sh/{twin-github → twin-linear}/node_modules/@pome-sh/shared-types/dist/task.js.map +0 -0
@@ -1,6 +1,6 @@
1
1
  import { z } from "zod";
2
2
  import type { StateDelta } from "@pome-sh/shared-types";
3
- import type { GitHubDomain } from "./domain.js";
3
+ import type { GitHubDomain } from "./domain/index.js";
4
4
  export type ToolExecutionOptions = {
5
5
  actor?: string;
6
6
  };
@@ -596,9 +596,9 @@ export declare const toolDefinitions: readonly [{
596
596
  sha: z.ZodString;
597
597
  state: z.ZodEnum<{
598
598
  error: "error";
599
- success: "success";
600
599
  failure: "failure";
601
600
  pending: "pending";
601
+ success: "success";
602
602
  }>;
603
603
  context: z.ZodOptional<z.ZodString>;
604
604
  description: z.ZodOptional<z.ZodString>;
@@ -624,17 +624,17 @@ export declare const toolDefinitions: readonly [{
624
624
  headSha: z.ZodOptional<z.ZodString>;
625
625
  status: z.ZodOptional<z.ZodEnum<{
626
626
  queued: "queued";
627
- completed: "completed";
628
627
  in_progress: "in_progress";
628
+ completed: "completed";
629
629
  }>>;
630
630
  conclusion: z.ZodOptional<z.ZodEnum<{
631
- success: "success";
632
- skipped: "skipped";
633
631
  failure: "failure";
632
+ success: "success";
634
633
  neutral: "neutral";
635
634
  cancelled: "cancelled";
636
635
  timed_out: "timed_out";
637
636
  action_required: "action_required";
637
+ skipped: "skipped";
638
638
  stale: "stale";
639
639
  }>>;
640
640
  details_url: z.ZodOptional<z.ZodString>;
@@ -716,8 +716,8 @@ export declare const toolDefinitions: readonly [{
716
716
  username: z.ZodString;
717
717
  permission: z.ZodOptional<z.ZodEnum<{
718
718
  push: "push";
719
- admin: "admin";
720
719
  pull: "pull";
720
+ admin: "admin";
721
721
  maintain: "maintain";
722
722
  triage: "triage";
723
723
  }>>;
@@ -755,7 +755,7 @@ export declare const toolDefinitions: readonly [{
755
755
  }];
756
756
  export type ToolName = (typeof toolDefinitions)[number]["name"];
757
757
  export declare function listTools(): {
758
- name: "list_issues" | "get_issue" | "create_issue" | "update_issue" | "add_assignees" | "add_issue_comment" | "update_issue_comment" | "delete_issue_comment" | "list_pull_requests" | "get_pull_request" | "create_pull_request" | "update_pull_request" | "merge_pull_request" | "create_pull_request_review" | "get_pull_request_reviews" | "get_pull_request_comments" | "get_pull_request_files" | "get_pull_request_status" | "update_pull_request_branch" | "get_pull_request_diff" | "get_pull_request_commits" | "create_pull_request_review_comment" | "add_reply_to_pull_request_comment" | "create_branch" | "list_branches" | "get_branch" | "delete_branch" | "get_file_contents" | "create_or_update_file" | "delete_file" | "push_files" | "list_commits" | "get_commit" | "compare_commits" | "list_milestones" | "create_milestone" | "update_milestone" | "delete_milestone" | "create_commit_status" | "get_combined_status_for_ref" | "create_check_run" | "list_check_runs_for_ref" | "list_tags" | "list_releases" | "get_latest_release" | "create_release" | "create_label" | "add_issue_labels" | "remove_issue_label" | "list_collaborators" | "get_me" | "add_collaborator" | "create_repository" | "fork_repository" | "search_repositories" | "get_repository" | "search_code" | "search_users" | "search_issues" | "list_issue_comments" | "list_repository_labels" | "list_issue_labels" | "search_commits" | "get_release_by_tag" | "get_tag";
758
+ name: "create_commit_status" | "create_check_run" | "create_or_update_file" | "push_files" | "create_branch" | "delete_branch" | "delete_file" | "create_issue" | "update_issue" | "add_issue_comment" | "create_label" | "add_issue_labels" | "add_assignees" | "update_issue_comment" | "delete_issue_comment" | "create_milestone" | "update_milestone" | "delete_milestone" | "create_pull_request" | "create_pull_request_review" | "merge_pull_request" | "update_pull_request_branch" | "update_pull_request" | "create_pull_request_review_comment" | "add_reply_to_pull_request_comment" | "create_release" | "create_repository" | "fork_repository" | "add_collaborator" | "search_repositories" | "get_repository" | "search_code" | "search_users" | "get_file_contents" | "list_commits" | "get_issue" | "search_issues" | "list_issues" | "list_issue_comments" | "list_repository_labels" | "list_issue_labels" | "remove_issue_label" | "list_collaborators" | "get_pull_request" | "get_pull_request_reviews" | "get_pull_request_comments" | "get_pull_request_files" | "get_pull_request_status" | "list_pull_requests" | "list_branches" | "get_branch" | "get_commit" | "compare_commits" | "get_pull_request_diff" | "get_pull_request_commits" | "list_milestones" | "get_combined_status_for_ref" | "list_check_runs_for_ref" | "list_tags" | "list_releases" | "get_latest_release" | "get_me" | "search_commits" | "get_release_by_tag" | "get_tag";
759
759
  description: "Search local repositories by name or description." | "Create a repository with an initial README and main branch." | "Fork a repository into the current user or an organization." | "Get one repository." | "Search files in the local GitHub twin." | "Search seeded users and organizations." | "Read a file or directory from a repository branch." | "List commits for a repository." | "Create or update one file and advance the branch head atomically." | "Create a branch from an existing branch or SHA." | "Push multiple files in a single commit." | "Get one issue." | "Update an issue title, body, state, labels, or assignees." | "Search all local issues." | "List repository issues with common filters." | "Add an issue comment." | "List comments on an issue." | "Create an issue." | "List labels defined on a repository." | "Create a repository label." | "List labels applied to an issue." | "Apply one or more labels to an issue." | "Remove one label from an issue." | "List repository collaborators." | "Add assignees to an issue." | "Get one pull request." | "List pull request reviews." | "Create a pull request review." | "List review comments on a pull request." | "List files changed by a pull request." | "Get combined status for a pull request head commit." | "List repository pull requests." | "Merge a pull request using simplified local merge semantics." | "Update a PR branch from its base branch." | "Create a pull request from a head branch to a base branch." | "List branches for a repository." | "Get one branch by name." | "Delete a branch (cannot delete the default branch or a branch backing an open PR)." | "Delete one file and advance the branch head atomically." | "Get one commit with its file changes and stats." | "Compare two commits, branches, or tags. Returns ahead/behind/identical/diverged." | "Get a unified-diff-style text representation of a pull request." | "Update a pull request title, body, state, or base branch." | "List commits on a pull request, oldest first." | "Create an inline review comment on a pull request at a file path and line." | "Reply to an existing pull request review comment." | "Update the body of an existing issue comment." | "Delete an issue comment by ID." | "List milestones for a repository." | "Create a milestone." | "Update a milestone." | "Delete a milestone." | "Create a commit status (pending/success/failure/error) on a commit SHA." | "Get the combined status for a ref (SHA, branch, or tag)." | "Create a check run on a commit SHA." | "List check runs for a ref (SHA, branch, or tag)." | "List tags for a repository, most recent first." | "List releases for a repository, most recent first." | "Get the latest published (non-draft, non-prerelease) release." | "Create a release. Auto-creates the tag if it doesn't exist." | "Get the authenticated user." | "Add a collaborator to a repository. Returns 201 + invitation envelope for new users, 204 when already a collaborator." | "Search commits on repository default branches by message or author." | "Get a release by its tag name." | "Get a tag by name, including the commit it points at.";
760
760
  input_schema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
761
761
  page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
@@ -1138,9 +1138,9 @@ export declare function listTools(): {
1138
1138
  sha: z.ZodString;
1139
1139
  state: z.ZodEnum<{
1140
1140
  error: "error";
1141
- success: "success";
1142
1141
  failure: "failure";
1143
1142
  pending: "pending";
1143
+ success: "success";
1144
1144
  }>;
1145
1145
  context: z.ZodOptional<z.ZodString>;
1146
1146
  description: z.ZodOptional<z.ZodString>;
@@ -1158,17 +1158,17 @@ export declare function listTools(): {
1158
1158
  headSha: z.ZodOptional<z.ZodString>;
1159
1159
  status: z.ZodOptional<z.ZodEnum<{
1160
1160
  queued: "queued";
1161
- completed: "completed";
1162
1161
  in_progress: "in_progress";
1162
+ completed: "completed";
1163
1163
  }>>;
1164
1164
  conclusion: z.ZodOptional<z.ZodEnum<{
1165
- success: "success";
1166
- skipped: "skipped";
1167
1165
  failure: "failure";
1166
+ success: "success";
1168
1167
  neutral: "neutral";
1169
1168
  cancelled: "cancelled";
1170
1169
  timed_out: "timed_out";
1171
1170
  action_required: "action_required";
1171
+ skipped: "skipped";
1172
1172
  stale: "stale";
1173
1173
  }>>;
1174
1174
  details_url: z.ZodOptional<z.ZodString>;
@@ -1222,8 +1222,8 @@ export declare function listTools(): {
1222
1222
  username: z.ZodString;
1223
1223
  permission: z.ZodOptional<z.ZodEnum<{
1224
1224
  push: "push";
1225
- admin: "admin";
1226
1225
  pull: "pull";
1226
+ admin: "admin";
1227
1227
  maintain: "maintain";
1228
1228
  triage: "triage";
1229
1229
  }>>;
@@ -1248,7 +1248,7 @@ export declare function listTools(): {
1248
1248
  }, z.core.$strip>>;
1249
1249
  }[];
1250
1250
  export declare function listToolsForMcp(): {
1251
- name: "list_issues" | "get_issue" | "create_issue" | "update_issue" | "add_assignees" | "add_issue_comment" | "update_issue_comment" | "delete_issue_comment" | "list_pull_requests" | "get_pull_request" | "create_pull_request" | "update_pull_request" | "merge_pull_request" | "create_pull_request_review" | "get_pull_request_reviews" | "get_pull_request_comments" | "get_pull_request_files" | "get_pull_request_status" | "update_pull_request_branch" | "get_pull_request_diff" | "get_pull_request_commits" | "create_pull_request_review_comment" | "add_reply_to_pull_request_comment" | "create_branch" | "list_branches" | "get_branch" | "delete_branch" | "get_file_contents" | "create_or_update_file" | "delete_file" | "push_files" | "list_commits" | "get_commit" | "compare_commits" | "list_milestones" | "create_milestone" | "update_milestone" | "delete_milestone" | "create_commit_status" | "get_combined_status_for_ref" | "create_check_run" | "list_check_runs_for_ref" | "list_tags" | "list_releases" | "get_latest_release" | "create_release" | "create_label" | "add_issue_labels" | "remove_issue_label" | "list_collaborators" | "get_me" | "add_collaborator" | "create_repository" | "fork_repository" | "search_repositories" | "get_repository" | "search_code" | "search_users" | "search_issues" | "list_issue_comments" | "list_repository_labels" | "list_issue_labels" | "search_commits" | "get_release_by_tag" | "get_tag";
1251
+ name: "create_commit_status" | "create_check_run" | "create_or_update_file" | "push_files" | "create_branch" | "delete_branch" | "delete_file" | "create_issue" | "update_issue" | "add_issue_comment" | "create_label" | "add_issue_labels" | "add_assignees" | "update_issue_comment" | "delete_issue_comment" | "create_milestone" | "update_milestone" | "delete_milestone" | "create_pull_request" | "create_pull_request_review" | "merge_pull_request" | "update_pull_request_branch" | "update_pull_request" | "create_pull_request_review_comment" | "add_reply_to_pull_request_comment" | "create_release" | "create_repository" | "fork_repository" | "add_collaborator" | "search_repositories" | "get_repository" | "search_code" | "search_users" | "get_file_contents" | "list_commits" | "get_issue" | "search_issues" | "list_issues" | "list_issue_comments" | "list_repository_labels" | "list_issue_labels" | "remove_issue_label" | "list_collaborators" | "get_pull_request" | "get_pull_request_reviews" | "get_pull_request_comments" | "get_pull_request_files" | "get_pull_request_status" | "list_pull_requests" | "list_branches" | "get_branch" | "get_commit" | "compare_commits" | "get_pull_request_diff" | "get_pull_request_commits" | "list_milestones" | "get_combined_status_for_ref" | "list_check_runs_for_ref" | "list_tags" | "list_releases" | "get_latest_release" | "get_me" | "search_commits" | "get_release_by_tag" | "get_tag";
1252
1252
  description: "Search local repositories by name or description." | "Create a repository with an initial README and main branch." | "Fork a repository into the current user or an organization." | "Get one repository." | "Search files in the local GitHub twin." | "Search seeded users and organizations." | "Read a file or directory from a repository branch." | "List commits for a repository." | "Create or update one file and advance the branch head atomically." | "Create a branch from an existing branch or SHA." | "Push multiple files in a single commit." | "Get one issue." | "Update an issue title, body, state, labels, or assignees." | "Search all local issues." | "List repository issues with common filters." | "Add an issue comment." | "List comments on an issue." | "Create an issue." | "List labels defined on a repository." | "Create a repository label." | "List labels applied to an issue." | "Apply one or more labels to an issue." | "Remove one label from an issue." | "List repository collaborators." | "Add assignees to an issue." | "Get one pull request." | "List pull request reviews." | "Create a pull request review." | "List review comments on a pull request." | "List files changed by a pull request." | "Get combined status for a pull request head commit." | "List repository pull requests." | "Merge a pull request using simplified local merge semantics." | "Update a PR branch from its base branch." | "Create a pull request from a head branch to a base branch." | "List branches for a repository." | "Get one branch by name." | "Delete a branch (cannot delete the default branch or a branch backing an open PR)." | "Delete one file and advance the branch head atomically." | "Get one commit with its file changes and stats." | "Compare two commits, branches, or tags. Returns ahead/behind/identical/diverged." | "Get a unified-diff-style text representation of a pull request." | "Update a pull request title, body, state, or base branch." | "List commits on a pull request, oldest first." | "Create an inline review comment on a pull request at a file path and line." | "Reply to an existing pull request review comment." | "Update the body of an existing issue comment." | "Delete an issue comment by ID." | "List milestones for a repository." | "Create a milestone." | "Update a milestone." | "Delete a milestone." | "Create a commit status (pending/success/failure/error) on a commit SHA." | "Get the combined status for a ref (SHA, branch, or tag)." | "Create a check run on a commit SHA." | "List check runs for a ref (SHA, branch, or tag)." | "List tags for a repository, most recent first." | "List releases for a repository, most recent first." | "Get the latest published (non-draft, non-prerelease) release." | "Create a release. Auto-creates the tag if it doesn't exist." | "Get the authenticated user." | "Add a collaborator to a repository. Returns 201 + invitation envelope for new users, 204 when already a collaborator." | "Search commits on repository default branches by message or author." | "Get a release by its tag name." | "Get a tag by name, including the commit it points at.";
1253
1253
  inputSchema: z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
1254
1254
  page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
@@ -1631,9 +1631,9 @@ export declare function listToolsForMcp(): {
1631
1631
  sha: z.ZodString;
1632
1632
  state: z.ZodEnum<{
1633
1633
  error: "error";
1634
- success: "success";
1635
1634
  failure: "failure";
1636
1635
  pending: "pending";
1636
+ success: "success";
1637
1637
  }>;
1638
1638
  context: z.ZodOptional<z.ZodString>;
1639
1639
  description: z.ZodOptional<z.ZodString>;
@@ -1651,17 +1651,17 @@ export declare function listToolsForMcp(): {
1651
1651
  headSha: z.ZodOptional<z.ZodString>;
1652
1652
  status: z.ZodOptional<z.ZodEnum<{
1653
1653
  queued: "queued";
1654
- completed: "completed";
1655
1654
  in_progress: "in_progress";
1655
+ completed: "completed";
1656
1656
  }>>;
1657
1657
  conclusion: z.ZodOptional<z.ZodEnum<{
1658
- success: "success";
1659
- skipped: "skipped";
1660
1658
  failure: "failure";
1659
+ success: "success";
1661
1660
  neutral: "neutral";
1662
1661
  cancelled: "cancelled";
1663
1662
  timed_out: "timed_out";
1664
1663
  action_required: "action_required";
1664
+ skipped: "skipped";
1665
1665
  stale: "stale";
1666
1666
  }>>;
1667
1667
  details_url: z.ZodOptional<z.ZodString>;
@@ -1715,8 +1715,8 @@ export declare function listToolsForMcp(): {
1715
1715
  username: z.ZodString;
1716
1716
  permission: z.ZodOptional<z.ZodEnum<{
1717
1717
  push: "push";
1718
- admin: "admin";
1719
1718
  pull: "pull";
1719
+ admin: "admin";
1720
1720
  maintain: "maintain";
1721
1721
  triage: "triage";
1722
1722
  }>>;
@@ -1892,7 +1892,7 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
1892
1892
  } | {
1893
1893
  id: number;
1894
1894
  node_id: string;
1895
- state: "error" | "success" | "failure" | "pending";
1895
+ state: "error" | "failure" | "pending" | "success";
1896
1896
  description: string;
1897
1897
  target_url: string;
1898
1898
  context: string;
@@ -1906,7 +1906,7 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
1906
1906
  statuses: {
1907
1907
  id: number;
1908
1908
  node_id: string;
1909
- state: "error" | "success" | "failure" | "pending";
1909
+ state: "error" | "failure" | "pending" | "success";
1910
1910
  description: string;
1911
1911
  target_url: string;
1912
1912
  context: string;
@@ -2015,7 +2015,7 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
2015
2015
  url: string;
2016
2016
  html_url: string;
2017
2017
  details_url: string;
2018
- status: "queued" | "completed" | "in_progress";
2018
+ status: "queued" | "in_progress" | "completed";
2019
2019
  conclusion: import("./upstream-types.js").CheckRun["conclusion"];
2020
2020
  started_at: string;
2021
2021
  completed_at: string | null;
@@ -2310,89 +2310,29 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
2310
2310
  site_admin: false;
2311
2311
  } | {
2312
2312
  total_count: number;
2313
- incomplete_results: boolean;
2314
- items: {
2315
- parent?: {
2316
- full_name: string;
2317
- };
2313
+ check_runs: {
2318
2314
  id: number;
2319
2315
  node_id: string;
2320
- name: string;
2321
- full_name: string;
2322
- owner: {
2323
- login: string;
2324
- id: number;
2325
- node_id: string;
2326
- avatar_url: string;
2327
- html_url: string;
2328
- type: "User" | "Organization";
2329
- site_admin: false;
2330
- };
2331
- private: boolean;
2332
- html_url: string;
2333
- description: string;
2334
- fork: boolean;
2335
- url: string;
2336
- contents_url: string;
2337
- issues_url: string;
2338
- pulls_url: string;
2339
- default_branch: string;
2340
- created_at: string;
2341
- updated_at: string;
2342
- pushed_at: string;
2343
- }[];
2344
- } | {
2345
- total_count: number;
2346
- incomplete_results: boolean;
2347
- items: {
2348
- name: string | undefined;
2349
- path: string;
2350
- sha: string;
2316
+ head_sha: string;
2317
+ external_id: string;
2351
2318
  url: string;
2352
- git_url: string;
2353
2319
  html_url: string;
2354
- repository: {
2355
- parent?: {
2356
- full_name: string;
2357
- };
2358
- id: number;
2359
- node_id: string;
2360
- name: string;
2361
- full_name: string;
2362
- owner: {
2363
- login: string;
2364
- id: number;
2365
- node_id: string;
2366
- avatar_url: string;
2367
- html_url: string;
2368
- type: "User" | "Organization";
2369
- site_admin: false;
2370
- };
2371
- private: boolean;
2372
- html_url: string;
2373
- description: string;
2374
- fork: boolean;
2375
- url: string;
2376
- contents_url: string;
2377
- issues_url: string;
2378
- pulls_url: string;
2379
- default_branch: string;
2380
- created_at: string;
2381
- updated_at: string;
2382
- pushed_at: string;
2320
+ details_url: string;
2321
+ status: "queued" | "in_progress" | "completed";
2322
+ conclusion: import("./upstream-types.js").CheckRun["conclusion"];
2323
+ started_at: string;
2324
+ completed_at: string | null;
2325
+ output: {
2326
+ title: string | null;
2327
+ summary: string | null;
2328
+ text: null;
2329
+ annotations_count: number;
2330
+ annotations_url: string;
2383
2331
  };
2384
- }[];
2385
- } | {
2386
- total_count: number;
2387
- incomplete_results: boolean;
2388
- items: {
2389
- login: string;
2390
- id: number;
2391
- node_id: string;
2392
- avatar_url: string;
2393
- html_url: string;
2394
- type: "User" | "Organization";
2395
- site_admin: false;
2332
+ name: string;
2333
+ check_suite: null;
2334
+ app: null;
2335
+ pull_requests: never[];
2396
2336
  }[];
2397
2337
  } | {
2398
2338
  content: {
@@ -2526,69 +2466,6 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
2526
2466
  self: string;
2527
2467
  };
2528
2468
  }[];
2529
- } | {
2530
- total_count: number;
2531
- incomplete_results: boolean;
2532
- items: {
2533
- id: number;
2534
- node_id: string;
2535
- number: number;
2536
- title: string;
2537
- body: string;
2538
- state: "open" | "closed";
2539
- locked: false;
2540
- user: {
2541
- login: string;
2542
- id: number;
2543
- node_id: string;
2544
- avatar_url: string;
2545
- html_url: string;
2546
- type: "User" | "Organization";
2547
- site_admin: false;
2548
- };
2549
- labels: {
2550
- id: number;
2551
- node_id: string;
2552
- url: string;
2553
- name: string;
2554
- color: string;
2555
- default: false;
2556
- description: string;
2557
- }[];
2558
- assignee: {
2559
- login: string;
2560
- id: number;
2561
- node_id: string;
2562
- avatar_url: string;
2563
- html_url: string;
2564
- type: "User" | "Organization";
2565
- site_admin: false;
2566
- } | null;
2567
- assignees: {
2568
- login: string;
2569
- id: number;
2570
- node_id: string;
2571
- avatar_url: string;
2572
- html_url: string;
2573
- type: "User" | "Organization";
2574
- site_admin: false;
2575
- }[];
2576
- comments: number;
2577
- html_url: string;
2578
- repository_url: string;
2579
- labels_url: string;
2580
- comments_url: string;
2581
- created_at: string;
2582
- updated_at: string;
2583
- closed_at: string | null;
2584
- }[];
2585
- } | {
2586
- sha: string;
2587
- merged: boolean;
2588
- message: string;
2589
- } | {
2590
- message: string;
2591
- url: string;
2592
2469
  } | {
2593
2470
  ok: boolean;
2594
2471
  } | {
@@ -2641,33 +2518,14 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
2641
2518
  comments_url: string;
2642
2519
  };
2643
2520
  } | {
2644
- diff: string;
2521
+ sha: string;
2522
+ merged: boolean;
2523
+ message: string;
2645
2524
  } | {
2646
- total_count: number;
2647
- check_runs: {
2648
- id: number;
2649
- node_id: string;
2650
- head_sha: string;
2651
- external_id: string;
2652
- url: string;
2653
- html_url: string;
2654
- details_url: string;
2655
- status: "queued" | "completed" | "in_progress";
2656
- conclusion: import("./upstream-types.js").CheckRun["conclusion"];
2657
- started_at: string;
2658
- completed_at: string | null;
2659
- output: {
2660
- title: string | null;
2661
- summary: string | null;
2662
- text: null;
2663
- annotations_count: number;
2664
- annotations_url: string;
2665
- };
2666
- name: string;
2667
- check_suite: null;
2668
- app: null;
2669
- pull_requests: never[];
2670
- }[];
2525
+ message: string;
2526
+ url: string;
2527
+ } | {
2528
+ diff: string;
2671
2529
  } | {
2672
2530
  status: number;
2673
2531
  body: null;
@@ -2730,6 +2588,92 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
2730
2588
  url: string;
2731
2589
  html_url: string;
2732
2590
  };
2591
+ } | {
2592
+ total_count: number;
2593
+ incomplete_results: boolean;
2594
+ items: {
2595
+ parent?: {
2596
+ full_name: string;
2597
+ };
2598
+ id: number;
2599
+ node_id: string;
2600
+ name: string;
2601
+ full_name: string;
2602
+ owner: {
2603
+ login: string;
2604
+ id: number;
2605
+ node_id: string;
2606
+ avatar_url: string;
2607
+ html_url: string;
2608
+ type: "User" | "Organization";
2609
+ site_admin: false;
2610
+ };
2611
+ private: boolean;
2612
+ html_url: string;
2613
+ description: string;
2614
+ fork: boolean;
2615
+ url: string;
2616
+ contents_url: string;
2617
+ issues_url: string;
2618
+ pulls_url: string;
2619
+ default_branch: string;
2620
+ created_at: string;
2621
+ updated_at: string;
2622
+ pushed_at: string;
2623
+ }[];
2624
+ } | {
2625
+ total_count: number;
2626
+ incomplete_results: boolean;
2627
+ items: {
2628
+ login: string;
2629
+ id: number;
2630
+ node_id: string;
2631
+ avatar_url: string;
2632
+ html_url: string;
2633
+ type: "User" | "Organization";
2634
+ site_admin: false;
2635
+ }[];
2636
+ } | {
2637
+ total_count: number;
2638
+ incomplete_results: boolean;
2639
+ items: {
2640
+ name: string | undefined;
2641
+ path: string;
2642
+ sha: string;
2643
+ url: string;
2644
+ git_url: string;
2645
+ html_url: string;
2646
+ repository: {
2647
+ parent?: {
2648
+ full_name: string;
2649
+ };
2650
+ id: number;
2651
+ node_id: string;
2652
+ name: string;
2653
+ full_name: string;
2654
+ owner: {
2655
+ login: string;
2656
+ id: number;
2657
+ node_id: string;
2658
+ avatar_url: string;
2659
+ html_url: string;
2660
+ type: "User" | "Organization";
2661
+ site_admin: false;
2662
+ };
2663
+ private: boolean;
2664
+ html_url: string;
2665
+ description: string;
2666
+ fork: boolean;
2667
+ url: string;
2668
+ contents_url: string;
2669
+ issues_url: string;
2670
+ pulls_url: string;
2671
+ default_branch: string;
2672
+ created_at: string;
2673
+ updated_at: string;
2674
+ pushed_at: string;
2675
+ };
2676
+ }[];
2733
2677
  } | {
2734
2678
  total_count: number;
2735
2679
  incomplete_results: boolean;
@@ -2811,4 +2755,60 @@ export declare function executeTool(domain: GitHubDomain, name: string, input: u
2811
2755
  }[];
2812
2756
  comments_url: string;
2813
2757
  }[];
2758
+ } | {
2759
+ total_count: number;
2760
+ incomplete_results: boolean;
2761
+ items: {
2762
+ id: number;
2763
+ node_id: string;
2764
+ number: number;
2765
+ title: string;
2766
+ body: string;
2767
+ state: "open" | "closed";
2768
+ locked: false;
2769
+ user: {
2770
+ login: string;
2771
+ id: number;
2772
+ node_id: string;
2773
+ avatar_url: string;
2774
+ html_url: string;
2775
+ type: "User" | "Organization";
2776
+ site_admin: false;
2777
+ };
2778
+ labels: {
2779
+ id: number;
2780
+ node_id: string;
2781
+ url: string;
2782
+ name: string;
2783
+ color: string;
2784
+ default: false;
2785
+ description: string;
2786
+ }[];
2787
+ assignee: {
2788
+ login: string;
2789
+ id: number;
2790
+ node_id: string;
2791
+ avatar_url: string;
2792
+ html_url: string;
2793
+ type: "User" | "Organization";
2794
+ site_admin: false;
2795
+ } | null;
2796
+ assignees: {
2797
+ login: string;
2798
+ id: number;
2799
+ node_id: string;
2800
+ avatar_url: string;
2801
+ html_url: string;
2802
+ type: "User" | "Organization";
2803
+ site_admin: false;
2804
+ }[];
2805
+ comments: number;
2806
+ html_url: string;
2807
+ repository_url: string;
2808
+ labels_url: string;
2809
+ comments_url: string;
2810
+ created_at: string;
2811
+ updated_at: string;
2812
+ closed_at: string | null;
2813
+ }[];
2814
2814
  };
@@ -1,7 +1,7 @@
1
1
  import { type TwinDefinition } from "@pome-sh/sdk";
2
2
  import { type RecorderStore } from "@pome-sh/sdk/server";
3
3
  import type { Hono } from "hono";
4
- import { GitHubDomain } from "./domain.js";
4
+ import { GitHubDomain } from "./domain/index.js";
5
5
  import { type ParsedGitHubStateSeed } from "./seed.js";
6
6
  import type { GitHubCloneDatabase, GitHubStateSeed } from "./types.js";
7
7
  export declare const githubTwinDefinition: TwinDefinition<GitHubCloneDatabase, ParsedGitHubStateSeed, GitHubDomain>;
@@ -13,7 +13,7 @@ import { UnknownToolError, createApp, twinBuildInfo, } from "@pome-sh/sdk/server
13
13
  import { summarizeGitHubAccessControlCatalog } from "@pome-sh/shared-types";
14
14
  import { githubAccessControlPayload } from "./access-control.js";
15
15
  import { openGitHubCloneDatabase } from "./db.js";
16
- import { GitHubDomain } from "./domain.js";
16
+ import { GitHubDomain } from "./domain/index.js";
17
17
  import { TwinError, githubError } from "./errors.js";
18
18
  import { registerGitHubRoutes } from "./routes.js";
19
19
  import { defaultSeedState, parseSeed } from "./seed.js";
@@ -1 +1 @@
1
- {"version":3,"file":"twin.js","sourceRoot":"","sources":["../../src/twin.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"twin.js","sourceRoot":"","sources":["../../src/twin.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pome-sh/twin-github",
3
- "version": "0.2.1",
3
+ "version": "0.4.0",
4
4
  "description": "Deterministic GitHub-shaped twin for agent testing — REST + MCP, SQLite-backed state.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -34,9 +34,9 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@hono/node-server": "^2.0.10",
37
- "@pome-sh/sdk": "0.5.0",
38
- "@pome-sh/shared-types": "0.11.0",
39
- "hono": "^4.12.27",
37
+ "@pome-sh/sdk": "0.7.0",
38
+ "@pome-sh/shared-types": "0.12.2",
39
+ "hono": "^4.12.31",
40
40
  "zod": "^4.1.13"
41
41
  },
42
42
  "keywords": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pome-sh/sdk",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Twin engine for Pome digital twins — defineTwin() + serve(): HTTP mounting, bearer auth, trace recorder, MCP dispatch, SQLite-backed state.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -36,7 +36,7 @@
36
36
  "dist"
37
37
  ],
38
38
  "dependencies": {
39
- "@pome-sh/shared-types": "0.11.0",
39
+ "@pome-sh/shared-types": "0.12.0",
40
40
  "hono": "^4.12.27",
41
41
  "zod": "^4.1.13"
42
42
  },