vibeman 0.0.0 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (230) hide show
  1. package/README.md +12 -0
  2. package/dist/index.js +114 -0
  3. package/dist/runtime/api/.tsbuildinfo +1 -0
  4. package/dist/runtime/api/agent/agent-service.d.ts +224 -0
  5. package/dist/runtime/api/agent/agent-service.js +895 -0
  6. package/dist/runtime/api/agent/ai-providers/claude-code-adapter.d.ts +61 -0
  7. package/dist/runtime/api/agent/ai-providers/claude-code-adapter.js +362 -0
  8. package/dist/runtime/api/agent/ai-providers/codex-cli-provider.d.ts +34 -0
  9. package/dist/runtime/api/agent/ai-providers/codex-cli-provider.js +315 -0
  10. package/dist/runtime/api/agent/ai-providers/index.d.ts +9 -0
  11. package/dist/runtime/api/agent/ai-providers/index.js +7 -0
  12. package/dist/runtime/api/agent/ai-providers/types.d.ts +182 -0
  13. package/dist/runtime/api/agent/ai-providers/types.js +5 -0
  14. package/dist/runtime/api/agent/codex-cli-provider.test.d.ts +1 -0
  15. package/dist/runtime/api/agent/codex-cli-provider.test.js +125 -0
  16. package/dist/runtime/api/agent/core-agent-service.d.ts +119 -0
  17. package/dist/runtime/api/agent/core-agent-service.js +267 -0
  18. package/dist/runtime/api/agent/parsers.d.ts +16 -0
  19. package/dist/runtime/api/agent/parsers.js +308 -0
  20. package/dist/runtime/api/agent/prompt-service.d.ts +30 -0
  21. package/dist/runtime/api/agent/prompt-service.js +449 -0
  22. package/dist/runtime/api/agent/prompt-service.test.d.ts +1 -0
  23. package/dist/runtime/api/agent/prompt-service.test.js +230 -0
  24. package/dist/runtime/api/agent/routing-policy.d.ts +188 -0
  25. package/dist/runtime/api/agent/routing-policy.js +246 -0
  26. package/dist/runtime/api/api/router-helpers.d.ts +32 -0
  27. package/dist/runtime/api/api/router-helpers.js +31 -0
  28. package/dist/runtime/api/api/routers/ai.d.ts +188 -0
  29. package/dist/runtime/api/api/routers/ai.js +395 -0
  30. package/dist/runtime/api/api/routers/executions.d.ts +98 -0
  31. package/dist/runtime/api/api/routers/executions.js +94 -0
  32. package/dist/runtime/api/api/routers/git.d.ts +45 -0
  33. package/dist/runtime/api/api/routers/git.js +35 -0
  34. package/dist/runtime/api/api/routers/provider-config.d.ts +165 -0
  35. package/dist/runtime/api/api/routers/provider-config.js +252 -0
  36. package/dist/runtime/api/api/routers/settings.d.ts +139 -0
  37. package/dist/runtime/api/api/routers/settings.js +113 -0
  38. package/dist/runtime/api/api/routers/tasks.d.ts +141 -0
  39. package/dist/runtime/api/api/routers/tasks.js +238 -0
  40. package/dist/runtime/api/api/routers/workflows.d.ts +267 -0
  41. package/dist/runtime/api/api/routers/workflows.js +310 -0
  42. package/dist/runtime/api/api/routers/worktrees.d.ts +101 -0
  43. package/dist/runtime/api/api/routers/worktrees.js +80 -0
  44. package/dist/runtime/api/api/trpc.d.ts +118 -0
  45. package/dist/runtime/api/api/trpc.js +34 -0
  46. package/dist/runtime/api/index.d.ts +9 -0
  47. package/dist/runtime/api/index.js +117 -0
  48. package/dist/runtime/api/lib/id-generator.d.ts +70 -0
  49. package/dist/runtime/api/lib/id-generator.js +123 -0
  50. package/dist/runtime/api/lib/image-paste-drop-extension.d.ts +26 -0
  51. package/dist/runtime/api/lib/image-paste-drop-extension.js +125 -0
  52. package/dist/runtime/api/lib/local-config.d.ts +245 -0
  53. package/dist/runtime/api/lib/local-config.js +288 -0
  54. package/dist/runtime/api/lib/logger.d.ts +11 -0
  55. package/dist/runtime/api/lib/logger.js +188 -0
  56. package/dist/runtime/api/lib/markdown-utils.d.ts +8 -0
  57. package/dist/runtime/api/lib/markdown-utils.js +282 -0
  58. package/dist/runtime/api/lib/markdown-utils.test.d.ts +1 -0
  59. package/dist/runtime/api/lib/markdown-utils.test.js +348 -0
  60. package/dist/runtime/api/lib/provider-detection.d.ts +59 -0
  61. package/dist/runtime/api/lib/provider-detection.js +244 -0
  62. package/dist/runtime/api/lib/server/agent-service-singleton.d.ts +6 -0
  63. package/dist/runtime/api/lib/server/agent-service-singleton.js +27 -0
  64. package/dist/runtime/api/lib/server/bootstrap.d.ts +38 -0
  65. package/dist/runtime/api/lib/server/bootstrap.js +197 -0
  66. package/dist/runtime/api/lib/server/git-service-singleton.d.ts +6 -0
  67. package/dist/runtime/api/lib/server/git-service-singleton.js +47 -0
  68. package/dist/runtime/api/lib/server/project-root.d.ts +2 -0
  69. package/dist/runtime/api/lib/server/project-root.js +61 -0
  70. package/dist/runtime/api/lib/server/task-service-singleton.d.ts +7 -0
  71. package/dist/runtime/api/lib/server/task-service-singleton.js +58 -0
  72. package/dist/runtime/api/lib/server/vibing-orchestrator-singleton.d.ts +7 -0
  73. package/dist/runtime/api/lib/server/vibing-orchestrator-singleton.js +57 -0
  74. package/dist/runtime/api/lib/tiptap-utils.clamp-selection.test.d.ts +1 -0
  75. package/dist/runtime/api/lib/tiptap-utils.clamp-selection.test.js +27 -0
  76. package/dist/runtime/api/lib/tiptap-utils.d.ts +130 -0
  77. package/dist/runtime/api/lib/tiptap-utils.js +327 -0
  78. package/dist/runtime/api/lib/trpc/client.d.ts +1 -0
  79. package/dist/runtime/api/lib/trpc/client.js +5 -0
  80. package/dist/runtime/api/lib/trpc/server.d.ts +915 -0
  81. package/dist/runtime/api/lib/trpc/server.js +11 -0
  82. package/dist/runtime/api/lib/trpc/ws-server.d.ts +8 -0
  83. package/dist/runtime/api/lib/trpc/ws-server.js +33 -0
  84. package/dist/runtime/api/persistence/database-service.d.ts +14 -0
  85. package/dist/runtime/api/persistence/database-service.js +74 -0
  86. package/dist/runtime/api/persistence/execution-log-persistence.d.ts +90 -0
  87. package/dist/runtime/api/persistence/execution-log-persistence.js +410 -0
  88. package/dist/runtime/api/persistence/execution-log-persistence.test.d.ts +1 -0
  89. package/dist/runtime/api/persistence/execution-log-persistence.test.js +170 -0
  90. package/dist/runtime/api/router.d.ts +918 -0
  91. package/dist/runtime/api/router.js +34 -0
  92. package/dist/runtime/api/settings-service.d.ts +110 -0
  93. package/dist/runtime/api/settings-service.js +613 -0
  94. package/dist/runtime/api/tasks/file-watcher.d.ts +23 -0
  95. package/dist/runtime/api/tasks/file-watcher.js +88 -0
  96. package/dist/runtime/api/tasks/task-file-parser.d.ts +13 -0
  97. package/dist/runtime/api/tasks/task-file-parser.js +161 -0
  98. package/dist/runtime/api/tasks/task-service.d.ts +36 -0
  99. package/dist/runtime/api/tasks/task-service.js +173 -0
  100. package/dist/runtime/api/types/index.d.ts +179 -0
  101. package/dist/runtime/api/types/index.js +1 -0
  102. package/dist/runtime/api/types/settings.d.ts +81 -0
  103. package/dist/runtime/api/types/settings.js +2 -0
  104. package/dist/runtime/api/types.d.ts +2 -0
  105. package/dist/runtime/api/types.js +1 -0
  106. package/dist/runtime/api/utils/env.d.ts +6 -0
  107. package/dist/runtime/api/utils/env.js +12 -0
  108. package/dist/runtime/api/utils/stripNextEnv.d.ts +7 -0
  109. package/dist/runtime/api/utils/stripNextEnv.js +22 -0
  110. package/dist/runtime/api/utils/title-slug.d.ts +6 -0
  111. package/dist/runtime/api/utils/title-slug.js +77 -0
  112. package/dist/runtime/api/utils/url.d.ts +2 -0
  113. package/dist/runtime/api/utils/url.js +19 -0
  114. package/dist/runtime/api/vcs/git-history-service.d.ts +57 -0
  115. package/dist/runtime/api/vcs/git-history-service.js +228 -0
  116. package/dist/runtime/api/vcs/git-service.d.ts +127 -0
  117. package/dist/runtime/api/vcs/git-service.js +284 -0
  118. package/dist/runtime/api/vcs/worktree-service.d.ts +93 -0
  119. package/dist/runtime/api/vcs/worktree-service.js +506 -0
  120. package/dist/runtime/api/vcs/worktree-service.test.d.ts +1 -0
  121. package/dist/runtime/api/vcs/worktree-service.test.js +20 -0
  122. package/dist/runtime/api/workflows/quality-pipeline.d.ts +58 -0
  123. package/dist/runtime/api/workflows/quality-pipeline.js +400 -0
  124. package/dist/runtime/api/workflows/vibing-orchestrator.d.ts +318 -0
  125. package/dist/runtime/api/workflows/vibing-orchestrator.js +1860 -0
  126. package/dist/runtime/web/.next/BUILD_ID +1 -0
  127. package/dist/runtime/web/.next/app-build-manifest.json +59 -0
  128. package/dist/runtime/web/.next/app-path-routes-manifest.json +7 -0
  129. package/dist/runtime/web/.next/build-manifest.json +33 -0
  130. package/dist/runtime/web/.next/package.json +1 -0
  131. package/dist/runtime/web/.next/prerender-manifest.json +61 -0
  132. package/dist/runtime/web/.next/react-loadable-manifest.json +39 -0
  133. package/dist/runtime/web/.next/required-server-files.json +334 -0
  134. package/dist/runtime/web/.next/routes-manifest.json +62 -0
  135. package/dist/runtime/web/.next/server/app/_not-found/page.js +2 -0
  136. package/dist/runtime/web/.next/server/app/_not-found/page.js.nft.json +1 -0
  137. package/dist/runtime/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -0
  138. package/dist/runtime/web/.next/server/app/_not-found.html +7 -0
  139. package/dist/runtime/web/.next/server/app/_not-found.meta +8 -0
  140. package/dist/runtime/web/.next/server/app/_not-found.rsc +22 -0
  141. package/dist/runtime/web/.next/server/app/api/health/route.js +1 -0
  142. package/dist/runtime/web/.next/server/app/api/health/route.js.nft.json +1 -0
  143. package/dist/runtime/web/.next/server/app/api/health/route_client-reference-manifest.js +1 -0
  144. package/dist/runtime/web/.next/server/app/api/images/[...path]/route.js +1 -0
  145. package/dist/runtime/web/.next/server/app/api/images/[...path]/route.js.nft.json +1 -0
  146. package/dist/runtime/web/.next/server/app/api/images/[...path]/route_client-reference-manifest.js +1 -0
  147. package/dist/runtime/web/.next/server/app/api/upload/route.js +1 -0
  148. package/dist/runtime/web/.next/server/app/api/upload/route.js.nft.json +1 -0
  149. package/dist/runtime/web/.next/server/app/api/upload/route_client-reference-manifest.js +1 -0
  150. package/dist/runtime/web/.next/server/app/index.html +7 -0
  151. package/dist/runtime/web/.next/server/app/index.meta +7 -0
  152. package/dist/runtime/web/.next/server/app/index.rsc +27 -0
  153. package/dist/runtime/web/.next/server/app/page.js +147 -0
  154. package/dist/runtime/web/.next/server/app/page.js.nft.json +1 -0
  155. package/dist/runtime/web/.next/server/app/page_client-reference-manifest.js +1 -0
  156. package/dist/runtime/web/.next/server/app-paths-manifest.json +7 -0
  157. package/dist/runtime/web/.next/server/chunks/217.js +1 -0
  158. package/dist/runtime/web/.next/server/chunks/383.js +6 -0
  159. package/dist/runtime/web/.next/server/chunks/458.js +1 -0
  160. package/dist/runtime/web/.next/server/chunks/576.js +18 -0
  161. package/dist/runtime/web/.next/server/chunks/635.js +22 -0
  162. package/dist/runtime/web/.next/server/chunks/761.js +1 -0
  163. package/dist/runtime/web/.next/server/chunks/777.js +3 -0
  164. package/dist/runtime/web/.next/server/chunks/825.js +1 -0
  165. package/dist/runtime/web/.next/server/chunks/838.js +1 -0
  166. package/dist/runtime/web/.next/server/chunks/973.js +15 -0
  167. package/dist/runtime/web/.next/server/functions-config-manifest.json +4 -0
  168. package/dist/runtime/web/.next/server/middleware-build-manifest.js +1 -0
  169. package/dist/runtime/web/.next/server/middleware-manifest.json +6 -0
  170. package/dist/runtime/web/.next/server/middleware-react-loadable-manifest.js +1 -0
  171. package/dist/runtime/web/.next/server/next-font-manifest.js +1 -0
  172. package/dist/runtime/web/.next/server/next-font-manifest.json +1 -0
  173. package/dist/runtime/web/.next/server/pages/404.html +7 -0
  174. package/dist/runtime/web/.next/server/pages/500.html +1 -0
  175. package/dist/runtime/web/.next/server/pages/_app.js +1 -0
  176. package/dist/runtime/web/.next/server/pages/_app.js.nft.json +1 -0
  177. package/dist/runtime/web/.next/server/pages/_document.js +1 -0
  178. package/dist/runtime/web/.next/server/pages/_document.js.nft.json +1 -0
  179. package/dist/runtime/web/.next/server/pages/_error.js +19 -0
  180. package/dist/runtime/web/.next/server/pages/_error.js.nft.json +1 -0
  181. package/dist/runtime/web/.next/server/pages-manifest.json +6 -0
  182. package/dist/runtime/web/.next/server/server-reference-manifest.js +1 -0
  183. package/dist/runtime/web/.next/server/server-reference-manifest.json +1 -0
  184. package/dist/runtime/web/.next/server/webpack-runtime.js +1 -0
  185. package/dist/runtime/web/.next/static/chunks/18-15c10d3288afef2e.js +1 -0
  186. package/dist/runtime/web/.next/static/chunks/1c0ca389.537bbe362e3ffbd9.js +3 -0
  187. package/dist/runtime/web/.next/static/chunks/22747d63-ad5da0c19f4cfe41.js +71 -0
  188. package/dist/runtime/web/.next/static/chunks/277-0142a939f08738c3.js +63 -0
  189. package/dist/runtime/web/.next/static/chunks/355.056c2645878a799a.js +1 -0
  190. package/dist/runtime/web/.next/static/chunks/420.a5ccf151c9e2b2f1.js +1 -0
  191. package/dist/runtime/web/.next/static/chunks/439.1be0c6242fd248d5.js +15 -0
  192. package/dist/runtime/web/.next/static/chunks/440.c52e7c0f797e22b2.js +1 -0
  193. package/dist/runtime/web/.next/static/chunks/575-e2478287c27da87b.js +1 -0
  194. package/dist/runtime/web/.next/static/chunks/691.920d88c115087314.js +1 -0
  195. package/dist/runtime/web/.next/static/chunks/765-e838910065b50c3d.js +1 -0
  196. package/dist/runtime/web/.next/static/chunks/87c73c54-09e1ba5c70e60a51.js +1 -0
  197. package/dist/runtime/web/.next/static/chunks/891cff7f.0f71fc028f87e683.js +1 -0
  198. package/dist/runtime/web/.next/static/chunks/8bb4d8db-3e2aa02b0a2384b9.js +1 -0
  199. package/dist/runtime/web/.next/static/chunks/9af238c7-271a911d4e99ab18.js +1 -0
  200. package/dist/runtime/web/.next/static/chunks/app/_not-found/page-1cb74d1cba27d0ab.js +1 -0
  201. package/dist/runtime/web/.next/static/chunks/app/api/health/route-105a61ae865ba536.js +1 -0
  202. package/dist/runtime/web/.next/static/chunks/app/api/images/[...path]/route-105a61ae865ba536.js +1 -0
  203. package/dist/runtime/web/.next/static/chunks/app/api/upload/route-105a61ae865ba536.js +1 -0
  204. package/dist/runtime/web/.next/static/chunks/app/layout-8435322f09fd0975.js +1 -0
  205. package/dist/runtime/web/.next/static/chunks/app/page-8c3ba579efc6f918.js +1 -0
  206. package/dist/runtime/web/.next/static/chunks/cac567b0-5b77dd12911823cd.js +1 -0
  207. package/dist/runtime/web/.next/static/chunks/framework-2518f1345b5b2806.js +1 -0
  208. package/dist/runtime/web/.next/static/chunks/main-17665e5e39de9a8a.js +1 -0
  209. package/dist/runtime/web/.next/static/chunks/main-app-c0b0f5ba4f7f9d75.js +1 -0
  210. package/dist/runtime/web/.next/static/chunks/pages/_app-d6f6b3bbc3d81ee1.js +1 -0
  211. package/dist/runtime/web/.next/static/chunks/pages/_error-75a96cf1997cc3b9.js +1 -0
  212. package/dist/runtime/web/.next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
  213. package/dist/runtime/web/.next/static/chunks/webpack-c8de37305b4635cf.js +1 -0
  214. package/dist/runtime/web/.next/static/css/08c950681f1a9a92.css +1 -0
  215. package/dist/runtime/web/.next/static/css/2728291c68f99cb1.css +3 -0
  216. package/dist/runtime/web/.next/static/css/521bd69cc298cd1a.css +1 -0
  217. package/dist/runtime/web/.next/static/css/537e22821e101b87.css +1 -0
  218. package/dist/runtime/web/.next/static/mRpNgPfbYR_0wrODzlg_4/_buildManifest.js +1 -0
  219. package/dist/runtime/web/.next/static/mRpNgPfbYR_0wrODzlg_4/_ssgManifest.js +1 -0
  220. package/dist/runtime/web/.next/static/media/19cfc7226ec3afaa-s.woff2 +0 -0
  221. package/dist/runtime/web/.next/static/media/21350d82a1f187e9-s.woff2 +0 -0
  222. package/dist/runtime/web/.next/static/media/8e9860b6e62d6359-s.woff2 +0 -0
  223. package/dist/runtime/web/.next/static/media/ba9851c3c22cd980-s.woff2 +0 -0
  224. package/dist/runtime/web/.next/static/media/c5fe6dc8356a8c31-s.woff2 +0 -0
  225. package/dist/runtime/web/.next/static/media/df0a9ae256c0569c-s.woff2 +0 -0
  226. package/dist/runtime/web/.next/static/media/e4af272ccee01ff0-s.p.woff2 +0 -0
  227. package/dist/runtime/web/package.json +65 -0
  228. package/dist/runtime/web/server.js +44 -0
  229. package/dist/tsconfig.tsbuildinfo +1 -0
  230. package/package.json +84 -7
