@skrr-ai/cli 0.1.8

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 (2326) hide show
  1. package/README.md +1952 -0
  2. package/bin/run.js +26 -0
  3. package/dist/base-command.d.ts +397 -0
  4. package/dist/base-command.js +1252 -0
  5. package/dist/commands/actions/browse.d.ts +14 -0
  6. package/dist/commands/actions/browse.js +50 -0
  7. package/dist/commands/actions/create.d.ts +20 -0
  8. package/dist/commands/actions/create.js +95 -0
  9. package/dist/commands/actions/delete.d.ts +13 -0
  10. package/dist/commands/actions/delete.js +42 -0
  11. package/dist/commands/actions/install.d.ts +13 -0
  12. package/dist/commands/actions/install.js +49 -0
  13. package/dist/commands/actions/list.d.ts +14 -0
  14. package/dist/commands/actions/list.js +49 -0
  15. package/dist/commands/actions/publish.d.ts +14 -0
  16. package/dist/commands/actions/publish.js +44 -0
  17. package/dist/commands/actions/rate.d.ts +13 -0
  18. package/dist/commands/actions/rate.js +42 -0
  19. package/dist/commands/actions/show.d.ts +12 -0
  20. package/dist/commands/actions/show.js +36 -0
  21. package/dist/commands/actions/update.d.ts +21 -0
  22. package/dist/commands/actions/update.js +83 -0
  23. package/dist/commands/agenda/plan.d.ts +27 -0
  24. package/dist/commands/agenda/plan.js +68 -0
  25. package/dist/commands/agenda/trigger/create.d.ts +33 -0
  26. package/dist/commands/agenda/trigger/create.js +128 -0
  27. package/dist/commands/agenda/trigger/delete.d.ts +21 -0
  28. package/dist/commands/agenda/trigger/delete.js +56 -0
  29. package/dist/commands/agenda/trigger/fire.d.ts +28 -0
  30. package/dist/commands/agenda/trigger/fire.js +74 -0
  31. package/dist/commands/agenda/trigger/list.d.ts +28 -0
  32. package/dist/commands/agenda/trigger/list.js +104 -0
  33. package/dist/commands/agent/call/cancel.d.ts +11 -0
  34. package/dist/commands/agent/call/cancel.js +49 -0
  35. package/dist/commands/agent/call/request.d.ts +15 -0
  36. package/dist/commands/agent/call/request.js +173 -0
  37. package/dist/commands/agent/call/show.d.ts +11 -0
  38. package/dist/commands/agent/call/show.js +48 -0
  39. package/dist/commands/agent/message/context.d.ts +19 -0
  40. package/dist/commands/agent/message/context.js +79 -0
  41. package/dist/commands/agent/message/send.d.ts +232 -0
  42. package/dist/commands/agent/message/send.js +1055 -0
  43. package/dist/commands/agent/phone-call/request.d.ts +20 -0
  44. package/dist/commands/agent/phone-call/request.js +145 -0
  45. package/dist/commands/agent-groups/add.d.ts +13 -0
  46. package/dist/commands/agent-groups/add.js +45 -0
  47. package/dist/commands/agent-groups/create.d.ts +14 -0
  48. package/dist/commands/agent-groups/create.js +62 -0
  49. package/dist/commands/agent-groups/delete.d.ts +12 -0
  50. package/dist/commands/agent-groups/delete.js +43 -0
  51. package/dist/commands/agent-groups/list.d.ts +9 -0
  52. package/dist/commands/agent-groups/list.js +51 -0
  53. package/dist/commands/agent-groups/remove.d.ts +13 -0
  54. package/dist/commands/agent-groups/remove.js +45 -0
  55. package/dist/commands/agent-groups/show.d.ts +12 -0
  56. package/dist/commands/agent-groups/show.js +42 -0
  57. package/dist/commands/agent-groups/update.d.ts +17 -0
  58. package/dist/commands/agent-groups/update.js +68 -0
  59. package/dist/commands/agent-shares/accept.d.ts +12 -0
  60. package/dist/commands/agent-shares/accept.js +35 -0
  61. package/dist/commands/agent-shares/create.d.ts +15 -0
  62. package/dist/commands/agent-shares/create.js +66 -0
  63. package/dist/commands/agent-shares/decline.d.ts +13 -0
  64. package/dist/commands/agent-shares/decline.js +54 -0
  65. package/dist/commands/agent-shares/leave.d.ts +12 -0
  66. package/dist/commands/agent-shares/leave.js +43 -0
  67. package/dist/commands/agent-shares/list-for.d.ts +12 -0
  68. package/dist/commands/agent-shares/list-for.js +66 -0
  69. package/dist/commands/agent-shares/received.d.ts +13 -0
  70. package/dist/commands/agent-shares/received.js +77 -0
  71. package/dist/commands/agent-shares/revoke.d.ts +12 -0
  72. package/dist/commands/agent-shares/revoke.js +43 -0
  73. package/dist/commands/agent-shares/sent.d.ts +12 -0
  74. package/dist/commands/agent-shares/sent.js +74 -0
  75. package/dist/commands/agent-shares/with.d.ts +12 -0
  76. package/dist/commands/agent-shares/with.js +79 -0
  77. package/dist/commands/agents/actions/create.d.ts +23 -0
  78. package/dist/commands/agents/actions/create.js +130 -0
  79. package/dist/commands/agents/actions/delete.d.ts +13 -0
  80. package/dist/commands/agents/actions/delete.js +43 -0
  81. package/dist/commands/agents/actions/list.d.ts +12 -0
  82. package/dist/commands/agents/actions/list.js +36 -0
  83. package/dist/commands/agents/actions/run.d.ts +15 -0
  84. package/dist/commands/agents/actions/run.js +61 -0
  85. package/dist/commands/agents/actions/schedule.d.ts +29 -0
  86. package/dist/commands/agents/actions/schedule.js +162 -0
  87. package/dist/commands/agents/actions/show.d.ts +13 -0
  88. package/dist/commands/agents/actions/show.js +40 -0
  89. package/dist/commands/agents/actions/targets.d.ts +14 -0
  90. package/dist/commands/agents/actions/targets.js +117 -0
  91. package/dist/commands/agents/actions/update.d.ts +22 -0
  92. package/dist/commands/agents/actions/update.js +117 -0
  93. package/dist/commands/agents/activity.d.ts +24 -0
  94. package/dist/commands/agents/activity.js +195 -0
  95. package/dist/commands/agents/always-on/disable.d.ts +23 -0
  96. package/dist/commands/agents/always-on/disable.js +57 -0
  97. package/dist/commands/agents/always-on/enable.d.ts +31 -0
  98. package/dist/commands/agents/always-on/enable.js +65 -0
  99. package/dist/commands/agents/always-on/reconcile.d.ts +23 -0
  100. package/dist/commands/agents/always-on/reconcile.js +49 -0
  101. package/dist/commands/agents/always-on/status.d.ts +22 -0
  102. package/dist/commands/agents/always-on/status.js +67 -0
  103. package/dist/commands/agents/attach-harness.d.ts +16 -0
  104. package/dist/commands/agents/attach-harness.js +131 -0
  105. package/dist/commands/agents/avatar/generate.d.ts +12 -0
  106. package/dist/commands/agents/avatar/generate.js +27 -0
  107. package/dist/commands/agents/avatar/upload.d.ts +12 -0
  108. package/dist/commands/agents/avatar/upload.js +29 -0
  109. package/dist/commands/agents/channels/connect.d.ts +12 -0
  110. package/dist/commands/agents/channels/connect.js +33 -0
  111. package/dist/commands/agents/channels/delete.d.ts +13 -0
  112. package/dist/commands/agents/channels/delete.js +37 -0
  113. package/dist/commands/agents/channels/disconnect.d.ts +12 -0
  114. package/dist/commands/agents/channels/disconnect.js +33 -0
  115. package/dist/commands/agents/channels/show.d.ts +12 -0
  116. package/dist/commands/agents/channels/show.js +29 -0
  117. package/dist/commands/agents/channels/test.d.ts +13 -0
  118. package/dist/commands/agents/channels/test.js +33 -0
  119. package/dist/commands/agents/channels/update.d.ts +13 -0
  120. package/dist/commands/agents/channels/update.js +37 -0
  121. package/dist/commands/agents/chat.d.ts +72 -0
  122. package/dist/commands/agents/chat.js +394 -0
  123. package/dist/commands/agents/create.d.ts +70 -0
  124. package/dist/commands/agents/create.js +241 -0
  125. package/dist/commands/agents/delete.d.ts +12 -0
  126. package/dist/commands/agents/delete.js +46 -0
  127. package/dist/commands/agents/duplicate.d.ts +12 -0
  128. package/dist/commands/agents/duplicate.js +46 -0
  129. package/dist/commands/agents/files/delete.d.ts +13 -0
  130. package/dist/commands/agents/files/delete.js +32 -0
  131. package/dist/commands/agents/files/list.d.ts +11 -0
  132. package/dist/commands/agents/files/list.js +22 -0
  133. package/dist/commands/agents/files/move.d.ts +13 -0
  134. package/dist/commands/agents/files/move.js +35 -0
  135. package/dist/commands/agents/files/rename.d.ts +13 -0
  136. package/dist/commands/agents/files/rename.js +32 -0
  137. package/dist/commands/agents/files/upload.d.ts +21 -0
  138. package/dist/commands/agents/files/upload.js +60 -0
  139. package/dist/commands/agents/folders/create.d.ts +13 -0
  140. package/dist/commands/agents/folders/create.js +30 -0
  141. package/dist/commands/agents/folders/delete.d.ts +13 -0
  142. package/dist/commands/agents/folders/delete.js +30 -0
  143. package/dist/commands/agents/folders/list.d.ts +11 -0
  144. package/dist/commands/agents/folders/list.js +22 -0
  145. package/dist/commands/agents/folders/show.d.ts +12 -0
  146. package/dist/commands/agents/folders/show.js +23 -0
  147. package/dist/commands/agents/folders/update.d.ts +14 -0
  148. package/dist/commands/agents/folders/update.js +32 -0
  149. package/dist/commands/agents/goals/assign.d.ts +25 -0
  150. package/dist/commands/agents/goals/assign.js +56 -0
  151. package/dist/commands/agents/goals/list.d.ts +24 -0
  152. package/dist/commands/agents/goals/list.js +71 -0
  153. package/dist/commands/agents/goals/unassign.d.ts +23 -0
  154. package/dist/commands/agents/goals/unassign.js +49 -0
  155. package/dist/commands/agents/identity.d.ts +35 -0
  156. package/dist/commands/agents/identity.js +78 -0
  157. package/dist/commands/agents/intuitions/accept.d.ts +13 -0
  158. package/dist/commands/agents/intuitions/accept.js +26 -0
  159. package/dist/commands/agents/intuitions/dismiss.d.ts +13 -0
  160. package/dist/commands/agents/intuitions/dismiss.js +25 -0
  161. package/dist/commands/agents/intuitions/generate.d.ts +12 -0
  162. package/dist/commands/agents/intuitions/generate.js +24 -0
  163. package/dist/commands/agents/intuitions/list.d.ts +11 -0
  164. package/dist/commands/agents/intuitions/list.js +21 -0
  165. package/dist/commands/agents/intuitions/stats.d.ts +11 -0
  166. package/dist/commands/agents/intuitions/stats.js +17 -0
  167. package/dist/commands/agents/list.d.ts +22 -0
  168. package/dist/commands/agents/list.js +75 -0
  169. package/dist/commands/agents/notepad/delete.d.ts +12 -0
  170. package/dist/commands/agents/notepad/delete.js +29 -0
  171. package/dist/commands/agents/notepad/show.d.ts +11 -0
  172. package/dist/commands/agents/notepad/show.js +22 -0
  173. package/dist/commands/agents/notepad/update.d.ts +13 -0
  174. package/dist/commands/agents/notepad/update.js +31 -0
  175. package/dist/commands/agents/overview.d.ts +26 -0
  176. package/dist/commands/agents/overview.js +98 -0
  177. package/dist/commands/agents/plan-day.d.ts +66 -0
  178. package/dist/commands/agents/plan-day.js +279 -0
  179. package/dist/commands/agents/preferences/show.d.ts +11 -0
  180. package/dist/commands/agents/preferences/show.js +20 -0
  181. package/dist/commands/agents/preferences/update.d.ts +14 -0
  182. package/dist/commands/agents/preferences/update.js +34 -0
  183. package/dist/commands/agents/query.d.ts +20 -0
  184. package/dist/commands/agents/query.js +51 -0
  185. package/dist/commands/agents/reflect.d.ts +36 -0
  186. package/dist/commands/agents/reflect.js +184 -0
  187. package/dist/commands/agents/releases/create.d.ts +14 -0
  188. package/dist/commands/agents/releases/create.js +31 -0
  189. package/dist/commands/agents/releases/delist.d.ts +14 -0
  190. package/dist/commands/agents/releases/delist.js +31 -0
  191. package/dist/commands/agents/releases/list.d.ts +11 -0
  192. package/dist/commands/agents/releases/list.js +21 -0
  193. package/dist/commands/agents/releases/restore.d.ts +12 -0
  194. package/dist/commands/agents/releases/restore.js +27 -0
  195. package/dist/commands/agents/releases/rollback.d.ts +12 -0
  196. package/dist/commands/agents/releases/rollback.js +25 -0
  197. package/dist/commands/agents/revert.d.ts +13 -0
  198. package/dist/commands/agents/revert.js +42 -0
  199. package/dist/commands/agents/schedule-overview.d.ts +27 -0
  200. package/dist/commands/agents/schedule-overview.js +231 -0
  201. package/dist/commands/agents/schedule-trace.d.ts +27 -0
  202. package/dist/commands/agents/schedule-trace.js +111 -0
  203. package/dist/commands/agents/schedule.d.ts +46 -0
  204. package/dist/commands/agents/schedule.js +155 -0
  205. package/dist/commands/agents/show.d.ts +30 -0
  206. package/dist/commands/agents/show.js +147 -0
  207. package/dist/commands/agents/skills/add.d.ts +29 -0
  208. package/dist/commands/agents/skills/add.js +59 -0
  209. package/dist/commands/agents/skills/list.d.ts +21 -0
  210. package/dist/commands/agents/skills/list.js +78 -0
  211. package/dist/commands/agents/skills/remove.d.ts +21 -0
  212. package/dist/commands/agents/skills/remove.js +50 -0
  213. package/dist/commands/agents/spaces.d.ts +31 -0
  214. package/dist/commands/agents/spaces.js +87 -0
  215. package/dist/commands/agents/spawn.d.ts +56 -0
  216. package/dist/commands/agents/spawn.js +328 -0
  217. package/dist/commands/agents/todos/cancel.d.ts +19 -0
  218. package/dist/commands/agents/todos/cancel.js +57 -0
  219. package/dist/commands/agents/todos/create.d.ts +22 -0
  220. package/dist/commands/agents/todos/create.js +55 -0
  221. package/dist/commands/agents/todos/list.d.ts +18 -0
  222. package/dist/commands/agents/todos/list.js +42 -0
  223. package/dist/commands/agents/tone/clear.d.ts +18 -0
  224. package/dist/commands/agents/tone/clear.js +79 -0
  225. package/dist/commands/agents/tone/inherit.d.ts +17 -0
  226. package/dist/commands/agents/tone/inherit.js +75 -0
  227. package/dist/commands/agents/tone/set.d.ts +21 -0
  228. package/dist/commands/agents/tone/set.js +125 -0
  229. package/dist/commands/agents/tone/show.d.ts +26 -0
  230. package/dist/commands/agents/tone/show.js +114 -0
  231. package/dist/commands/agents/transfer-workspace.d.ts +20 -0
  232. package/dist/commands/agents/transfer-workspace.js +49 -0
  233. package/dist/commands/agents/triggers/create.d.ts +93 -0
  234. package/dist/commands/agents/triggers/create.js +324 -0
  235. package/dist/commands/agents/triggers/delete.d.ts +18 -0
  236. package/dist/commands/agents/triggers/delete.js +64 -0
  237. package/dist/commands/agents/triggers/disable.d.ts +18 -0
  238. package/dist/commands/agents/triggers/disable.js +42 -0
  239. package/dist/commands/agents/triggers/enable.d.ts +14 -0
  240. package/dist/commands/agents/triggers/enable.js +38 -0
  241. package/dist/commands/agents/triggers/fire.d.ts +20 -0
  242. package/dist/commands/agents/triggers/fire.js +56 -0
  243. package/dist/commands/agents/triggers/list.d.ts +30 -0
  244. package/dist/commands/agents/triggers/list.js +62 -0
  245. package/dist/commands/agents/triggers/policy.d.ts +20 -0
  246. package/dist/commands/agents/triggers/policy.js +79 -0
  247. package/dist/commands/agents/triggers/replay.d.ts +15 -0
  248. package/dist/commands/agents/triggers/replay.js +55 -0
  249. package/dist/commands/agents/triggers/runs.d.ts +22 -0
  250. package/dist/commands/agents/triggers/runs.js +74 -0
  251. package/dist/commands/agents/triggers/show.d.ts +19 -0
  252. package/dist/commands/agents/triggers/show.js +44 -0
  253. package/dist/commands/agents/triggers/update.d.ts +80 -0
  254. package/dist/commands/agents/triggers/update.js +254 -0
  255. package/dist/commands/agents/upcoming.d.ts +36 -0
  256. package/dist/commands/agents/upcoming.js +120 -0
  257. package/dist/commands/agents/update.d.ts +44 -0
  258. package/dist/commands/agents/update.js +129 -0
  259. package/dist/commands/agents/versions.d.ts +26 -0
  260. package/dist/commands/agents/versions.js +94 -0
  261. package/dist/commands/agents/visibility.d.ts +19 -0
  262. package/dist/commands/agents/visibility.js +65 -0
  263. package/dist/commands/balance/history.d.ts +24 -0
  264. package/dist/commands/balance/history.js +89 -0
  265. package/dist/commands/balance/show.d.ts +45 -0
  266. package/dist/commands/balance/show.js +211 -0
  267. package/dist/commands/balance/statement.d.ts +89 -0
  268. package/dist/commands/balance/statement.js +249 -0
  269. package/dist/commands/balance/usage.d.ts +22 -0
  270. package/dist/commands/balance/usage.js +106 -0
  271. package/dist/commands/browser/doctor.d.ts +8 -0
  272. package/dist/commands/browser/doctor.js +15 -0
  273. package/dist/commands/browser/install.d.ts +11 -0
  274. package/dist/commands/browser/install.js +27 -0
  275. package/dist/commands/browser/mcp-config.d.ts +5 -0
  276. package/dist/commands/browser/mcp-config.js +12 -0
  277. package/dist/commands/browser/skill/show.d.ts +8 -0
  278. package/dist/commands/browser/skill/show.js +15 -0
  279. package/dist/commands/browser/status.d.ts +8 -0
  280. package/dist/commands/browser/status.js +15 -0
  281. package/dist/commands/browser/uninstall.d.ts +11 -0
  282. package/dist/commands/browser/uninstall.js +27 -0
  283. package/dist/commands/browser.d.ts +19 -0
  284. package/dist/commands/browser.js +52 -0
  285. package/dist/commands/characters/list.d.ts +11 -0
  286. package/dist/commands/characters/list.js +51 -0
  287. package/dist/commands/chats/agents/add.d.ts +13 -0
  288. package/dist/commands/chats/agents/add.js +44 -0
  289. package/dist/commands/chats/agents/remove.d.ts +13 -0
  290. package/dist/commands/chats/agents/remove.js +39 -0
  291. package/dist/commands/chats/create.d.ts +45 -0
  292. package/dist/commands/chats/create.js +125 -0
  293. package/dist/commands/chats/delete.d.ts +12 -0
  294. package/dist/commands/chats/delete.js +46 -0
  295. package/dist/commands/chats/files/delete.d.ts +13 -0
  296. package/dist/commands/chats/files/delete.js +50 -0
  297. package/dist/commands/chats/files/list.d.ts +10 -0
  298. package/dist/commands/chats/files/list.js +51 -0
  299. package/dist/commands/chats/files/move.d.ts +14 -0
  300. package/dist/commands/chats/files/move.js +41 -0
  301. package/dist/commands/chats/files/rename.d.ts +14 -0
  302. package/dist/commands/chats/files/rename.js +42 -0
  303. package/dist/commands/chats/folders/create.d.ts +11 -0
  304. package/dist/commands/chats/folders/create.js +38 -0
  305. package/dist/commands/chats/folders/delete.d.ts +13 -0
  306. package/dist/commands/chats/folders/delete.js +50 -0
  307. package/dist/commands/chats/folders/list.d.ts +10 -0
  308. package/dist/commands/chats/folders/list.js +49 -0
  309. package/dist/commands/chats/folders/update.d.ts +14 -0
  310. package/dist/commands/chats/folders/update.js +42 -0
  311. package/dist/commands/chats/join.d.ts +12 -0
  312. package/dist/commands/chats/join.js +35 -0
  313. package/dist/commands/chats/list.d.ts +30 -0
  314. package/dist/commands/chats/list.js +98 -0
  315. package/dist/commands/chats/messages.d.ts +15 -0
  316. package/dist/commands/chats/messages.js +59 -0
  317. package/dist/commands/chats/preferences/show.d.ts +9 -0
  318. package/dist/commands/chats/preferences/show.js +32 -0
  319. package/dist/commands/chats/preferences/update.d.ts +13 -0
  320. package/dist/commands/chats/preferences/update.js +50 -0
  321. package/dist/commands/chats/send.d.ts +27 -0
  322. package/dist/commands/chats/send.js +191 -0
  323. package/dist/commands/chats/show.d.ts +12 -0
  324. package/dist/commands/chats/show.js +64 -0
  325. package/dist/commands/chats/spaces/create.d.ts +12 -0
  326. package/dist/commands/chats/spaces/create.js +52 -0
  327. package/dist/commands/chats/spaces/link.d.ts +13 -0
  328. package/dist/commands/chats/spaces/link.js +36 -0
  329. package/dist/commands/chats/spaces/list.d.ts +10 -0
  330. package/dist/commands/chats/spaces/list.js +49 -0
  331. package/dist/commands/chats/spaces/unlink.d.ts +13 -0
  332. package/dist/commands/chats/spaces/unlink.js +36 -0
  333. package/dist/commands/chats/triggers/set.d.ts +32 -0
  334. package/dist/commands/chats/triggers/set.js +127 -0
  335. package/dist/commands/chats/triggers/show.d.ts +12 -0
  336. package/dist/commands/chats/triggers/show.js +46 -0
  337. package/dist/commands/chats/update.d.ts +15 -0
  338. package/dist/commands/chats/update.js +54 -0
  339. package/dist/commands/chats/widgets/create.d.ts +13 -0
  340. package/dist/commands/chats/widgets/create.js +51 -0
  341. package/dist/commands/chats/widgets/delete.d.ts +13 -0
  342. package/dist/commands/chats/widgets/delete.js +47 -0
  343. package/dist/commands/chats/widgets/list.d.ts +10 -0
  344. package/dist/commands/chats/widgets/list.js +49 -0
  345. package/dist/commands/chats/widgets/update.d.ts +16 -0
  346. package/dist/commands/chats/widgets/update.js +54 -0
  347. package/dist/commands/code/acp.d.ts +20 -0
  348. package/dist/commands/code/acp.js +46 -0
  349. package/dist/commands/code/doctor.d.ts +21 -0
  350. package/dist/commands/code/doctor.js +39 -0
  351. package/dist/commands/code/handover.d.ts +47 -0
  352. package/dist/commands/code/handover.js +177 -0
  353. package/dist/commands/code/index.d.ts +37 -0
  354. package/dist/commands/code/index.js +105 -0
  355. package/dist/commands/code/migrate.d.ts +26 -0
  356. package/dist/commands/code/migrate.js +62 -0
  357. package/dist/commands/code/oversky-agent.d.ts +63 -0
  358. package/dist/commands/code/oversky-agent.js +201 -0
  359. package/dist/commands/code/run.d.ts +13 -0
  360. package/dist/commands/code/run.js +36 -0
  361. package/dist/commands/commands.d.ts +16 -0
  362. package/dist/commands/commands.js +131 -0
  363. package/dist/commands/commitments/action-history.d.ts +21 -0
  364. package/dist/commands/commitments/action-history.js +40 -0
  365. package/dist/commands/commitments/analytics/detail.d.ts +25 -0
  366. package/dist/commands/commitments/analytics/detail.js +51 -0
  367. package/dist/commands/commitments/analytics/index.d.ts +34 -0
  368. package/dist/commands/commitments/analytics/index.js +107 -0
  369. package/dist/commands/commitments/analytics/replay.d.ts +22 -0
  370. package/dist/commands/commitments/analytics/replay.js +45 -0
  371. package/dist/commands/commitments/attach.d.ts +25 -0
  372. package/dist/commands/commitments/attach.js +81 -0
  373. package/dist/commands/commitments/autonomy-requests/decide.d.ts +26 -0
  374. package/dist/commands/commitments/autonomy-requests/decide.js +58 -0
  375. package/dist/commands/commitments/autonomy.d.ts +34 -0
  376. package/dist/commands/commitments/autonomy.js +68 -0
  377. package/dist/commands/commitments/cadence-decisions.d.ts +17 -0
  378. package/dist/commands/commitments/cadence-decisions.js +36 -0
  379. package/dist/commands/commitments/case.d.ts +12 -0
  380. package/dist/commands/commitments/case.js +26 -0
  381. package/dist/commands/commitments/cases.d.ts +13 -0
  382. package/dist/commands/commitments/cases.js +32 -0
  383. package/dist/commands/commitments/check-now.d.ts +22 -0
  384. package/dist/commands/commitments/check-now.js +76 -0
  385. package/dist/commands/commitments/checks.d.ts +21 -0
  386. package/dist/commands/commitments/checks.js +44 -0
  387. package/dist/commands/commitments/complete.d.ts +17 -0
  388. package/dist/commands/commitments/complete.js +40 -0
  389. package/dist/commands/commitments/create.d.ts +51 -0
  390. package/dist/commands/commitments/create.js +236 -0
  391. package/dist/commands/commitments/decide-remediation.d.ts +14 -0
  392. package/dist/commands/commitments/decide-remediation.js +38 -0
  393. package/dist/commands/commitments/delete.d.ts +27 -0
  394. package/dist/commands/commitments/delete.js +72 -0
  395. package/dist/commands/commitments/detach.d.ts +23 -0
  396. package/dist/commands/commitments/detach.js +77 -0
  397. package/dist/commands/commitments/effective-policy.d.ts +13 -0
  398. package/dist/commands/commitments/effective-policy.js +37 -0
  399. package/dist/commands/commitments/endpoints/connect.d.ts +25 -0
  400. package/dist/commands/commitments/endpoints/connect.js +78 -0
  401. package/dist/commands/commitments/endpoints/create.d.ts +32 -0
  402. package/dist/commands/commitments/endpoints/create.js +80 -0
  403. package/dist/commands/commitments/endpoints/delete.d.ts +20 -0
  404. package/dist/commands/commitments/endpoints/delete.js +57 -0
  405. package/dist/commands/commitments/endpoints/health.d.ts +22 -0
  406. package/dist/commands/commitments/endpoints/health.js +54 -0
  407. package/dist/commands/commitments/endpoints/list.d.ts +18 -0
  408. package/dist/commands/commitments/endpoints/list.js +41 -0
  409. package/dist/commands/commitments/endpoints/revoke.d.ts +21 -0
  410. package/dist/commands/commitments/endpoints/revoke.js +58 -0
  411. package/dist/commands/commitments/execute-remediation.d.ts +13 -0
  412. package/dist/commands/commitments/execute-remediation.js +29 -0
  413. package/dist/commands/commitments/export.d.ts +20 -0
  414. package/dist/commands/commitments/export.js +45 -0
  415. package/dist/commands/commitments/feedback.d.ts +25 -0
  416. package/dist/commands/commitments/feedback.js +59 -0
  417. package/dist/commands/commitments/fork.d.ts +20 -0
  418. package/dist/commands/commitments/fork.js +44 -0
  419. package/dist/commands/commitments/goals/link.d.ts +23 -0
  420. package/dist/commands/commitments/goals/link.js +41 -0
  421. package/dist/commands/commitments/goals/unlink.d.ts +19 -0
  422. package/dist/commands/commitments/goals/unlink.js +37 -0
  423. package/dist/commands/commitments/hypotheses.d.ts +27 -0
  424. package/dist/commands/commitments/hypotheses.js +60 -0
  425. package/dist/commands/commitments/import.d.ts +18 -0
  426. package/dist/commands/commitments/import.js +57 -0
  427. package/dist/commands/commitments/ledger.d.ts +21 -0
  428. package/dist/commands/commitments/ledger.js +49 -0
  429. package/dist/commands/commitments/lineage.d.ts +20 -0
  430. package/dist/commands/commitments/lineage.js +43 -0
  431. package/dist/commands/commitments/links/create.d.ts +15 -0
  432. package/dist/commands/commitments/links/create.js +58 -0
  433. package/dist/commands/commitments/links/detach.d.ts +12 -0
  434. package/dist/commands/commitments/links/detach.js +30 -0
  435. package/dist/commands/commitments/links/list.d.ts +12 -0
  436. package/dist/commands/commitments/links/list.js +41 -0
  437. package/dist/commands/commitments/links/update.d.ts +14 -0
  438. package/dist/commands/commitments/links/update.js +45 -0
  439. package/dist/commands/commitments/list.d.ts +21 -0
  440. package/dist/commands/commitments/list.js +64 -0
  441. package/dist/commands/commitments/metrics.d.ts +20 -0
  442. package/dist/commands/commitments/metrics.js +43 -0
  443. package/dist/commands/commitments/observations.d.ts +31 -0
  444. package/dist/commands/commitments/observations.js +64 -0
  445. package/dist/commands/commitments/open.d.ts +13 -0
  446. package/dist/commands/commitments/open.js +50 -0
  447. package/dist/commands/commitments/operating-review.d.ts +11 -0
  448. package/dist/commands/commitments/operating-review.js +99 -0
  449. package/dist/commands/commitments/pack/bind.d.ts +24 -0
  450. package/dist/commands/commitments/pack/bind.js +88 -0
  451. package/dist/commands/commitments/pack/list.d.ts +13 -0
  452. package/dist/commands/commitments/pack/list.js +52 -0
  453. package/dist/commands/commitments/pack/plan.d.ts +22 -0
  454. package/dist/commands/commitments/pack/plan.js +65 -0
  455. package/dist/commands/commitments/pack/preflight.d.ts +28 -0
  456. package/dist/commands/commitments/pack/preflight.js +85 -0
  457. package/dist/commands/commitments/pack/promote.d.ts +19 -0
  458. package/dist/commands/commitments/pack/promote.js +42 -0
  459. package/dist/commands/commitments/pack/shadow.d.ts +19 -0
  460. package/dist/commands/commitments/pack/shadow.js +40 -0
  461. package/dist/commands/commitments/pause.d.ts +16 -0
  462. package/dist/commands/commitments/pause.js +36 -0
  463. package/dist/commands/commitments/plan.d.ts +35 -0
  464. package/dist/commands/commitments/plan.js +126 -0
  465. package/dist/commands/commitments/preflight.d.ts +39 -0
  466. package/dist/commands/commitments/preflight.js +98 -0
  467. package/dist/commands/commitments/propose-remediation.d.ts +13 -0
  468. package/dist/commands/commitments/propose-remediation.js +40 -0
  469. package/dist/commands/commitments/reflect.d.ts +21 -0
  470. package/dist/commands/commitments/reflect.js +66 -0
  471. package/dist/commands/commitments/reflection-decision.d.ts +13 -0
  472. package/dist/commands/commitments/reflection-decision.js +37 -0
  473. package/dist/commands/commitments/reflection.d.ts +11 -0
  474. package/dist/commands/commitments/reflection.js +25 -0
  475. package/dist/commands/commitments/remediate.d.ts +30 -0
  476. package/dist/commands/commitments/remediate.js +65 -0
  477. package/dist/commands/commitments/remediation-proposal.d.ts +12 -0
  478. package/dist/commands/commitments/remediation-proposal.js +26 -0
  479. package/dist/commands/commitments/remediation-proposals.d.ts +14 -0
  480. package/dist/commands/commitments/remediation-proposals.js +34 -0
  481. package/dist/commands/commitments/reports.d.ts +26 -0
  482. package/dist/commands/commitments/reports.js +125 -0
  483. package/dist/commands/commitments/resume.d.ts +17 -0
  484. package/dist/commands/commitments/resume.js +37 -0
  485. package/dist/commands/commitments/show.d.ts +20 -0
  486. package/dist/commands/commitments/show.js +58 -0
  487. package/dist/commands/commitments/subject.d.ts +30 -0
  488. package/dist/commands/commitments/subject.js +115 -0
  489. package/dist/commands/commitments/trace.d.ts +18 -0
  490. package/dist/commands/commitments/trace.js +44 -0
  491. package/dist/commands/commitments/trigger-status.d.ts +27 -0
  492. package/dist/commands/commitments/trigger-status.js +111 -0
  493. package/dist/commands/commitments/update.d.ts +43 -0
  494. package/dist/commands/commitments/update.js +194 -0
  495. package/dist/commands/commitments/wake-capabilities.d.ts +22 -0
  496. package/dist/commands/commitments/wake-capabilities.js +61 -0
  497. package/dist/commands/compass/archive.d.ts +23 -0
  498. package/dist/commands/compass/archive.js +64 -0
  499. package/dist/commands/compass/commitments.d.ts +20 -0
  500. package/dist/commands/compass/commitments.js +58 -0
  501. package/dist/commands/compass/create.d.ts +39 -0
  502. package/dist/commands/compass/create.js +91 -0
  503. package/dist/commands/compass/list.d.ts +18 -0
  504. package/dist/commands/compass/list.js +45 -0
  505. package/dist/commands/compass/revert.d.ts +23 -0
  506. package/dist/commands/compass/revert.js +56 -0
  507. package/dist/commands/compass/revisions.d.ts +20 -0
  508. package/dist/commands/compass/revisions.js +46 -0
  509. package/dist/commands/compass/show.d.ts +21 -0
  510. package/dist/commands/compass/show.js +49 -0
  511. package/dist/commands/compass/tactic.d.ts +23 -0
  512. package/dist/commands/compass/tactic.js +53 -0
  513. package/dist/commands/compass/trace.d.ts +18 -0
  514. package/dist/commands/compass/trace.js +41 -0
  515. package/dist/commands/compass/update.d.ts +30 -0
  516. package/dist/commands/compass/update.js +82 -0
  517. package/dist/commands/completion/index.d.ts +13 -0
  518. package/dist/commands/completion/index.js +59 -0
  519. package/dist/commands/completion/script.d.ts +9 -0
  520. package/dist/commands/completion/script.js +24 -0
  521. package/dist/commands/completion/values.d.ts +10 -0
  522. package/dist/commands/completion/values.js +27 -0
  523. package/dist/commands/context.d.ts +10 -0
  524. package/dist/commands/context.js +130 -0
  525. package/dist/commands/convos/archive.d.ts +12 -0
  526. package/dist/commands/convos/archive.js +38 -0
  527. package/dist/commands/convos/delete.d.ts +12 -0
  528. package/dist/commands/convos/delete.js +49 -0
  529. package/dist/commands/convos/duplicate.d.ts +13 -0
  530. package/dist/commands/convos/duplicate.js +42 -0
  531. package/dist/commands/convos/fork.d.ts +16 -0
  532. package/dist/commands/convos/fork.js +56 -0
  533. package/dist/commands/convos/handover.d.ts +29 -0
  534. package/dist/commands/convos/handover.js +120 -0
  535. package/dist/commands/convos/import.d.ts +12 -0
  536. package/dist/commands/convos/import.js +101 -0
  537. package/dist/commands/convos/list.d.ts +16 -0
  538. package/dist/commands/convos/list.js +129 -0
  539. package/dist/commands/convos/messages.d.ts +30 -0
  540. package/dist/commands/convos/messages.js +97 -0
  541. package/dist/commands/convos/search.d.ts +27 -0
  542. package/dist/commands/convos/search.js +88 -0
  543. package/dist/commands/convos/show.d.ts +33 -0
  544. package/dist/commands/convos/show.js +118 -0
  545. package/dist/commands/convos/unarchive.d.ts +12 -0
  546. package/dist/commands/convos/unarchive.js +38 -0
  547. package/dist/commands/convos/update.d.ts +14 -0
  548. package/dist/commands/convos/update.js +59 -0
  549. package/dist/commands/create-token.d.ts +53 -0
  550. package/dist/commands/create-token.js +150 -0
  551. package/dist/commands/daemon/byok.d.ts +12 -0
  552. package/dist/commands/daemon/byok.js +33 -0
  553. package/dist/commands/daemon/index.d.ts +13 -0
  554. package/dist/commands/daemon/index.js +40 -0
  555. package/dist/commands/daemon/install.d.ts +18 -0
  556. package/dist/commands/daemon/install.js +35 -0
  557. package/dist/commands/daemon/logs.d.ts +60 -0
  558. package/dist/commands/daemon/logs.js +177 -0
  559. package/dist/commands/daemon/start.d.ts +6 -0
  560. package/dist/commands/daemon/start.js +23 -0
  561. package/dist/commands/daemon/status.d.ts +6 -0
  562. package/dist/commands/daemon/status.js +23 -0
  563. package/dist/commands/daemon/stop.d.ts +6 -0
  564. package/dist/commands/daemon/stop.js +23 -0
  565. package/dist/commands/daemon/uninstall.d.ts +18 -0
  566. package/dist/commands/daemon/uninstall.js +35 -0
  567. package/dist/commands/daemon/usage.d.ts +13 -0
  568. package/dist/commands/daemon/usage.js +68 -0
  569. package/dist/commands/daemons.d.ts +11 -0
  570. package/dist/commands/daemons.js +17 -0
  571. package/dist/commands/dm/list.d.ts +9 -0
  572. package/dist/commands/dm/list.js +46 -0
  573. package/dist/commands/dm/messages.d.ts +14 -0
  574. package/dist/commands/dm/messages.js +130 -0
  575. package/dist/commands/dm/show.d.ts +13 -0
  576. package/dist/commands/dm/show.js +74 -0
  577. package/dist/commands/dm/thread/broadcast.d.ts +29 -0
  578. package/dist/commands/dm/thread/broadcast.js +117 -0
  579. package/dist/commands/dm/thread/follow.d.ts +17 -0
  580. package/dist/commands/dm/thread/follow.js +90 -0
  581. package/dist/commands/dm/thread/messages.d.ts +18 -0
  582. package/dist/commands/dm/thread/messages.js +110 -0
  583. package/dist/commands/dm/thread/mute.d.ts +17 -0
  584. package/dist/commands/dm/thread/mute.js +88 -0
  585. package/dist/commands/dm/thread/share.d.ts +16 -0
  586. package/dist/commands/dm/thread/share.js +85 -0
  587. package/dist/commands/dm/thread/show.d.ts +16 -0
  588. package/dist/commands/dm/thread/show.js +88 -0
  589. package/dist/commands/dm/threads.d.ts +17 -0
  590. package/dist/commands/dm/threads.js +92 -0
  591. package/dist/commands/doctor.d.ts +37 -0
  592. package/dist/commands/doctor.js +378 -0
  593. package/dist/commands/engagement/annotate.d.ts +15 -0
  594. package/dist/commands/engagement/annotate.js +69 -0
  595. package/dist/commands/engagement/continue.d.ts +13 -0
  596. package/dist/commands/engagement/continue.js +50 -0
  597. package/dist/commands/engagement/react.d.ts +14 -0
  598. package/dist/commands/engagement/react.js +56 -0
  599. package/dist/commands/engagement/reactions.d.ts +13 -0
  600. package/dist/commands/engagement/reactions.js +68 -0
  601. package/dist/commands/engagement/share.d.ts +16 -0
  602. package/dist/commands/engagement/share.js +67 -0
  603. package/dist/commands/feeds/create.d.ts +15 -0
  604. package/dist/commands/feeds/create.js +56 -0
  605. package/dist/commands/feeds/delete.d.ts +12 -0
  606. package/dist/commands/feeds/delete.js +49 -0
  607. package/dist/commands/feeds/list.d.ts +12 -0
  608. package/dist/commands/feeds/list.js +76 -0
  609. package/dist/commands/feeds/update.d.ts +16 -0
  610. package/dist/commands/feeds/update.js +61 -0
  611. package/dist/commands/generate-recovery-code.d.ts +24 -0
  612. package/dist/commands/generate-recovery-code.js +78 -0
  613. package/dist/commands/github/allow-tools.d.ts +16 -0
  614. package/dist/commands/github/allow-tools.js +80 -0
  615. package/dist/commands/github/app/install.d.ts +25 -0
  616. package/dist/commands/github/app/install.js +54 -0
  617. package/dist/commands/github/app/status.d.ts +19 -0
  618. package/dist/commands/github/app/status.js +67 -0
  619. package/dist/commands/github/connect.d.ts +29 -0
  620. package/dist/commands/github/connect.js +109 -0
  621. package/dist/commands/github/connections.d.ts +14 -0
  622. package/dist/commands/github/connections.js +62 -0
  623. package/dist/commands/github/disconnect.d.ts +14 -0
  624. package/dist/commands/github/disconnect.js +50 -0
  625. package/dist/commands/github/finalize.d.ts +18 -0
  626. package/dist/commands/github/finalize.js +64 -0
  627. package/dist/commands/github/reconnect.d.ts +16 -0
  628. package/dist/commands/github/reconnect.js +94 -0
  629. package/dist/commands/github/run.d.ts +20 -0
  630. package/dist/commands/github/run.js +104 -0
  631. package/dist/commands/github/tools.d.ts +19 -0
  632. package/dist/commands/github/tools.js +82 -0
  633. package/dist/commands/goals/archive.d.ts +13 -0
  634. package/dist/commands/goals/archive.js +41 -0
  635. package/dist/commands/goals/briefing/disable.d.ts +9 -0
  636. package/dist/commands/goals/briefing/disable.js +32 -0
  637. package/dist/commands/goals/briefing/enable.d.ts +10 -0
  638. package/dist/commands/goals/briefing/enable.js +35 -0
  639. package/dist/commands/goals/briefing/preview.d.ts +9 -0
  640. package/dist/commands/goals/briefing/preview.js +40 -0
  641. package/dist/commands/goals/create.d.ts +20 -0
  642. package/dist/commands/goals/create.js +139 -0
  643. package/dist/commands/goals/delete.d.ts +12 -0
  644. package/dist/commands/goals/delete.js +45 -0
  645. package/dist/commands/goals/descendants.d.ts +13 -0
  646. package/dist/commands/goals/descendants.js +76 -0
  647. package/dist/commands/goals/key-results/create.d.ts +26 -0
  648. package/dist/commands/goals/key-results/create.js +83 -0
  649. package/dist/commands/goals/key-results/delete.d.ts +18 -0
  650. package/dist/commands/goals/key-results/delete.js +41 -0
  651. package/dist/commands/goals/key-results/list.d.ts +21 -0
  652. package/dist/commands/goals/key-results/list.js +73 -0
  653. package/dist/commands/goals/key-results/show.d.ts +19 -0
  654. package/dist/commands/goals/key-results/show.js +56 -0
  655. package/dist/commands/goals/key-results/update.d.ts +27 -0
  656. package/dist/commands/goals/key-results/update.js +92 -0
  657. package/dist/commands/goals/labels/add.d.ts +13 -0
  658. package/dist/commands/goals/labels/add.js +42 -0
  659. package/dist/commands/goals/labels/list.d.ts +12 -0
  660. package/dist/commands/goals/labels/list.js +72 -0
  661. package/dist/commands/goals/labels/remove.d.ts +13 -0
  662. package/dist/commands/goals/labels/remove.js +38 -0
  663. package/dist/commands/goals/list.d.ts +17 -0
  664. package/dist/commands/goals/list.js +112 -0
  665. package/dist/commands/goals/open.d.ts +13 -0
  666. package/dist/commands/goals/open.js +42 -0
  667. package/dist/commands/goals/plan-now.d.ts +25 -0
  668. package/dist/commands/goals/plan-now.js +68 -0
  669. package/dist/commands/goals/planner-config.d.ts +30 -0
  670. package/dist/commands/goals/planner-config.js +102 -0
  671. package/dist/commands/goals/revisions.d.ts +12 -0
  672. package/dist/commands/goals/revisions.js +54 -0
  673. package/dist/commands/goals/show.d.ts +12 -0
  674. package/dist/commands/goals/show.js +53 -0
  675. package/dist/commands/goals/tasks.d.ts +15 -0
  676. package/dist/commands/goals/tasks.js +106 -0
  677. package/dist/commands/goals/update.d.ts +26 -0
  678. package/dist/commands/goals/update.js +116 -0
  679. package/dist/commands/google-chat/list-channels.d.ts +11 -0
  680. package/dist/commands/google-chat/list-channels.js +14 -0
  681. package/dist/commands/google-chat/list-users.d.ts +12 -0
  682. package/dist/commands/google-chat/list-users.js +19 -0
  683. package/dist/commands/google-chat/read-channel.d.ts +13 -0
  684. package/dist/commands/google-chat/read-channel.js +20 -0
  685. package/dist/commands/google-chat/read-thread.d.ts +14 -0
  686. package/dist/commands/google-chat/read-thread.js +23 -0
  687. package/dist/commands/google-chat/run.d.ts +15 -0
  688. package/dist/commands/google-chat/run.js +17 -0
  689. package/dist/commands/google-chat/search.d.ts +13 -0
  690. package/dist/commands/google-chat/search.js +21 -0
  691. package/dist/commands/google-chat/send-as-agent.d.ts +16 -0
  692. package/dist/commands/google-chat/send-as-agent.js +23 -0
  693. package/dist/commands/google-chat/tools.d.ts +10 -0
  694. package/dist/commands/google-chat/tools.js +14 -0
  695. package/dist/commands/grants/create.d.ts +30 -0
  696. package/dist/commands/grants/create.js +84 -0
  697. package/dist/commands/grants/delete.d.ts +13 -0
  698. package/dist/commands/grants/delete.js +27 -0
  699. package/dist/commands/grants/list.d.ts +18 -0
  700. package/dist/commands/grants/list.js +41 -0
  701. package/dist/commands/grants/revoke.d.ts +19 -0
  702. package/dist/commands/grants/revoke.js +36 -0
  703. package/dist/commands/grants/rotate.d.ts +19 -0
  704. package/dist/commands/grants/rotate.js +47 -0
  705. package/dist/commands/harnesses/alias.d.ts +21 -0
  706. package/dist/commands/harnesses/alias.js +50 -0
  707. package/dist/commands/harnesses/forget.d.ts +20 -0
  708. package/dist/commands/harnesses/forget.js +59 -0
  709. package/dist/commands/harnesses/grants/add.d.ts +28 -0
  710. package/dist/commands/harnesses/grants/add.js +87 -0
  711. package/dist/commands/harnesses/grants/list.d.ts +14 -0
  712. package/dist/commands/harnesses/grants/list.js +60 -0
  713. package/dist/commands/harnesses/grants/revoke.d.ts +14 -0
  714. package/dist/commands/harnesses/grants/revoke.js +41 -0
  715. package/dist/commands/harnesses/install-token.d.ts +21 -0
  716. package/dist/commands/harnesses/install-token.js +48 -0
  717. package/dist/commands/harnesses/leases/action.d.ts +21 -0
  718. package/dist/commands/harnesses/leases/action.js +69 -0
  719. package/dist/commands/harnesses/leases/billing.d.ts +21 -0
  720. package/dist/commands/harnesses/leases/billing.js +66 -0
  721. package/dist/commands/harnesses/leases/list.d.ts +9 -0
  722. package/dist/commands/harnesses/leases/list.js +60 -0
  723. package/dist/commands/harnesses/leases/release.d.ts +21 -0
  724. package/dist/commands/harnesses/leases/release.js +59 -0
  725. package/dist/commands/harnesses/leases/show.d.ts +12 -0
  726. package/dist/commands/harnesses/leases/show.js +84 -0
  727. package/dist/commands/harnesses/list.d.ts +144 -0
  728. package/dist/commands/harnesses/list.js +247 -0
  729. package/dist/commands/harnesses/models.d.ts +19 -0
  730. package/dist/commands/harnesses/models.js +63 -0
  731. package/dist/commands/harnesses/ping.d.ts +22 -0
  732. package/dist/commands/harnesses/ping.js +108 -0
  733. package/dist/commands/harnesses/products.d.ts +9 -0
  734. package/dist/commands/harnesses/products.js +63 -0
  735. package/dist/commands/harnesses/quota.d.ts +47 -0
  736. package/dist/commands/harnesses/quota.js +208 -0
  737. package/dist/commands/harnesses/set-default.d.ts +21 -0
  738. package/dist/commands/harnesses/set-default.js +47 -0
  739. package/dist/commands/harnesses/show.d.ts +12 -0
  740. package/dist/commands/harnesses/show.js +60 -0
  741. package/dist/commands/harnesses/update.d.ts +25 -0
  742. package/dist/commands/harnesses/update.js +63 -0
  743. package/dist/commands/harnesses/usage.d.ts +47 -0
  744. package/dist/commands/harnesses/usage.js +128 -0
  745. package/dist/commands/inbox/index.d.ts +36 -0
  746. package/dist/commands/inbox/index.js +258 -0
  747. package/dist/commands/ingress/create.d.ts +22 -0
  748. package/dist/commands/ingress/create.js +68 -0
  749. package/dist/commands/ingress/delete.d.ts +13 -0
  750. package/dist/commands/ingress/delete.js +25 -0
  751. package/dist/commands/ingress/list.d.ts +15 -0
  752. package/dist/commands/ingress/list.js +32 -0
  753. package/dist/commands/ingress/rotate.d.ts +13 -0
  754. package/dist/commands/ingress/rotate.js +33 -0
  755. package/dist/commands/initiatives/decide.d.ts +25 -0
  756. package/dist/commands/initiatives/decide.js +111 -0
  757. package/dist/commands/initiatives/list.d.ts +20 -0
  758. package/dist/commands/initiatives/list.js +69 -0
  759. package/dist/commands/instructions/activate.d.ts +12 -0
  760. package/dist/commands/instructions/activate.js +30 -0
  761. package/dist/commands/instructions/archive-version.d.ts +12 -0
  762. package/dist/commands/instructions/archive-version.js +30 -0
  763. package/dist/commands/instructions/create.d.ts +13 -0
  764. package/dist/commands/instructions/create.js +48 -0
  765. package/dist/commands/instructions/delete.d.ts +12 -0
  766. package/dist/commands/instructions/delete.js +34 -0
  767. package/dist/commands/instructions/diff.d.ts +22 -0
  768. package/dist/commands/instructions/diff.js +81 -0
  769. package/dist/commands/instructions/install.d.ts +17 -0
  770. package/dist/commands/instructions/install.js +122 -0
  771. package/dist/commands/instructions/list.d.ts +10 -0
  772. package/dist/commands/instructions/list.js +46 -0
  773. package/dist/commands/instructions/purge-target.d.ts +13 -0
  774. package/dist/commands/instructions/purge-target.js +44 -0
  775. package/dist/commands/instructions/remove.d.ts +11 -0
  776. package/dist/commands/instructions/remove.js +33 -0
  777. package/dist/commands/instructions/restore-target.d.ts +11 -0
  778. package/dist/commands/instructions/restore-target.js +27 -0
  779. package/dist/commands/instructions/restore.d.ts +11 -0
  780. package/dist/commands/instructions/restore.js +27 -0
  781. package/dist/commands/instructions/show.d.ts +12 -0
  782. package/dist/commands/instructions/show.js +72 -0
  783. package/dist/commands/instructions/status.d.ts +9 -0
  784. package/dist/commands/instructions/status.js +103 -0
  785. package/dist/commands/instructions/update-target.d.ts +15 -0
  786. package/dist/commands/instructions/update-target.js +42 -0
  787. package/dist/commands/instructions/update.d.ts +17 -0
  788. package/dist/commands/instructions/update.js +66 -0
  789. package/dist/commands/integrations/connections/connect.d.ts +19 -0
  790. package/dist/commands/integrations/connections/connect.js +136 -0
  791. package/dist/commands/integrations/connections/disconnect.d.ts +17 -0
  792. package/dist/commands/integrations/connections/disconnect.js +57 -0
  793. package/dist/commands/integrations/connections/finalize.d.ts +18 -0
  794. package/dist/commands/integrations/connections/finalize.js +65 -0
  795. package/dist/commands/integrations/connections/list.d.ts +14 -0
  796. package/dist/commands/integrations/connections/list.js +62 -0
  797. package/dist/commands/integrations/connections/reconnect.d.ts +19 -0
  798. package/dist/commands/integrations/connections/reconnect.js +112 -0
  799. package/dist/commands/integrations/execute.d.ts +20 -0
  800. package/dist/commands/integrations/execute.js +97 -0
  801. package/dist/commands/integrations/search.d.ts +18 -0
  802. package/dist/commands/integrations/search.js +72 -0
  803. package/dist/commands/integrations/toolkits.d.ts +13 -0
  804. package/dist/commands/integrations/toolkits.js +51 -0
  805. package/dist/commands/integrations/tools/allow.d.ts +18 -0
  806. package/dist/commands/integrations/tools/allow.js +75 -0
  807. package/dist/commands/integrations/tools/list.d.ts +15 -0
  808. package/dist/commands/integrations/tools/list.js +65 -0
  809. package/dist/commands/labels/archive.d.ts +12 -0
  810. package/dist/commands/labels/archive.js +37 -0
  811. package/dist/commands/labels/create.d.ts +17 -0
  812. package/dist/commands/labels/create.js +74 -0
  813. package/dist/commands/labels/delete.d.ts +13 -0
  814. package/dist/commands/labels/delete.js +44 -0
  815. package/dist/commands/labels/list.d.ts +13 -0
  816. package/dist/commands/labels/list.js +75 -0
  817. package/dist/commands/labels/palette.d.ts +9 -0
  818. package/dist/commands/labels/palette.js +39 -0
  819. package/dist/commands/labels/reorder.d.ts +12 -0
  820. package/dist/commands/labels/reorder.js +57 -0
  821. package/dist/commands/labels/restore.d.ts +12 -0
  822. package/dist/commands/labels/restore.js +39 -0
  823. package/dist/commands/labels/update.d.ts +20 -0
  824. package/dist/commands/labels/update.js +94 -0
  825. package/dist/commands/lark/list-channels.d.ts +11 -0
  826. package/dist/commands/lark/list-channels.js +14 -0
  827. package/dist/commands/lark/list-users.d.ts +12 -0
  828. package/dist/commands/lark/list-users.js +19 -0
  829. package/dist/commands/lark/read-channel.d.ts +13 -0
  830. package/dist/commands/lark/read-channel.js +20 -0
  831. package/dist/commands/lark/read-thread.d.ts +14 -0
  832. package/dist/commands/lark/read-thread.js +23 -0
  833. package/dist/commands/lark/run.d.ts +15 -0
  834. package/dist/commands/lark/run.js +17 -0
  835. package/dist/commands/lark/search.d.ts +13 -0
  836. package/dist/commands/lark/search.js +21 -0
  837. package/dist/commands/lark/send-as-agent.d.ts +16 -0
  838. package/dist/commands/lark/send-as-agent.js +23 -0
  839. package/dist/commands/lark/tools.d.ts +10 -0
  840. package/dist/commands/lark/tools.js +14 -0
  841. package/dist/commands/list-daemons.d.ts +57 -0
  842. package/dist/commands/list-daemons.js +140 -0
  843. package/dist/commands/list-tokens.d.ts +17 -0
  844. package/dist/commands/list-tokens.js +80 -0
  845. package/dist/commands/login.d.ts +69 -0
  846. package/dist/commands/login.js +243 -0
  847. package/dist/commands/logout.d.ts +74 -0
  848. package/dist/commands/logout.js +260 -0
  849. package/dist/commands/machines/disconnect.d.ts +21 -0
  850. package/dist/commands/machines/disconnect.js +69 -0
  851. package/dist/commands/machines/hosted/connect.d.ts +14 -0
  852. package/dist/commands/machines/hosted/connect.js +92 -0
  853. package/dist/commands/machines/hosted/destroy.d.ts +13 -0
  854. package/dist/commands/machines/hosted/destroy.js +43 -0
  855. package/dist/commands/machines/hosted/exec.d.ts +30 -0
  856. package/dist/commands/machines/hosted/exec.js +130 -0
  857. package/dist/commands/machines/hosted/index.d.ts +6 -0
  858. package/dist/commands/machines/hosted/index.js +26 -0
  859. package/dist/commands/machines/hosted/list.d.ts +25 -0
  860. package/dist/commands/machines/hosted/list.js +98 -0
  861. package/dist/commands/machines/hosted/pause.d.ts +13 -0
  862. package/dist/commands/machines/hosted/pause.js +43 -0
  863. package/dist/commands/machines/hosted/pull.d.ts +19 -0
  864. package/dist/commands/machines/hosted/pull.js +271 -0
  865. package/dist/commands/machines/hosted/resume.d.ts +16 -0
  866. package/dist/commands/machines/hosted/resume.js +62 -0
  867. package/dist/commands/machines/hosted/start.d.ts +27 -0
  868. package/dist/commands/machines/hosted/start.js +187 -0
  869. package/dist/commands/machines/hosted/status.d.ts +17 -0
  870. package/dist/commands/machines/hosted/status.js +88 -0
  871. package/dist/commands/machines/list.d.ts +13 -0
  872. package/dist/commands/machines/list.js +60 -0
  873. package/dist/commands/machines/show.d.ts +13 -0
  874. package/dist/commands/machines/show.js +99 -0
  875. package/dist/commands/machines/update.d.ts +24 -0
  876. package/dist/commands/machines/update.js +82 -0
  877. package/dist/commands/measures/confirm.d.ts +21 -0
  878. package/dist/commands/measures/confirm.js +51 -0
  879. package/dist/commands/measures/create.d.ts +24 -0
  880. package/dist/commands/measures/create.js +65 -0
  881. package/dist/commands/measures/list.d.ts +19 -0
  882. package/dist/commands/measures/list.js +44 -0
  883. package/dist/commands/measures/record.d.ts +24 -0
  884. package/dist/commands/measures/record.js +64 -0
  885. package/dist/commands/measures/tasks.d.ts +27 -0
  886. package/dist/commands/measures/tasks.js +84 -0
  887. package/dist/commands/memory/commit.d.ts +14 -0
  888. package/dist/commands/memory/commit.js +37 -0
  889. package/dist/commands/memory/context.d.ts +16 -0
  890. package/dist/commands/memory/context.js +42 -0
  891. package/dist/commands/memory/daily-log.d.ts +13 -0
  892. package/dist/commands/memory/daily-log.js +84 -0
  893. package/dist/commands/memory/delete.d.ts +15 -0
  894. package/dist/commands/memory/delete.js +50 -0
  895. package/dist/commands/memory/list.d.ts +12 -0
  896. package/dist/commands/memory/list.js +53 -0
  897. package/dist/commands/memory/maintain.d.ts +14 -0
  898. package/dist/commands/memory/maintain.js +58 -0
  899. package/dist/commands/memory/observe.d.ts +18 -0
  900. package/dist/commands/memory/observe.js +51 -0
  901. package/dist/commands/memory/preferences.d.ts +11 -0
  902. package/dist/commands/memory/preferences.js +44 -0
  903. package/dist/commands/memory/read.d.ts +14 -0
  904. package/dist/commands/memory/read.js +43 -0
  905. package/dist/commands/memory/rebuild.d.ts +12 -0
  906. package/dist/commands/memory/rebuild.js +38 -0
  907. package/dist/commands/memory/save.d.ts +15 -0
  908. package/dist/commands/memory/save.js +72 -0
  909. package/dist/commands/memory/search.d.ts +17 -0
  910. package/dist/commands/memory/search.js +68 -0
  911. package/dist/commands/memory/show.d.ts +15 -0
  912. package/dist/commands/memory/show.js +48 -0
  913. package/dist/commands/memory/tree.d.ts +10 -0
  914. package/dist/commands/memory/tree.js +40 -0
  915. package/dist/commands/memory/update.d.ts +17 -0
  916. package/dist/commands/memory/update.js +42 -0
  917. package/dist/commands/messages/edit-artifact.d.ts +16 -0
  918. package/dist/commands/messages/edit-artifact.js +63 -0
  919. package/dist/commands/messages/feedback.d.ts +17 -0
  920. package/dist/commands/messages/feedback.js +66 -0
  921. package/dist/commands/messages/list.d.ts +38 -0
  922. package/dist/commands/messages/list.js +149 -0
  923. package/dist/commands/messages/show.d.ts +17 -0
  924. package/dist/commands/messages/show.js +79 -0
  925. package/dist/commands/messages/update-content.d.ts +15 -0
  926. package/dist/commands/messages/update-content.js +43 -0
  927. package/dist/commands/messages/update.d.ts +15 -0
  928. package/dist/commands/messages/update.js +44 -0
  929. package/dist/commands/northstars/create.d.ts +29 -0
  930. package/dist/commands/northstars/create.js +107 -0
  931. package/dist/commands/northstars/delete.d.ts +25 -0
  932. package/dist/commands/northstars/delete.js +75 -0
  933. package/dist/commands/northstars/governance/configure.d.ts +37 -0
  934. package/dist/commands/northstars/governance/configure.js +189 -0
  935. package/dist/commands/northstars/governance/show.d.ts +22 -0
  936. package/dist/commands/northstars/governance/show.js +45 -0
  937. package/dist/commands/northstars/intents/decide.d.ts +25 -0
  938. package/dist/commands/northstars/intents/decide.js +71 -0
  939. package/dist/commands/northstars/intents/list.d.ts +22 -0
  940. package/dist/commands/northstars/intents/list.js +52 -0
  941. package/dist/commands/northstars/link.d.ts +23 -0
  942. package/dist/commands/northstars/link.js +54 -0
  943. package/dist/commands/northstars/list.d.ts +18 -0
  944. package/dist/commands/northstars/list.js +42 -0
  945. package/dist/commands/northstars/recommendations/apply.d.ts +21 -0
  946. package/dist/commands/northstars/recommendations/apply.js +53 -0
  947. package/dist/commands/northstars/recommendations/dismiss.d.ts +21 -0
  948. package/dist/commands/northstars/recommendations/dismiss.js +45 -0
  949. package/dist/commands/northstars/recommendations/list.d.ts +22 -0
  950. package/dist/commands/northstars/recommendations/list.js +50 -0
  951. package/dist/commands/northstars/review-now.d.ts +21 -0
  952. package/dist/commands/northstars/review-now.js +62 -0
  953. package/dist/commands/northstars/reviews.d.ts +23 -0
  954. package/dist/commands/northstars/reviews.js +83 -0
  955. package/dist/commands/northstars/show.d.ts +25 -0
  956. package/dist/commands/northstars/show.js +57 -0
  957. package/dist/commands/northstars/unlink.d.ts +21 -0
  958. package/dist/commands/northstars/unlink.js +39 -0
  959. package/dist/commands/northstars/update.d.ts +32 -0
  960. package/dist/commands/northstars/update.js +114 -0
  961. package/dist/commands/outbox/drop.d.ts +20 -0
  962. package/dist/commands/outbox/drop.js +46 -0
  963. package/dist/commands/outbox/list.d.ts +22 -0
  964. package/dist/commands/outbox/list.js +85 -0
  965. package/dist/commands/outbox/retry.d.ts +39 -0
  966. package/dist/commands/outbox/retry.js +154 -0
  967. package/dist/commands/pair.d.ts +67 -0
  968. package/dist/commands/pair.js +351 -0
  969. package/dist/commands/payments/wallet.d.ts +10 -0
  970. package/dist/commands/payments/wallet.js +81 -0
  971. package/dist/commands/projects/activity.d.ts +25 -0
  972. package/dist/commands/projects/activity.js +80 -0
  973. package/dist/commands/projects/archive.d.ts +19 -0
  974. package/dist/commands/projects/archive.js +55 -0
  975. package/dist/commands/projects/create.d.ts +19 -0
  976. package/dist/commands/projects/create.js +76 -0
  977. package/dist/commands/projects/delete.d.ts +19 -0
  978. package/dist/commands/projects/delete.js +73 -0
  979. package/dist/commands/projects/docs/attach.d.ts +23 -0
  980. package/dist/commands/projects/docs/attach.js +65 -0
  981. package/dist/commands/projects/docs/detach.d.ts +23 -0
  982. package/dist/commands/projects/docs/detach.js +65 -0
  983. package/dist/commands/projects/docs/list.d.ts +22 -0
  984. package/dist/commands/projects/docs/list.js +67 -0
  985. package/dist/commands/projects/goals.d.ts +26 -0
  986. package/dist/commands/projects/goals.js +101 -0
  987. package/dist/commands/projects/list.d.ts +26 -0
  988. package/dist/commands/projects/list.js +102 -0
  989. package/dist/commands/projects/members.d.ts +16 -0
  990. package/dist/commands/projects/members.js +43 -0
  991. package/dist/commands/projects/open.d.ts +14 -0
  992. package/dist/commands/projects/open.js +44 -0
  993. package/dist/commands/projects/overview.d.ts +29 -0
  994. package/dist/commands/projects/overview.js +83 -0
  995. package/dist/commands/projects/promote.d.ts +30 -0
  996. package/dist/commands/projects/promote.js +84 -0
  997. package/dist/commands/projects/reorder.d.ts +13 -0
  998. package/dist/commands/projects/reorder.js +32 -0
  999. package/dist/commands/projects/revisions.d.ts +14 -0
  1000. package/dist/commands/projects/revisions.js +42 -0
  1001. package/dist/commands/projects/show.d.ts +22 -0
  1002. package/dist/commands/projects/show.js +65 -0
  1003. package/dist/commands/projects/summary.d.ts +12 -0
  1004. package/dist/commands/projects/summary.js +30 -0
  1005. package/dist/commands/projects/tasks.d.ts +28 -0
  1006. package/dist/commands/projects/tasks.js +84 -0
  1007. package/dist/commands/projects/update.d.ts +22 -0
  1008. package/dist/commands/projects/update.js +73 -0
  1009. package/dist/commands/projects/updates/add.d.ts +20 -0
  1010. package/dist/commands/projects/updates/add.js +69 -0
  1011. package/dist/commands/projects/updates/archive.d.ts +13 -0
  1012. package/dist/commands/projects/updates/archive.js +33 -0
  1013. package/dist/commands/projects/updates/cadence.d.ts +19 -0
  1014. package/dist/commands/projects/updates/cadence.js +73 -0
  1015. package/dist/commands/projects/updates/draft.d.ts +15 -0
  1016. package/dist/commands/projects/updates/draft.js +38 -0
  1017. package/dist/commands/projects/updates/edit.d.ts +19 -0
  1018. package/dist/commands/projects/updates/edit.js +80 -0
  1019. package/dist/commands/projects/updates/list.d.ts +14 -0
  1020. package/dist/commands/projects/updates/list.js +53 -0
  1021. package/dist/commands/projects/updates/post.d.ts +16 -0
  1022. package/dist/commands/projects/updates/post.js +39 -0
  1023. package/dist/commands/projects/updates/show.d.ts +13 -0
  1024. package/dist/commands/projects/updates/show.js +43 -0
  1025. package/dist/commands/projects/upsert.d.ts +19 -0
  1026. package/dist/commands/projects/upsert.js +68 -0
  1027. package/dist/commands/requests/cancel.d.ts +12 -0
  1028. package/dist/commands/requests/cancel.js +46 -0
  1029. package/dist/commands/requests/comments/add.d.ts +15 -0
  1030. package/dist/commands/requests/comments/add.js +61 -0
  1031. package/dist/commands/requests/comments/delete.d.ts +13 -0
  1032. package/dist/commands/requests/comments/delete.js +53 -0
  1033. package/dist/commands/requests/comments/list.d.ts +13 -0
  1034. package/dist/commands/requests/comments/list.js +56 -0
  1035. package/dist/commands/requests/create.d.ts +18 -0
  1036. package/dist/commands/requests/create.js +78 -0
  1037. package/dist/commands/requests/list.d.ts +11 -0
  1038. package/dist/commands/requests/list.js +58 -0
  1039. package/dist/commands/requests/pending.d.ts +9 -0
  1040. package/dist/commands/requests/pending.js +33 -0
  1041. package/dist/commands/requests/resolve.d.ts +24 -0
  1042. package/dist/commands/requests/resolve.js +99 -0
  1043. package/dist/commands/requests/show.d.ts +12 -0
  1044. package/dist/commands/requests/show.js +57 -0
  1045. package/dist/commands/revoke-daemon.d.ts +38 -0
  1046. package/dist/commands/revoke-daemon.js +142 -0
  1047. package/dist/commands/revoke-token.d.ts +23 -0
  1048. package/dist/commands/revoke-token.js +93 -0
  1049. package/dist/commands/search/agents.d.ts +38 -0
  1050. package/dist/commands/search/agents.js +105 -0
  1051. package/dist/commands/search/all.d.ts +40 -0
  1052. package/dist/commands/search/all.js +144 -0
  1053. package/dist/commands/search/skills.d.ts +12 -0
  1054. package/dist/commands/search/skills.js +72 -0
  1055. package/dist/commands/search/spaces.d.ts +27 -0
  1056. package/dist/commands/search/spaces.js +84 -0
  1057. package/dist/commands/search/tasks.d.ts +33 -0
  1058. package/dist/commands/search/tasks.js +90 -0
  1059. package/dist/commands/search/teams.d.ts +11 -0
  1060. package/dist/commands/search/teams.js +69 -0
  1061. package/dist/commands/set-capabilities.d.ts +26 -0
  1062. package/dist/commands/set-capabilities.js +130 -0
  1063. package/dist/commands/shares/create.d.ts +13 -0
  1064. package/dist/commands/shares/create.js +40 -0
  1065. package/dist/commands/shares/delete.d.ts +12 -0
  1066. package/dist/commands/shares/delete.js +43 -0
  1067. package/dist/commands/shares/get.d.ts +12 -0
  1068. package/dist/commands/shares/get.js +64 -0
  1069. package/dist/commands/shares/link-for.d.ts +12 -0
  1070. package/dist/commands/shares/link-for.js +40 -0
  1071. package/dist/commands/shares/list.d.ts +15 -0
  1072. package/dist/commands/shares/list.js +84 -0
  1073. package/dist/commands/shares/update.d.ts +12 -0
  1074. package/dist/commands/shares/update.js +35 -0
  1075. package/dist/commands/shortcuts/create.d.ts +19 -0
  1076. package/dist/commands/shortcuts/create.js +140 -0
  1077. package/dist/commands/shortcuts/delete.d.ts +12 -0
  1078. package/dist/commands/shortcuts/delete.js +45 -0
  1079. package/dist/commands/shortcuts/list.d.ts +10 -0
  1080. package/dist/commands/shortcuts/list.js +56 -0
  1081. package/dist/commands/shortcuts/reorder.d.ts +14 -0
  1082. package/dist/commands/shortcuts/reorder.js +37 -0
  1083. package/dist/commands/shortcuts/show.d.ts +12 -0
  1084. package/dist/commands/shortcuts/show.js +79 -0
  1085. package/dist/commands/shortcuts/trigger.d.ts +12 -0
  1086. package/dist/commands/shortcuts/trigger.js +53 -0
  1087. package/dist/commands/shortcuts/update.d.ts +21 -0
  1088. package/dist/commands/shortcuts/update.js +144 -0
  1089. package/dist/commands/skills/browse.d.ts +21 -0
  1090. package/dist/commands/skills/browse.js +87 -0
  1091. package/dist/commands/skills/categories.d.ts +11 -0
  1092. package/dist/commands/skills/categories.js +58 -0
  1093. package/dist/commands/skills/details.d.ts +12 -0
  1094. package/dist/commands/skills/details.js +49 -0
  1095. package/dist/commands/skills/duplicate.d.ts +21 -0
  1096. package/dist/commands/skills/duplicate.js +52 -0
  1097. package/dist/commands/skills/featured.d.ts +22 -0
  1098. package/dist/commands/skills/featured.js +61 -0
  1099. package/dist/commands/skills/install.d.ts +14 -0
  1100. package/dist/commands/skills/install.js +60 -0
  1101. package/dist/commands/skills/invocable.d.ts +21 -0
  1102. package/dist/commands/skills/invocable.js +73 -0
  1103. package/dist/commands/skills/library.d.ts +12 -0
  1104. package/dist/commands/skills/library.js +73 -0
  1105. package/dist/commands/skills/search.d.ts +12 -0
  1106. package/dist/commands/skills/search.js +62 -0
  1107. package/dist/commands/slack/list-channels.d.ts +15 -0
  1108. package/dist/commands/slack/list-channels.js +84 -0
  1109. package/dist/commands/slack/list-usergroups.d.ts +12 -0
  1110. package/dist/commands/slack/list-usergroups.js +66 -0
  1111. package/dist/commands/slack/list-users.d.ts +15 -0
  1112. package/dist/commands/slack/list-users.js +80 -0
  1113. package/dist/commands/slack/read-channel.d.ts +16 -0
  1114. package/dist/commands/slack/read-channel.js +76 -0
  1115. package/dist/commands/slack/read-thread.d.ts +15 -0
  1116. package/dist/commands/slack/read-thread.js +76 -0
  1117. package/dist/commands/slack/run.d.ts +15 -0
  1118. package/dist/commands/slack/run.js +119 -0
  1119. package/dist/commands/slack/search.d.ts +16 -0
  1120. package/dist/commands/slack/search.js +90 -0
  1121. package/dist/commands/slack/send-as-agent.d.ts +18 -0
  1122. package/dist/commands/slack/send-as-agent.js +232 -0
  1123. package/dist/commands/slack/tools.d.ts +10 -0
  1124. package/dist/commands/slack/tools.js +58 -0
  1125. package/dist/commands/space-directory-views/create.d.ts +13 -0
  1126. package/dist/commands/space-directory-views/create.js +57 -0
  1127. package/dist/commands/space-directory-views/delete.d.ts +13 -0
  1128. package/dist/commands/space-directory-views/delete.js +39 -0
  1129. package/dist/commands/space-directory-views/list.d.ts +8 -0
  1130. package/dist/commands/space-directory-views/list.js +27 -0
  1131. package/dist/commands/space-directory-views/show.d.ts +21 -0
  1132. package/dist/commands/space-directory-views/show.js +84 -0
  1133. package/dist/commands/space-directory-views/update.d.ts +16 -0
  1134. package/dist/commands/space-directory-views/update.js +64 -0
  1135. package/dist/commands/spaces/actions/add.d.ts +18 -0
  1136. package/dist/commands/spaces/actions/add.js +60 -0
  1137. package/dist/commands/spaces/actions/available.d.ts +20 -0
  1138. package/dist/commands/spaces/actions/available.js +57 -0
  1139. package/dist/commands/spaces/actions/delete.d.ts +13 -0
  1140. package/dist/commands/spaces/actions/delete.js +47 -0
  1141. package/dist/commands/spaces/actions/list.d.ts +11 -0
  1142. package/dist/commands/spaces/actions/list.js +46 -0
  1143. package/dist/commands/spaces/actions/replace.d.ts +14 -0
  1144. package/dist/commands/spaces/actions/replace.js +66 -0
  1145. package/dist/commands/spaces/actions/update.d.ts +18 -0
  1146. package/dist/commands/spaces/actions/update.js +59 -0
  1147. package/dist/commands/spaces/archive.d.ts +12 -0
  1148. package/dist/commands/spaces/archive.js +34 -0
  1149. package/dist/commands/spaces/auto-executor/preview.d.ts +11 -0
  1150. package/dist/commands/spaces/auto-executor/preview.js +26 -0
  1151. package/dist/commands/spaces/auto-executor/run.d.ts +11 -0
  1152. package/dist/commands/spaces/auto-executor/run.js +29 -0
  1153. package/dist/commands/spaces/auto-executor/update.d.ts +17 -0
  1154. package/dist/commands/spaces/auto-executor/update.js +69 -0
  1155. package/dist/commands/spaces/bootstrap.d.ts +39 -0
  1156. package/dist/commands/spaces/bootstrap.js +103 -0
  1157. package/dist/commands/spaces/briefs/delete.d.ts +14 -0
  1158. package/dist/commands/spaces/briefs/delete.js +50 -0
  1159. package/dist/commands/spaces/briefs/get.d.ts +14 -0
  1160. package/dist/commands/spaces/briefs/get.js +59 -0
  1161. package/dist/commands/spaces/briefs/list.d.ts +12 -0
  1162. package/dist/commands/spaces/briefs/list.js +61 -0
  1163. package/dist/commands/spaces/briefs/set.d.ts +17 -0
  1164. package/dist/commands/spaces/briefs/set.js +116 -0
  1165. package/dist/commands/spaces/capacity.d.ts +13 -0
  1166. package/dist/commands/spaces/capacity.js +55 -0
  1167. package/dist/commands/spaces/conversations.d.ts +14 -0
  1168. package/dist/commands/spaces/conversations.js +86 -0
  1169. package/dist/commands/spaces/create.d.ts +21 -0
  1170. package/dist/commands/spaces/create.js +121 -0
  1171. package/dist/commands/spaces/cycles/create.d.ts +16 -0
  1172. package/dist/commands/spaces/cycles/create.js +44 -0
  1173. package/dist/commands/spaces/cycles/graph.d.ts +13 -0
  1174. package/dist/commands/spaces/cycles/graph.js +65 -0
  1175. package/dist/commands/spaces/cycles/list.d.ts +13 -0
  1176. package/dist/commands/spaces/cycles/list.js +57 -0
  1177. package/dist/commands/spaces/cycles/settings.d.ts +15 -0
  1178. package/dist/commands/spaces/cycles/settings.js +77 -0
  1179. package/dist/commands/spaces/cycles/show.d.ts +12 -0
  1180. package/dist/commands/spaces/cycles/show.js +54 -0
  1181. package/dist/commands/spaces/cycles/update.d.ts +17 -0
  1182. package/dist/commands/spaces/cycles/update.js +50 -0
  1183. package/dist/commands/spaces/delete.d.ts +12 -0
  1184. package/dist/commands/spaces/delete.js +45 -0
  1185. package/dist/commands/spaces/files/delete.d.ts +13 -0
  1186. package/dist/commands/spaces/files/delete.js +47 -0
  1187. package/dist/commands/spaces/files/folders/create.d.ts +14 -0
  1188. package/dist/commands/spaces/files/folders/create.js +48 -0
  1189. package/dist/commands/spaces/files/folders/delete.d.ts +14 -0
  1190. package/dist/commands/spaces/files/folders/delete.js +54 -0
  1191. package/dist/commands/spaces/files/folders/list.d.ts +11 -0
  1192. package/dist/commands/spaces/files/folders/list.js +41 -0
  1193. package/dist/commands/spaces/files/folders/update.d.ts +16 -0
  1194. package/dist/commands/spaces/files/folders/update.js +55 -0
  1195. package/dist/commands/spaces/files/list.d.ts +12 -0
  1196. package/dist/commands/spaces/files/list.js +66 -0
  1197. package/dist/commands/spaces/files/move.d.ts +14 -0
  1198. package/dist/commands/spaces/files/move.js +41 -0
  1199. package/dist/commands/spaces/files/rename.d.ts +13 -0
  1200. package/dist/commands/spaces/files/rename.js +37 -0
  1201. package/dist/commands/spaces/files/upload.d.ts +14 -0
  1202. package/dist/commands/spaces/files/upload.js +103 -0
  1203. package/dist/commands/spaces/github-automations/set.d.ts +12 -0
  1204. package/dist/commands/spaces/github-automations/set.js +51 -0
  1205. package/dist/commands/spaces/github-automations/show.d.ts +11 -0
  1206. package/dist/commands/spaces/github-automations/show.js +43 -0
  1207. package/dist/commands/spaces/goals.d.ts +12 -0
  1208. package/dist/commands/spaces/goals.js +61 -0
  1209. package/dist/commands/spaces/heartbeats/create.d.ts +21 -0
  1210. package/dist/commands/spaces/heartbeats/create.js +92 -0
  1211. package/dist/commands/spaces/heartbeats/delete.d.ts +14 -0
  1212. package/dist/commands/spaces/heartbeats/delete.js +55 -0
  1213. package/dist/commands/spaces/heartbeats/list.d.ts +35 -0
  1214. package/dist/commands/spaces/heartbeats/list.js +101 -0
  1215. package/dist/commands/spaces/heartbeats/status.d.ts +13 -0
  1216. package/dist/commands/spaces/heartbeats/status.js +60 -0
  1217. package/dist/commands/spaces/heartbeats/update.d.ts +22 -0
  1218. package/dist/commands/spaces/heartbeats/update.js +81 -0
  1219. package/dist/commands/spaces/index.d.ts +18 -0
  1220. package/dist/commands/spaces/index.js +132 -0
  1221. package/dist/commands/spaces/insights.d.ts +48 -0
  1222. package/dist/commands/spaces/insights.js +188 -0
  1223. package/dist/commands/spaces/install-template.d.ts +59 -0
  1224. package/dist/commands/spaces/install-template.js +145 -0
  1225. package/dist/commands/spaces/labels/add.d.ts +13 -0
  1226. package/dist/commands/spaces/labels/add.js +48 -0
  1227. package/dist/commands/spaces/labels/list.d.ts +12 -0
  1228. package/dist/commands/spaces/labels/list.js +72 -0
  1229. package/dist/commands/spaces/labels/remove.d.ts +13 -0
  1230. package/dist/commands/spaces/labels/remove.js +44 -0
  1231. package/dist/commands/spaces/list.d.ts +15 -0
  1232. package/dist/commands/spaces/list.js +85 -0
  1233. package/dist/commands/spaces/live/cards/create.d.ts +19 -0
  1234. package/dist/commands/spaces/live/cards/create.js +68 -0
  1235. package/dist/commands/spaces/live/cards/delete.d.ts +13 -0
  1236. package/dist/commands/spaces/live/cards/delete.js +44 -0
  1237. package/dist/commands/spaces/live/cards/list.d.ts +11 -0
  1238. package/dist/commands/spaces/live/cards/list.js +43 -0
  1239. package/dist/commands/spaces/live/cards/reorder.d.ts +13 -0
  1240. package/dist/commands/spaces/live/cards/reorder.js +52 -0
  1241. package/dist/commands/spaces/live/cards/update.d.ts +20 -0
  1242. package/dist/commands/spaces/live/cards/update.js +69 -0
  1243. package/dist/commands/spaces/live/scene.d.ts +13 -0
  1244. package/dist/commands/spaces/live/scene.js +55 -0
  1245. package/dist/commands/spaces/members/add.d.ts +17 -0
  1246. package/dist/commands/spaces/members/add.js +143 -0
  1247. package/dist/commands/spaces/members/list.d.ts +12 -0
  1248. package/dist/commands/spaces/members/list.js +54 -0
  1249. package/dist/commands/spaces/members/remove.d.ts +15 -0
  1250. package/dist/commands/spaces/members/remove.js +76 -0
  1251. package/dist/commands/spaces/members/search.d.ts +13 -0
  1252. package/dist/commands/spaces/members/search.js +57 -0
  1253. package/dist/commands/spaces/move.d.ts +27 -0
  1254. package/dist/commands/spaces/move.js +82 -0
  1255. package/dist/commands/spaces/open.d.ts +13 -0
  1256. package/dist/commands/spaces/open.js +42 -0
  1257. package/dist/commands/spaces/pin.d.ts +11 -0
  1258. package/dist/commands/spaces/pin.js +33 -0
  1259. package/dist/commands/spaces/preferences/show.d.ts +11 -0
  1260. package/dist/commands/spaces/preferences/show.js +34 -0
  1261. package/dist/commands/spaces/preferences/tabs.d.ts +14 -0
  1262. package/dist/commands/spaces/preferences/tabs.js +51 -0
  1263. package/dist/commands/spaces/reorder.d.ts +14 -0
  1264. package/dist/commands/spaces/reorder.js +67 -0
  1265. package/dist/commands/spaces/revisions.d.ts +12 -0
  1266. package/dist/commands/spaces/revisions.js +55 -0
  1267. package/dist/commands/spaces/room/ensure.d.ts +12 -0
  1268. package/dist/commands/spaces/room/ensure.js +39 -0
  1269. package/dist/commands/spaces/room/messages.d.ts +15 -0
  1270. package/dist/commands/spaces/room/messages.js +65 -0
  1271. package/dist/commands/spaces/room/send.d.ts +18 -0
  1272. package/dist/commands/spaces/room/send.js +107 -0
  1273. package/dist/commands/spaces/room/show.d.ts +12 -0
  1274. package/dist/commands/spaces/room/show.js +57 -0
  1275. package/dist/commands/spaces/show.d.ts +12 -0
  1276. package/dist/commands/spaces/show.js +67 -0
  1277. package/dist/commands/spaces/skills/add.d.ts +13 -0
  1278. package/dist/commands/spaces/skills/add.js +37 -0
  1279. package/dist/commands/spaces/skills/list.d.ts +12 -0
  1280. package/dist/commands/spaces/skills/list.js +67 -0
  1281. package/dist/commands/spaces/skills/pin.d.ts +14 -0
  1282. package/dist/commands/spaces/skills/pin.js +48 -0
  1283. package/dist/commands/spaces/skills/remove.d.ts +13 -0
  1284. package/dist/commands/spaces/skills/remove.js +37 -0
  1285. package/dist/commands/spaces/snapshot.d.ts +20 -0
  1286. package/dist/commands/spaces/snapshot.js +89 -0
  1287. package/dist/commands/spaces/states/archive.d.ts +12 -0
  1288. package/dist/commands/spaces/states/archive.js +31 -0
  1289. package/dist/commands/spaces/states/create.d.ts +16 -0
  1290. package/dist/commands/spaces/states/create.js +47 -0
  1291. package/dist/commands/spaces/states/list.d.ts +11 -0
  1292. package/dist/commands/spaces/states/list.js +47 -0
  1293. package/dist/commands/spaces/states/reorder.d.ts +12 -0
  1294. package/dist/commands/spaces/states/reorder.js +36 -0
  1295. package/dist/commands/spaces/states/update.d.ts +15 -0
  1296. package/dist/commands/spaces/states/update.js +42 -0
  1297. package/dist/commands/spaces/subspaces.d.ts +13 -0
  1298. package/dist/commands/spaces/subspaces.js +58 -0
  1299. package/dist/commands/spaces/summary.d.ts +11 -0
  1300. package/dist/commands/spaces/summary.js +29 -0
  1301. package/dist/commands/spaces/tasks.d.ts +14 -0
  1302. package/dist/commands/spaces/tasks.js +73 -0
  1303. package/dist/commands/spaces/templates/create.d.ts +26 -0
  1304. package/dist/commands/spaces/templates/create.js +79 -0
  1305. package/dist/commands/spaces/templates/delete.d.ts +20 -0
  1306. package/dist/commands/spaces/templates/delete.js +46 -0
  1307. package/dist/commands/spaces/templates/fork.d.ts +26 -0
  1308. package/dist/commands/spaces/templates/fork.js +60 -0
  1309. package/dist/commands/spaces/templates/index.d.ts +24 -0
  1310. package/dist/commands/spaces/templates/index.js +106 -0
  1311. package/dist/commands/spaces/templates/purchase-status.d.ts +20 -0
  1312. package/dist/commands/spaces/templates/purchase-status.js +54 -0
  1313. package/dist/commands/spaces/templates/rate.d.ts +18 -0
  1314. package/dist/commands/spaces/templates/rate.js +52 -0
  1315. package/dist/commands/spaces/templates/report.d.ts +21 -0
  1316. package/dist/commands/spaces/templates/report.js +48 -0
  1317. package/dist/commands/spaces/templates/show.d.ts +21 -0
  1318. package/dist/commands/spaces/templates/show.js +75 -0
  1319. package/dist/commands/spaces/templates/update.d.ts +27 -0
  1320. package/dist/commands/spaces/templates/update.js +57 -0
  1321. package/dist/commands/spaces/templates/visibility.d.ts +24 -0
  1322. package/dist/commands/spaces/templates/visibility.js +58 -0
  1323. package/dist/commands/spaces/transfer-workspace.d.ts +20 -0
  1324. package/dist/commands/spaces/transfer-workspace.js +56 -0
  1325. package/dist/commands/spaces/triggers/delete.d.ts +13 -0
  1326. package/dist/commands/spaces/triggers/delete.js +52 -0
  1327. package/dist/commands/spaces/triggers/set.d.ts +36 -0
  1328. package/dist/commands/spaces/triggers/set.js +145 -0
  1329. package/dist/commands/spaces/triggers/show.d.ts +12 -0
  1330. package/dist/commands/spaces/triggers/show.js +50 -0
  1331. package/dist/commands/spaces/unarchive.d.ts +12 -0
  1332. package/dist/commands/spaces/unarchive.js +34 -0
  1333. package/dist/commands/spaces/update.d.ts +22 -0
  1334. package/dist/commands/spaces/update.js +126 -0
  1335. package/dist/commands/spaces/views/create.d.ts +17 -0
  1336. package/dist/commands/spaces/views/create.js +62 -0
  1337. package/dist/commands/spaces/views/delete.d.ts +13 -0
  1338. package/dist/commands/spaces/views/delete.js +44 -0
  1339. package/dist/commands/spaces/views/duplicate.d.ts +12 -0
  1340. package/dist/commands/spaces/views/duplicate.js +30 -0
  1341. package/dist/commands/spaces/views/list.d.ts +11 -0
  1342. package/dist/commands/spaces/views/list.js +45 -0
  1343. package/dist/commands/spaces/views/reorder.d.ts +14 -0
  1344. package/dist/commands/spaces/views/reorder.js +64 -0
  1345. package/dist/commands/spaces/views/subscribe.d.ts +16 -0
  1346. package/dist/commands/spaces/views/subscribe.js +48 -0
  1347. package/dist/commands/spaces/views/subscriptions.d.ts +12 -0
  1348. package/dist/commands/spaces/views/subscriptions.js +31 -0
  1349. package/dist/commands/spaces/views/unsubscribe.d.ts +12 -0
  1350. package/dist/commands/spaces/views/unsubscribe.js +28 -0
  1351. package/dist/commands/spaces/views/update.d.ts +19 -0
  1352. package/dist/commands/spaces/views/update.js +65 -0
  1353. package/dist/commands/spaces/widgets/add.d.ts +14 -0
  1354. package/dist/commands/spaces/widgets/add.js +46 -0
  1355. package/dist/commands/spaces/widgets/list.d.ts +12 -0
  1356. package/dist/commands/spaces/widgets/list.js +71 -0
  1357. package/dist/commands/spaces/widgets/remove.d.ts +14 -0
  1358. package/dist/commands/spaces/widgets/remove.js +57 -0
  1359. package/dist/commands/spaces/work-graph.d.ts +21 -0
  1360. package/dist/commands/spaces/work-graph.js +104 -0
  1361. package/dist/commands/spaces/workflow-templates/archive.d.ts +16 -0
  1362. package/dist/commands/spaces/workflow-templates/archive.js +52 -0
  1363. package/dist/commands/spaces/workflow-templates/create.d.ts +21 -0
  1364. package/dist/commands/spaces/workflow-templates/create.js +69 -0
  1365. package/dist/commands/spaces/workflow-templates/extract.d.ts +27 -0
  1366. package/dist/commands/spaces/workflow-templates/extract.js +74 -0
  1367. package/dist/commands/spaces/workflow-templates/insert.d.ts +26 -0
  1368. package/dist/commands/spaces/workflow-templates/insert.js +133 -0
  1369. package/dist/commands/spaces/workflow-templates/list.d.ts +19 -0
  1370. package/dist/commands/spaces/workflow-templates/list.js +69 -0
  1371. package/dist/commands/spaces/workflow-templates/promote.d.ts +31 -0
  1372. package/dist/commands/spaces/workflow-templates/promote.js +76 -0
  1373. package/dist/commands/spaces/workflow-templates/publish.d.ts +16 -0
  1374. package/dist/commands/spaces/workflow-templates/publish.js +42 -0
  1375. package/dist/commands/spaces/workflow-templates/show.d.ts +16 -0
  1376. package/dist/commands/spaces/workflow-templates/show.js +92 -0
  1377. package/dist/commands/spaces/workflow-templates/update.d.ts +20 -0
  1378. package/dist/commands/spaces/workflow-templates/update.js +67 -0
  1379. package/dist/commands/spaces/workflow-templates/versions.d.ts +15 -0
  1380. package/dist/commands/spaces/workflow-templates/versions.js +51 -0
  1381. package/dist/commands/spaces/workflows/archive.d.ts +13 -0
  1382. package/dist/commands/spaces/workflows/archive.js +44 -0
  1383. package/dist/commands/spaces/workflows/artifact.d.ts +14 -0
  1384. package/dist/commands/spaces/workflows/artifact.js +45 -0
  1385. package/dist/commands/spaces/workflows/cancel.d.ts +13 -0
  1386. package/dist/commands/spaces/workflows/cancel.js +50 -0
  1387. package/dist/commands/spaces/workflows/create.d.ts +19 -0
  1388. package/dist/commands/spaces/workflows/create.js +100 -0
  1389. package/dist/commands/spaces/workflows/events.d.ts +15 -0
  1390. package/dist/commands/spaces/workflows/events.js +80 -0
  1391. package/dist/commands/spaces/workflows/fixtures/create.d.ts +20 -0
  1392. package/dist/commands/spaces/workflows/fixtures/create.js +74 -0
  1393. package/dist/commands/spaces/workflows/fixtures/list.d.ts +13 -0
  1394. package/dist/commands/spaces/workflows/fixtures/list.js +52 -0
  1395. package/dist/commands/spaces/workflows/list.d.ts +11 -0
  1396. package/dist/commands/spaces/workflows/list.js +48 -0
  1397. package/dist/commands/spaces/workflows/pause.d.ts +14 -0
  1398. package/dist/commands/spaces/workflows/pause.js +35 -0
  1399. package/dist/commands/spaces/workflows/plan/show.d.ts +13 -0
  1400. package/dist/commands/spaces/workflows/plan/show.js +39 -0
  1401. package/dist/commands/spaces/workflows/plan/update.d.ts +24 -0
  1402. package/dist/commands/spaces/workflows/plan/update.js +96 -0
  1403. package/dist/commands/spaces/workflows/proposals/apply.d.ts +14 -0
  1404. package/dist/commands/spaces/workflows/proposals/apply.js +45 -0
  1405. package/dist/commands/spaces/workflows/proposals/confirm.d.ts +14 -0
  1406. package/dist/commands/spaces/workflows/proposals/confirm.js +47 -0
  1407. package/dist/commands/spaces/workflows/proposals/create.d.ts +20 -0
  1408. package/dist/commands/spaces/workflows/proposals/create.js +89 -0
  1409. package/dist/commands/spaces/workflows/proposals/dismiss.d.ts +14 -0
  1410. package/dist/commands/spaces/workflows/proposals/dismiss.js +45 -0
  1411. package/dist/commands/spaces/workflows/proposals/list.d.ts +12 -0
  1412. package/dist/commands/spaces/workflows/proposals/list.js +40 -0
  1413. package/dist/commands/spaces/workflows/publish.d.ts +12 -0
  1414. package/dist/commands/spaces/workflows/publish.js +35 -0
  1415. package/dist/commands/spaces/workflows/reconcile.d.ts +12 -0
  1416. package/dist/commands/spaces/workflows/reconcile.js +33 -0
  1417. package/dist/commands/spaces/workflows/resume.d.ts +13 -0
  1418. package/dist/commands/spaces/workflows/resume.js +34 -0
  1419. package/dist/commands/spaces/workflows/retry.d.ts +13 -0
  1420. package/dist/commands/spaces/workflows/retry.js +43 -0
  1421. package/dist/commands/spaces/workflows/run.d.ts +30 -0
  1422. package/dist/commands/spaces/workflows/run.js +87 -0
  1423. package/dist/commands/spaces/workflows/runs.d.ts +35 -0
  1424. package/dist/commands/spaces/workflows/runs.js +83 -0
  1425. package/dist/commands/spaces/workflows/show.d.ts +13 -0
  1426. package/dist/commands/spaces/workflows/show.js +51 -0
  1427. package/dist/commands/spaces/workflows/signal.d.ts +17 -0
  1428. package/dist/commands/spaces/workflows/signal.js +76 -0
  1429. package/dist/commands/spaces/workflows/start.d.ts +32 -0
  1430. package/dist/commands/spaces/workflows/start.js +92 -0
  1431. package/dist/commands/spaces/workflows/task-execution/create.d.ts +15 -0
  1432. package/dist/commands/spaces/workflows/task-execution/create.js +49 -0
  1433. package/dist/commands/spaces/workflows/test.d.ts +16 -0
  1434. package/dist/commands/spaces/workflows/test.js +67 -0
  1435. package/dist/commands/spaces/workflows/triggers/create.d.ts +19 -0
  1436. package/dist/commands/spaces/workflows/triggers/create.js +68 -0
  1437. package/dist/commands/spaces/workflows/triggers/fire.d.ts +16 -0
  1438. package/dist/commands/spaces/workflows/triggers/fire.js +57 -0
  1439. package/dist/commands/spaces/workflows/triggers/list.d.ts +12 -0
  1440. package/dist/commands/spaces/workflows/triggers/list.js +49 -0
  1441. package/dist/commands/spaces/workflows/triggers/update.d.ts +17 -0
  1442. package/dist/commands/spaces/workflows/triggers/update.js +62 -0
  1443. package/dist/commands/spaces/workflows/update.d.ts +35 -0
  1444. package/dist/commands/spaces/workflows/update.js +130 -0
  1445. package/dist/commands/spaces/workflows/validate.d.ts +12 -0
  1446. package/dist/commands/spaces/workflows/validate.js +43 -0
  1447. package/dist/commands/tasks/actionability.d.ts +12 -0
  1448. package/dist/commands/tasks/actionability.js +63 -0
  1449. package/dist/commands/tasks/actions/attach.d.ts +23 -0
  1450. package/dist/commands/tasks/actions/attach.js +143 -0
  1451. package/dist/commands/tasks/actions/detach.d.ts +20 -0
  1452. package/dist/commands/tasks/actions/detach.js +129 -0
  1453. package/dist/commands/tasks/active.d.ts +12 -0
  1454. package/dist/commands/tasks/active.js +123 -0
  1455. package/dist/commands/tasks/activity.d.ts +32 -0
  1456. package/dist/commands/tasks/activity.js +67 -0
  1457. package/dist/commands/tasks/ancestors.d.ts +12 -0
  1458. package/dist/commands/tasks/ancestors.js +54 -0
  1459. package/dist/commands/tasks/approvals/create.d.ts +15 -0
  1460. package/dist/commands/tasks/approvals/create.js +58 -0
  1461. package/dist/commands/tasks/approvals/delete.d.ts +13 -0
  1462. package/dist/commands/tasks/approvals/delete.js +44 -0
  1463. package/dist/commands/tasks/approvals/list.d.ts +27 -0
  1464. package/dist/commands/tasks/approvals/list.js +75 -0
  1465. package/dist/commands/tasks/approvals/resolve.d.ts +15 -0
  1466. package/dist/commands/tasks/approvals/resolve.js +51 -0
  1467. package/dist/commands/tasks/archive.d.ts +13 -0
  1468. package/dist/commands/tasks/archive.js +41 -0
  1469. package/dist/commands/tasks/assign.d.ts +41 -0
  1470. package/dist/commands/tasks/assign.js +232 -0
  1471. package/dist/commands/tasks/attachments/delete.d.ts +13 -0
  1472. package/dist/commands/tasks/attachments/delete.js +44 -0
  1473. package/dist/commands/tasks/attachments/download.d.ts +13 -0
  1474. package/dist/commands/tasks/attachments/download.js +78 -0
  1475. package/dist/commands/tasks/attachments/list.d.ts +29 -0
  1476. package/dist/commands/tasks/attachments/list.js +89 -0
  1477. package/dist/commands/tasks/attachments/upload.d.ts +13 -0
  1478. package/dist/commands/tasks/attachments/upload.js +83 -0
  1479. package/dist/commands/tasks/bulk-update.d.ts +11 -0
  1480. package/dist/commands/tasks/bulk-update.js +120 -0
  1481. package/dist/commands/tasks/calendar.d.ts +18 -0
  1482. package/dist/commands/tasks/calendar.js +40 -0
  1483. package/dist/commands/tasks/cancel-cascade.d.ts +12 -0
  1484. package/dist/commands/tasks/cancel-cascade.js +43 -0
  1485. package/dist/commands/tasks/cascade-status.d.ts +12 -0
  1486. package/dist/commands/tasks/cascade-status.js +41 -0
  1487. package/dist/commands/tasks/chat/exchange.d.ts +30 -0
  1488. package/dist/commands/tasks/chat/exchange.js +88 -0
  1489. package/dist/commands/tasks/chat/index.d.ts +31 -0
  1490. package/dist/commands/tasks/chat/index.js +69 -0
  1491. package/dist/commands/tasks/chat/read.d.ts +14 -0
  1492. package/dist/commands/tasks/chat/read.js +35 -0
  1493. package/dist/commands/tasks/chat/reindex.d.ts +20 -0
  1494. package/dist/commands/tasks/chat/reindex.js +39 -0
  1495. package/dist/commands/tasks/chat/reopen.d.ts +20 -0
  1496. package/dist/commands/tasks/chat/reopen.js +43 -0
  1497. package/dist/commands/tasks/chat/repair-attention.d.ts +19 -0
  1498. package/dist/commands/tasks/chat/repair-attention.js +38 -0
  1499. package/dist/commands/tasks/chat/rotate.d.ts +21 -0
  1500. package/dist/commands/tasks/chat/rotate.js +59 -0
  1501. package/dist/commands/tasks/checkout.d.ts +13 -0
  1502. package/dist/commands/tasks/checkout.js +79 -0
  1503. package/dist/commands/tasks/children.d.ts +12 -0
  1504. package/dist/commands/tasks/children.js +54 -0
  1505. package/dist/commands/tasks/comments/add.d.ts +36 -0
  1506. package/dist/commands/tasks/comments/add.js +258 -0
  1507. package/dist/commands/tasks/comments/anchor.d.ts +80 -0
  1508. package/dist/commands/tasks/comments/anchor.js +374 -0
  1509. package/dist/commands/tasks/comments/delete.d.ts +13 -0
  1510. package/dist/commands/tasks/comments/delete.js +44 -0
  1511. package/dist/commands/tasks/comments/list.d.ts +15 -0
  1512. package/dist/commands/tasks/comments/list.js +96 -0
  1513. package/dist/commands/tasks/comments/react.d.ts +14 -0
  1514. package/dist/commands/tasks/comments/react.js +70 -0
  1515. package/dist/commands/tasks/comments/reopen.d.ts +13 -0
  1516. package/dist/commands/tasks/comments/reopen.js +40 -0
  1517. package/dist/commands/tasks/comments/resolve.d.ts +13 -0
  1518. package/dist/commands/tasks/comments/resolve.js +40 -0
  1519. package/dist/commands/tasks/communications.d.ts +21 -0
  1520. package/dist/commands/tasks/communications.js +45 -0
  1521. package/dist/commands/tasks/complete.d.ts +106 -0
  1522. package/dist/commands/tasks/complete.js +457 -0
  1523. package/dist/commands/tasks/continue-ready.d.ts +20 -0
  1524. package/dist/commands/tasks/continue-ready.js +220 -0
  1525. package/dist/commands/tasks/create-tree.d.ts +30 -0
  1526. package/dist/commands/tasks/create-tree.js +299 -0
  1527. package/dist/commands/tasks/create.d.ts +47 -0
  1528. package/dist/commands/tasks/create.js +389 -0
  1529. package/dist/commands/tasks/current.d.ts +10 -0
  1530. package/dist/commands/tasks/current.js +39 -0
  1531. package/dist/commands/tasks/delete.d.ts +12 -0
  1532. package/dist/commands/tasks/delete.js +45 -0
  1533. package/dist/commands/tasks/descendants.d.ts +13 -0
  1534. package/dist/commands/tasks/descendants.js +56 -0
  1535. package/dist/commands/tasks/dri-plan.d.ts +12 -0
  1536. package/dist/commands/tasks/dri-plan.js +40 -0
  1537. package/dist/commands/tasks/dri-run.d.ts +12 -0
  1538. package/dist/commands/tasks/dri-run.js +40 -0
  1539. package/dist/commands/tasks/dri-status.d.ts +12 -0
  1540. package/dist/commands/tasks/dri-status.js +50 -0
  1541. package/dist/commands/tasks/duplicate-pipeline.d.ts +14 -0
  1542. package/dist/commands/tasks/duplicate-pipeline.js +56 -0
  1543. package/dist/commands/tasks/events/append.d.ts +19 -0
  1544. package/dist/commands/tasks/events/append.js +59 -0
  1545. package/dist/commands/tasks/events/list.d.ts +17 -0
  1546. package/dist/commands/tasks/events/list.js +39 -0
  1547. package/dist/commands/tasks/events/tail.d.ts +15 -0
  1548. package/dist/commands/tasks/events/tail.js +45 -0
  1549. package/dist/commands/tasks/execution-summary.d.ts +32 -0
  1550. package/dist/commands/tasks/execution-summary.js +91 -0
  1551. package/dist/commands/tasks/execution-timeline.d.ts +14 -0
  1552. package/dist/commands/tasks/execution-timeline.js +65 -0
  1553. package/dist/commands/tasks/export.d.ts +39 -0
  1554. package/dist/commands/tasks/export.js +169 -0
  1555. package/dist/commands/tasks/follow-up.d.ts +36 -0
  1556. package/dist/commands/tasks/follow-up.js +181 -0
  1557. package/dist/commands/tasks/forward.d.ts +14 -0
  1558. package/dist/commands/tasks/forward.js +69 -0
  1559. package/dist/commands/tasks/from-message.d.ts +19 -0
  1560. package/dist/commands/tasks/from-message.js +51 -0
  1561. package/dist/commands/tasks/import.d.ts +23 -0
  1562. package/dist/commands/tasks/import.js +293 -0
  1563. package/dist/commands/tasks/input/answer.d.ts +15 -0
  1564. package/dist/commands/tasks/input/answer.js +71 -0
  1565. package/dist/commands/tasks/input/dismiss.d.ts +12 -0
  1566. package/dist/commands/tasks/input/dismiss.js +39 -0
  1567. package/dist/commands/tasks/input/show.d.ts +11 -0
  1568. package/dist/commands/tasks/input/show.js +39 -0
  1569. package/dist/commands/tasks/interrupt.d.ts +19 -0
  1570. package/dist/commands/tasks/interrupt.js +50 -0
  1571. package/dist/commands/tasks/labels/attach.d.ts +25 -0
  1572. package/dist/commands/tasks/labels/attach.js +78 -0
  1573. package/dist/commands/tasks/labels/create.d.ts +12 -0
  1574. package/dist/commands/tasks/labels/create.js +69 -0
  1575. package/dist/commands/tasks/labels/delete.d.ts +12 -0
  1576. package/dist/commands/tasks/labels/delete.js +43 -0
  1577. package/dist/commands/tasks/labels/detach.d.ts +18 -0
  1578. package/dist/commands/tasks/labels/detach.js +69 -0
  1579. package/dist/commands/tasks/labels/list.d.ts +9 -0
  1580. package/dist/commands/tasks/labels/list.js +48 -0
  1581. package/dist/commands/tasks/list.d.ts +56 -0
  1582. package/dist/commands/tasks/list.js +353 -0
  1583. package/dist/commands/tasks/mark-duplicate.d.ts +12 -0
  1584. package/dist/commands/tasks/mark-duplicate.js +35 -0
  1585. package/dist/commands/tasks/monitor.d.ts +16 -0
  1586. package/dist/commands/tasks/monitor.js +226 -0
  1587. package/dist/commands/tasks/move.d.ts +33 -0
  1588. package/dist/commands/tasks/move.js +166 -0
  1589. package/dist/commands/tasks/open.d.ts +17 -0
  1590. package/dist/commands/tasks/open.js +71 -0
  1591. package/dist/commands/tasks/output.d.ts +24 -0
  1592. package/dist/commands/tasks/output.js +186 -0
  1593. package/dist/commands/tasks/pause-schedule.d.ts +12 -0
  1594. package/dist/commands/tasks/pause-schedule.js +38 -0
  1595. package/dist/commands/tasks/plan/add-subtask.d.ts +16 -0
  1596. package/dist/commands/tasks/plan/add-subtask.js +47 -0
  1597. package/dist/commands/tasks/plan/cancel.d.ts +13 -0
  1598. package/dist/commands/tasks/plan/cancel.js +47 -0
  1599. package/dist/commands/tasks/plan/create.d.ts +11 -0
  1600. package/dist/commands/tasks/plan/create.js +28 -0
  1601. package/dist/commands/tasks/plan/pause.d.ts +14 -0
  1602. package/dist/commands/tasks/plan/pause.js +33 -0
  1603. package/dist/commands/tasks/plan/reconcile.d.ts +12 -0
  1604. package/dist/commands/tasks/plan/reconcile.js +29 -0
  1605. package/dist/commands/tasks/plan/resume.d.ts +13 -0
  1606. package/dist/commands/tasks/plan/resume.js +30 -0
  1607. package/dist/commands/tasks/plan/retry.d.ts +13 -0
  1608. package/dist/commands/tasks/plan/retry.js +34 -0
  1609. package/dist/commands/tasks/plan/run-update.d.ts +17 -0
  1610. package/dist/commands/tasks/plan/run-update.js +98 -0
  1611. package/dist/commands/tasks/plan/run.d.ts +12 -0
  1612. package/dist/commands/tasks/plan/run.js +33 -0
  1613. package/dist/commands/tasks/plan/show.d.ts +11 -0
  1614. package/dist/commands/tasks/plan/show.js +27 -0
  1615. package/dist/commands/tasks/plan/start.d.ts +12 -0
  1616. package/dist/commands/tasks/plan/start.js +30 -0
  1617. package/dist/commands/tasks/plan/sync.d.ts +11 -0
  1618. package/dist/commands/tasks/plan/sync.js +28 -0
  1619. package/dist/commands/tasks/plan/update.d.ts +12 -0
  1620. package/dist/commands/tasks/plan/update.js +51 -0
  1621. package/dist/commands/tasks/pr.d.ts +12 -0
  1622. package/dist/commands/tasks/pr.js +92 -0
  1623. package/dist/commands/tasks/prompt-log.d.ts +12 -0
  1624. package/dist/commands/tasks/prompt-log.js +42 -0
  1625. package/dist/commands/tasks/ready.d.ts +15 -0
  1626. package/dist/commands/tasks/ready.js +78 -0
  1627. package/dist/commands/tasks/release.d.ts +12 -0
  1628. package/dist/commands/tasks/release.js +47 -0
  1629. package/dist/commands/tasks/remind.d.ts +14 -0
  1630. package/dist/commands/tasks/remind.js +63 -0
  1631. package/dist/commands/tasks/replay.d.ts +13 -0
  1632. package/dist/commands/tasks/replay.js +61 -0
  1633. package/dist/commands/tasks/report.d.ts +24 -0
  1634. package/dist/commands/tasks/report.js +119 -0
  1635. package/dist/commands/tasks/resume-schedule.d.ts +12 -0
  1636. package/dist/commands/tasks/resume-schedule.js +38 -0
  1637. package/dist/commands/tasks/retry-schedule.d.ts +13 -0
  1638. package/dist/commands/tasks/retry-schedule.js +45 -0
  1639. package/dist/commands/tasks/retry.d.ts +38 -0
  1640. package/dist/commands/tasks/retry.js +110 -0
  1641. package/dist/commands/tasks/revisions.d.ts +12 -0
  1642. package/dist/commands/tasks/revisions.js +54 -0
  1643. package/dist/commands/tasks/runs.d.ts +18 -0
  1644. package/dist/commands/tasks/runs.js +82 -0
  1645. package/dist/commands/tasks/schedule.d.ts +18 -0
  1646. package/dist/commands/tasks/schedule.js +90 -0
  1647. package/dist/commands/tasks/show.d.ts +14 -0
  1648. package/dist/commands/tasks/show.js +220 -0
  1649. package/dist/commands/tasks/skills/pin.d.ts +31 -0
  1650. package/dist/commands/tasks/skills/pin.js +147 -0
  1651. package/dist/commands/tasks/skills/unpin.d.ts +17 -0
  1652. package/dist/commands/tasks/skills/unpin.js +121 -0
  1653. package/dist/commands/tasks/snooze.d.ts +17 -0
  1654. package/dist/commands/tasks/snooze.js +90 -0
  1655. package/dist/commands/tasks/start-all.d.ts +13 -0
  1656. package/dist/commands/tasks/start-all.js +63 -0
  1657. package/dist/commands/tasks/start.d.ts +15 -0
  1658. package/dist/commands/tasks/start.js +114 -0
  1659. package/dist/commands/tasks/subscribe.d.ts +14 -0
  1660. package/dist/commands/tasks/subscribe.js +64 -0
  1661. package/dist/commands/tasks/tags/add.d.ts +21 -0
  1662. package/dist/commands/tasks/tags/add.js +74 -0
  1663. package/dist/commands/tasks/tags/remove.d.ts +17 -0
  1664. package/dist/commands/tasks/tags/remove.js +68 -0
  1665. package/dist/commands/tasks/templates/create.d.ts +19 -0
  1666. package/dist/commands/tasks/templates/create.js +141 -0
  1667. package/dist/commands/tasks/templates/delete.d.ts +12 -0
  1668. package/dist/commands/tasks/templates/delete.js +44 -0
  1669. package/dist/commands/tasks/templates/list.d.ts +10 -0
  1670. package/dist/commands/tasks/templates/list.js +51 -0
  1671. package/dist/commands/tasks/templates/reorder.d.ts +14 -0
  1672. package/dist/commands/tasks/templates/reorder.js +40 -0
  1673. package/dist/commands/tasks/templates/show.d.ts +12 -0
  1674. package/dist/commands/tasks/templates/show.js +49 -0
  1675. package/dist/commands/tasks/templates/update.d.ts +20 -0
  1676. package/dist/commands/tasks/templates/update.js +123 -0
  1677. package/dist/commands/tasks/timeline.d.ts +16 -0
  1678. package/dist/commands/tasks/timeline.js +59 -0
  1679. package/dist/commands/tasks/today.d.ts +12 -0
  1680. package/dist/commands/tasks/today.js +66 -0
  1681. package/dist/commands/tasks/transcript.d.ts +16 -0
  1682. package/dist/commands/tasks/transcript.js +131 -0
  1683. package/dist/commands/tasks/tree.d.ts +16 -0
  1684. package/dist/commands/tasks/tree.js +87 -0
  1685. package/dist/commands/tasks/triage.d.ts +23 -0
  1686. package/dist/commands/tasks/triage.js +141 -0
  1687. package/dist/commands/tasks/unschedule.d.ts +12 -0
  1688. package/dist/commands/tasks/unschedule.js +38 -0
  1689. package/dist/commands/tasks/unsnooze.d.ts +14 -0
  1690. package/dist/commands/tasks/unsnooze.js +45 -0
  1691. package/dist/commands/tasks/unsubscribe.d.ts +14 -0
  1692. package/dist/commands/tasks/unsubscribe.js +58 -0
  1693. package/dist/commands/tasks/update.d.ts +42 -0
  1694. package/dist/commands/tasks/update.js +267 -0
  1695. package/dist/commands/tasks/upsert.d.ts +26 -0
  1696. package/dist/commands/tasks/upsert.js +215 -0
  1697. package/dist/commands/tasks/wait.d.ts +19 -0
  1698. package/dist/commands/tasks/wait.js +145 -0
  1699. package/dist/commands/tasks/watch.d.ts +19 -0
  1700. package/dist/commands/tasks/watch.js +121 -0
  1701. package/dist/commands/tasks/workflow/approve-merge.d.ts +19 -0
  1702. package/dist/commands/tasks/workflow/approve-merge.js +38 -0
  1703. package/dist/commands/tasks/workflow/cancel.d.ts +19 -0
  1704. package/dist/commands/tasks/workflow/cancel.js +57 -0
  1705. package/dist/commands/tasks/workflow/e2e-complete.d.ts +24 -0
  1706. package/dist/commands/tasks/workflow/e2e-complete.js +56 -0
  1707. package/dist/commands/tasks/workflow/index.d.ts +19 -0
  1708. package/dist/commands/tasks/workflow/index.js +37 -0
  1709. package/dist/commands/tasks/workflow/retry-stage.d.ts +20 -0
  1710. package/dist/commands/tasks/workflow/retry-stage.js +43 -0
  1711. package/dist/commands/tasks/workflow/start.d.ts +13 -0
  1712. package/dist/commands/tasks/workflow/start.js +32 -0
  1713. package/dist/commands/tasks/workflow-await.d.ts +23 -0
  1714. package/dist/commands/tasks/workflow-await.js +72 -0
  1715. package/dist/commands/tasks/workflow-context.d.ts +21 -0
  1716. package/dist/commands/tasks/workflow-context.js +114 -0
  1717. package/dist/commands/tasks/workflow-findings.d.ts +23 -0
  1718. package/dist/commands/tasks/workflow-findings.js +96 -0
  1719. package/dist/commands/teams/list-channels.d.ts +11 -0
  1720. package/dist/commands/teams/list-channels.js +14 -0
  1721. package/dist/commands/teams/list-users.d.ts +12 -0
  1722. package/dist/commands/teams/list-users.js +19 -0
  1723. package/dist/commands/teams/read-channel.d.ts +13 -0
  1724. package/dist/commands/teams/read-channel.js +20 -0
  1725. package/dist/commands/teams/read-thread.d.ts +14 -0
  1726. package/dist/commands/teams/read-thread.js +23 -0
  1727. package/dist/commands/teams/run.d.ts +15 -0
  1728. package/dist/commands/teams/run.js +17 -0
  1729. package/dist/commands/teams/search.d.ts +13 -0
  1730. package/dist/commands/teams/search.js +21 -0
  1731. package/dist/commands/teams/send-as-agent.d.ts +16 -0
  1732. package/dist/commands/teams/send-as-agent.js +23 -0
  1733. package/dist/commands/teams/tools.d.ts +10 -0
  1734. package/dist/commands/teams/tools.js +14 -0
  1735. package/dist/commands/token/mint.d.ts +35 -0
  1736. package/dist/commands/token/mint.js +131 -0
  1737. package/dist/commands/tones/apply.d.ts +22 -0
  1738. package/dist/commands/tones/apply.js +127 -0
  1739. package/dist/commands/tones/create.d.ts +26 -0
  1740. package/dist/commands/tones/create.js +109 -0
  1741. package/dist/commands/tones/default.d.ts +21 -0
  1742. package/dist/commands/tones/default.js +117 -0
  1743. package/dist/commands/tones/delete.d.ts +20 -0
  1744. package/dist/commands/tones/delete.js +55 -0
  1745. package/dist/commands/tones/export.d.ts +28 -0
  1746. package/dist/commands/tones/export.js +126 -0
  1747. package/dist/commands/tones/import.d.ts +20 -0
  1748. package/dist/commands/tones/import.js +167 -0
  1749. package/dist/commands/tones/list.d.ts +16 -0
  1750. package/dist/commands/tones/list.js +77 -0
  1751. package/dist/commands/tones/policy/set.d.ts +25 -0
  1752. package/dist/commands/tones/policy/set.js +134 -0
  1753. package/dist/commands/tones/policy/show.d.ts +16 -0
  1754. package/dist/commands/tones/policy/show.js +67 -0
  1755. package/dist/commands/tones/show.d.ts +12 -0
  1756. package/dist/commands/tones/show.js +64 -0
  1757. package/dist/commands/tones/update.d.ts +25 -0
  1758. package/dist/commands/tones/update.js +104 -0
  1759. package/dist/commands/triggers/actions.d.ts +15 -0
  1760. package/dist/commands/triggers/actions.js +64 -0
  1761. package/dist/commands/triggers/audit.d.ts +19 -0
  1762. package/dist/commands/triggers/audit.js +61 -0
  1763. package/dist/commands/triggers/capabilities.d.ts +11 -0
  1764. package/dist/commands/triggers/capabilities.js +48 -0
  1765. package/dist/commands/triggers/create.d.ts +88 -0
  1766. package/dist/commands/triggers/create.js +398 -0
  1767. package/dist/commands/triggers/delete.d.ts +13 -0
  1768. package/dist/commands/triggers/delete.js +51 -0
  1769. package/dist/commands/triggers/disable.d.ts +11 -0
  1770. package/dist/commands/triggers/disable.js +32 -0
  1771. package/dist/commands/triggers/enable.d.ts +11 -0
  1772. package/dist/commands/triggers/enable.js +32 -0
  1773. package/dist/commands/triggers/event-catalog.d.ts +9 -0
  1774. package/dist/commands/triggers/event-catalog.js +51 -0
  1775. package/dist/commands/triggers/fire-detail.d.ts +13 -0
  1776. package/dist/commands/triggers/fire-detail.js +51 -0
  1777. package/dist/commands/triggers/fire.d.ts +13 -0
  1778. package/dist/commands/triggers/fire.js +46 -0
  1779. package/dist/commands/triggers/list.d.ts +15 -0
  1780. package/dist/commands/triggers/list.js +50 -0
  1781. package/dist/commands/triggers/parse-intent.d.ts +16 -0
  1782. package/dist/commands/triggers/parse-intent.js +94 -0
  1783. package/dist/commands/triggers/preflight.d.ts +30 -0
  1784. package/dist/commands/triggers/preflight.js +142 -0
  1785. package/dist/commands/triggers/prune.d.ts +29 -0
  1786. package/dist/commands/triggers/prune.js +151 -0
  1787. package/dist/commands/triggers/replay.d.ts +14 -0
  1788. package/dist/commands/triggers/replay.js +51 -0
  1789. package/dist/commands/triggers/rotate-secret.d.ts +12 -0
  1790. package/dist/commands/triggers/rotate-secret.js +38 -0
  1791. package/dist/commands/triggers/runs.d.ts +24 -0
  1792. package/dist/commands/triggers/runs.js +60 -0
  1793. package/dist/commands/triggers/show.d.ts +12 -0
  1794. package/dist/commands/triggers/show.js +35 -0
  1795. package/dist/commands/triggers/update.d.ts +73 -0
  1796. package/dist/commands/triggers/update.js +249 -0
  1797. package/dist/commands/usage.d.ts +14 -0
  1798. package/dist/commands/usage.js +70 -0
  1799. package/dist/commands/views/create.d.ts +26 -0
  1800. package/dist/commands/views/create.js +115 -0
  1801. package/dist/commands/views/delete.d.ts +12 -0
  1802. package/dist/commands/views/delete.js +41 -0
  1803. package/dist/commands/views/list.d.ts +8 -0
  1804. package/dist/commands/views/list.js +44 -0
  1805. package/dist/commands/views/show.d.ts +11 -0
  1806. package/dist/commands/views/show.js +38 -0
  1807. package/dist/commands/views/subscribe.d.ts +15 -0
  1808. package/dist/commands/views/subscribe.js +44 -0
  1809. package/dist/commands/views/subscriptions.d.ts +11 -0
  1810. package/dist/commands/views/subscriptions.js +30 -0
  1811. package/dist/commands/views/unsubscribe.d.ts +11 -0
  1812. package/dist/commands/views/unsubscribe.js +27 -0
  1813. package/dist/commands/views/update.d.ts +45 -0
  1814. package/dist/commands/views/update.js +166 -0
  1815. package/dist/commands/webhooks/create.d.ts +12 -0
  1816. package/dist/commands/webhooks/create.js +57 -0
  1817. package/dist/commands/webhooks/delete.d.ts +11 -0
  1818. package/dist/commands/webhooks/delete.js +22 -0
  1819. package/dist/commands/webhooks/deliveries.d.ts +12 -0
  1820. package/dist/commands/webhooks/deliveries.js +24 -0
  1821. package/dist/commands/webhooks/list.d.ts +10 -0
  1822. package/dist/commands/webhooks/list.js +33 -0
  1823. package/dist/commands/webhooks/test.d.ts +11 -0
  1824. package/dist/commands/webhooks/test.js +24 -0
  1825. package/dist/commands/whoami.d.ts +15 -0
  1826. package/dist/commands/whoami.js +195 -0
  1827. package/dist/commands/widgets/add.d.ts +13 -0
  1828. package/dist/commands/widgets/add.js +64 -0
  1829. package/dist/commands/widgets/list.d.ts +10 -0
  1830. package/dist/commands/widgets/list.js +66 -0
  1831. package/dist/commands/widgets/remove.d.ts +13 -0
  1832. package/dist/commands/widgets/remove.js +46 -0
  1833. package/dist/commands/widgets/reorder.d.ts +13 -0
  1834. package/dist/commands/widgets/reorder.js +23 -0
  1835. package/dist/commands/widgets/revert.d.ts +13 -0
  1836. package/dist/commands/widgets/revert.js +25 -0
  1837. package/dist/commands/widgets/show.d.ts +13 -0
  1838. package/dist/commands/widgets/show.js +47 -0
  1839. package/dist/commands/widgets/update.d.ts +15 -0
  1840. package/dist/commands/widgets/update.js +53 -0
  1841. package/dist/commands/widgets/versions.d.ts +13 -0
  1842. package/dist/commands/widgets/versions.js +25 -0
  1843. package/dist/commands/wiki/cat.d.ts +15 -0
  1844. package/dist/commands/wiki/cat.js +52 -0
  1845. package/dist/commands/wiki/ls.d.ts +14 -0
  1846. package/dist/commands/wiki/ls.js +61 -0
  1847. package/dist/commands/wiki/mkdir.d.ts +16 -0
  1848. package/dist/commands/wiki/mkdir.js +48 -0
  1849. package/dist/commands/wiki/mv.d.ts +38 -0
  1850. package/dist/commands/wiki/mv.js +178 -0
  1851. package/dist/commands/wiki/rm.d.ts +15 -0
  1852. package/dist/commands/wiki/rm.js +96 -0
  1853. package/dist/commands/wiki/rmdir.d.ts +15 -0
  1854. package/dist/commands/wiki/rmdir.js +101 -0
  1855. package/dist/commands/wiki/search.d.ts +14 -0
  1856. package/dist/commands/wiki/search.js +53 -0
  1857. package/dist/commands/wiki/tree.d.ts +13 -0
  1858. package/dist/commands/wiki/tree.js +44 -0
  1859. package/dist/commands/wiki/update.d.ts +27 -0
  1860. package/dist/commands/wiki/update.js +94 -0
  1861. package/dist/commands/wiki/write.d.ts +55 -0
  1862. package/dist/commands/wiki/write.js +233 -0
  1863. package/dist/commands/work-views/create.d.ts +31 -0
  1864. package/dist/commands/work-views/create.js +84 -0
  1865. package/dist/commands/work-views/delete.d.ts +13 -0
  1866. package/dist/commands/work-views/delete.js +39 -0
  1867. package/dist/commands/work-views/list.d.ts +8 -0
  1868. package/dist/commands/work-views/list.js +29 -0
  1869. package/dist/commands/work-views/result.d.ts +11 -0
  1870. package/dist/commands/work-views/result.js +37 -0
  1871. package/dist/commands/work-views/update.d.ts +15 -0
  1872. package/dist/commands/work-views/update.js +62 -0
  1873. package/dist/commands/worklog/list.d.ts +21 -0
  1874. package/dist/commands/worklog/list.js +53 -0
  1875. package/dist/commands/worklog/rm.d.ts +13 -0
  1876. package/dist/commands/worklog/rm.js +32 -0
  1877. package/dist/commands/worklog/save.d.ts +25 -0
  1878. package/dist/commands/worklog/save.js +73 -0
  1879. package/dist/commands/worklog/search.d.ts +14 -0
  1880. package/dist/commands/worklog/search.js +37 -0
  1881. package/dist/commands/worklog/show.d.ts +13 -0
  1882. package/dist/commands/worklog/show.js +36 -0
  1883. package/dist/commands/worklog/stats.d.ts +10 -0
  1884. package/dist/commands/worklog/stats.js +26 -0
  1885. package/dist/commands/worklog/update.d.ts +17 -0
  1886. package/dist/commands/worklog/update.js +50 -0
  1887. package/dist/commands/workspaces/attribution.d.ts +36 -0
  1888. package/dist/commands/workspaces/attribution.js +88 -0
  1889. package/dist/commands/workspaces/list.d.ts +9 -0
  1890. package/dist/commands/workspaces/list.js +60 -0
  1891. package/dist/commands/workspaces/use.d.ts +25 -0
  1892. package/dist/commands/workspaces/use.js +93 -0
  1893. package/dist/hooks/command-not-found.d.ts +3 -0
  1894. package/dist/hooks/command-not-found.js +171 -0
  1895. package/dist/index.d.ts +1 -0
  1896. package/dist/index.js +8 -0
  1897. package/dist/lib/action-listings.d.ts +5 -0
  1898. package/dist/lib/action-listings.js +70 -0
  1899. package/dist/lib/agent-actions.d.ts +35 -0
  1900. package/dist/lib/agent-actions.js +162 -0
  1901. package/dist/lib/agent-config.d.ts +2 -0
  1902. package/dist/lib/agent-config.js +52 -0
  1903. package/dist/lib/agent-resolver.d.ts +50 -0
  1904. package/dist/lib/agent-resolver.js +184 -0
  1905. package/dist/lib/agent-scope.d.ts +21 -0
  1906. package/dist/lib/agent-scope.js +33 -0
  1907. package/dist/lib/agent-spaces.d.ts +34 -0
  1908. package/dist/lib/agent-spaces.js +66 -0
  1909. package/dist/lib/agent-thread.d.ts +22 -0
  1910. package/dist/lib/agent-thread.js +51 -0
  1911. package/dist/lib/agentic-stream.d.ts +107 -0
  1912. package/dist/lib/agentic-stream.js +471 -0
  1913. package/dist/lib/api-fetch.d.ts +47 -0
  1914. package/dist/lib/api-fetch.js +248 -0
  1915. package/dist/lib/assignee-resolver.d.ts +103 -0
  1916. package/dist/lib/assignee-resolver.js +204 -0
  1917. package/dist/lib/auth-core-init.d.ts +44 -0
  1918. package/dist/lib/auth-core-init.js +289 -0
  1919. package/dist/lib/auth-storage.d.ts +83 -0
  1920. package/dist/lib/auth-storage.js +481 -0
  1921. package/dist/lib/balance.d.ts +266 -0
  1922. package/dist/lib/balance.js +242 -0
  1923. package/dist/lib/builtinActions.d.ts +32 -0
  1924. package/dist/lib/builtinActions.js +110 -0
  1925. package/dist/lib/bulk-task-targets.d.ts +46 -0
  1926. package/dist/lib/bulk-task-targets.js +81 -0
  1927. package/dist/lib/capability-matrix.d.ts +59 -0
  1928. package/dist/lib/capability-matrix.js +176 -0
  1929. package/dist/lib/channel-command-runners.d.ts +22 -0
  1930. package/dist/lib/channel-command-runners.js +294 -0
  1931. package/dist/lib/channel-tools.d.ts +75 -0
  1932. package/dist/lib/channel-tools.js +60 -0
  1933. package/dist/lib/characters.d.ts +47 -0
  1934. package/dist/lib/characters.js +31 -0
  1935. package/dist/lib/cli-runtime.d.ts +14 -0
  1936. package/dist/lib/cli-runtime.js +91 -0
  1937. package/dist/lib/code-handover.d.ts +68 -0
  1938. package/dist/lib/code-handover.js +96 -0
  1939. package/dist/lib/command-hygiene.d.ts +34 -0
  1940. package/dist/lib/command-hygiene.js +206 -0
  1941. package/dist/lib/command-manifest.d.ts +33 -0
  1942. package/dist/lib/command-manifest.js +85 -0
  1943. package/dist/lib/commitment-analytics.d.ts +77 -0
  1944. package/dist/lib/commitment-analytics.js +102 -0
  1945. package/dist/lib/commitment-endpoints.d.ts +33 -0
  1946. package/dist/lib/commitment-endpoints.js +65 -0
  1947. package/dist/lib/commitment-terms.d.ts +45 -0
  1948. package/dist/lib/commitment-terms.js +100 -0
  1949. package/dist/lib/commitments.d.ts +492 -0
  1950. package/dist/lib/commitments.js +889 -0
  1951. package/dist/lib/compasses.d.ts +96 -0
  1952. package/dist/lib/compasses.js +170 -0
  1953. package/dist/lib/completion-index.d.ts +31 -0
  1954. package/dist/lib/completion-index.js +169 -0
  1955. package/dist/lib/completion-scripts.d.ts +10 -0
  1956. package/dist/lib/completion-scripts.js +167 -0
  1957. package/dist/lib/config.d.ts +156 -0
  1958. package/dist/lib/config.js +343 -0
  1959. package/dist/lib/cred-envelope.d.ts +17 -0
  1960. package/dist/lib/cred-envelope.js +48 -0
  1961. package/dist/lib/credential-resolver.d.ts +85 -0
  1962. package/dist/lib/credential-resolver.js +164 -0
  1963. package/dist/lib/daemonBroker.d.ts +255 -0
  1964. package/dist/lib/daemonBroker.js +516 -0
  1965. package/dist/lib/delegated-cli.d.ts +17 -0
  1966. package/dist/lib/delegated-cli.js +102 -0
  1967. package/dist/lib/device-code.d.ts +71 -0
  1968. package/dist/lib/device-code.js +145 -0
  1969. package/dist/lib/device-id.d.ts +14 -0
  1970. package/dist/lib/device-id.js +27 -0
  1971. package/dist/lib/device-identity.d.ts +7 -0
  1972. package/dist/lib/device-identity.js +21 -0
  1973. package/dist/lib/entity-embeds.d.ts +61 -0
  1974. package/dist/lib/entity-embeds.js +130 -0
  1975. package/dist/lib/entity-open.d.ts +61 -0
  1976. package/dist/lib/entity-open.js +93 -0
  1977. package/dist/lib/exec-oversky.d.ts +26 -0
  1978. package/dist/lib/exec-oversky.js +181 -0
  1979. package/dist/lib/execution-target.d.ts +28 -0
  1980. package/dist/lib/execution-target.js +112 -0
  1981. package/dist/lib/file-mime.d.ts +1 -0
  1982. package/dist/lib/file-mime.js +104 -0
  1983. package/dist/lib/format.d.ts +82 -0
  1984. package/dist/lib/format.js +218 -0
  1985. package/dist/lib/git-task.d.ts +25 -0
  1986. package/dist/lib/git-task.js +137 -0
  1987. package/dist/lib/github-tools.d.ts +12 -0
  1988. package/dist/lib/github-tools.js +68 -0
  1989. package/dist/lib/grants.d.ts +57 -0
  1990. package/dist/lib/grants.js +77 -0
  1991. package/dist/lib/group-chat-message.d.ts +142 -0
  1992. package/dist/lib/group-chat-message.js +262 -0
  1993. package/dist/lib/harness-tiers.d.ts +78 -0
  1994. package/dist/lib/harness-tiers.js +121 -0
  1995. package/dist/lib/harnesses.d.ts +138 -0
  1996. package/dist/lib/harnesses.js +168 -0
  1997. package/dist/lib/hosted-machines.d.ts +178 -0
  1998. package/dist/lib/hosted-machines.js +283 -0
  1999. package/dist/lib/http-error.d.ts +62 -0
  2000. package/dist/lib/http-error.js +107 -0
  2001. package/dist/lib/inbox.d.ts +63 -0
  2002. package/dist/lib/inbox.js +97 -0
  2003. package/dist/lib/ingress.d.ts +54 -0
  2004. package/dist/lib/ingress.js +72 -0
  2005. package/dist/lib/initiatives.d.ts +45 -0
  2006. package/dist/lib/initiatives.js +67 -0
  2007. package/dist/lib/instruction-input.d.ts +60 -0
  2008. package/dist/lib/instruction-input.js +135 -0
  2009. package/dist/lib/integrations-helpers.d.ts +15 -0
  2010. package/dist/lib/integrations-helpers.js +29 -0
  2011. package/dist/lib/keychain.d.ts +45 -0
  2012. package/dist/lib/keychain.js +318 -0
  2013. package/dist/lib/label-scope.d.ts +40 -0
  2014. package/dist/lib/label-scope.js +64 -0
  2015. package/dist/lib/login.d.ts +78 -0
  2016. package/dist/lib/login.js +495 -0
  2017. package/dist/lib/machines.d.ts +131 -0
  2018. package/dist/lib/machines.js +93 -0
  2019. package/dist/lib/measures.d.ts +59 -0
  2020. package/dist/lib/measures.js +95 -0
  2021. package/dist/lib/memory-scope.d.ts +38 -0
  2022. package/dist/lib/memory-scope.js +82 -0
  2023. package/dist/lib/memory-workspace-guidance.d.ts +12 -0
  2024. package/dist/lib/memory-workspace-guidance.js +16 -0
  2025. package/dist/lib/message-content.d.ts +17 -0
  2026. package/dist/lib/message-content.js +60 -0
  2027. package/dist/lib/message-intent.d.ts +166 -0
  2028. package/dist/lib/message-intent.js +287 -0
  2029. package/dist/lib/migrate.d.ts +21 -0
  2030. package/dist/lib/migrate.js +118 -0
  2031. package/dist/lib/node-adapter.d.ts +50 -0
  2032. package/dist/lib/node-adapter.js +365 -0
  2033. package/dist/lib/non-json-response.d.ts +49 -0
  2034. package/dist/lib/non-json-response.js +70 -0
  2035. package/dist/lib/northstars.d.ts +73 -0
  2036. package/dist/lib/northstars.js +278 -0
  2037. package/dist/lib/oauthLogin.d.ts +111 -0
  2038. package/dist/lib/oauthLogin.js +427 -0
  2039. package/dist/lib/outbox.d.ts +110 -0
  2040. package/dist/lib/outbox.js +423 -0
  2041. package/dist/lib/proactiveApi.d.ts +257 -0
  2042. package/dist/lib/proactiveApi.js +38 -0
  2043. package/dist/lib/projects.d.ts +293 -0
  2044. package/dist/lib/projects.js +519 -0
  2045. package/dist/lib/prompt.d.ts +55 -0
  2046. package/dist/lib/prompt.js +181 -0
  2047. package/dist/lib/publicEndpoints.generated.d.ts +10 -0
  2048. package/dist/lib/publicEndpoints.generated.js +15 -0
  2049. package/dist/lib/quota-render.d.ts +61 -0
  2050. package/dist/lib/quota-render.js +189 -0
  2051. package/dist/lib/reflection.d.ts +57 -0
  2052. package/dist/lib/reflection.js +140 -0
  2053. package/dist/lib/refresh.d.ts +79 -0
  2054. package/dist/lib/refresh.js +237 -0
  2055. package/dist/lib/runtime-context.d.ts +75 -0
  2056. package/dist/lib/runtime-context.js +158 -0
  2057. package/dist/lib/runtime-grants.d.ts +53 -0
  2058. package/dist/lib/runtime-grants.js +47 -0
  2059. package/dist/lib/schedule.d.ts +223 -0
  2060. package/dist/lib/schedule.js +193 -0
  2061. package/dist/lib/session-task-endpoints.d.ts +50 -0
  2062. package/dist/lib/session-task-endpoints.js +108 -0
  2063. package/dist/lib/shell-quote.d.ts +26 -0
  2064. package/dist/lib/shell-quote.js +42 -0
  2065. package/dist/lib/skill-library.d.ts +10 -0
  2066. package/dist/lib/skill-library.js +16 -0
  2067. package/dist/lib/sky-code-agent.d.ts +160 -0
  2068. package/dist/lib/sky-code-agent.js +417 -0
  2069. package/dist/lib/sky-code-broker.d.ts +226 -0
  2070. package/dist/lib/sky-code-broker.js +1148 -0
  2071. package/dist/lib/sky-code-doctor.d.ts +42 -0
  2072. package/dist/lib/sky-code-doctor.js +554 -0
  2073. package/dist/lib/sky-code-managed.d.ts +179 -0
  2074. package/dist/lib/sky-code-managed.js +354 -0
  2075. package/dist/lib/sky-code.d.ts +240 -0
  2076. package/dist/lib/sky-code.js +410 -0
  2077. package/dist/lib/slack-tools.d.ts +97 -0
  2078. package/dist/lib/slack-tools.js +47 -0
  2079. package/dist/lib/space-argument.d.ts +32 -0
  2080. package/dist/lib/space-argument.js +43 -0
  2081. package/dist/lib/space-members.d.ts +7 -0
  2082. package/dist/lib/space-members.js +39 -0
  2083. package/dist/lib/space-output.d.ts +28 -0
  2084. package/dist/lib/space-output.js +103 -0
  2085. package/dist/lib/space-resolver.d.ts +86 -0
  2086. package/dist/lib/space-resolver.js +181 -0
  2087. package/dist/lib/space-room.d.ts +65 -0
  2088. package/dist/lib/space-room.js +138 -0
  2089. package/dist/lib/space-templates.d.ts +122 -0
  2090. package/dist/lib/space-templates.js +256 -0
  2091. package/dist/lib/ssh-detect.d.ts +29 -0
  2092. package/dist/lib/ssh-detect.js +44 -0
  2093. package/dist/lib/task-execution.d.ts +90 -0
  2094. package/dist/lib/task-execution.js +329 -0
  2095. package/dist/lib/task-extras.d.ts +78 -0
  2096. package/dist/lib/task-extras.js +100 -0
  2097. package/dist/lib/task-instruction-offer.d.ts +5 -0
  2098. package/dist/lib/task-instruction-offer.js +116 -0
  2099. package/dist/lib/task-plan-output.d.ts +6 -0
  2100. package/dist/lib/task-plan-output.js +28 -0
  2101. package/dist/lib/task-pr.d.ts +11 -0
  2102. package/dist/lib/task-pr.js +11 -0
  2103. package/dist/lib/task-ref-resolver.d.ts +59 -0
  2104. package/dist/lib/task-ref-resolver.js +133 -0
  2105. package/dist/lib/task-report.d.ts +16 -0
  2106. package/dist/lib/task-report.js +71 -0
  2107. package/dist/lib/task-resolver.d.ts +45 -0
  2108. package/dist/lib/task-resolver.js +127 -0
  2109. package/dist/lib/task-transcript.d.ts +82 -0
  2110. package/dist/lib/task-transcript.js +201 -0
  2111. package/dist/lib/task-transfer.d.ts +42 -0
  2112. package/dist/lib/task-transfer.js +311 -0
  2113. package/dist/lib/task-tree.d.ts +23 -0
  2114. package/dist/lib/task-tree.js +152 -0
  2115. package/dist/lib/task-view-render.d.ts +71 -0
  2116. package/dist/lib/task-view-render.js +125 -0
  2117. package/dist/lib/tasks.d.ts +195 -0
  2118. package/dist/lib/tasks.js +714 -0
  2119. package/dist/lib/telephony-call.d.ts +36 -0
  2120. package/dist/lib/telephony-call.js +37 -0
  2121. package/dist/lib/tone-input.d.ts +48 -0
  2122. package/dist/lib/tone-input.js +187 -0
  2123. package/dist/lib/tone-workspace.d.ts +13 -0
  2124. package/dist/lib/tone-workspace.js +43 -0
  2125. package/dist/lib/triggers.d.ts +422 -0
  2126. package/dist/lib/triggers.js +920 -0
  2127. package/dist/lib/update-check.d.ts +31 -0
  2128. package/dist/lib/update-check.js +233 -0
  2129. package/dist/lib/usage-discovery.d.ts +75 -0
  2130. package/dist/lib/usage-discovery.js +227 -0
  2131. package/dist/lib/view-subscriptions.d.ts +32 -0
  2132. package/dist/lib/view-subscriptions.js +61 -0
  2133. package/dist/lib/views/vocabulary.d.ts +8 -0
  2134. package/dist/lib/views/vocabulary.js +23 -0
  2135. package/dist/lib/voice-call-intent.d.ts +65 -0
  2136. package/dist/lib/voice-call-intent.js +106 -0
  2137. package/dist/lib/warnings.d.ts +23 -0
  2138. package/dist/lib/warnings.js +24 -0
  2139. package/dist/lib/web-url.d.ts +176 -0
  2140. package/dist/lib/web-url.js +358 -0
  2141. package/dist/lib/wiki-update.d.ts +29 -0
  2142. package/dist/lib/wiki-update.js +49 -0
  2143. package/dist/lib/wiki.d.ts +53 -0
  2144. package/dist/lib/wiki.js +146 -0
  2145. package/dist/lib/workflow-templates.d.ts +145 -0
  2146. package/dist/lib/workflow-templates.js +571 -0
  2147. package/dist/lib/worklogs.d.ts +52 -0
  2148. package/dist/lib/worklogs.js +100 -0
  2149. package/dist/lib/workspace-header.d.ts +22 -0
  2150. package/dist/lib/workspace-header.js +41 -0
  2151. package/dist/lib/workspace-transfer.d.ts +20 -0
  2152. package/dist/lib/workspace-transfer.js +11 -0
  2153. package/dist/lib/workspaces.d.ts +75 -0
  2154. package/dist/lib/workspaces.js +111 -0
  2155. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/aead.d.ts +24 -0
  2156. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/aead.js +65 -0
  2157. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/authExpiredDetector.d.ts +65 -0
  2158. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/authExpiredDetector.js +89 -0
  2159. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/authHelper.d.ts +51 -0
  2160. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/authHelper.js +321 -0
  2161. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialEnvelope.d.ts +85 -0
  2162. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialEnvelope.js +230 -0
  2163. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialEnvelopeBridge.d.ts +116 -0
  2164. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialEnvelopeBridge.js +637 -0
  2165. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialResolver.d.ts +278 -0
  2166. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialResolver.js +423 -0
  2167. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/daemonPair.d.ts +172 -0
  2168. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/daemonPair.js +495 -0
  2169. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/daemonScopes.d.ts +74 -0
  2170. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/daemonScopes.js +84 -0
  2171. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/deviceIdentityBridge.d.ts +113 -0
  2172. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/deviceIdentityBridge.js +591 -0
  2173. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/deviceKey.d.ts +167 -0
  2174. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/deviceKey.js +332 -0
  2175. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/fdToken.d.ts +17 -0
  2176. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/fdToken.js +238 -0
  2177. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/harnessTrust.d.ts +72 -0
  2178. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/harnessTrust.js +103 -0
  2179. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/headers-helper.d.ts +25 -0
  2180. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/headers-helper.js +323 -0
  2181. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/index.d.ts +37 -0
  2182. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/index.js +305 -0
  2183. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/jwtUtils.d.ts +35 -0
  2184. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/jwtUtils.js +61 -0
  2185. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/index.d.ts +89 -0
  2186. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/index.js +208 -0
  2187. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/linux.d.ts +92 -0
  2188. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/linux.js +596 -0
  2189. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/macos.d.ts +112 -0
  2190. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/macos.js +599 -0
  2191. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/types.d.ts +111 -0
  2192. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/types.js +43 -0
  2193. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/windows.d.ts +71 -0
  2194. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/windows.js +350 -0
  2195. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/zeroize-registry.d.ts +44 -0
  2196. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/zeroize-registry.js +63 -0
  2197. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/legacyStatePreflight.d.ts +67 -0
  2198. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/legacyStatePreflight.js +78 -0
  2199. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/localIdentity.d.ts +54 -0
  2200. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/localIdentity.js +57 -0
  2201. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/loginLocalhost.d.ts +115 -0
  2202. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/loginLocalhost.js +368 -0
  2203. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/loginWithLocalhost.d.ts +131 -0
  2204. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/loginWithLocalhost.js +359 -0
  2205. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/machineId.d.ts +35 -0
  2206. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/machineId.js +239 -0
  2207. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/messages.d.ts +9 -0
  2208. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/messages.js +44 -0
  2209. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/package.json +3 -0
  2210. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/pkce.d.ts +62 -0
  2211. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/pkce.js +158 -0
  2212. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/recoveryCode.d.ts +61 -0
  2213. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/recoveryCode.js +213 -0
  2214. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refresh.d.ts +215 -0
  2215. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refresh.js +877 -0
  2216. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refreshClassification.d.ts +53 -0
  2217. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refreshClassification.js +105 -0
  2218. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refreshScheduler.d.ts +53 -0
  2219. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refreshScheduler.js +332 -0
  2220. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/runtime.d.ts +149 -0
  2221. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/runtime.js +136 -0
  2222. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/spawnEnv.d.ts +76 -0
  2223. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/spawnEnv.js +153 -0
  2224. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/ttlParser.d.ts +54 -0
  2225. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/ttlParser.js +87 -0
  2226. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/types.d.ts +91 -0
  2227. package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/types.js +26 -0
  2228. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/aead.d.ts +24 -0
  2229. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/aead.js +57 -0
  2230. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/authExpiredDetector.d.ts +65 -0
  2231. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/authExpiredDetector.js +85 -0
  2232. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/authHelper.d.ts +51 -0
  2233. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/authHelper.js +311 -0
  2234. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialEnvelope.d.ts +85 -0
  2235. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialEnvelope.js +213 -0
  2236. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialEnvelopeBridge.d.ts +116 -0
  2237. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialEnvelopeBridge.js +620 -0
  2238. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialResolver.d.ts +278 -0
  2239. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialResolver.js +414 -0
  2240. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/daemonPair.d.ts +172 -0
  2241. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/daemonPair.js +476 -0
  2242. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/daemonScopes.d.ts +74 -0
  2243. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/daemonScopes.js +80 -0
  2244. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/deviceIdentityBridge.d.ts +113 -0
  2245. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/deviceIdentityBridge.js +572 -0
  2246. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/deviceKey.d.ts +167 -0
  2247. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/deviceKey.js +320 -0
  2248. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/fdToken.d.ts +17 -0
  2249. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/fdToken.js +231 -0
  2250. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/harnessTrust.d.ts +72 -0
  2251. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/harnessTrust.js +97 -0
  2252. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/headers-helper.d.ts +25 -0
  2253. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/headers-helper.js +316 -0
  2254. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/index.d.ts +37 -0
  2255. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/index.js +144 -0
  2256. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/jwtUtils.d.ts +35 -0
  2257. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/jwtUtils.js +57 -0
  2258. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/index.d.ts +89 -0
  2259. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/index.js +162 -0
  2260. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/linux.d.ts +92 -0
  2261. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/linux.js +585 -0
  2262. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/macos.d.ts +112 -0
  2263. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/macos.js +586 -0
  2264. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/types.d.ts +111 -0
  2265. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/types.js +39 -0
  2266. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/windows.d.ts +71 -0
  2267. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/windows.js +344 -0
  2268. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/zeroize-registry.d.ts +44 -0
  2269. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/zeroize-registry.js +58 -0
  2270. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/legacyStatePreflight.d.ts +67 -0
  2271. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/legacyStatePreflight.js +71 -0
  2272. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/localIdentity.d.ts +54 -0
  2273. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/localIdentity.js +54 -0
  2274. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/loginLocalhost.d.ts +115 -0
  2275. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/loginLocalhost.js +355 -0
  2276. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/loginWithLocalhost.d.ts +131 -0
  2277. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/loginWithLocalhost.js +353 -0
  2278. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/machineId.d.ts +35 -0
  2279. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/machineId.js +231 -0
  2280. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/messages.d.ts +9 -0
  2281. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/messages.js +40 -0
  2282. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/pkce.d.ts +62 -0
  2283. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/pkce.js +148 -0
  2284. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/recoveryCode.d.ts +61 -0
  2285. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/recoveryCode.js +207 -0
  2286. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refresh.d.ts +215 -0
  2287. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refresh.js +863 -0
  2288. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refreshClassification.d.ts +53 -0
  2289. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refreshClassification.js +106 -0
  2290. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refreshScheduler.d.ts +53 -0
  2291. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refreshScheduler.js +329 -0
  2292. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/runtime.d.ts +149 -0
  2293. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/runtime.js +121 -0
  2294. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/spawnEnv.d.ts +76 -0
  2295. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/spawnEnv.js +149 -0
  2296. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/ttlParser.d.ts +54 -0
  2297. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/ttlParser.js +83 -0
  2298. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/types.d.ts +91 -0
  2299. package/dist/node_modules/@skrr-ai/auth-core/dist/esm/types.js +21 -0
  2300. package/dist/node_modules/@skrr-ai/auth-core/package.json +33 -0
  2301. package/dist/node_modules/@skrr-ai/data-provider/index.js +47601 -0
  2302. package/dist/node_modules/@skrr-ai/data-provider/package.json +9 -0
  2303. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/contract.d.ts +212 -0
  2304. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/contract.js +150 -0
  2305. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/index.d.ts +57 -0
  2306. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/index.js +89 -0
  2307. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/loopback-server.d.ts +70 -0
  2308. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/loopback-server.js +216 -0
  2309. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/managed-inference-broker.d.ts +226 -0
  2310. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/managed-inference-broker.js +1063 -0
  2311. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/managed-inference-renewal.d.ts +251 -0
  2312. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/managed-inference-renewal.js +294 -0
  2313. package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/package.json +3 -0
  2314. package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/contract.d.ts +212 -0
  2315. package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/contract.js +146 -0
  2316. package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/index.d.ts +57 -0
  2317. package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/index.js +60 -0
  2318. package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/loopback-server.d.ts +70 -0
  2319. package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/loopback-server.js +212 -0
  2320. package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/managed-inference-broker.d.ts +226 -0
  2321. package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/managed-inference-broker.js +1054 -0
  2322. package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/managed-inference-renewal.d.ts +251 -0
  2323. package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/managed-inference-renewal.js +289 -0
  2324. package/dist/node_modules/@skrr-ai/inference-broker/package.json +19 -0
  2325. package/oclif.manifest.json +76131 -0
  2326. package/package.json +426 -0