@@ -0,0 +1,915 @@
1
+ export declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
2
+ ctx: import("../../types.js").Context;
3
+ meta: object;
4
+ errorShape: import("@trpc/server").TRPCDefaultErrorShape;
5
+ transformer: true;
6
+ }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
7
+ detectAllProviders: import("@trpc/server").TRPCQueryProcedure<{
8
+ input: void;
9
+ output: Record<string, import("../provider-detection.js").DetectionResult>;
10
+ meta: object;
11
+ }>;
12
+ detectProvider: import("@trpc/server").TRPCQueryProcedure<{
13
+ input: {
14
+ provider: string;
15
+ };
16
+ output: import("../provider-detection.js").DetectionResult;
17
+ meta: object;
18
+ }>;
19
+ setProviderPath: import("@trpc/server").TRPCMutationProcedure<{
20
+ input: {
21
+ path: string;
22
+ provider: string;
23
+ };
24
+ output: {
25
+ success: boolean;
26
+ result: import("../provider-detection.js").DetectionResult;
27
+ };
28
+ meta: object;
29
+ }>;
30
+ clearProviderPath: import("@trpc/server").TRPCMutationProcedure<{
31
+ input: {
32
+ provider: string;
33
+ };
34
+ output: {
35
+ success: boolean;
36
+ };
37
+ meta: object;
38
+ }>;
39
+ getLocalConfigInfo: import("@trpc/server").TRPCQueryProcedure<{
40
+ input: void;
41
+ output: {
42
+ providers: {
43
+ 'claude-code'?: {
44
+ binPath?: string | undefined;
45
+ detectedPath?: string | undefined;
46
+ lastDetected?: string | undefined;
47
+ detectionMethod?: "explicit" | "PATH" | "common-location" | undefined;
48
+ } | undefined;
49
+ codex?: {
50
+ binPath?: string | undefined;
51
+ detectedPath?: string | undefined;
52
+ lastDetected?: string | undefined;
53
+ detectionMethod?: "explicit" | "PATH" | "common-location" | undefined;
54
+ } | undefined;
55
+ };
56
+ path: string;
57
+ exists: boolean;
58
+ size?: number;
59
+ };
60
+ meta: object;
61
+ }>;
62
+ clearValidationCache: import("@trpc/server").TRPCMutationProcedure<{
63
+ input: void;
64
+ output: {
65
+ success: boolean;
66
+ };
67
+ meta: object;
68
+ }>;
69
+ getProviderDiagnostics: import("@trpc/server").TRPCQueryProcedure<{
70
+ input: void;
71
+ output: {
72
+ localConfigPath: string;
73
+ localConfigExists: boolean;
74
+ providers: {
75
+ provider: string;
76
+ detection: import("../provider-detection.js").DetectionResult;
77
+ localConfig: {
78
+ binPath?: string | undefined;
79
+ detectedPath?: string | undefined;
80
+ lastDetected?: string | undefined;
81
+ detectionMethod?: "explicit" | "PATH" | "common-location" | undefined;
82
+ } | {
83
+ binPath?: string | undefined;
84
+ detectedPath?: string | undefined;
85
+ lastDetected?: string | undefined;
86
+ detectionMethod?: "explicit" | "PATH" | "common-location" | undefined;
87
+ } | undefined;
88
+ cached: {
89
+ available: boolean;
90
+ error: string | undefined;
91
+ version: string | undefined;
92
+ checkedAt: string;
93
+ isFresh: boolean;
94
+ } | null;
95
+ }[];
96
+ };
97
+ meta: object;
98
+ }>;
99
+ listProviders: import("@trpc/server").TRPCQueryProcedure<{
100
+ input: void;
101
+ output: {
102
+ name: string;
103
+ displayName: string;
104
+ available: boolean;
105
+ error: string | undefined;
106
+ capabilities: import("../../agent/ai-providers/types.js").ProviderCapabilities;
107
+ models: import("../../agent/ai-providers/types.js").ModelInfo[];
108
+ }[];
109
+ meta: object;
110
+ }>;
111
+ listModels: import("@trpc/server").TRPCQueryProcedure<{
112
+ input: {
113
+ provider?: string | undefined;
114
+ } | undefined;
115
+ output: import("../../agent/ai-providers/types.js").ModelInfo[];
116
+ meta: object;
117
+ }>;
118
+ getRoutingPolicy: import("@trpc/server").TRPCQueryProcedure<{
119
+ input: void;
120
+ output: any;
121
+ meta: object;
122
+ }>;
123
+ updateRoutingPolicy: import("@trpc/server").TRPCMutationProcedure<{
124
+ input: {
125
+ policy: {
126
+ defaultProvider?: string | undefined;
127
+ operations?: Partial<Record<"execute_task" | "improve_task" | "ai_merge" | "ai_codereview", {
128
+ provider: string;
129
+ options?: {
130
+ temperature?: number | undefined;
131
+ maxTokens?: number | undefined;
132
+ tools?: string[] | undefined;
133
+ } | undefined;
134
+ model?: string | undefined;
135
+ fallback?: string[] | undefined;
136
+ }>> | undefined;
137
+ };
138
+ };
139
+ output: {
140
+ success: boolean;
141
+ policy: any;
142
+ };
143
+ meta: object;
144
+ }>;
145
+ setDefaultProvider: import("@trpc/server").TRPCMutationProcedure<{
146
+ input: {
147
+ provider: string;
148
+ };
149
+ output: {
150
+ success: boolean;
151
+ provider: string;
152
+ };
153
+ meta: object;
154
+ }>;
155
+ setOperationConfig: import("@trpc/server").TRPCMutationProcedure<{
156
+ input: {
157
+ operation: "execute_task" | "improve_task" | "ai_merge" | "ai_codereview";
158
+ config: {
159
+ provider: string;
160
+ options?: {
161
+ temperature?: number | undefined;
162
+ maxTokens?: number | undefined;
163
+ tools?: string[] | undefined;
164
+ } | undefined;
165
+ model?: string | undefined;
166
+ fallback?: string[] | undefined;
167
+ };
168
+ };
169
+ output: {
170
+ success: boolean;
171
+ };
172
+ meta: object;
173
+ }>;
174
+ validateProviders: import("@trpc/server").TRPCMutationProcedure<{
175
+ input: {
176
+ force?: boolean | undefined;
177
+ } | undefined;
178
+ output: {
179
+ success: boolean;
180
+ results: {
181
+ provider: string;
182
+ available: boolean;
183
+ error: string | undefined;
184
+ modelCount: number;
185
+ capabilities: import("../../agent/ai-providers/types.js").ProviderCapabilities;
186
+ }[];
187
+ totalProviders: number;
188
+ availableProviders: number;
189
+ };
190
+ meta: object;
191
+ }>;
192
+ getGitStatus: import("@trpc/server").TRPCQueryProcedure<{
193
+ input: void;
194
+ output: {
195
+ current: string;
196
+ staged: string[];
197
+ modified: string[];
198
+ untracked: string[];
199
+ ahead: number;
200
+ behind: number;
201
+ };
202
+ meta: object;
203
+ }>;
204
+ createBranch: import("@trpc/server").TRPCMutationProcedure<{
205
+ input: {
206
+ taskId: string;
207
+ baseBranch?: string | undefined;
208
+ };
209
+ output: import("../../vcs/git-service.js").BranchInfo;
210
+ meta: object;
211
+ }>;
212
+ commitChanges: import("@trpc/server").TRPCMutationProcedure<{
213
+ input: {
214
+ taskId: string;
215
+ message?: string | undefined;
216
+ files?: string[] | undefined;
217
+ };
218
+ output: import("../../vcs/git-service.js").CommitInfo;
219
+ meta: object;
220
+ }>;
221
+ getCommitHistory: import("@trpc/server").TRPCQueryProcedure<{
222
+ input: {
223
+ maxCount?: number | undefined;
224
+ };
225
+ output: import("../../vcs/git-service.js").CommitInfo[];
226
+ meta: object;
227
+ }>;
228
+ hasUncommittedChanges: import("@trpc/server").TRPCQueryProcedure<{
229
+ input: void;
230
+ output: boolean;
231
+ meta: object;
232
+ }>;
233
+ getSettings: import("@trpc/server").TRPCQueryProcedure<{
234
+ input: void;
235
+ output: import("../../types/settings.js").VibemanSettings;
236
+ meta: object;
237
+ }>;
238
+ detectQualityChecks: import("@trpc/server").TRPCMutationProcedure<{
239
+ input: void;
240
+ output: {
241
+ checks: {
242
+ name: string;
243
+ command: string;
244
+ args: string[];
245
+ timeout: number;
246
+ enabled: boolean;
247
+ }[];
248
+ workingDirectory: string;
249
+ };
250
+ meta: object;
251
+ }>;
252
+ getSetting: import("@trpc/server").TRPCQueryProcedure<{
253
+ input: {
254
+ path: string[];
255
+ };
256
+ output: unknown;
257
+ meta: object;
258
+ }>;
259
+ updateSettings: import("@trpc/server").TRPCMutationProcedure<{
260
+ input: {
261
+ path: string[];
262
+ value?: unknown;
263
+ }[];
264
+ output: {
265
+ success: boolean;
266
+ errors: import("../../types/settings.js").SettingsValidationError[];
267
+ };
268
+ meta: object;
269
+ }>;
270
+ resetToDefaults: import("@trpc/server").TRPCMutationProcedure<{
271
+ input: void;
272
+ output: import("../../types/settings.js").VibemanSettings;
273
+ meta: object;
274
+ }>;
275
+ validateSettings: import("@trpc/server").TRPCQueryProcedure<{
276
+ input: Record<string, unknown>;
277
+ output: {
278
+ valid: boolean;
279
+ errors: import("../../types/settings.js").SettingsValidationError[];
280
+ };
281
+ meta: object;
282
+ }>;
283
+ getSettingsInfo: import("@trpc/server").TRPCQueryProcedure<{
284
+ input: void;
285
+ output: {
286
+ path: string;
287
+ exists: boolean;
288
+ };
289
+ meta: object;
290
+ }>;
291
+ getEditorPresets: import("@trpc/server").TRPCQueryProcedure<{
292
+ input: void;
293
+ output: Record<string, Partial<{
294
+ type?: "vscode" | "cursor" | "vim" | "custom";
295
+ command?: string;
296
+ args?: string[];
297
+ name?: string;
298
+ openFileCommand?: string[];
299
+ openFolderCommand?: string[];
300
+ } | undefined>>;
301
+ meta: object;
302
+ }>;
303
+ getTerminalPresets: import("@trpc/server").TRPCQueryProcedure<{
304
+ input: void;
305
+ output: Record<string, Partial<{
306
+ type?: "system" | "iterm2" | "warp" | "custom";
307
+ command?: string;
308
+ args?: string[];
309
+ name?: string;
310
+ openCommand?: string[];
311
+ } | undefined>>;
312
+ meta: object;
313
+ }>;
314
+ applyEditorPreset: import("@trpc/server").TRPCMutationProcedure<{
315
+ input: {
316
+ presetName: string;
317
+ };
318
+ output: {
319
+ success: boolean;
320
+ errors: import("../../types/settings.js").SettingsValidationError[];
321
+ };
322
+ meta: object;
323
+ }>;
324
+ applyTerminalPreset: import("@trpc/server").TRPCMutationProcedure<{
325
+ input: {
326
+ presetName: string;
327
+ };
328
+ output: {
329
+ success: boolean;
330
+ errors: import("../../types/settings.js").SettingsValidationError[];
331
+ };
332
+ meta: object;
333
+ }>;
334
+ updateWorkflowOptions: import("@trpc/server").TRPCMutationProcedure<{
335
+ input: {
336
+ workflowId: string;
337
+ config: {
338
+ autoCommit?: boolean | undefined;
339
+ createPR?: boolean | undefined;
340
+ autoQualityChecks?: boolean | undefined;
341
+ requireHumanApproval?: boolean | undefined;
342
+ stepByStepMode?: boolean | undefined;
343
+ autoMerge?: boolean | undefined;
344
+ aiCodeReview?: boolean | undefined;
345
+ aiRoutingOverrides?: {
346
+ execute_task?: {
347
+ provider?: string | undefined;
348
+ model?: string | undefined;
349
+ } | undefined;
350
+ improve_task?: {
351
+ provider?: string | undefined;
352
+ model?: string | undefined;
353
+ } | undefined;
354
+ ai_merge?: {
355
+ provider?: string | undefined;
356
+ model?: string | undefined;
357
+ } | undefined;
358
+ ai_codereview?: {
359
+ provider?: string | undefined;
360
+ model?: string | undefined;
361
+ } | undefined;
362
+ } | undefined;
363
+ };
364
+ };
365
+ output: {
366
+ readonly success: true;
367
+ };
368
+ meta: object;
369
+ }>;
370
+ startWorkflow: import("@trpc/server").TRPCMutationProcedure<{
371
+ input: {
372
+ taskId: string;
373
+ config?: {
374
+ autoCommit?: boolean | undefined;
375
+ createPR?: boolean | undefined;
376
+ autoQualityChecks?: boolean | undefined;
377
+ requireHumanApproval?: boolean | undefined;
378
+ stepByStepMode?: boolean | undefined;
379
+ autoMerge?: boolean | undefined;
380
+ aiCodeReview?: boolean | undefined;
381
+ aiRoutingOverrides?: {
382
+ execute_task?: {
383
+ provider?: string | undefined;
384
+ model?: string | undefined;
385
+ } | undefined;
386
+ improve_task?: {
387
+ provider?: string | undefined;
388
+ model?: string | undefined;
389
+ } | undefined;
390
+ ai_merge?: {
391
+ provider?: string | undefined;
392
+ model?: string | undefined;
393
+ } | undefined;
394
+ ai_codereview?: {
395
+ provider?: string | undefined;
396
+ model?: string | undefined;
397
+ } | undefined;
398
+ } | undefined;
399
+ } | undefined;
400
+ };
401
+ output: {
402
+ workflowId: string;
403
+ };
404
+ meta: object;
405
+ }>;
406
+ continueWorkflow: import("@trpc/server").TRPCMutationProcedure<{
407
+ input: {
408
+ workflowId: string;
409
+ };
410
+ output: {
411
+ readonly success: true;
412
+ };
413
+ meta: object;
414
+ }>;
415
+ runValidation: import("@trpc/server").TRPCMutationProcedure<{
416
+ input: {
417
+ workflowId: string;
418
+ };
419
+ output: {
420
+ readonly success: true;
421
+ };
422
+ meta: object;
423
+ }>;
424
+ runMerge: import("@trpc/server").TRPCMutationProcedure<{
425
+ input: {
426
+ workflowId: string;
427
+ provider?: string | undefined;
428
+ model?: string | undefined;
429
+ };
430
+ output: {
431
+ readonly success: true;
432
+ };
433
+ meta: object;
434
+ }>;
435
+ runCleanup: import("@trpc/server").TRPCMutationProcedure<{
436
+ input: {
437
+ workflowId: string;
438
+ };
439
+ output: {
440
+ readonly success: true;
441
+ };
442
+ meta: object;
443
+ }>;
444
+ pauseWorkflow: import("@trpc/server").TRPCMutationProcedure<{
445
+ input: {
446
+ workflowId: string;
447
+ };
448
+ output: {
449
+ readonly success: true;
450
+ };
451
+ meta: object;
452
+ }>;
453
+ resetWorkflow: import("@trpc/server").TRPCMutationProcedure<{
454
+ input: {
455
+ workflowId: string;
456
+ force?: boolean | undefined;
457
+ deleteWorktree?: boolean | undefined;
458
+ };
459
+ output: {
460
+ success: true;
461
+ };
462
+ meta: object;
463
+ }>;
464
+ approveWorkflow: import("@trpc/server").TRPCMutationProcedure<{
465
+ input: {
466
+ workflowId: string;
467
+ comments?: string | undefined;
468
+ };
469
+ output: {
470
+ readonly success: true;
471
+ };
472
+ meta: object;
473
+ }>;
474
+ rejectWorkflow: import("@trpc/server").TRPCMutationProcedure<{
475
+ input: {
476
+ workflowId: string;
477
+ feedback: string;
478
+ };
479
+ output: {
480
+ readonly success: true;
481
+ };
482
+ meta: object;
483
+ }>;
484
+ onTaskWorkflowEvents: import("@trpc/server").TRPCSubscriptionProcedure<{
485
+ input: {
486
+ taskId?: string | undefined;
487
+ } | undefined;
488
+ output: AsyncIterable<{
489
+ type: "started" | "phase" | "completed" | "failed" | "updated" | "deleted";
490
+ workflowId: string;
491
+ phase?: string;
492
+ workflow?: any;
493
+ executionId?: string;
494
+ }, void, any>;
495
+ meta: object;
496
+ }>;
497
+ getWorkflow: import("@trpc/server").TRPCQueryProcedure<{
498
+ input: {
499
+ workflowId: string;
500
+ };
501
+ output: import("../../types/index.js").VibingExecution | null;
502
+ meta: object;
503
+ }>;
504
+ getWorkflowsByTaskId: import("@trpc/server").TRPCQueryProcedure<{
505
+ input: {
506
+ taskId: string;
507
+ };
508
+ output: import("../../types/index.js").VibingExecution[];
509
+ meta: object;
510
+ }>;
511
+ getLatestWorkflowByTaskId: import("@trpc/server").TRPCQueryProcedure<{
512
+ input: {
513
+ taskId: string;
514
+ };
515
+ output: import("../../types/index.js").VibingExecution | null;
516
+ meta: object;
517
+ }>;
518
+ aiReviewCode: import("@trpc/server").TRPCMutationProcedure<{
519
+ input: {
520
+ taskId: string;
521
+ provider?: string | undefined;
522
+ workflowId?: string | undefined;
523
+ model?: string | undefined;
524
+ reviewContext?: string | undefined;
525
+ };
526
+ output: {
527
+ executionId: string;
528
+ reviewSummary: string;
529
+ recommendations: string[];
530
+ qualityScore: number;
531
+ };
532
+ meta: object;
533
+ }>;
534
+ approveAndContinueReview: import("@trpc/server").TRPCMutationProcedure<{
535
+ input: {
536
+ workflowId: string;
537
+ };
538
+ output: {
539
+ success: true;
540
+ };
541
+ meta: object;
542
+ }>;
543
+ markCompleted: import("@trpc/server").TRPCMutationProcedure<{
544
+ input: {
545
+ workflowId: string;
546
+ };
547
+ output: {
548
+ success: true;
549
+ };
550
+ meta: object;
551
+ }>;
552
+ checkWorktreeStatus: import("@trpc/server").TRPCMutationProcedure<{
553
+ input: {
554
+ workflowId: string;
555
+ };
556
+ output: {
557
+ clean: boolean;
558
+ uncommittedFiles: string[];
559
+ worktreePath?: string;
560
+ };
561
+ meta: object;
562
+ }>;
563
+ rerunImplementation: import("@trpc/server").TRPCMutationProcedure<{
564
+ input: {
565
+ workflowId: string;
566
+ provider?: string | undefined;
567
+ model?: string | undefined;
568
+ feedback?: string | undefined;
569
+ };
570
+ output: {
571
+ success: true;
572
+ };
573
+ meta: object;
574
+ }>;
575
+ skipToNextPhase: import("@trpc/server").TRPCMutationProcedure<{
576
+ input: {
577
+ workflowId: string;
578
+ };
579
+ output: {
580
+ success: true;
581
+ };
582
+ meta: object;
583
+ }>;
584
+ rerunFromPhase: import("@trpc/server").TRPCMutationProcedure<{
585
+ input: {
586
+ workflowId: string;
587
+ phase: "completed" | "failed" | "draft" | "awaiting-review" | "approved" | "merged" | "paused" | "implementing" | "validating" | "ai-reviewing" | "merging" | "cleaning";
588
+ };
589
+ output: {
590
+ success: true;
591
+ };
592
+ meta: object;
593
+ }>;
594
+ listWorktrees: import("@trpc/server").TRPCQueryProcedure<{
595
+ input: void;
596
+ output: (import("../../types/index.js").WorktreeInfo & {
597
+ isConnectedToTask: boolean;
598
+ })[];
599
+ meta: object;
600
+ }>;
601
+ syncWorktreeState: import("@trpc/server").TRPCMutationProcedure<{
602
+ input: void;
603
+ output: {
604
+ readonly success: true;
605
+ readonly message: "Worktree state synchronized";
606
+ };
607
+ meta: object;
608
+ }>;
609
+ getWorktreeInfo: import("@trpc/server").TRPCQueryProcedure<{
610
+ input: {
611
+ taskId: string;
612
+ };
613
+ output: any;
614
+ meta: object;
615
+ }>;
616
+ createWorktree: import("@trpc/server").TRPCMutationProcedure<{
617
+ input: {
618
+ taskId: string;
619
+ };
620
+ output: any;
621
+ meta: object;
622
+ }>;
623
+ deleteWorktree: import("@trpc/server").TRPCMutationProcedure<{
624
+ input: {
625
+ taskId: string;
626
+ force?: boolean | undefined;
627
+ };
628
+ output: {
629
+ readonly success: true;
630
+ };
631
+ meta: object;
632
+ }>;
633
+ openInEditor: import("@trpc/server").TRPCMutationProcedure<{
634
+ input: {
635
+ worktreePath: string;
636
+ };
637
+ output: {
638
+ readonly success: true;
639
+ };
640
+ meta: object;
641
+ }>;
642
+ openInTerminal: import("@trpc/server").TRPCMutationProcedure<{
643
+ input: {
644
+ worktreePath: string;
645
+ };
646
+ output: {
647
+ readonly success: true;
648
+ };
649
+ meta: object;
650
+ }>;
651
+ createWorktreePR: import("@trpc/server").TRPCMutationProcedure<{
652
+ input: {
653
+ taskId: string;
654
+ baseBranch?: string | undefined;
655
+ };
656
+ output: {
657
+ success: boolean;
658
+ pullRequest?: any;
659
+ error?: string;
660
+ };
661
+ meta: object;
662
+ }>;
663
+ createPullRequest: import("@trpc/server").TRPCMutationProcedure<{
664
+ input: {
665
+ taskId: string;
666
+ baseBranch?: string | undefined;
667
+ };
668
+ output: {
669
+ success: boolean;
670
+ pullRequest?: any;
671
+ error?: string;
672
+ };
673
+ meta: object;
674
+ }>;
675
+ cleanupWorktree: import("@trpc/server").TRPCMutationProcedure<{
676
+ input: {
677
+ isConnectedToTask: boolean;
678
+ taskId?: string | undefined;
679
+ force?: boolean | undefined;
680
+ worktreePath?: string | undefined;
681
+ branchName?: string | undefined;
682
+ };
683
+ output: {
684
+ readonly success: true;
685
+ };
686
+ meta: object;
687
+ }>;
688
+ executeTask: import("@trpc/server").TRPCMutationProcedure<{
689
+ input: {
690
+ taskId: string;
691
+ };
692
+ output: {
693
+ readonly executionId: string;
694
+ };
695
+ meta: object;
696
+ }>;
697
+ stopTaskExecution: import("@trpc/server").TRPCMutationProcedure<{
698
+ input: {
699
+ executionId: string;
700
+ };
701
+ output: {
702
+ readonly success: true;
703
+ };
704
+ meta: object;
705
+ }>;
706
+ getTaskExecutionStatus: import("@trpc/server").TRPCQueryProcedure<{
707
+ input: {
708
+ executionId: string;
709
+ };
710
+ output: import("../../types/index.js").AgentExecution | null;
711
+ meta: object;
712
+ }>;
713
+ getTaskExecutionLogs: import("@trpc/server").TRPCQueryProcedure<{
714
+ input: {
715
+ executionId: string;
716
+ };
717
+ output: {
718
+ logs: any[];
719
+ };
720
+ meta: object;
721
+ }>;
722
+ getTaskExecutions: import("@trpc/server").TRPCQueryProcedure<{
723
+ input: {
724
+ taskId: string;
725
+ };
726
+ output: import("../../types/index.js").AgentExecution[];
727
+ meta: object;
728
+ }>;
729
+ getTaskExecutionStats: import("@trpc/server").TRPCQueryProcedure<{
730
+ input: void;
731
+ output: {
732
+ total: number;
733
+ pending: number;
734
+ running: number;
735
+ completed: number;
736
+ failed: number;
737
+ cancelled: number;
738
+ worktrees: {
739
+ active: number;
740
+ total: number;
741
+ enabled: boolean;
742
+ };
743
+ };
744
+ meta: object;
745
+ }>;
746
+ improveTask: import("@trpc/server").TRPCMutationProcedure<{
747
+ input: {
748
+ title: string;
749
+ type: "feature" | "bug" | "chore" | "refactor" | "test" | "doc";
750
+ priority: "high" | "medium" | "low";
751
+ content: string;
752
+ taskId: string;
753
+ executionId?: string | undefined;
754
+ };
755
+ output: {
756
+ type: string;
757
+ priority: string;
758
+ content: string;
759
+ title?: string;
760
+ executionId: string;
761
+ selectedModel?: string;
762
+ };
763
+ meta: object;
764
+ }>;
765
+ onExecutionUpdate: import("@trpc/server").TRPCSubscriptionProcedure<{
766
+ input: {
767
+ executionId: string;
768
+ };
769
+ output: AsyncIterable<{
770
+ executionId: string;
771
+ status: "pending" | "running" | "completed" | "failed" | "cancelled";
772
+ logs: string[];
773
+ error?: string;
774
+ }, void, any>;
775
+ meta: object;
776
+ }>;
777
+ listTasks: import("@trpc/server").TRPCQueryProcedure<{
778
+ input: {
779
+ status?: "review" | "in-progress" | "backlog" | "done" | undefined;
780
+ type?: "feature" | "bug" | "chore" | "refactor" | "test" | "doc" | undefined;
781
+ tags?: string[] | undefined;
782
+ priority?: "high" | "medium" | "low" | undefined;
783
+ search?: string | undefined;
784
+ includeDeleted?: boolean | undefined;
785
+ onlyDeleted?: boolean | undefined;
786
+ } | undefined;
787
+ output: import("../../types/index.js").Task[];
788
+ meta: object;
789
+ }>;
790
+ getTask: import("@trpc/server").TRPCQueryProcedure<{
791
+ input: {
792
+ id: string;
793
+ };
794
+ output: import("../../types/index.js").Task;
795
+ meta: object;
796
+ }>;
797
+ createTask: import("@trpc/server").TRPCMutationProcedure<{
798
+ input: {
799
+ title: string;
800
+ type: "feature" | "bug" | "chore" | "refactor" | "test" | "doc";
801
+ content: string;
802
+ status?: "review" | "in-progress" | "backlog" | "done" | undefined;
803
+ id?: string | undefined;
804
+ tags?: string[] | undefined;
805
+ due_date?: string | undefined;
806
+ assignee?: string[] | undefined;
807
+ priority?: "high" | "medium" | "low" | undefined;
808
+ comments?: string[] | undefined;
809
+ };
810
+ output: import("../../types/index.js").Task;
811
+ meta: object;
812
+ }>;
813
+ updateTask: import("@trpc/server").TRPCMutationProcedure<{
814
+ input: {
815
+ id: string;
816
+ status?: "review" | "in-progress" | "backlog" | "done" | undefined;
817
+ title?: string | undefined;
818
+ type?: "feature" | "bug" | "chore" | "refactor" | "test" | "doc" | undefined;
819
+ tags?: string[] | undefined;
820
+ due_date?: string | undefined;
821
+ assignee?: string[] | undefined;
822
+ priority?: "high" | "medium" | "low" | undefined;
823
+ comments?: string[] | undefined;
824
+ content?: string | undefined;
825
+ deleted_at?: string | undefined;
826
+ };
827
+ output: import("../../types/index.js").Task;
828
+ meta: object;
829
+ }>;
830
+ deleteTask: import("@trpc/server").TRPCMutationProcedure<{
831
+ input: {
832
+ id: string;
833
+ };
834
+ output: {
835
+ readonly success: true;
836
+ };
837
+ meta: object;
838
+ }>;
839
+ moveTask: import("@trpc/server").TRPCMutationProcedure<{
840
+ input: {
841
+ status: "review" | "in-progress" | "backlog" | "done";
842
+ id: string;
843
+ };
844
+ output: import("../../types/index.js").Task;
845
+ meta: object;
846
+ }>;
847
+ getTaskStats: import("@trpc/server").TRPCQueryProcedure<{
848
+ input: void;
849
+ output: any;
850
+ meta: object;
851
+ }>;
852
+ searchTasks: import("@trpc/server").TRPCQueryProcedure<{
853
+ input: {
854
+ query: string;
855
+ includeDeleted?: boolean | undefined;
856
+ onlyDeleted?: boolean | undefined;
857
+ };
858
+ output: import("../../types/index.js").Task[];
859
+ meta: object;
860
+ }>;
861
+ healthCheck: import("@trpc/server").TRPCQueryProcedure<{
862
+ input: void;
863
+ output: {
864
+ status: string;
865
+ timestamp: string;
866
+ tasksLoaded: number;
867
+ };
868
+ meta: object;
869
+ }>;
870
+ onTaskUpdate: import("@trpc/server").TRPCSubscriptionProcedure<{
871
+ input: {
872
+ taskId?: string | undefined;
873
+ } | undefined;
874
+ output: AsyncIterable<{
875
+ type: "update" | "delete";
876
+ taskId: string;
877
+ task?: any;
878
+ }, void, any>;
879
+ meta: object;
880
+ }>;
881
+ getTaskHistory: import("@trpc/server").TRPCQueryProcedure<{
882
+ input: {
883
+ taskId: string;
884
+ limit?: number | undefined;
885
+ };
886
+ output: {
887
+ available: boolean;
888
+ history: import("../../vcs/git-history-service.js").TaskHistoryEntry[];
889
+ error?: undefined;
890
+ } | {
891
+ available: boolean;
892
+ history: never[];
893
+ error: string;
894
+ };
895
+ meta: object;
896
+ }>;
897
+ getTaskVersion: import("@trpc/server").TRPCQueryProcedure<{
898
+ input: {
899
+ taskId: string;
900
+ commitHash: string;
901
+ };
902
+ output: import("../../vcs/git-history-service.js").TaskFileContent;
903
+ meta: object;
904
+ }>;
905
+ getTaskDiff: import("@trpc/server").TRPCQueryProcedure<{
906
+ input: {
907
+ taskId: string;
908
+ fromHash: string;
909
+ toHash: string;
910
+ };
911
+ output: import("../../vcs/git-history-service.js").TaskDiffEntry;
912
+ meta: object;
913
+ }>;
914
+ }>>;
915
+ export type AppRouter = typeof appRouter;