@@ -0,0 +1,305 @@
1
+ "use strict";
2
+ /**
3
+ * @skrr-ai/auth-core — shared auth substrate.
4
+ *
5
+ * Public surface for the OverSky daemon, Sky CLI, and Electron main
6
+ * process. Each consumer calls `configureAuthCore()` once at startup to
7
+ * wire up its logger, config dir, kill switches, and binary name — then
8
+ * uses the rest of the API uniformly.
9
+ */
10
+ Object.defineProperty(exports, "__esModule", { value: true });
11
+ exports.challenge = exports.generateVerifier = exports.invalidateHeadersHelperCache = exports.runHeadersHelper = exports.SENTINEL_TRIGGERING_FAILURES = exports.__resetAuthHelperFailureReasonForTest = exports.getLastAuthHelperFailureReason = exports.getDefaultHelperTtlMs = exports.invokeAuthHelper = exports.AuthHelperUnavailableError = exports.AuthHelperUntrustedError = exports.CI_TOKEN_PREFIX = exports.classifyTokenKind = exports.invalidateAuthHelperCache = exports.__resetCredentialResolverForTest = exports.CREDENTIAL_PRECEDENCE = exports.CredentialResolver = exports.__setFdReaderForTest = exports.readAuthFromFd = exports.createRefreshScheduler = exports.UNKNOWN_401_BUDGET = exports.__resetUnknown401StreaksForTest = exports.__refreshDiagnostics = exports.installLockExitHandlers = exports.clearReauthState = exports.needsReauthState = exports.persistReauthState = exports.withAuthLock = exports.revokeDaemonRefreshSession = exports.refreshDaemonToken = exports.classifyRefreshResponse = exports.EXIT_NEEDS_REAUTH = exports.formatReauthMessage = exports.handleMidStreamAuthExpiry = exports.isAuthExpiredSseEvent = exports.decodeJwtPayload = exports.decodeJwtExpiry = exports.TransientAuthFailure = exports.PermanentAuthFailure = exports.emitAuthTelemetry = exports.getAuthBinaryName = exports.getAuthKillSwitches = exports.getAuthConfigDir = exports.getAuthLogger = exports.configureAuthCore = exports.OAUTH_CLI_SCOPE = exports.isDaemonScope = exports.VALID_DAEMON_SCOPE_SET = exports.ALL_DAEMON_SCOPES = exports.SCOPES = void 0;
12
+ exports.tokenHash = exports.publicJwkFromX = exports.normalizeHtu = exports.jwkThumbprint = exports.generateDeviceKeyPair = exports.buildDeviceProof = exports.zeroizeKekCaches = exports.WindowsKek = exports.registerZeroizeHook = exports.MacosKek = exports.LinuxKek = exports.KekUnavailableError = exports.UnavailableKek = exports.InMemoryKek = exports.getKekStrategy = exports.__setKekStrategyForTest = exports.credEnvelopeWrap = exports.credEnvelopeUnwrap = exports.credEnvelopeSerialize = exports.credSealBuffer = exports.credOpenBuffer = exports.CRED_KEY_LEN = exports.isCredEnvelopeString = exports.generateDek = exports.CRED_ENVELOPE_MAGIC = exports.credEnvelopeEncrypt = exports.credEnvelopeDeserialize = exports.credEnvelopeDecrypt = exports.buildCredentialAad = exports.isValidRecoveryCode = exports.normalizeRecoveryCode = exports.parseRecoveryCode = exports.formatRecoveryCode = exports.MAX_TTL_DAYS = exports.MIN_TTL_DAYS = exports.parseTtlDays = exports.LoginExchangeError = exports.LoginInitError = exports.loginWithLocalhost = exports.LocalCallbackMalformedError = exports.LocalCallbackDeniedError = exports.LocalCallbackStateMismatchError = exports.LocalCallbackTimeoutError = exports.LocalCallbackBindError = exports.LocalCallbackError = exports.DEFAULT_LOGIN_TIMEOUT_MS = exports.startLocalCallback = exports.verifyChallenge = exports.safeEqual = exports.generateState = void 0;
13
+ exports.getHarnessTier = exports.HARNESS_TIERS = exports.pairUint8ArrayToBase64Url = exports.pairUint8ArrayToBase64 = exports.parsePairUrl = exports.parsePairPlaintext = exports.parsePairBundle = exports.openPairBundleBase64 = exports.generatePairKeyPair = exports.buildPairUrl = exports.buildPairAad = exports.pairBase64UrlToUint8Array = exports.pairBase64ToUint8Array = exports.assemblePairBundleBase64 = exports.PairBundleError = exports.PAIR_SECRET_LEN = exports.PAIR_PUBKEY_LEN = exports.PAIR_NONCE_LEN = exports.PAIR_BUNDLE_MAX_BASE64_LEN = exports.PAIR_AAD_MAX_LEN = exports.PAIR_AAD_PREFIX = exports.__resetCachedDaemonIdForTest = exports.legacyDaemonUuids = exports.ensureMachineDaemonId = exports.__getDeviceIdentityStateForTest = exports.__setDeviceIdentityStateForTest = exports.__enrollmentBackoffPathForTest = exports.__enrollmentMarkerPathForTest = exports.__privateKeyPathForTest = exports.__publicKeyPathForTest = exports.describeDeviceIdentityState = exports.getDevicePublicKey = exports.isDeviceIdentityActive = exports.clearEnrollmentMarker = exports.enrollWithServer = exports.signServerRequest = exports.resetDeviceIdentity = exports.initDeviceIdentity = exports.__resetShutdownGuardForTest = exports.__getCredEnvelopeStateForTest = exports.__setCredEnvelopeStateForTest = exports.__wrappedDekFilePathForTest = exports.maybeDecryptOnRead = exports.maybeEncryptForWrite = exports.describeCredEnvelopeState = exports.isCredEnvelopeActive = exports.shutdownCredEnvelope = exports.resetCredEnvelope = exports.initCredEnvelope = exports.verifyDeviceProof = void 0;
14
+ exports.describeLegacyState = exports.findLegacyLocalState = exports.DEFAULT_BINARY_NAME = exports.LEGACY_NATIVE_ID_PREFIXES = exports.NATIVE_ID_PREFIX = exports.LEGACY_CONFIG_DIR_NAMES = exports.CONFIG_DIR_NAME = exports.SENSITIVE_ENV_PREFIX_EXCEPTIONS = exports.SENSITIVE_ENV_SUFFIXES = exports.SENSITIVE_ENV_PREFIXES = exports.SENSITIVE_ENV_VARS = exports.sanitizeSpawnEnv = exports.tierPermitsConfiguredAutoMode = exports.credentialPolicyForTier = void 0;
15
+ // Daemon scope vocabulary — single source of truth for non-Mongoose tiers
16
+ // (daemon, desktop, cli). Schema-bound canonical lives in
17
+ // `@skrr-ai/data-schemas/common/daemonScopes`; the two are kept byte-equal
18
+ // by the api-side parity test. See daemonScopes.ts header for details.
19
+ var daemonScopes_js_1 = require("./daemonScopes.js");
20
+ Object.defineProperty(exports, "SCOPES", { enumerable: true, get: function () { return daemonScopes_js_1.SCOPES; } });
21
+ Object.defineProperty(exports, "ALL_DAEMON_SCOPES", { enumerable: true, get: function () { return daemonScopes_js_1.ALL_DAEMON_SCOPES; } });
22
+ Object.defineProperty(exports, "VALID_DAEMON_SCOPE_SET", { enumerable: true, get: function () { return daemonScopes_js_1.VALID_DAEMON_SCOPE_SET; } });
23
+ Object.defineProperty(exports, "isDaemonScope", { enumerable: true, get: function () { return daemonScopes_js_1.isDaemonScope; } });
24
+ Object.defineProperty(exports, "OAUTH_CLI_SCOPE", { enumerable: true, get: function () { return daemonScopes_js_1.OAUTH_CLI_SCOPE; } });
25
+ // Runtime / DI
26
+ var runtime_js_1 = require("./runtime.js");
27
+ Object.defineProperty(exports, "configureAuthCore", { enumerable: true, get: function () { return runtime_js_1.configureAuthCore; } });
28
+ Object.defineProperty(exports, "getAuthLogger", { enumerable: true, get: function () { return runtime_js_1.getAuthLogger; } });
29
+ Object.defineProperty(exports, "getAuthConfigDir", { enumerable: true, get: function () { return runtime_js_1.getAuthConfigDir; } });
30
+ Object.defineProperty(exports, "getAuthKillSwitches", { enumerable: true, get: function () { return runtime_js_1.getAuthKillSwitches; } });
31
+ Object.defineProperty(exports, "getAuthBinaryName", { enumerable: true, get: function () { return runtime_js_1.getAuthBinaryName; } });
32
+ Object.defineProperty(exports, "emitAuthTelemetry", { enumerable: true, get: function () { return runtime_js_1.emitAuthTelemetry; } });
33
+ // Types
34
+ var types_js_1 = require("./types.js");
35
+ Object.defineProperty(exports, "PermanentAuthFailure", { enumerable: true, get: function () { return types_js_1.PermanentAuthFailure; } });
36
+ Object.defineProperty(exports, "TransientAuthFailure", { enumerable: true, get: function () { return types_js_1.TransientAuthFailure; } });
37
+ // JWT helpers
38
+ var jwtUtils_js_1 = require("./jwtUtils.js");
39
+ Object.defineProperty(exports, "decodeJwtExpiry", { enumerable: true, get: function () { return jwtUtils_js_1.decodeJwtExpiry; } });
40
+ Object.defineProperty(exports, "decodeJwtPayload", { enumerable: true, get: function () { return jwtUtils_js_1.decodeJwtPayload; } });
41
+ // Mid-stream auth-expired SSE detector — recognises terminal "auth_expired"
42
+ // events from long-lived SSE / Socket.IO streams and orchestrates a
43
+ // refresher-driven recovery. Mobile RN keeps a byte-equal mirror; see file
44
+ // header.
45
+ var authExpiredDetector_js_1 = require("./authExpiredDetector.js");
46
+ Object.defineProperty(exports, "isAuthExpiredSseEvent", { enumerable: true, get: function () { return authExpiredDetector_js_1.isAuthExpiredSseEvent; } });
47
+ Object.defineProperty(exports, "handleMidStreamAuthExpiry", { enumerable: true, get: function () { return authExpiredDetector_js_1.handleMidStreamAuthExpiry; } });
48
+ // Reauth messaging
49
+ var messages_js_1 = require("./messages.js");
50
+ Object.defineProperty(exports, "formatReauthMessage", { enumerable: true, get: function () { return messages_js_1.formatReauthMessage; } });
51
+ Object.defineProperty(exports, "EXIT_NEEDS_REAUTH", { enumerable: true, get: function () { return messages_js_1.EXIT_NEEDS_REAUTH; } });
52
+ // Pure HTTP→{Permanent, Transient, Success} response classification —
53
+ // exposed so RN-side clients can apply the same mapping daemon uses.
54
+ var refreshClassification_js_1 = require("./refreshClassification.js");
55
+ Object.defineProperty(exports, "classifyRefreshResponse", { enumerable: true, get: function () { return refreshClassification_js_1.classifyRefreshResponse; } });
56
+ // Refresh
57
+ var refresh_js_1 = require("./refresh.js");
58
+ Object.defineProperty(exports, "refreshDaemonToken", { enumerable: true, get: function () { return refresh_js_1.refreshDaemonToken; } });
59
+ Object.defineProperty(exports, "revokeDaemonRefreshSession", { enumerable: true, get: function () { return refresh_js_1.revokeDaemonRefreshSession; } });
60
+ Object.defineProperty(exports, "withAuthLock", { enumerable: true, get: function () { return refresh_js_1.withAuthLock; } });
61
+ Object.defineProperty(exports, "persistReauthState", { enumerable: true, get: function () { return refresh_js_1.persistReauthState; } });
62
+ Object.defineProperty(exports, "needsReauthState", { enumerable: true, get: function () { return refresh_js_1.needsReauthState; } });
63
+ Object.defineProperty(exports, "clearReauthState", { enumerable: true, get: function () { return refresh_js_1.clearReauthState; } });
64
+ Object.defineProperty(exports, "installLockExitHandlers", { enumerable: true, get: function () { return refresh_js_1.installLockExitHandlers; } });
65
+ // H1 — Test-only diagnostic counters that prove every outgoing
66
+ // refresh request mints a fresh proof. Production code never reads
67
+ // this; tests use it to assert the per-attempt invariant.
68
+ Object.defineProperty(exports, "__refreshDiagnostics", { enumerable: true, get: function () { return refresh_js_1.__refreshDiagnostics; } });
69
+ // Finding 4 — Test-only reset for the per-daemonId unknown-shape-401
70
+ // retry budget. Lets tests start each case with a clean streak.
71
+ Object.defineProperty(exports, "__resetUnknown401StreaksForTest", { enumerable: true, get: function () { return refresh_js_1.__resetUnknown401StreaksForTest; } });
72
+ // Finding 4 follow-up (BOOT-BUDGET COUPLING) — consumed by the daemon's
73
+ // startup-recovery loop to statically assert
74
+ // `STARTUP_RECOVERY_MAX_ATTEMPTS >= UNKNOWN_401_BUDGET` so the in-process
75
+ // unknown-401 latch always fires before the boot loop yields to the
76
+ // supervisor. See daemon/src/auth.ts.
77
+ Object.defineProperty(exports, "UNKNOWN_401_BUDGET", { enumerable: true, get: function () { return refresh_js_1.UNKNOWN_401_BUDGET; } });
78
+ // Refresh scheduler
79
+ var refreshScheduler_js_1 = require("./refreshScheduler.js");
80
+ Object.defineProperty(exports, "createRefreshScheduler", { enumerable: true, get: function () { return refreshScheduler_js_1.createRefreshScheduler; } });
81
+ // Fd handoff
82
+ var fdToken_js_1 = require("./fdToken.js");
83
+ Object.defineProperty(exports, "readAuthFromFd", { enumerable: true, get: function () { return fdToken_js_1.readAuthFromFd; } });
84
+ Object.defineProperty(exports, "__setFdReaderForTest", { enumerable: true, get: function () { return fdToken_js_1.__setFdReaderForTest; } });
85
+ // Credential resolver — Phase H precedence chain + Phase I tokenKind
86
+ var credentialResolver_js_1 = require("./credentialResolver.js");
87
+ Object.defineProperty(exports, "CredentialResolver", { enumerable: true, get: function () { return credentialResolver_js_1.CredentialResolver; } });
88
+ Object.defineProperty(exports, "CREDENTIAL_PRECEDENCE", { enumerable: true, get: function () { return credentialResolver_js_1.CREDENTIAL_PRECEDENCE; } });
89
+ Object.defineProperty(exports, "__resetCredentialResolverForTest", { enumerable: true, get: function () { return credentialResolver_js_1.__resetCredentialResolverForTest; } });
90
+ // H3-6 — public seam 401 handlers call to bust the helper cache so
91
+ // the next resolve re-invokes OVERSKY_AUTH_HELPER immediately
92
+ // instead of serving the stale cached token for up to its TTL.
93
+ Object.defineProperty(exports, "invalidateAuthHelperCache", { enumerable: true, get: function () { return credentialResolver_js_1.invalidateAuthHelperCache; } });
94
+ Object.defineProperty(exports, "classifyTokenKind", { enumerable: true, get: function () { return credentialResolver_js_1.classifyTokenKind; } });
95
+ Object.defineProperty(exports, "CI_TOKEN_PREFIX", { enumerable: true, get: function () { return credentialResolver_js_1.CI_TOKEN_PREFIX; } });
96
+ // L6.1 / L6.3 — fail-closed errors thrown by the auth-helper slot.
97
+ Object.defineProperty(exports, "AuthHelperUntrustedError", { enumerable: true, get: function () { return credentialResolver_js_1.AuthHelperUntrustedError; } });
98
+ Object.defineProperty(exports, "AuthHelperUnavailableError", { enumerable: true, get: function () { return credentialResolver_js_1.AuthHelperUnavailableError; } });
99
+ // Auth helper — invocation contract for OVERSKY_AUTH_HELPER
100
+ var authHelper_js_1 = require("./authHelper.js");
101
+ Object.defineProperty(exports, "invokeAuthHelper", { enumerable: true, get: function () { return authHelper_js_1.invokeAuthHelper; } });
102
+ Object.defineProperty(exports, "getDefaultHelperTtlMs", { enumerable: true, get: function () { return authHelper_js_1.getDefaultHelperTtlMs; } });
103
+ Object.defineProperty(exports, "getLastAuthHelperFailureReason", { enumerable: true, get: function () { return authHelper_js_1.getLastAuthHelperFailureReason; } });
104
+ Object.defineProperty(exports, "__resetAuthHelperFailureReasonForTest", { enumerable: true, get: function () { return authHelper_js_1.__resetAuthHelperFailureReasonForTest; } });
105
+ Object.defineProperty(exports, "SENTINEL_TRIGGERING_FAILURES", { enumerable: true, get: function () { return authHelper_js_1.SENTINEL_TRIGGERING_FAILURES; } });
106
+ // Headers helper — invocation contract for OVERSKY_HEADERS_HELPER
107
+ // (authenticates OverSky to outbound MCP servers)
108
+ var headers_helper_js_1 = require("./headers-helper.js");
109
+ Object.defineProperty(exports, "runHeadersHelper", { enumerable: true, get: function () { return headers_helper_js_1.runHeadersHelper; } });
110
+ Object.defineProperty(exports, "invalidateHeadersHelperCache", { enumerable: true, get: function () { return headers_helper_js_1.invalidateHeadersHelperCache; } });
111
+ // PKCE — RFC 7636 primitives for the Phase H.0 localhost-callback login.
112
+ // Keep `safeEqual` and `verifyChallenge` exported even though they are
113
+ // server-side concerns: server code consumes auth-core via the same
114
+ // public surface and the alternative (a separate server-only module)
115
+ // fragments the spec implementation across two locations.
116
+ var pkce_js_1 = require("./pkce.js");
117
+ Object.defineProperty(exports, "generateVerifier", { enumerable: true, get: function () { return pkce_js_1.generateVerifier; } });
118
+ Object.defineProperty(exports, "challenge", { enumerable: true, get: function () { return pkce_js_1.challenge; } });
119
+ Object.defineProperty(exports, "generateState", { enumerable: true, get: function () { return pkce_js_1.generateState; } });
120
+ Object.defineProperty(exports, "safeEqual", { enumerable: true, get: function () { return pkce_js_1.safeEqual; } });
121
+ Object.defineProperty(exports, "verifyChallenge", { enumerable: true, get: function () { return pkce_js_1.verifyChallenge; } });
122
+ // Local 127.0.0.1 callback server — Phase H.0.2.
123
+ // Keep error classes exported; callers branch on them to decide
124
+ // fallback behavior (BindError → retry on different port; TimeoutError
125
+ // → fall back to device-code; StateMismatchError → fail loudly).
126
+ var loginLocalhost_js_1 = require("./loginLocalhost.js");
127
+ Object.defineProperty(exports, "startLocalCallback", { enumerable: true, get: function () { return loginLocalhost_js_1.startLocalCallback; } });
128
+ Object.defineProperty(exports, "DEFAULT_LOGIN_TIMEOUT_MS", { enumerable: true, get: function () { return loginLocalhost_js_1.DEFAULT_LOGIN_TIMEOUT_MS; } });
129
+ Object.defineProperty(exports, "LocalCallbackError", { enumerable: true, get: function () { return loginLocalhost_js_1.LocalCallbackError; } });
130
+ Object.defineProperty(exports, "LocalCallbackBindError", { enumerable: true, get: function () { return loginLocalhost_js_1.LocalCallbackBindError; } });
131
+ Object.defineProperty(exports, "LocalCallbackTimeoutError", { enumerable: true, get: function () { return loginLocalhost_js_1.LocalCallbackTimeoutError; } });
132
+ Object.defineProperty(exports, "LocalCallbackStateMismatchError", { enumerable: true, get: function () { return loginLocalhost_js_1.LocalCallbackStateMismatchError; } });
133
+ Object.defineProperty(exports, "LocalCallbackDeniedError", { enumerable: true, get: function () { return loginLocalhost_js_1.LocalCallbackDeniedError; } });
134
+ Object.defineProperty(exports, "LocalCallbackMalformedError", { enumerable: true, get: function () { return loginLocalhost_js_1.LocalCallbackMalformedError; } });
135
+ // Phase H.0.2.b — single-call orchestrator that ties PKCE + local
136
+ // callback + server endpoints into the daemon-style token bundle.
137
+ // Daemon/CLI consume this; auth-core is platform-agnostic via the
138
+ // caller-injected `openBrowser` and `fetchImpl`.
139
+ var loginWithLocalhost_js_1 = require("./loginWithLocalhost.js");
140
+ Object.defineProperty(exports, "loginWithLocalhost", { enumerable: true, get: function () { return loginWithLocalhost_js_1.loginWithLocalhost; } });
141
+ Object.defineProperty(exports, "LoginInitError", { enumerable: true, get: function () { return loginWithLocalhost_js_1.LoginInitError; } });
142
+ Object.defineProperty(exports, "LoginExchangeError", { enumerable: true, get: function () { return loginWithLocalhost_js_1.LoginExchangeError; } });
143
+ // ADD-CLI1 — shared `--ttl` parser for `create-token`. Both the
144
+ // daemon CLI (`oversky create-token`) and the oclif CLI (`sky
145
+ // create-token`) import from here to prevent grammar drift.
146
+ var ttlParser_js_1 = require("./ttlParser.js");
147
+ Object.defineProperty(exports, "parseTtlDays", { enumerable: true, get: function () { return ttlParser_js_1.parseTtlDays; } });
148
+ Object.defineProperty(exports, "MIN_TTL_DAYS", { enumerable: true, get: function () { return ttlParser_js_1.MIN_TTL_DAYS; } });
149
+ Object.defineProperty(exports, "MAX_TTL_DAYS", { enumerable: true, get: function () { return ttlParser_js_1.MAX_TTL_DAYS; } });
150
+ // Tier 1 #3 — printable account-recovery code format (1Password-style
151
+ // 11-group base32). Server, CLI, and daemon-side helper all import from here.
152
+ var recoveryCode_js_1 = require("./recoveryCode.js");
153
+ Object.defineProperty(exports, "formatRecoveryCode", { enumerable: true, get: function () { return recoveryCode_js_1.formatRecoveryCode; } });
154
+ Object.defineProperty(exports, "parseRecoveryCode", { enumerable: true, get: function () { return recoveryCode_js_1.parseRecoveryCode; } });
155
+ Object.defineProperty(exports, "normalizeRecoveryCode", { enumerable: true, get: function () { return recoveryCode_js_1.normalizeRecoveryCode; } });
156
+ Object.defineProperty(exports, "isValidRecoveryCode", { enumerable: true, get: function () { return recoveryCode_js_1.isValidRecoveryCode; } });
157
+ // L12 Layer 0 — at-rest credential envelope encryption primitives.
158
+ // Pure crypto, no platform code. Daemon and CLI both consume.
159
+ var credentialEnvelope_js_1 = require("./credentialEnvelope.js");
160
+ Object.defineProperty(exports, "buildCredentialAad", { enumerable: true, get: function () { return credentialEnvelope_js_1.buildCredentialAad; } });
161
+ Object.defineProperty(exports, "credEnvelopeDecrypt", { enumerable: true, get: function () { return credentialEnvelope_js_1.decrypt; } });
162
+ Object.defineProperty(exports, "credEnvelopeDeserialize", { enumerable: true, get: function () { return credentialEnvelope_js_1.deserialize; } });
163
+ Object.defineProperty(exports, "credEnvelopeEncrypt", { enumerable: true, get: function () { return credentialEnvelope_js_1.encrypt; } });
164
+ Object.defineProperty(exports, "CRED_ENVELOPE_MAGIC", { enumerable: true, get: function () { return credentialEnvelope_js_1.ENVELOPE_MAGIC; } });
165
+ Object.defineProperty(exports, "generateDek", { enumerable: true, get: function () { return credentialEnvelope_js_1.generateDek; } });
166
+ Object.defineProperty(exports, "isCredEnvelopeString", { enumerable: true, get: function () { return credentialEnvelope_js_1.isEnvelopeString; } });
167
+ Object.defineProperty(exports, "CRED_KEY_LEN", { enumerable: true, get: function () { return credentialEnvelope_js_1.KEY_LEN; } });
168
+ Object.defineProperty(exports, "credOpenBuffer", { enumerable: true, get: function () { return credentialEnvelope_js_1.openBuffer; } });
169
+ Object.defineProperty(exports, "credSealBuffer", { enumerable: true, get: function () { return credentialEnvelope_js_1.sealBuffer; } });
170
+ Object.defineProperty(exports, "credEnvelopeSerialize", { enumerable: true, get: function () { return credentialEnvelope_js_1.serialize; } });
171
+ Object.defineProperty(exports, "credEnvelopeUnwrap", { enumerable: true, get: function () { return credentialEnvelope_js_1.unwrap; } });
172
+ Object.defineProperty(exports, "credEnvelopeWrap", { enumerable: true, get: function () { return credentialEnvelope_js_1.wrap; } });
173
+ // L12 Layer 1 — KEK platform-strategy interface and implementations.
174
+ //
175
+ // This block used to claim "today every strategy reports available=false so
176
+ // the daemon falls through to legacy plaintext". That has not been true since
177
+ // the macOS `security(1)` backend (C5) and the Linux tier-3 machine-id HKDF
178
+ // fallback shipped: on Linux `available()` is now essentially always true, and
179
+ // on macOS it is true whenever a login keychain resolves. The stale note is
180
+ // worth calling out rather than deleting, because four daemon suites were
181
+ // written against it and only failed once CI first ran them on Linux.
182
+ //
183
+ // Tests that need the unavailable branch must inject `UnavailableKek`;
184
+ // `__setKekStrategyForTest(null)` restores the PLATFORM default, which is not
185
+ // the same thing and differs per OS.
186
+ var index_js_1 = require("./kek/index.js");
187
+ Object.defineProperty(exports, "__setKekStrategyForTest", { enumerable: true, get: function () { return index_js_1.__setKekStrategyForTest; } });
188
+ Object.defineProperty(exports, "getKekStrategy", { enumerable: true, get: function () { return index_js_1.getKekStrategy; } });
189
+ Object.defineProperty(exports, "InMemoryKek", { enumerable: true, get: function () { return index_js_1.InMemoryKek; } });
190
+ Object.defineProperty(exports, "UnavailableKek", { enumerable: true, get: function () { return index_js_1.UnavailableKek; } });
191
+ Object.defineProperty(exports, "KekUnavailableError", { enumerable: true, get: function () { return index_js_1.KekUnavailableError; } });
192
+ Object.defineProperty(exports, "LinuxKek", { enumerable: true, get: function () { return index_js_1.LinuxKek; } });
193
+ Object.defineProperty(exports, "MacosKek", { enumerable: true, get: function () { return index_js_1.MacosKek; } });
194
+ Object.defineProperty(exports, "registerZeroizeHook", { enumerable: true, get: function () { return index_js_1.registerZeroizeHook; } });
195
+ Object.defineProperty(exports, "WindowsKek", { enumerable: true, get: function () { return index_js_1.WindowsKek; } });
196
+ Object.defineProperty(exports, "zeroizeKekCaches", { enumerable: true, get: function () { return index_js_1.zeroizeKekCaches; } });
197
+ // L11 Phase 1 — Device identity (Ed25519) + DPoP-shaped proof JWS.
198
+ // The crypto half of the two-axis identity story; daemon-side
199
+ // persistence + signing lives in `daemon/src/deviceIdentity.ts`.
200
+ // Server-side verification middleware is a later PR.
201
+ var deviceKey_js_1 = require("./deviceKey.js");
202
+ Object.defineProperty(exports, "buildDeviceProof", { enumerable: true, get: function () { return deviceKey_js_1.buildProof; } });
203
+ Object.defineProperty(exports, "generateDeviceKeyPair", { enumerable: true, get: function () { return deviceKey_js_1.generateDeviceKeyPair; } });
204
+ Object.defineProperty(exports, "jwkThumbprint", { enumerable: true, get: function () { return deviceKey_js_1.jwkThumbprint; } });
205
+ Object.defineProperty(exports, "normalizeHtu", { enumerable: true, get: function () { return deviceKey_js_1.normalizeHtu; } });
206
+ Object.defineProperty(exports, "publicJwkFromX", { enumerable: true, get: function () { return deviceKey_js_1.publicJwkFromX; } });
207
+ Object.defineProperty(exports, "tokenHash", { enumerable: true, get: function () { return deviceKey_js_1.tokenHash; } });
208
+ Object.defineProperty(exports, "verifyDeviceProof", { enumerable: true, get: function () { return deviceKey_js_1.verifyProof; } });
209
+ // L11/L12 — composed runtime: init, transforms, sign, enroll, locks.
210
+ // Daemon and CLI consume these; the underlying primitives live above.
211
+ var credentialEnvelopeBridge_js_1 = require("./credentialEnvelopeBridge.js");
212
+ // credEnvelope bridge
213
+ Object.defineProperty(exports, "initCredEnvelope", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.initCredEnvelope; } });
214
+ Object.defineProperty(exports, "resetCredEnvelope", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.resetCredEnvelope; } });
215
+ Object.defineProperty(exports, "shutdownCredEnvelope", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.shutdownCredEnvelope; } });
216
+ Object.defineProperty(exports, "isCredEnvelopeActive", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.isCredEnvelopeActive; } });
217
+ Object.defineProperty(exports, "describeCredEnvelopeState", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.describeCredEnvelopeState; } });
218
+ Object.defineProperty(exports, "maybeEncryptForWrite", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.maybeEncryptForWrite; } });
219
+ Object.defineProperty(exports, "maybeDecryptOnRead", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.maybeDecryptOnRead; } });
220
+ // Test seams — `__`-prefixed so consumers don't import them in
221
+ // production code paths. Re-exported here so CLI/daemon spec files
222
+ // can resolve the wrapped-DEK path against the same module instance.
223
+ Object.defineProperty(exports, "__wrappedDekFilePathForTest", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.__wrappedDekFilePathForTest; } });
224
+ Object.defineProperty(exports, "__setCredEnvelopeStateForTest", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.__setStateForTest; } });
225
+ Object.defineProperty(exports, "__getCredEnvelopeStateForTest", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.__getStateForTest; } });
226
+ Object.defineProperty(exports, "__resetShutdownGuardForTest", { enumerable: true, get: function () { return credentialEnvelopeBridge_js_1.__resetShutdownGuardForTest; } });
227
+ var deviceIdentityBridge_js_1 = require("./deviceIdentityBridge.js");
228
+ // deviceIdentity bridge
229
+ Object.defineProperty(exports, "initDeviceIdentity", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.initDeviceIdentity; } });
230
+ Object.defineProperty(exports, "resetDeviceIdentity", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.resetDeviceIdentity; } });
231
+ Object.defineProperty(exports, "signServerRequest", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.signServerRequest; } });
232
+ Object.defineProperty(exports, "enrollWithServer", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.enrollWithServer; } });
233
+ Object.defineProperty(exports, "clearEnrollmentMarker", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.clearEnrollmentMarker; } });
234
+ Object.defineProperty(exports, "isDeviceIdentityActive", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.isDeviceIdentityActive; } });
235
+ Object.defineProperty(exports, "getDevicePublicKey", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.getDevicePublicKey; } });
236
+ Object.defineProperty(exports, "describeDeviceIdentityState", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.describeDeviceIdentityState; } });
237
+ // Test seams — file path resolvers + state setters for spec files.
238
+ Object.defineProperty(exports, "__publicKeyPathForTest", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.__publicKeyPathForTest; } });
239
+ Object.defineProperty(exports, "__privateKeyPathForTest", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.__privateKeyPathForTest; } });
240
+ Object.defineProperty(exports, "__enrollmentMarkerPathForTest", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.__enrollmentMarkerPathForTest; } });
241
+ Object.defineProperty(exports, "__enrollmentBackoffPathForTest", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.__enrollmentBackoffPathForTest; } });
242
+ Object.defineProperty(exports, "__setDeviceIdentityStateForTest", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.__setStateForTest; } });
243
+ Object.defineProperty(exports, "__getDeviceIdentityStateForTest", { enumerable: true, get: function () { return deviceIdentityBridge_js_1.__getStateForTest; } });
244
+ // Stable per-machine UUIDv7 identity persisted at <configDir>/daemon.id.
245
+ var machineId_js_1 = require("./machineId.js");
246
+ Object.defineProperty(exports, "ensureMachineDaemonId", { enumerable: true, get: function () { return machineId_js_1.ensureMachineDaemonId; } });
247
+ Object.defineProperty(exports, "legacyDaemonUuids", { enumerable: true, get: function () { return machineId_js_1.legacyDaemonUuids; } });
248
+ Object.defineProperty(exports, "__resetCachedDaemonIdForTest", { enumerable: true, get: function () { return machineId_js_1.__resetCachedDaemonIdForTest; } });
249
+ // Tier 1 #2 — daemon QR pairing primitives. Pure crypto + AAD framing,
250
+ // shared between the daemon CLI orchestrator (`daemon/src/pair.ts`) and
251
+ // any future native-app callers. The mobile RN client mirrors the same
252
+ // shapes locally because it can't pull a Node-shaped package.
253
+ var daemonPair_js_1 = require("./daemonPair.js");
254
+ Object.defineProperty(exports, "PAIR_AAD_PREFIX", { enumerable: true, get: function () { return daemonPair_js_1.PAIR_AAD_PREFIX; } });
255
+ Object.defineProperty(exports, "PAIR_AAD_MAX_LEN", { enumerable: true, get: function () { return daemonPair_js_1.PAIR_AAD_MAX_LEN; } });
256
+ Object.defineProperty(exports, "PAIR_BUNDLE_MAX_BASE64_LEN", { enumerable: true, get: function () { return daemonPair_js_1.PAIR_BUNDLE_MAX_BASE64_LEN; } });
257
+ Object.defineProperty(exports, "PAIR_NONCE_LEN", { enumerable: true, get: function () { return daemonPair_js_1.PAIR_NONCE_LEN; } });
258
+ Object.defineProperty(exports, "PAIR_PUBKEY_LEN", { enumerable: true, get: function () { return daemonPair_js_1.PAIR_PUBKEY_LEN; } });
259
+ Object.defineProperty(exports, "PAIR_SECRET_LEN", { enumerable: true, get: function () { return daemonPair_js_1.PAIR_SECRET_LEN; } });
260
+ Object.defineProperty(exports, "PairBundleError", { enumerable: true, get: function () { return daemonPair_js_1.PairBundleError; } });
261
+ Object.defineProperty(exports, "assemblePairBundleBase64", { enumerable: true, get: function () { return daemonPair_js_1.assemblePairBundleBase64; } });
262
+ Object.defineProperty(exports, "pairBase64ToUint8Array", { enumerable: true, get: function () { return daemonPair_js_1.base64ToUint8Array; } });
263
+ Object.defineProperty(exports, "pairBase64UrlToUint8Array", { enumerable: true, get: function () { return daemonPair_js_1.base64UrlToUint8Array; } });
264
+ Object.defineProperty(exports, "buildPairAad", { enumerable: true, get: function () { return daemonPair_js_1.buildPairAad; } });
265
+ Object.defineProperty(exports, "buildPairUrl", { enumerable: true, get: function () { return daemonPair_js_1.buildPairUrl; } });
266
+ Object.defineProperty(exports, "generatePairKeyPair", { enumerable: true, get: function () { return daemonPair_js_1.generatePairKeyPair; } });
267
+ Object.defineProperty(exports, "openPairBundleBase64", { enumerable: true, get: function () { return daemonPair_js_1.openPairBundleBase64; } });
268
+ Object.defineProperty(exports, "parsePairBundle", { enumerable: true, get: function () { return daemonPair_js_1.parsePairBundle; } });
269
+ Object.defineProperty(exports, "parsePairPlaintext", { enumerable: true, get: function () { return daemonPair_js_1.parsePairPlaintext; } });
270
+ Object.defineProperty(exports, "parsePairUrl", { enumerable: true, get: function () { return daemonPair_js_1.parsePairUrl; } });
271
+ Object.defineProperty(exports, "pairUint8ArrayToBase64", { enumerable: true, get: function () { return daemonPair_js_1.uint8ArrayToBase64; } });
272
+ Object.defineProperty(exports, "pairUint8ArrayToBase64Url", { enumerable: true, get: function () { return daemonPair_js_1.uint8ArrayToBase64Url; } });
273
+ // OSK-3897 — harness trust tiers, shared by the daemon (the authority) and the
274
+ // CLI (which publishes the fact in `sky code doctor`). The PROVENANCE half stays
275
+ // in the daemon on purpose: a tier is a published fact, provenance is evidence
276
+ // about bytes on disk that only the spawning process can gather.
277
+ var harnessTrust_js_1 = require("./harnessTrust.js");
278
+ Object.defineProperty(exports, "HARNESS_TIERS", { enumerable: true, get: function () { return harnessTrust_js_1.HARNESS_TIERS; } });
279
+ Object.defineProperty(exports, "getHarnessTier", { enumerable: true, get: function () { return harnessTrust_js_1.getHarnessTier; } });
280
+ Object.defineProperty(exports, "credentialPolicyForTier", { enumerable: true, get: function () { return harnessTrust_js_1.credentialPolicyForTier; } });
281
+ Object.defineProperty(exports, "tierPermitsConfiguredAutoMode", { enumerable: true, get: function () { return harnessTrust_js_1.tierPermitsConfiguredAutoMode; } });
282
+ // OSK-3892 — spawn-env sanitization, shared by the daemon (which has stripped
283
+ // its own credentials before every harness spawn all along) and the CLI (which
284
+ // spawns the SAME engine and did not). `daemon/src/env-sanitize.ts` re-exports
285
+ // these so its own importers are unchanged, and keeps `filterCustomEnv` — that
286
+ // governs SERVER-PROVIDED env, which no other process is handed.
287
+ var spawnEnv_js_1 = require("./spawnEnv.js");
288
+ Object.defineProperty(exports, "sanitizeSpawnEnv", { enumerable: true, get: function () { return spawnEnv_js_1.sanitizeSpawnEnv; } });
289
+ Object.defineProperty(exports, "SENSITIVE_ENV_VARS", { enumerable: true, get: function () { return spawnEnv_js_1.SENSITIVE_ENV_VARS; } });
290
+ Object.defineProperty(exports, "SENSITIVE_ENV_PREFIXES", { enumerable: true, get: function () { return spawnEnv_js_1.SENSITIVE_ENV_PREFIXES; } });
291
+ Object.defineProperty(exports, "SENSITIVE_ENV_SUFFIXES", { enumerable: true, get: function () { return spawnEnv_js_1.SENSITIVE_ENV_SUFFIXES; } });
292
+ Object.defineProperty(exports, "SENSITIVE_ENV_PREFIX_EXCEPTIONS", { enumerable: true, get: function () { return spawnEnv_js_1.SENSITIVE_ENV_PREFIX_EXCEPTIONS; } });
293
+ /* Local-machine identity — the names this product leaves on a disk. Exported so
294
+ the CLI, daemon and Desktop share one definition instead of 47 literals. */
295
+ var localIdentity_js_1 = require("./localIdentity.js");
296
+ Object.defineProperty(exports, "CONFIG_DIR_NAME", { enumerable: true, get: function () { return localIdentity_js_1.CONFIG_DIR_NAME; } });
297
+ Object.defineProperty(exports, "LEGACY_CONFIG_DIR_NAMES", { enumerable: true, get: function () { return localIdentity_js_1.LEGACY_CONFIG_DIR_NAMES; } });
298
+ Object.defineProperty(exports, "NATIVE_ID_PREFIX", { enumerable: true, get: function () { return localIdentity_js_1.NATIVE_ID_PREFIX; } });
299
+ Object.defineProperty(exports, "LEGACY_NATIVE_ID_PREFIXES", { enumerable: true, get: function () { return localIdentity_js_1.LEGACY_NATIVE_ID_PREFIXES; } });
300
+ Object.defineProperty(exports, "DEFAULT_BINARY_NAME", { enumerable: true, get: function () { return localIdentity_js_1.DEFAULT_BINARY_NAME; } });
301
+ /* Pre-rename state detection. Callers REFUSE on a positive result; nothing here
302
+ reads, copies or removes what it finds (§7.2, §8.4). */
303
+ var legacyStatePreflight_js_1 = require("./legacyStatePreflight.js");
304
+ Object.defineProperty(exports, "findLegacyLocalState", { enumerable: true, get: function () { return legacyStatePreflight_js_1.findLegacyLocalState; } });
305
+ Object.defineProperty(exports, "describeLegacyState", { enumerable: true, get: function () { return legacyStatePreflight_js_1.describeLegacyState; } });
@@ -0,0 +1,35 @@
1
+ /**
2
+ * jwtUtils.ts — signature-less JWT payload inspection.
3
+ *
4
+ * Used by the proactive refresh scheduler to read the `exp` claim off an
5
+ * access token without round-tripping to the server. We do NOT verify the
6
+ * signature here — the token is one the server just issued to us, and any
7
+ * tampering would surface as a 401 on the next API call anyway.
8
+ *
9
+ * THEREFORE: NOTHING THESE FUNCTIONS RETURN MAY DECIDE WHAT THE HOLDER IS
10
+ * ALLOWED TO DO.
11
+ *
12
+ * The reasoning above is only sound because the decoded values are used to
13
+ * schedule work (when to refresh) and to pick a local code path — never to
14
+ * grant anything. A claim read here is attacker-controlled input in the exact
15
+ * case that matters: anyone who can write the credential file, set the env var,
16
+ * or hand us a token over an fd can put any `scope`, `role`, `exp` or `sub` in
17
+ * it, because forging a payload requires no key when nobody checks the
18
+ * signature. "It would 401 later" is not a control if the decision was already
19
+ * made locally before any call went out.
20
+ *
21
+ * Safe: refresh timing, telemetry, diagnostics, choosing which resolver branch
22
+ * to take. Unsafe: gating a capability, trusting an identity, skipping a check,
23
+ * widening a scope. If you need a claim you can trust, verify the signature or
24
+ * ask the server.
25
+ *
26
+ * `credentialResolver.classifyTokenKind` is the one non-`exp` reader today; see
27
+ * the note there for why routing on `scope` is not an authorization decision.
28
+ */
29
+ /** Base64url-decode the middle segment of a JWT and JSON-parse it. */
30
+ export declare function decodeJwtPayload(token: string): unknown | null;
31
+ /**
32
+ * Decode the `exp` (expiry) claim from a JWT without verifying the signature.
33
+ * @returns The `exp` value in Unix seconds, or `null` if unparseable / missing.
34
+ */
35
+ export declare function decodeJwtExpiry(token: string): number | null;
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ /**
3
+ * jwtUtils.ts — signature-less JWT payload inspection.
4
+ *
5
+ * Used by the proactive refresh scheduler to read the `exp` claim off an
6
+ * access token without round-tripping to the server. We do NOT verify the
7
+ * signature here — the token is one the server just issued to us, and any
8
+ * tampering would surface as a 401 on the next API call anyway.
9
+ *
10
+ * THEREFORE: NOTHING THESE FUNCTIONS RETURN MAY DECIDE WHAT THE HOLDER IS
11
+ * ALLOWED TO DO.
12
+ *
13
+ * The reasoning above is only sound because the decoded values are used to
14
+ * schedule work (when to refresh) and to pick a local code path — never to
15
+ * grant anything. A claim read here is attacker-controlled input in the exact
16
+ * case that matters: anyone who can write the credential file, set the env var,
17
+ * or hand us a token over an fd can put any `scope`, `role`, `exp` or `sub` in
18
+ * it, because forging a payload requires no key when nobody checks the
19
+ * signature. "It would 401 later" is not a control if the decision was already
20
+ * made locally before any call went out.
21
+ *
22
+ * Safe: refresh timing, telemetry, diagnostics, choosing which resolver branch
23
+ * to take. Unsafe: gating a capability, trusting an identity, skipping a check,
24
+ * widening a scope. If you need a claim you can trust, verify the signature or
25
+ * ask the server.
26
+ *
27
+ * `credentialResolver.classifyTokenKind` is the one non-`exp` reader today; see
28
+ * the note there for why routing on `scope` is not an authorization decision.
29
+ */
30
+ Object.defineProperty(exports, "__esModule", { value: true });
31
+ exports.decodeJwtPayload = decodeJwtPayload;
32
+ exports.decodeJwtExpiry = decodeJwtExpiry;
33
+ /** Base64url-decode the middle segment of a JWT and JSON-parse it. */
34
+ function decodeJwtPayload(token) {
35
+ if (typeof token !== 'string' || token.length === 0)
36
+ return null;
37
+ const parts = token.split('.');
38
+ if (parts.length !== 3 || !parts[1])
39
+ return null;
40
+ try {
41
+ const json = Buffer.from(parts[1], 'base64url').toString('utf8');
42
+ return JSON.parse(json);
43
+ }
44
+ catch {
45
+ return null;
46
+ }
47
+ }
48
+ /**
49
+ * Decode the `exp` (expiry) claim from a JWT without verifying the signature.
50
+ * @returns The `exp` value in Unix seconds, or `null` if unparseable / missing.
51
+ */
52
+ function decodeJwtExpiry(token) {
53
+ const payload = decodeJwtPayload(token);
54
+ if (payload !== null &&
55
+ typeof payload === 'object' &&
56
+ 'exp' in payload &&
57
+ typeof payload.exp === 'number') {
58
+ return payload.exp;
59
+ }
60
+ return null;
61
+ }
@@ -0,0 +1,89 @@
1
+ /**
2
+ * kek/index.ts — platform selector for the Key Encryption Key strategy.
3
+ *
4
+ * Resolves a single KEK implementation based on `process.platform` at
5
+ * call time. The returned strategy may report `available=false` (e.g.,
6
+ * the native binding hasn't shipped on the current platform yet) — the
7
+ * daemon's integration code MUST honor that and fall through to the
8
+ * legacy plaintext path with a `cred_envelope.kek_unavailable` event.
9
+ *
10
+ * Test seam: `__setKekStrategyForTest()` lets unit tests inject a
11
+ * synthetic strategy with a deterministic in-memory KEK so the
12
+ * dual-read / re-encrypt-on-migration paths can be exercised without a
13
+ * real platform binding.
14
+ */
15
+ import type { KekStrategy } from './types.js';
16
+ export type { KekStrategy } from './types.js';
17
+ export { KekUnavailableError } from './types.js';
18
+ export { MacosKek } from './macos.js';
19
+ export { LinuxKek } from './linux.js';
20
+ export { WindowsKek } from './windows.js';
21
+ export { zeroizeKekCaches, registerZeroizeHook } from './zeroize-registry.js';
22
+ /**
23
+ * @internal Test-only seam — inject a synthetic KEK strategy that wraps
24
+ * with a fixed in-memory key. Resets to platform default when called
25
+ * with `null`.
26
+ */
27
+ export declare function __setKekStrategyForTest(strategy: KekStrategy | null): void;
28
+ /**
29
+ * Resolve the KEK strategy for the current process. Returns the test
30
+ * override when set; otherwise selects by `process.platform`.
31
+ *
32
+ * Idempotent and side-effect-free — the strategy is constructed fresh
33
+ * on each call. Implementations must keep their own caches if probing
34
+ * is expensive (none of the current stubs do).
35
+ */
36
+ export declare function getKekStrategy(): KekStrategy;
37
+ /**
38
+ * In-memory KEK strategy backed by a fixed buffer. Useful for tests and
39
+ * for a future `--kek=file:<path>` opt-in for users who explicitly
40
+ * waive platform-native protection (e.g., headless CI on a hardened
41
+ * VM where DPAPI isn't reachable). Do NOT default to this in production
42
+ * paths — it provides no protection beyond filesystem permissions on
43
+ * whatever holds the buffer.
44
+ */
45
+ export declare class InMemoryKek implements KekStrategy {
46
+ readonly id = "in-memory-test";
47
+ private readonly key;
48
+ constructor(key: Buffer);
49
+ /**
50
+ * Stable backend identifier surfaced via `KekStrategy.kind`. Distinct
51
+ * from the MacosKek shellout / NAPI kinds so telemetry filters can
52
+ * exclude in-memory test traffic from fleet dashboards.
53
+ */
54
+ get kind(): string;
55
+ available(): Promise<boolean>;
56
+ wrap(dek: Buffer, aad?: Buffer): Promise<Buffer>;
57
+ unwrap(wrapped: Buffer, aad?: Buffer): Promise<Buffer>;
58
+ unwrapExisting(wrapped: Buffer, aad?: Buffer): Promise<Buffer>;
59
+ describe(): string;
60
+ }
61
+ /**
62
+ * Test double for the KEK-UNAVAILABLE branch — the twin of `InMemoryKek`.
63
+ *
64
+ * It exists because "no KEK on this platform" cannot be expressed by passing
65
+ * `null` to `__setKekStrategyForTest`. `null` means "use the platform
66
+ * default", and the platform defaults do not agree: `LinuxKek` essentially
67
+ * always resolves (tier-3 derives a KEK from machine identity when libsecret
68
+ * is absent), `MacosKek` resolves only when a login keychain can be found —
69
+ * which a test that sandboxes `HOME` accidentally prevents — and `WindowsKek`
70
+ * is still a stub. A suite that wants the unavailable branch and passes `null`
71
+ * is therefore not testing that branch; it is testing which machine it landed
72
+ * on, and it flips from green to red when the machine changes.
73
+ *
74
+ * That is not hypothetical: four daemon suites asserting fail-closed behaviour
75
+ * passed on macOS purely because their temp `HOME` hid the keychain, and went
76
+ * red the first time CI ever executed them on Linux.
77
+ *
78
+ * `wrap`/`unwrap` throw rather than returning junk, matching the contract in
79
+ * `types.ts`: a strategy that reports unavailable must never silently produce
80
+ * ciphertext a caller could mistake for protected material.
81
+ */
82
+ export declare class UnavailableKek implements KekStrategy {
83
+ readonly id = "unavailable-test";
84
+ get kind(): string;
85
+ available(): Promise<boolean>;
86
+ wrap(): Promise<Buffer>;
87
+ unwrap(): Promise<Buffer>;
88
+ describe(): string;
89
+ }