@vheins/local-memory-mcp 0.4.12 → 0.5.1

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 (201) hide show
  1. package/README.md +21 -0
  2. package/bin/mcp-memory-server.js +1 -1
  3. package/dist/dashboard/public/assets/index-KxrQ6fPK.css +1 -0
  4. package/dist/dashboard/public/assets/index-Lu37nzOi.js +72 -0
  5. package/dist/dashboard/public/index.html +11 -1772
  6. package/dist/dashboard/server.js +115 -5
  7. package/dist/dashboard/server.js.map +1 -1
  8. package/dist/mcp/capabilities.d.ts +22 -0
  9. package/dist/mcp/capabilities.d.ts.map +1 -0
  10. package/dist/mcp/capabilities.js +38 -0
  11. package/dist/mcp/capabilities.js.map +1 -0
  12. package/dist/mcp/client.js +3 -3
  13. package/dist/mcp/client.js.map +1 -1
  14. package/dist/mcp/completion.d.ts +25 -0
  15. package/dist/mcp/completion.d.ts.map +1 -0
  16. package/dist/mcp/completion.js +127 -0
  17. package/dist/mcp/completion.js.map +1 -0
  18. package/dist/mcp/prompts/registry.d.ts +330 -0
  19. package/dist/mcp/prompts/registry.d.ts.map +1 -0
  20. package/dist/mcp/prompts/registry.js +1066 -0
  21. package/dist/mcp/prompts/registry.js.map +1 -0
  22. package/dist/mcp/resources/index.d.ts +68 -0
  23. package/dist/mcp/resources/index.d.ts.map +1 -0
  24. package/dist/mcp/resources/index.js +323 -0
  25. package/dist/mcp/resources/index.js.map +1 -0
  26. package/dist/mcp/router.d.ts +14 -0
  27. package/dist/mcp/router.d.ts.map +1 -0
  28. package/dist/mcp/router.js +242 -0
  29. package/dist/mcp/router.js.map +1 -0
  30. package/dist/mcp/server.d.ts +3 -0
  31. package/dist/mcp/server.d.ts.map +1 -0
  32. package/dist/mcp/server.js +338 -0
  33. package/dist/mcp/server.js.map +1 -0
  34. package/dist/mcp/storage/sqlite.d.ts +83 -0
  35. package/dist/mcp/storage/sqlite.d.ts.map +1 -0
  36. package/dist/mcp/storage/sqlite.js +1237 -0
  37. package/dist/mcp/storage/sqlite.js.map +1 -0
  38. package/dist/mcp/storage/vectors.d.ts +19 -0
  39. package/dist/mcp/storage/vectors.d.ts.map +1 -0
  40. package/dist/mcp/storage/vectors.js +74 -0
  41. package/dist/mcp/storage/vectors.js.map +1 -0
  42. package/dist/mcp/storage/vectors.stub.d.ts +12 -0
  43. package/dist/mcp/storage/vectors.stub.d.ts.map +1 -0
  44. package/dist/mcp/storage/vectors.stub.js +88 -0
  45. package/dist/mcp/storage/vectors.stub.js.map +1 -0
  46. package/dist/mcp/tests/client.test.d.ts +2 -0
  47. package/dist/mcp/tests/client.test.d.ts.map +1 -0
  48. package/dist/mcp/tests/client.test.js +130 -0
  49. package/dist/mcp/tests/client.test.js.map +1 -0
  50. package/dist/mcp/tests/dashboard.test.d.ts +2 -0
  51. package/dist/mcp/tests/dashboard.test.d.ts.map +1 -0
  52. package/dist/mcp/tests/dashboard.test.js +370 -0
  53. package/dist/mcp/tests/dashboard.test.js.map +1 -0
  54. package/dist/mcp/tests/e2e.test.d.ts +2 -0
  55. package/dist/mcp/tests/e2e.test.d.ts.map +1 -0
  56. package/dist/mcp/tests/e2e.test.js +250 -0
  57. package/dist/mcp/tests/e2e.test.js.map +1 -0
  58. package/dist/mcp/tests/index.test.d.ts +2 -0
  59. package/dist/mcp/tests/index.test.d.ts.map +1 -0
  60. package/dist/mcp/tests/index.test.js +185 -0
  61. package/dist/mcp/tests/index.test.js.map +1 -0
  62. package/dist/mcp/tests/logger.test.d.ts +2 -0
  63. package/dist/mcp/tests/logger.test.d.ts.map +1 -0
  64. package/dist/mcp/tests/logger.test.js +104 -0
  65. package/dist/mcp/tests/logger.test.js.map +1 -0
  66. package/dist/mcp/tests/memory.bulk.test.d.ts +2 -0
  67. package/dist/mcp/tests/memory.bulk.test.d.ts.map +1 -0
  68. package/dist/mcp/tests/memory.bulk.test.js +52 -0
  69. package/dist/mcp/tests/memory.bulk.test.js.map +1 -0
  70. package/dist/mcp/tests/memory.search.test.d.ts +2 -0
  71. package/dist/mcp/tests/memory.search.test.d.ts.map +1 -0
  72. package/dist/mcp/tests/memory.search.test.js +181 -0
  73. package/dist/mcp/tests/memory.search.test.js.map +1 -0
  74. package/dist/mcp/tests/normalize.test.d.ts +2 -0
  75. package/dist/mcp/tests/normalize.test.d.ts.map +1 -0
  76. package/dist/mcp/tests/normalize.test.js +181 -0
  77. package/dist/mcp/tests/normalize.test.js.map +1 -0
  78. package/dist/mcp/tests/query-expander.test.d.ts +2 -0
  79. package/dist/mcp/tests/query-expander.test.d.ts.map +1 -0
  80. package/dist/mcp/tests/query-expander.test.js +33 -0
  81. package/dist/mcp/tests/query-expander.test.js.map +1 -0
  82. package/dist/mcp/tests/router.test.d.ts +2 -0
  83. package/dist/mcp/tests/router.test.d.ts.map +1 -0
  84. package/dist/mcp/tests/router.test.js +470 -0
  85. package/dist/mcp/tests/router.test.js.map +1 -0
  86. package/dist/mcp/tests/sqlite.test.d.ts +2 -0
  87. package/dist/mcp/tests/sqlite.test.d.ts.map +1 -0
  88. package/dist/mcp/tests/sqlite.test.js +367 -0
  89. package/dist/mcp/tests/sqlite.test.js.map +1 -0
  90. package/dist/mcp/tests/tasks-search.test.d.ts +2 -0
  91. package/dist/mcp/tests/tasks-search.test.d.ts.map +1 -0
  92. package/dist/mcp/tests/tasks-search.test.js +154 -0
  93. package/dist/mcp/tests/tasks-search.test.js.map +1 -0
  94. package/dist/mcp/tests/tasks-transition.test.d.ts +2 -0
  95. package/dist/mcp/tests/tasks-transition.test.d.ts.map +1 -0
  96. package/dist/mcp/tests/tasks-transition.test.js +174 -0
  97. package/dist/mcp/tests/tasks-transition.test.js.map +1 -0
  98. package/dist/mcp/tests/tasks.bulk.test.d.ts +2 -0
  99. package/dist/mcp/tests/tasks.bulk.test.d.ts.map +1 -0
  100. package/dist/mcp/tests/tasks.bulk.test.js +254 -0
  101. package/dist/mcp/tests/tasks.bulk.test.js.map +1 -0
  102. package/dist/mcp/tests/tasks.e2e.test.d.ts +2 -0
  103. package/dist/mcp/tests/tasks.e2e.test.d.ts.map +1 -0
  104. package/dist/mcp/tests/tasks.e2e.test.js +289 -0
  105. package/dist/mcp/tests/tasks.e2e.test.js.map +1 -0
  106. package/dist/mcp/tests/tasks.pending-limit-refined.test.d.ts +2 -0
  107. package/dist/mcp/tests/tasks.pending-limit-refined.test.d.ts.map +1 -0
  108. package/dist/mcp/tests/tasks.pending-limit-refined.test.js +72 -0
  109. package/dist/mcp/tests/tasks.pending-limit-refined.test.js.map +1 -0
  110. package/dist/mcp/tests/v2-features.test.d.ts +2 -0
  111. package/dist/mcp/tests/v2-features.test.d.ts.map +1 -0
  112. package/dist/mcp/tests/v2-features.test.js +209 -0
  113. package/dist/mcp/tests/v2-features.test.js.map +1 -0
  114. package/dist/mcp/tools/memory.acknowledge.d.ts +4 -0
  115. package/dist/mcp/tools/memory.acknowledge.d.ts.map +1 -0
  116. package/dist/mcp/tools/memory.acknowledge.js +30 -0
  117. package/dist/mcp/tools/memory.acknowledge.js.map +1 -0
  118. package/dist/mcp/tools/memory.bulk-delete.d.ts +4 -0
  119. package/dist/mcp/tools/memory.bulk-delete.d.ts.map +1 -0
  120. package/dist/mcp/tools/memory.bulk-delete.js +39 -0
  121. package/dist/mcp/tools/memory.bulk-delete.js.map +1 -0
  122. package/dist/mcp/tools/memory.delete.d.ts +9 -0
  123. package/dist/mcp/tools/memory.delete.d.ts.map +1 -0
  124. package/dist/mcp/tools/memory.delete.js +39 -0
  125. package/dist/mcp/tools/memory.delete.js.map +1 -0
  126. package/dist/mcp/tools/memory.recap.d.ts +4 -0
  127. package/dist/mcp/tools/memory.recap.d.ts.map +1 -0
  128. package/dist/mcp/tools/memory.recap.js +90 -0
  129. package/dist/mcp/tools/memory.recap.js.map +1 -0
  130. package/dist/mcp/tools/memory.search.d.ts +5 -0
  131. package/dist/mcp/tools/memory.search.d.ts.map +1 -0
  132. package/dist/mcp/tools/memory.search.js +134 -0
  133. package/dist/mcp/tools/memory.search.js.map +1 -0
  134. package/dist/mcp/tools/memory.store.d.ts +5 -0
  135. package/dist/mcp/tools/memory.store.d.ts.map +1 -0
  136. package/dist/mcp/tools/memory.store.js +117 -0
  137. package/dist/mcp/tools/memory.store.js.map +1 -0
  138. package/dist/mcp/tools/memory.summarize.d.ts +4 -0
  139. package/dist/mcp/tools/memory.summarize.d.ts.map +1 -0
  140. package/dist/mcp/tools/memory.summarize.js +31 -0
  141. package/dist/mcp/tools/memory.summarize.js.map +1 -0
  142. package/dist/mcp/tools/memory.synthesize.d.ts +14 -0
  143. package/dist/mcp/tools/memory.synthesize.d.ts.map +1 -0
  144. package/dist/mcp/tools/memory.synthesize.js +228 -0
  145. package/dist/mcp/tools/memory.synthesize.js.map +1 -0
  146. package/dist/mcp/tools/memory.update.d.ts +5 -0
  147. package/dist/mcp/tools/memory.update.d.ts.map +1 -0
  148. package/dist/mcp/tools/memory.update.js +73 -0
  149. package/dist/mcp/tools/memory.update.js.map +1 -0
  150. package/dist/mcp/tools/schemas.d.ts +2762 -0
  151. package/dist/mcp/tools/schemas.d.ts.map +1 -0
  152. package/dist/mcp/tools/schemas.js +952 -0
  153. package/dist/mcp/tools/schemas.js.map +1 -0
  154. package/dist/mcp/tools/task.bulk-manage.d.ts +4 -0
  155. package/dist/mcp/tools/task.bulk-manage.d.ts.map +1 -0
  156. package/dist/mcp/tools/task.bulk-manage.js +146 -0
  157. package/dist/mcp/tools/task.bulk-manage.js.map +1 -0
  158. package/dist/mcp/tools/task.manage.d.ts +16 -0
  159. package/dist/mcp/tools/task.manage.d.ts.map +1 -0
  160. package/dist/mcp/tools/task.manage.js +395 -0
  161. package/dist/mcp/tools/task.manage.js.map +1 -0
  162. package/dist/mcp/types.d.ts +87 -0
  163. package/dist/mcp/types.d.ts.map +1 -0
  164. package/dist/mcp/types.js +3 -0
  165. package/dist/mcp/types.js.map +1 -0
  166. package/dist/mcp/utils/completion.d.ts +2 -0
  167. package/dist/mcp/utils/completion.d.ts.map +1 -0
  168. package/dist/mcp/utils/completion.js +28 -0
  169. package/dist/mcp/utils/completion.js.map +1 -0
  170. package/dist/mcp/utils/git-scope.d.ts +8 -0
  171. package/dist/mcp/utils/git-scope.d.ts.map +1 -0
  172. package/dist/mcp/utils/git-scope.js +38 -0
  173. package/dist/mcp/utils/git-scope.js.map +1 -0
  174. package/dist/mcp/utils/logger.d.ts +25 -0
  175. package/dist/mcp/utils/logger.d.ts.map +1 -0
  176. package/dist/mcp/utils/logger.js +152 -0
  177. package/dist/mcp/utils/logger.js.map +1 -0
  178. package/dist/mcp/utils/mcp-response.d.ts +96 -0
  179. package/dist/mcp/utils/mcp-response.d.ts.map +1 -0
  180. package/dist/mcp/utils/mcp-response.js +131 -0
  181. package/dist/mcp/utils/mcp-response.js.map +1 -0
  182. package/dist/mcp/utils/normalize.d.ts +9 -0
  183. package/dist/mcp/utils/normalize.d.ts.map +1 -0
  184. package/dist/mcp/utils/normalize.js +62 -0
  185. package/dist/mcp/utils/normalize.js.map +1 -0
  186. package/dist/mcp/utils/pagination.d.ts +6 -0
  187. package/dist/mcp/utils/pagination.d.ts.map +1 -0
  188. package/dist/mcp/utils/pagination.js +32 -0
  189. package/dist/mcp/utils/pagination.js.map +1 -0
  190. package/dist/mcp/utils/query-expander.d.ts +2 -0
  191. package/dist/mcp/utils/query-expander.d.ts.map +1 -0
  192. package/dist/mcp/utils/query-expander.js +29 -0
  193. package/dist/mcp/utils/query-expander.js.map +1 -0
  194. package/dist/storage/sqlite.d.ts +3 -0
  195. package/dist/storage/sqlite.d.ts.map +1 -1
  196. package/dist/storage/sqlite.js +38 -9
  197. package/dist/storage/sqlite.js.map +1 -1
  198. package/package.json +17 -5
  199. package/dist/dashboard/public/app.js +0 -2779
  200. package/dist/dashboard/public/chart.js +0 -0
  201. package/dist/dashboard/public/screenshot.png +0 -0
@@ -0,0 +1,2762 @@
1
+ import { z } from "zod";
2
+ export declare const MemoryScopeSchema: z.ZodObject<{
3
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
4
+ branch: z.ZodOptional<z.ZodString>;
5
+ folder: z.ZodOptional<z.ZodString>;
6
+ language: z.ZodOptional<z.ZodString>;
7
+ }, z.core.$strip>;
8
+ export declare const MemoryTypeSchema: z.ZodEnum<{
9
+ code_fact: "code_fact";
10
+ decision: "decision";
11
+ mistake: "mistake";
12
+ pattern: "pattern";
13
+ agent_handoff: "agent_handoff";
14
+ agent_registered: "agent_registered";
15
+ file_claim: "file_claim";
16
+ task_archive: "task_archive";
17
+ }>;
18
+ export declare const MemoryStoreSchema: z.ZodObject<{
19
+ type: z.ZodEnum<{
20
+ code_fact: "code_fact";
21
+ decision: "decision";
22
+ mistake: "mistake";
23
+ pattern: "pattern";
24
+ agent_handoff: "agent_handoff";
25
+ agent_registered: "agent_registered";
26
+ file_claim: "file_claim";
27
+ task_archive: "task_archive";
28
+ }>;
29
+ title: z.ZodString;
30
+ content: z.ZodString;
31
+ importance: z.ZodNumber;
32
+ agent: z.ZodString;
33
+ role: z.ZodDefault<z.ZodOptional<z.ZodString>>;
34
+ model: z.ZodString;
35
+ scope: z.ZodObject<{
36
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
37
+ branch: z.ZodOptional<z.ZodString>;
38
+ folder: z.ZodOptional<z.ZodString>;
39
+ language: z.ZodOptional<z.ZodString>;
40
+ }, z.core.$strip>;
41
+ ttlDays: z.ZodOptional<z.ZodNumber>;
42
+ supersedes: z.ZodOptional<z.ZodString>;
43
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
44
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
45
+ is_global: z.ZodDefault<z.ZodBoolean>;
46
+ }, z.core.$strip>;
47
+ export declare const MemoryUpdateSchema: z.ZodObject<{
48
+ id: z.ZodString;
49
+ type: z.ZodOptional<z.ZodEnum<{
50
+ code_fact: "code_fact";
51
+ decision: "decision";
52
+ mistake: "mistake";
53
+ pattern: "pattern";
54
+ agent_handoff: "agent_handoff";
55
+ agent_registered: "agent_registered";
56
+ file_claim: "file_claim";
57
+ task_archive: "task_archive";
58
+ }>>;
59
+ title: z.ZodOptional<z.ZodString>;
60
+ content: z.ZodOptional<z.ZodString>;
61
+ importance: z.ZodOptional<z.ZodNumber>;
62
+ agent: z.ZodOptional<z.ZodString>;
63
+ role: z.ZodOptional<z.ZodString>;
64
+ status: z.ZodOptional<z.ZodEnum<{
65
+ active: "active";
66
+ archived: "archived";
67
+ }>>;
68
+ supersedes: z.ZodOptional<z.ZodString>;
69
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
70
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
71
+ is_global: z.ZodOptional<z.ZodBoolean>;
72
+ completed_at: z.ZodOptional<z.ZodString>;
73
+ }, z.core.$strip>;
74
+ export declare const MemorySearchSchema: z.ZodObject<{
75
+ query: z.ZodString;
76
+ prompt: z.ZodOptional<z.ZodString>;
77
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
78
+ types: z.ZodOptional<z.ZodArray<z.ZodEnum<{
79
+ code_fact: "code_fact";
80
+ decision: "decision";
81
+ mistake: "mistake";
82
+ pattern: "pattern";
83
+ agent_handoff: "agent_handoff";
84
+ agent_registered: "agent_registered";
85
+ file_claim: "file_claim";
86
+ task_archive: "task_archive";
87
+ }>>>;
88
+ minImportance: z.ZodOptional<z.ZodNumber>;
89
+ limit: z.ZodDefault<z.ZodNumber>;
90
+ includeRecap: z.ZodDefault<z.ZodBoolean>;
91
+ current_file_path: z.ZodOptional<z.ZodString>;
92
+ include_archived: z.ZodDefault<z.ZodBoolean>;
93
+ current_tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
94
+ scope: z.ZodOptional<z.ZodObject<{
95
+ repo: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
96
+ branch: z.ZodOptional<z.ZodOptional<z.ZodString>>;
97
+ folder: z.ZodOptional<z.ZodOptional<z.ZodString>>;
98
+ language: z.ZodOptional<z.ZodOptional<z.ZodString>>;
99
+ }, z.core.$strip>>;
100
+ }, z.core.$strip>;
101
+ export declare const MemoryAcknowledgeSchema: z.ZodObject<{
102
+ memory_id: z.ZodString;
103
+ status: z.ZodEnum<{
104
+ used: "used";
105
+ irrelevant: "irrelevant";
106
+ contradictory: "contradictory";
107
+ }>;
108
+ application_context: z.ZodOptional<z.ZodString>;
109
+ }, z.core.$strip>;
110
+ export declare const MemoryRecapSchema: z.ZodObject<{
111
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
112
+ limit: z.ZodDefault<z.ZodNumber>;
113
+ offset: z.ZodDefault<z.ZodNumber>;
114
+ }, z.core.$strip>;
115
+ export declare const MemoryBulkDeleteSchema: z.ZodObject<{
116
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
117
+ ids: z.ZodArray<z.ZodString>;
118
+ }, z.core.$strip>;
119
+ export declare const MemorySummarizeSchema: z.ZodObject<{
120
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
121
+ signals: z.ZodArray<z.ZodString>;
122
+ }, z.core.$strip>;
123
+ export declare const MemorySynthesizeSchema: z.ZodObject<{
124
+ repo: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
125
+ objective: z.ZodString;
126
+ current_file_path: z.ZodOptional<z.ZodString>;
127
+ include_summary: z.ZodDefault<z.ZodBoolean>;
128
+ include_tasks: z.ZodDefault<z.ZodBoolean>;
129
+ use_tools: z.ZodDefault<z.ZodBoolean>;
130
+ max_iterations: z.ZodDefault<z.ZodNumber>;
131
+ max_tokens: z.ZodDefault<z.ZodNumber>;
132
+ }, z.core.$strip>;
133
+ export declare const TaskStatusSchema: z.ZodEnum<{
134
+ pending: "pending";
135
+ backlog: "backlog";
136
+ in_progress: "in_progress";
137
+ completed: "completed";
138
+ canceled: "canceled";
139
+ blocked: "blocked";
140
+ }>;
141
+ export declare const TaskPrioritySchema: z.ZodNumber;
142
+ export declare const TaskCreateSchema: z.ZodObject<{
143
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
144
+ task_code: z.ZodString;
145
+ phase: z.ZodString;
146
+ title: z.ZodString;
147
+ description: z.ZodString;
148
+ status: z.ZodDefault<z.ZodEnum<{
149
+ pending: "pending";
150
+ backlog: "backlog";
151
+ in_progress: "in_progress";
152
+ completed: "completed";
153
+ canceled: "canceled";
154
+ blocked: "blocked";
155
+ }>>;
156
+ priority: z.ZodDefault<z.ZodNumber>;
157
+ agent: z.ZodOptional<z.ZodString>;
158
+ role: z.ZodOptional<z.ZodString>;
159
+ doc_path: z.ZodOptional<z.ZodString>;
160
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
161
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
162
+ parent_id: z.ZodOptional<z.ZodString>;
163
+ depends_on: z.ZodOptional<z.ZodString>;
164
+ est_tokens: z.ZodOptional<z.ZodNumber>;
165
+ }, z.core.$strip>;
166
+ export declare const TaskCreateInteractiveSchema: z.ZodObject<{
167
+ task_code: z.ZodOptional<z.ZodString>;
168
+ phase: z.ZodOptional<z.ZodString>;
169
+ title: z.ZodOptional<z.ZodString>;
170
+ description: z.ZodOptional<z.ZodString>;
171
+ status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
172
+ pending: "pending";
173
+ backlog: "backlog";
174
+ in_progress: "in_progress";
175
+ completed: "completed";
176
+ canceled: "canceled";
177
+ blocked: "blocked";
178
+ }>>>;
179
+ priority: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
180
+ agent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
181
+ role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
182
+ doc_path: z.ZodOptional<z.ZodOptional<z.ZodString>>;
183
+ tags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
184
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
185
+ parent_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
186
+ depends_on: z.ZodOptional<z.ZodOptional<z.ZodString>>;
187
+ est_tokens: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
188
+ repo: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
189
+ }, z.core.$strip>;
190
+ export declare const TaskUpdateSchema: z.ZodObject<{
191
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
192
+ id: z.ZodString;
193
+ task_code: z.ZodOptional<z.ZodString>;
194
+ phase: z.ZodOptional<z.ZodString>;
195
+ title: z.ZodOptional<z.ZodString>;
196
+ description: z.ZodOptional<z.ZodString>;
197
+ status: z.ZodOptional<z.ZodEnum<{
198
+ pending: "pending";
199
+ backlog: "backlog";
200
+ in_progress: "in_progress";
201
+ completed: "completed";
202
+ canceled: "canceled";
203
+ blocked: "blocked";
204
+ }>>;
205
+ priority: z.ZodOptional<z.ZodNumber>;
206
+ agent: z.ZodString;
207
+ role: z.ZodString;
208
+ model: z.ZodOptional<z.ZodString>;
209
+ comment: z.ZodOptional<z.ZodString>;
210
+ doc_path: z.ZodOptional<z.ZodString>;
211
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
212
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
213
+ parent_id: z.ZodOptional<z.ZodString>;
214
+ depends_on: z.ZodOptional<z.ZodString>;
215
+ est_tokens: z.ZodOptional<z.ZodNumber>;
216
+ }, z.core.$strip>;
217
+ export declare const TaskListSchema: z.ZodObject<{
218
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
219
+ status: z.ZodOptional<z.ZodString>;
220
+ phase: z.ZodOptional<z.ZodString>;
221
+ search: z.ZodOptional<z.ZodString>;
222
+ limit: z.ZodDefault<z.ZodNumber>;
223
+ offset: z.ZodDefault<z.ZodNumber>;
224
+ }, z.core.$strip>;
225
+ export declare const TaskSearchSchema: z.ZodObject<{
226
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
227
+ query: z.ZodString;
228
+ status: z.ZodOptional<z.ZodString>;
229
+ limit: z.ZodDefault<z.ZodNumber>;
230
+ offset: z.ZodDefault<z.ZodNumber>;
231
+ }, z.core.$strip>;
232
+ export declare const TaskBulkManageSchema: z.ZodObject<{
233
+ action: z.ZodEnum<{
234
+ bulk_create: "bulk_create";
235
+ bulk_delete: "bulk_delete";
236
+ }>;
237
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
238
+ tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
239
+ task_code: z.ZodString;
240
+ phase: z.ZodString;
241
+ title: z.ZodString;
242
+ description: z.ZodString;
243
+ status: z.ZodDefault<z.ZodEnum<{
244
+ pending: "pending";
245
+ backlog: "backlog";
246
+ in_progress: "in_progress";
247
+ completed: "completed";
248
+ canceled: "canceled";
249
+ blocked: "blocked";
250
+ }>>;
251
+ priority: z.ZodOptional<z.ZodNumber>;
252
+ agent: z.ZodOptional<z.ZodString>;
253
+ role: z.ZodOptional<z.ZodString>;
254
+ doc_path: z.ZodOptional<z.ZodString>;
255
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
256
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
257
+ parent_id: z.ZodOptional<z.ZodString>;
258
+ depends_on: z.ZodOptional<z.ZodString>;
259
+ est_tokens: z.ZodOptional<z.ZodNumber>;
260
+ }, z.core.$strip>>>;
261
+ ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
262
+ }, z.core.$strip>;
263
+ export declare const TaskDeleteSchema: z.ZodObject<{
264
+ repo: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
265
+ id: z.ZodString;
266
+ }, z.core.$strip>;
267
+ export declare const TOOL_DEFINITIONS: ({
268
+ name: string;
269
+ title: string;
270
+ description: string;
271
+ annotations: {
272
+ readOnlyHint: boolean;
273
+ idempotentHint: boolean;
274
+ openWorldHint: boolean;
275
+ destructiveHint?: undefined;
276
+ };
277
+ execution: {
278
+ taskSupport: string;
279
+ };
280
+ inputSchema: {
281
+ type: string;
282
+ properties: {
283
+ repo: {
284
+ type: string;
285
+ description: string;
286
+ };
287
+ objective: {
288
+ type: string;
289
+ minLength: number;
290
+ description: string;
291
+ };
292
+ current_file_path: {
293
+ type: string;
294
+ description: string;
295
+ };
296
+ include_summary: {
297
+ type: string;
298
+ default: boolean;
299
+ };
300
+ include_tasks: {
301
+ type: string;
302
+ default: boolean;
303
+ };
304
+ use_tools: {
305
+ type: string;
306
+ default: boolean;
307
+ description: string;
308
+ };
309
+ max_iterations: {
310
+ type: string;
311
+ minimum: number;
312
+ maximum: number;
313
+ default: number;
314
+ };
315
+ max_tokens: {
316
+ type: string;
317
+ minimum: number;
318
+ maximum: number;
319
+ default: number;
320
+ };
321
+ task_code?: undefined;
322
+ phase?: undefined;
323
+ title?: undefined;
324
+ description?: undefined;
325
+ status?: undefined;
326
+ priority?: undefined;
327
+ agent?: undefined;
328
+ role?: undefined;
329
+ doc_path?: undefined;
330
+ type?: undefined;
331
+ content?: undefined;
332
+ importance?: undefined;
333
+ model?: undefined;
334
+ scope?: undefined;
335
+ tags?: undefined;
336
+ metadata?: undefined;
337
+ is_global?: undefined;
338
+ ttlDays?: undefined;
339
+ supersedes?: undefined;
340
+ memory_id?: undefined;
341
+ application_context?: undefined;
342
+ id?: undefined;
343
+ query?: undefined;
344
+ current_tags?: undefined;
345
+ types?: undefined;
346
+ minImportance?: undefined;
347
+ limit?: undefined;
348
+ includeRecap?: undefined;
349
+ include_archived?: undefined;
350
+ signals?: undefined;
351
+ ids?: undefined;
352
+ offset?: undefined;
353
+ parent_id?: undefined;
354
+ depends_on?: undefined;
355
+ est_tokens?: undefined;
356
+ comment?: undefined;
357
+ search?: undefined;
358
+ action?: undefined;
359
+ tasks?: undefined;
360
+ };
361
+ required: string[];
362
+ };
363
+ outputSchema: {
364
+ type: string;
365
+ properties: {
366
+ repo: {
367
+ type: string;
368
+ };
369
+ objective: {
370
+ type: string;
371
+ };
372
+ answer: {
373
+ type: string;
374
+ };
375
+ model: {
376
+ type: string;
377
+ };
378
+ stopReason: {
379
+ type: string;
380
+ };
381
+ iterations: {
382
+ type: string;
383
+ };
384
+ toolCalls: {
385
+ type: string;
386
+ };
387
+ task_code?: undefined;
388
+ phase?: undefined;
389
+ title?: undefined;
390
+ status?: undefined;
391
+ priority?: undefined;
392
+ success?: undefined;
393
+ id?: undefined;
394
+ type?: undefined;
395
+ error?: undefined;
396
+ message?: undefined;
397
+ updatedFields?: undefined;
398
+ query?: undefined;
399
+ recapContext?: undefined;
400
+ results?: undefined;
401
+ summary?: undefined;
402
+ signalCount?: undefined;
403
+ deletedCount?: undefined;
404
+ ids?: undefined;
405
+ count?: undefined;
406
+ total?: undefined;
407
+ offset?: undefined;
408
+ memories?: undefined;
409
+ tasks?: undefined;
410
+ archivedToMemory?: undefined;
411
+ limit?: undefined;
412
+ action?: undefined;
413
+ createdCount?: undefined;
414
+ taskCodes?: undefined;
415
+ };
416
+ required: string[];
417
+ };
418
+ } | {
419
+ name: string;
420
+ title: string;
421
+ description: string;
422
+ annotations: {
423
+ readOnlyHint: boolean;
424
+ idempotentHint: boolean;
425
+ destructiveHint: boolean;
426
+ openWorldHint: boolean;
427
+ };
428
+ inputSchema: {
429
+ type: string;
430
+ properties: {
431
+ repo: {
432
+ type: string;
433
+ description: string;
434
+ };
435
+ task_code: {
436
+ type: string;
437
+ description?: undefined;
438
+ };
439
+ phase: {
440
+ type: string;
441
+ description?: undefined;
442
+ };
443
+ title: {
444
+ type: string;
445
+ minLength: number;
446
+ maxLength: number;
447
+ description?: undefined;
448
+ };
449
+ description: {
450
+ type: string;
451
+ minLength: number;
452
+ };
453
+ status: {
454
+ type: string;
455
+ enum: string[];
456
+ default: string;
457
+ description?: undefined;
458
+ };
459
+ priority: {
460
+ type: string;
461
+ minimum: number;
462
+ maximum: number;
463
+ default: number;
464
+ };
465
+ agent: {
466
+ type: string;
467
+ description?: undefined;
468
+ };
469
+ role: {
470
+ type: string;
471
+ };
472
+ doc_path: {
473
+ type: string;
474
+ };
475
+ objective?: undefined;
476
+ current_file_path?: undefined;
477
+ include_summary?: undefined;
478
+ include_tasks?: undefined;
479
+ use_tools?: undefined;
480
+ max_iterations?: undefined;
481
+ max_tokens?: undefined;
482
+ type?: undefined;
483
+ content?: undefined;
484
+ importance?: undefined;
485
+ model?: undefined;
486
+ scope?: undefined;
487
+ tags?: undefined;
488
+ metadata?: undefined;
489
+ is_global?: undefined;
490
+ ttlDays?: undefined;
491
+ supersedes?: undefined;
492
+ memory_id?: undefined;
493
+ application_context?: undefined;
494
+ id?: undefined;
495
+ query?: undefined;
496
+ current_tags?: undefined;
497
+ types?: undefined;
498
+ minImportance?: undefined;
499
+ limit?: undefined;
500
+ includeRecap?: undefined;
501
+ include_archived?: undefined;
502
+ signals?: undefined;
503
+ ids?: undefined;
504
+ offset?: undefined;
505
+ parent_id?: undefined;
506
+ depends_on?: undefined;
507
+ est_tokens?: undefined;
508
+ comment?: undefined;
509
+ search?: undefined;
510
+ action?: undefined;
511
+ tasks?: undefined;
512
+ };
513
+ required?: undefined;
514
+ };
515
+ outputSchema: {
516
+ type: string;
517
+ properties: {
518
+ repo: {
519
+ type: string;
520
+ };
521
+ task_code: {
522
+ type: string;
523
+ };
524
+ phase: {
525
+ type: string;
526
+ };
527
+ title: {
528
+ type: string;
529
+ };
530
+ status: {
531
+ type: string;
532
+ };
533
+ priority: {
534
+ type: string;
535
+ };
536
+ objective?: undefined;
537
+ answer?: undefined;
538
+ model?: undefined;
539
+ stopReason?: undefined;
540
+ iterations?: undefined;
541
+ toolCalls?: undefined;
542
+ success?: undefined;
543
+ id?: undefined;
544
+ type?: undefined;
545
+ error?: undefined;
546
+ message?: undefined;
547
+ updatedFields?: undefined;
548
+ query?: undefined;
549
+ recapContext?: undefined;
550
+ results?: undefined;
551
+ summary?: undefined;
552
+ signalCount?: undefined;
553
+ deletedCount?: undefined;
554
+ ids?: undefined;
555
+ count?: undefined;
556
+ total?: undefined;
557
+ offset?: undefined;
558
+ memories?: undefined;
559
+ tasks?: undefined;
560
+ archivedToMemory?: undefined;
561
+ limit?: undefined;
562
+ action?: undefined;
563
+ createdCount?: undefined;
564
+ taskCodes?: undefined;
565
+ };
566
+ required: string[];
567
+ };
568
+ execution?: undefined;
569
+ } | {
570
+ name: string;
571
+ title: string;
572
+ description: string;
573
+ annotations: {
574
+ readOnlyHint: boolean;
575
+ idempotentHint: boolean;
576
+ destructiveHint: boolean;
577
+ openWorldHint: boolean;
578
+ };
579
+ inputSchema: {
580
+ type: string;
581
+ properties: {
582
+ type: {
583
+ type: string;
584
+ enum: string[];
585
+ description: string;
586
+ };
587
+ title: {
588
+ type: string;
589
+ minLength: number;
590
+ maxLength: number;
591
+ description: string;
592
+ };
593
+ content: {
594
+ type: string;
595
+ minLength: number;
596
+ description: string;
597
+ };
598
+ importance: {
599
+ type: string;
600
+ minimum: number;
601
+ maximum: number;
602
+ description: string;
603
+ };
604
+ agent: {
605
+ type: string;
606
+ description: string;
607
+ };
608
+ model: {
609
+ type: string;
610
+ description: string;
611
+ };
612
+ scope: {
613
+ type: string;
614
+ properties: {
615
+ repo: {
616
+ type: string;
617
+ description: string;
618
+ };
619
+ branch: {
620
+ type: string;
621
+ };
622
+ folder: {
623
+ type: string;
624
+ };
625
+ language: {
626
+ type: string;
627
+ };
628
+ };
629
+ required: string[];
630
+ };
631
+ tags: {
632
+ type: string;
633
+ items: {
634
+ type: string;
635
+ };
636
+ description: string;
637
+ };
638
+ metadata: {
639
+ type: string;
640
+ description: string;
641
+ };
642
+ is_global: {
643
+ type: string;
644
+ description: string;
645
+ };
646
+ ttlDays: {
647
+ type: string;
648
+ minimum: number;
649
+ };
650
+ supersedes: {
651
+ type: string;
652
+ format: string;
653
+ };
654
+ repo?: undefined;
655
+ objective?: undefined;
656
+ current_file_path?: undefined;
657
+ include_summary?: undefined;
658
+ include_tasks?: undefined;
659
+ use_tools?: undefined;
660
+ max_iterations?: undefined;
661
+ max_tokens?: undefined;
662
+ task_code?: undefined;
663
+ phase?: undefined;
664
+ description?: undefined;
665
+ status?: undefined;
666
+ priority?: undefined;
667
+ role?: undefined;
668
+ doc_path?: undefined;
669
+ memory_id?: undefined;
670
+ application_context?: undefined;
671
+ id?: undefined;
672
+ query?: undefined;
673
+ current_tags?: undefined;
674
+ types?: undefined;
675
+ minImportance?: undefined;
676
+ limit?: undefined;
677
+ includeRecap?: undefined;
678
+ include_archived?: undefined;
679
+ signals?: undefined;
680
+ ids?: undefined;
681
+ offset?: undefined;
682
+ parent_id?: undefined;
683
+ depends_on?: undefined;
684
+ est_tokens?: undefined;
685
+ comment?: undefined;
686
+ search?: undefined;
687
+ action?: undefined;
688
+ tasks?: undefined;
689
+ };
690
+ required: string[];
691
+ };
692
+ outputSchema: {
693
+ type: string;
694
+ properties: {
695
+ success: {
696
+ type: string;
697
+ };
698
+ id: {
699
+ type: string;
700
+ };
701
+ repo: {
702
+ type: string;
703
+ };
704
+ type: {
705
+ type: string;
706
+ };
707
+ title: {
708
+ type: string;
709
+ };
710
+ error: {
711
+ type: string;
712
+ };
713
+ message: {
714
+ type: string;
715
+ };
716
+ objective?: undefined;
717
+ answer?: undefined;
718
+ model?: undefined;
719
+ stopReason?: undefined;
720
+ iterations?: undefined;
721
+ toolCalls?: undefined;
722
+ task_code?: undefined;
723
+ phase?: undefined;
724
+ status?: undefined;
725
+ priority?: undefined;
726
+ updatedFields?: undefined;
727
+ query?: undefined;
728
+ recapContext?: undefined;
729
+ results?: undefined;
730
+ summary?: undefined;
731
+ signalCount?: undefined;
732
+ deletedCount?: undefined;
733
+ ids?: undefined;
734
+ count?: undefined;
735
+ total?: undefined;
736
+ offset?: undefined;
737
+ memories?: undefined;
738
+ tasks?: undefined;
739
+ archivedToMemory?: undefined;
740
+ limit?: undefined;
741
+ action?: undefined;
742
+ createdCount?: undefined;
743
+ taskCodes?: undefined;
744
+ };
745
+ required: string[];
746
+ };
747
+ execution?: undefined;
748
+ } | {
749
+ name: string;
750
+ title: string;
751
+ description: string;
752
+ annotations: {
753
+ readOnlyHint: boolean;
754
+ idempotentHint: boolean;
755
+ openWorldHint: boolean;
756
+ destructiveHint?: undefined;
757
+ };
758
+ inputSchema: {
759
+ type: string;
760
+ properties: {
761
+ memory_id: {
762
+ type: string;
763
+ format: string;
764
+ };
765
+ status: {
766
+ type: string;
767
+ enum: string[];
768
+ default?: undefined;
769
+ description?: undefined;
770
+ };
771
+ application_context: {
772
+ type: string;
773
+ minLength: number;
774
+ };
775
+ repo?: undefined;
776
+ objective?: undefined;
777
+ current_file_path?: undefined;
778
+ include_summary?: undefined;
779
+ include_tasks?: undefined;
780
+ use_tools?: undefined;
781
+ max_iterations?: undefined;
782
+ max_tokens?: undefined;
783
+ task_code?: undefined;
784
+ phase?: undefined;
785
+ title?: undefined;
786
+ description?: undefined;
787
+ priority?: undefined;
788
+ agent?: undefined;
789
+ role?: undefined;
790
+ doc_path?: undefined;
791
+ type?: undefined;
792
+ content?: undefined;
793
+ importance?: undefined;
794
+ model?: undefined;
795
+ scope?: undefined;
796
+ tags?: undefined;
797
+ metadata?: undefined;
798
+ is_global?: undefined;
799
+ ttlDays?: undefined;
800
+ supersedes?: undefined;
801
+ id?: undefined;
802
+ query?: undefined;
803
+ current_tags?: undefined;
804
+ types?: undefined;
805
+ minImportance?: undefined;
806
+ limit?: undefined;
807
+ includeRecap?: undefined;
808
+ include_archived?: undefined;
809
+ signals?: undefined;
810
+ ids?: undefined;
811
+ offset?: undefined;
812
+ parent_id?: undefined;
813
+ depends_on?: undefined;
814
+ est_tokens?: undefined;
815
+ comment?: undefined;
816
+ search?: undefined;
817
+ action?: undefined;
818
+ tasks?: undefined;
819
+ };
820
+ required: string[];
821
+ };
822
+ outputSchema: {
823
+ type: string;
824
+ properties: {
825
+ success: {
826
+ type: string;
827
+ };
828
+ id: {
829
+ type: string;
830
+ };
831
+ status: {
832
+ type: string;
833
+ };
834
+ repo?: undefined;
835
+ objective?: undefined;
836
+ answer?: undefined;
837
+ model?: undefined;
838
+ stopReason?: undefined;
839
+ iterations?: undefined;
840
+ toolCalls?: undefined;
841
+ task_code?: undefined;
842
+ phase?: undefined;
843
+ title?: undefined;
844
+ priority?: undefined;
845
+ type?: undefined;
846
+ error?: undefined;
847
+ message?: undefined;
848
+ updatedFields?: undefined;
849
+ query?: undefined;
850
+ recapContext?: undefined;
851
+ results?: undefined;
852
+ summary?: undefined;
853
+ signalCount?: undefined;
854
+ deletedCount?: undefined;
855
+ ids?: undefined;
856
+ count?: undefined;
857
+ total?: undefined;
858
+ offset?: undefined;
859
+ memories?: undefined;
860
+ tasks?: undefined;
861
+ archivedToMemory?: undefined;
862
+ limit?: undefined;
863
+ action?: undefined;
864
+ createdCount?: undefined;
865
+ taskCodes?: undefined;
866
+ };
867
+ required: string[];
868
+ };
869
+ execution?: undefined;
870
+ } | {
871
+ name: string;
872
+ title: string;
873
+ description: string;
874
+ annotations: {
875
+ readOnlyHint: boolean;
876
+ idempotentHint: boolean;
877
+ destructiveHint: boolean;
878
+ openWorldHint: boolean;
879
+ };
880
+ inputSchema: {
881
+ type: string;
882
+ properties: {
883
+ id: {
884
+ type: string;
885
+ format: string;
886
+ description?: undefined;
887
+ };
888
+ type: {
889
+ type: string;
890
+ enum: string[];
891
+ description?: undefined;
892
+ };
893
+ title: {
894
+ type: string;
895
+ minLength: number;
896
+ maxLength: number;
897
+ description?: undefined;
898
+ };
899
+ content: {
900
+ type: string;
901
+ minLength: number;
902
+ description?: undefined;
903
+ };
904
+ importance: {
905
+ type: string;
906
+ minimum: number;
907
+ maximum: number;
908
+ description?: undefined;
909
+ };
910
+ status: {
911
+ type: string;
912
+ enum: string[];
913
+ default?: undefined;
914
+ description?: undefined;
915
+ };
916
+ supersedes: {
917
+ type: string;
918
+ format: string;
919
+ };
920
+ tags: {
921
+ type: string;
922
+ items: {
923
+ type: string;
924
+ };
925
+ description?: undefined;
926
+ };
927
+ metadata: {
928
+ type: string;
929
+ description?: undefined;
930
+ };
931
+ is_global: {
932
+ type: string;
933
+ description?: undefined;
934
+ };
935
+ repo?: undefined;
936
+ objective?: undefined;
937
+ current_file_path?: undefined;
938
+ include_summary?: undefined;
939
+ include_tasks?: undefined;
940
+ use_tools?: undefined;
941
+ max_iterations?: undefined;
942
+ max_tokens?: undefined;
943
+ task_code?: undefined;
944
+ phase?: undefined;
945
+ description?: undefined;
946
+ priority?: undefined;
947
+ agent?: undefined;
948
+ role?: undefined;
949
+ doc_path?: undefined;
950
+ model?: undefined;
951
+ scope?: undefined;
952
+ ttlDays?: undefined;
953
+ memory_id?: undefined;
954
+ application_context?: undefined;
955
+ query?: undefined;
956
+ current_tags?: undefined;
957
+ types?: undefined;
958
+ minImportance?: undefined;
959
+ limit?: undefined;
960
+ includeRecap?: undefined;
961
+ include_archived?: undefined;
962
+ signals?: undefined;
963
+ ids?: undefined;
964
+ offset?: undefined;
965
+ parent_id?: undefined;
966
+ depends_on?: undefined;
967
+ est_tokens?: undefined;
968
+ comment?: undefined;
969
+ search?: undefined;
970
+ action?: undefined;
971
+ tasks?: undefined;
972
+ };
973
+ required: string[];
974
+ };
975
+ outputSchema: {
976
+ type: string;
977
+ properties: {
978
+ success: {
979
+ type: string;
980
+ };
981
+ id: {
982
+ type: string;
983
+ };
984
+ repo: {
985
+ type: string;
986
+ };
987
+ updatedFields: {
988
+ type: string;
989
+ items: {
990
+ type: string;
991
+ };
992
+ };
993
+ objective?: undefined;
994
+ answer?: undefined;
995
+ model?: undefined;
996
+ stopReason?: undefined;
997
+ iterations?: undefined;
998
+ toolCalls?: undefined;
999
+ task_code?: undefined;
1000
+ phase?: undefined;
1001
+ title?: undefined;
1002
+ status?: undefined;
1003
+ priority?: undefined;
1004
+ type?: undefined;
1005
+ error?: undefined;
1006
+ message?: undefined;
1007
+ query?: undefined;
1008
+ recapContext?: undefined;
1009
+ results?: undefined;
1010
+ summary?: undefined;
1011
+ signalCount?: undefined;
1012
+ deletedCount?: undefined;
1013
+ ids?: undefined;
1014
+ count?: undefined;
1015
+ total?: undefined;
1016
+ offset?: undefined;
1017
+ memories?: undefined;
1018
+ tasks?: undefined;
1019
+ archivedToMemory?: undefined;
1020
+ limit?: undefined;
1021
+ action?: undefined;
1022
+ createdCount?: undefined;
1023
+ taskCodes?: undefined;
1024
+ };
1025
+ required: string[];
1026
+ };
1027
+ execution?: undefined;
1028
+ } | {
1029
+ name: string;
1030
+ title: string;
1031
+ description: string;
1032
+ annotations: {
1033
+ readOnlyHint: boolean;
1034
+ idempotentHint: boolean;
1035
+ openWorldHint: boolean;
1036
+ destructiveHint?: undefined;
1037
+ };
1038
+ inputSchema: {
1039
+ type: string;
1040
+ properties: {
1041
+ query: {
1042
+ type: string;
1043
+ minLength: number;
1044
+ description?: undefined;
1045
+ };
1046
+ repo: {
1047
+ type: string;
1048
+ description?: undefined;
1049
+ };
1050
+ current_tags: {
1051
+ type: string;
1052
+ items: {
1053
+ type: string;
1054
+ };
1055
+ description: string;
1056
+ };
1057
+ types: {
1058
+ type: string;
1059
+ items: {
1060
+ type: string;
1061
+ enum: string[];
1062
+ };
1063
+ };
1064
+ minImportance: {
1065
+ type: string;
1066
+ minimum: number;
1067
+ maximum: number;
1068
+ };
1069
+ limit: {
1070
+ type: string;
1071
+ minimum: number;
1072
+ maximum: number;
1073
+ default: number;
1074
+ description?: undefined;
1075
+ };
1076
+ includeRecap: {
1077
+ type: string;
1078
+ default: boolean;
1079
+ };
1080
+ current_file_path: {
1081
+ type: string;
1082
+ description?: undefined;
1083
+ };
1084
+ include_archived: {
1085
+ type: string;
1086
+ default: boolean;
1087
+ };
1088
+ objective?: undefined;
1089
+ include_summary?: undefined;
1090
+ include_tasks?: undefined;
1091
+ use_tools?: undefined;
1092
+ max_iterations?: undefined;
1093
+ max_tokens?: undefined;
1094
+ task_code?: undefined;
1095
+ phase?: undefined;
1096
+ title?: undefined;
1097
+ description?: undefined;
1098
+ status?: undefined;
1099
+ priority?: undefined;
1100
+ agent?: undefined;
1101
+ role?: undefined;
1102
+ doc_path?: undefined;
1103
+ type?: undefined;
1104
+ content?: undefined;
1105
+ importance?: undefined;
1106
+ model?: undefined;
1107
+ scope?: undefined;
1108
+ tags?: undefined;
1109
+ metadata?: undefined;
1110
+ is_global?: undefined;
1111
+ ttlDays?: undefined;
1112
+ supersedes?: undefined;
1113
+ memory_id?: undefined;
1114
+ application_context?: undefined;
1115
+ id?: undefined;
1116
+ signals?: undefined;
1117
+ ids?: undefined;
1118
+ offset?: undefined;
1119
+ parent_id?: undefined;
1120
+ depends_on?: undefined;
1121
+ est_tokens?: undefined;
1122
+ comment?: undefined;
1123
+ search?: undefined;
1124
+ action?: undefined;
1125
+ tasks?: undefined;
1126
+ };
1127
+ required: string[];
1128
+ };
1129
+ outputSchema: {
1130
+ type: string;
1131
+ properties: {
1132
+ query: {
1133
+ type: string;
1134
+ };
1135
+ recapContext: {
1136
+ type: string;
1137
+ };
1138
+ results: {
1139
+ type: string;
1140
+ items: {
1141
+ type: string;
1142
+ properties: {
1143
+ id: {
1144
+ type: string;
1145
+ };
1146
+ type: {
1147
+ type: string;
1148
+ };
1149
+ title: {
1150
+ type: string;
1151
+ };
1152
+ content: {
1153
+ type: string;
1154
+ };
1155
+ importance: {
1156
+ type: string;
1157
+ };
1158
+ };
1159
+ required: string[];
1160
+ };
1161
+ };
1162
+ repo?: undefined;
1163
+ objective?: undefined;
1164
+ answer?: undefined;
1165
+ model?: undefined;
1166
+ stopReason?: undefined;
1167
+ iterations?: undefined;
1168
+ toolCalls?: undefined;
1169
+ task_code?: undefined;
1170
+ phase?: undefined;
1171
+ title?: undefined;
1172
+ status?: undefined;
1173
+ priority?: undefined;
1174
+ success?: undefined;
1175
+ id?: undefined;
1176
+ type?: undefined;
1177
+ error?: undefined;
1178
+ message?: undefined;
1179
+ updatedFields?: undefined;
1180
+ summary?: undefined;
1181
+ signalCount?: undefined;
1182
+ deletedCount?: undefined;
1183
+ ids?: undefined;
1184
+ count?: undefined;
1185
+ total?: undefined;
1186
+ offset?: undefined;
1187
+ memories?: undefined;
1188
+ tasks?: undefined;
1189
+ archivedToMemory?: undefined;
1190
+ limit?: undefined;
1191
+ action?: undefined;
1192
+ createdCount?: undefined;
1193
+ taskCodes?: undefined;
1194
+ };
1195
+ required: string[];
1196
+ };
1197
+ execution?: undefined;
1198
+ } | {
1199
+ name: string;
1200
+ title: string;
1201
+ description: string;
1202
+ annotations: {
1203
+ readOnlyHint: boolean;
1204
+ idempotentHint: boolean;
1205
+ openWorldHint: boolean;
1206
+ destructiveHint?: undefined;
1207
+ };
1208
+ inputSchema: {
1209
+ type: string;
1210
+ properties: {
1211
+ repo: {
1212
+ type: string;
1213
+ description: string;
1214
+ };
1215
+ signals: {
1216
+ type: string;
1217
+ items: {
1218
+ type: string;
1219
+ maxLength: number;
1220
+ };
1221
+ minItems: number;
1222
+ description: string;
1223
+ };
1224
+ objective?: undefined;
1225
+ current_file_path?: undefined;
1226
+ include_summary?: undefined;
1227
+ include_tasks?: undefined;
1228
+ use_tools?: undefined;
1229
+ max_iterations?: undefined;
1230
+ max_tokens?: undefined;
1231
+ task_code?: undefined;
1232
+ phase?: undefined;
1233
+ title?: undefined;
1234
+ description?: undefined;
1235
+ status?: undefined;
1236
+ priority?: undefined;
1237
+ agent?: undefined;
1238
+ role?: undefined;
1239
+ doc_path?: undefined;
1240
+ type?: undefined;
1241
+ content?: undefined;
1242
+ importance?: undefined;
1243
+ model?: undefined;
1244
+ scope?: undefined;
1245
+ tags?: undefined;
1246
+ metadata?: undefined;
1247
+ is_global?: undefined;
1248
+ ttlDays?: undefined;
1249
+ supersedes?: undefined;
1250
+ memory_id?: undefined;
1251
+ application_context?: undefined;
1252
+ id?: undefined;
1253
+ query?: undefined;
1254
+ current_tags?: undefined;
1255
+ types?: undefined;
1256
+ minImportance?: undefined;
1257
+ limit?: undefined;
1258
+ includeRecap?: undefined;
1259
+ include_archived?: undefined;
1260
+ ids?: undefined;
1261
+ offset?: undefined;
1262
+ parent_id?: undefined;
1263
+ depends_on?: undefined;
1264
+ est_tokens?: undefined;
1265
+ comment?: undefined;
1266
+ search?: undefined;
1267
+ action?: undefined;
1268
+ tasks?: undefined;
1269
+ };
1270
+ required: string[];
1271
+ };
1272
+ outputSchema: {
1273
+ type: string;
1274
+ properties: {
1275
+ success: {
1276
+ type: string;
1277
+ };
1278
+ repo: {
1279
+ type: string;
1280
+ };
1281
+ summary: {
1282
+ type: string;
1283
+ };
1284
+ signalCount: {
1285
+ type: string;
1286
+ };
1287
+ objective?: undefined;
1288
+ answer?: undefined;
1289
+ model?: undefined;
1290
+ stopReason?: undefined;
1291
+ iterations?: undefined;
1292
+ toolCalls?: undefined;
1293
+ task_code?: undefined;
1294
+ phase?: undefined;
1295
+ title?: undefined;
1296
+ status?: undefined;
1297
+ priority?: undefined;
1298
+ id?: undefined;
1299
+ type?: undefined;
1300
+ error?: undefined;
1301
+ message?: undefined;
1302
+ updatedFields?: undefined;
1303
+ query?: undefined;
1304
+ recapContext?: undefined;
1305
+ results?: undefined;
1306
+ deletedCount?: undefined;
1307
+ ids?: undefined;
1308
+ count?: undefined;
1309
+ total?: undefined;
1310
+ offset?: undefined;
1311
+ memories?: undefined;
1312
+ tasks?: undefined;
1313
+ archivedToMemory?: undefined;
1314
+ limit?: undefined;
1315
+ action?: undefined;
1316
+ createdCount?: undefined;
1317
+ taskCodes?: undefined;
1318
+ };
1319
+ required: string[];
1320
+ };
1321
+ execution?: undefined;
1322
+ } | {
1323
+ name: string;
1324
+ title: string;
1325
+ description: string;
1326
+ annotations: {
1327
+ readOnlyHint: boolean;
1328
+ idempotentHint: boolean;
1329
+ destructiveHint: boolean;
1330
+ openWorldHint: boolean;
1331
+ };
1332
+ inputSchema: {
1333
+ type: string;
1334
+ properties: {
1335
+ id: {
1336
+ type: string;
1337
+ format: string;
1338
+ description: string;
1339
+ };
1340
+ repo?: undefined;
1341
+ objective?: undefined;
1342
+ current_file_path?: undefined;
1343
+ include_summary?: undefined;
1344
+ include_tasks?: undefined;
1345
+ use_tools?: undefined;
1346
+ max_iterations?: undefined;
1347
+ max_tokens?: undefined;
1348
+ task_code?: undefined;
1349
+ phase?: undefined;
1350
+ title?: undefined;
1351
+ description?: undefined;
1352
+ status?: undefined;
1353
+ priority?: undefined;
1354
+ agent?: undefined;
1355
+ role?: undefined;
1356
+ doc_path?: undefined;
1357
+ type?: undefined;
1358
+ content?: undefined;
1359
+ importance?: undefined;
1360
+ model?: undefined;
1361
+ scope?: undefined;
1362
+ tags?: undefined;
1363
+ metadata?: undefined;
1364
+ is_global?: undefined;
1365
+ ttlDays?: undefined;
1366
+ supersedes?: undefined;
1367
+ memory_id?: undefined;
1368
+ application_context?: undefined;
1369
+ query?: undefined;
1370
+ current_tags?: undefined;
1371
+ types?: undefined;
1372
+ minImportance?: undefined;
1373
+ limit?: undefined;
1374
+ includeRecap?: undefined;
1375
+ include_archived?: undefined;
1376
+ signals?: undefined;
1377
+ ids?: undefined;
1378
+ offset?: undefined;
1379
+ parent_id?: undefined;
1380
+ depends_on?: undefined;
1381
+ est_tokens?: undefined;
1382
+ comment?: undefined;
1383
+ search?: undefined;
1384
+ action?: undefined;
1385
+ tasks?: undefined;
1386
+ };
1387
+ required: string[];
1388
+ };
1389
+ outputSchema: {
1390
+ type: string;
1391
+ properties: {
1392
+ success: {
1393
+ type: string;
1394
+ };
1395
+ id: {
1396
+ type: string;
1397
+ };
1398
+ repo: {
1399
+ type: string;
1400
+ };
1401
+ objective?: undefined;
1402
+ answer?: undefined;
1403
+ model?: undefined;
1404
+ stopReason?: undefined;
1405
+ iterations?: undefined;
1406
+ toolCalls?: undefined;
1407
+ task_code?: undefined;
1408
+ phase?: undefined;
1409
+ title?: undefined;
1410
+ status?: undefined;
1411
+ priority?: undefined;
1412
+ type?: undefined;
1413
+ error?: undefined;
1414
+ message?: undefined;
1415
+ updatedFields?: undefined;
1416
+ query?: undefined;
1417
+ recapContext?: undefined;
1418
+ results?: undefined;
1419
+ summary?: undefined;
1420
+ signalCount?: undefined;
1421
+ deletedCount?: undefined;
1422
+ ids?: undefined;
1423
+ count?: undefined;
1424
+ total?: undefined;
1425
+ offset?: undefined;
1426
+ memories?: undefined;
1427
+ tasks?: undefined;
1428
+ archivedToMemory?: undefined;
1429
+ limit?: undefined;
1430
+ action?: undefined;
1431
+ createdCount?: undefined;
1432
+ taskCodes?: undefined;
1433
+ };
1434
+ required: string[];
1435
+ };
1436
+ execution?: undefined;
1437
+ } | {
1438
+ name: string;
1439
+ title: string;
1440
+ description: string;
1441
+ annotations: {
1442
+ readOnlyHint: boolean;
1443
+ idempotentHint: boolean;
1444
+ destructiveHint: boolean;
1445
+ openWorldHint: boolean;
1446
+ };
1447
+ inputSchema: {
1448
+ type: string;
1449
+ properties: {
1450
+ repo: {
1451
+ type: string;
1452
+ description: string;
1453
+ };
1454
+ ids: {
1455
+ type: string;
1456
+ items: {
1457
+ type: string;
1458
+ format: string;
1459
+ };
1460
+ minItems: number;
1461
+ description: string;
1462
+ };
1463
+ objective?: undefined;
1464
+ current_file_path?: undefined;
1465
+ include_summary?: undefined;
1466
+ include_tasks?: undefined;
1467
+ use_tools?: undefined;
1468
+ max_iterations?: undefined;
1469
+ max_tokens?: undefined;
1470
+ task_code?: undefined;
1471
+ phase?: undefined;
1472
+ title?: undefined;
1473
+ description?: undefined;
1474
+ status?: undefined;
1475
+ priority?: undefined;
1476
+ agent?: undefined;
1477
+ role?: undefined;
1478
+ doc_path?: undefined;
1479
+ type?: undefined;
1480
+ content?: undefined;
1481
+ importance?: undefined;
1482
+ model?: undefined;
1483
+ scope?: undefined;
1484
+ tags?: undefined;
1485
+ metadata?: undefined;
1486
+ is_global?: undefined;
1487
+ ttlDays?: undefined;
1488
+ supersedes?: undefined;
1489
+ memory_id?: undefined;
1490
+ application_context?: undefined;
1491
+ id?: undefined;
1492
+ query?: undefined;
1493
+ current_tags?: undefined;
1494
+ types?: undefined;
1495
+ minImportance?: undefined;
1496
+ limit?: undefined;
1497
+ includeRecap?: undefined;
1498
+ include_archived?: undefined;
1499
+ signals?: undefined;
1500
+ offset?: undefined;
1501
+ parent_id?: undefined;
1502
+ depends_on?: undefined;
1503
+ est_tokens?: undefined;
1504
+ comment?: undefined;
1505
+ search?: undefined;
1506
+ action?: undefined;
1507
+ tasks?: undefined;
1508
+ };
1509
+ required: string[];
1510
+ };
1511
+ outputSchema: {
1512
+ type: string;
1513
+ properties: {
1514
+ success: {
1515
+ type: string;
1516
+ };
1517
+ repo: {
1518
+ type: string;
1519
+ };
1520
+ deletedCount: {
1521
+ type: string;
1522
+ };
1523
+ ids: {
1524
+ type: string;
1525
+ items: {
1526
+ type: string;
1527
+ };
1528
+ };
1529
+ objective?: undefined;
1530
+ answer?: undefined;
1531
+ model?: undefined;
1532
+ stopReason?: undefined;
1533
+ iterations?: undefined;
1534
+ toolCalls?: undefined;
1535
+ task_code?: undefined;
1536
+ phase?: undefined;
1537
+ title?: undefined;
1538
+ status?: undefined;
1539
+ priority?: undefined;
1540
+ id?: undefined;
1541
+ type?: undefined;
1542
+ error?: undefined;
1543
+ message?: undefined;
1544
+ updatedFields?: undefined;
1545
+ query?: undefined;
1546
+ recapContext?: undefined;
1547
+ results?: undefined;
1548
+ summary?: undefined;
1549
+ signalCount?: undefined;
1550
+ count?: undefined;
1551
+ total?: undefined;
1552
+ offset?: undefined;
1553
+ memories?: undefined;
1554
+ tasks?: undefined;
1555
+ archivedToMemory?: undefined;
1556
+ limit?: undefined;
1557
+ action?: undefined;
1558
+ createdCount?: undefined;
1559
+ taskCodes?: undefined;
1560
+ };
1561
+ required: string[];
1562
+ };
1563
+ execution?: undefined;
1564
+ } | {
1565
+ name: string;
1566
+ title: string;
1567
+ description: string;
1568
+ annotations: {
1569
+ readOnlyHint: boolean;
1570
+ idempotentHint: boolean;
1571
+ openWorldHint: boolean;
1572
+ destructiveHint?: undefined;
1573
+ };
1574
+ inputSchema: {
1575
+ type: string;
1576
+ properties: {
1577
+ repo: {
1578
+ type: string;
1579
+ description: string;
1580
+ };
1581
+ limit: {
1582
+ type: string;
1583
+ minimum: number;
1584
+ maximum: number;
1585
+ default: number;
1586
+ description: string;
1587
+ };
1588
+ offset: {
1589
+ type: string;
1590
+ minimum: number;
1591
+ default: number;
1592
+ description: string;
1593
+ };
1594
+ objective?: undefined;
1595
+ current_file_path?: undefined;
1596
+ include_summary?: undefined;
1597
+ include_tasks?: undefined;
1598
+ use_tools?: undefined;
1599
+ max_iterations?: undefined;
1600
+ max_tokens?: undefined;
1601
+ task_code?: undefined;
1602
+ phase?: undefined;
1603
+ title?: undefined;
1604
+ description?: undefined;
1605
+ status?: undefined;
1606
+ priority?: undefined;
1607
+ agent?: undefined;
1608
+ role?: undefined;
1609
+ doc_path?: undefined;
1610
+ type?: undefined;
1611
+ content?: undefined;
1612
+ importance?: undefined;
1613
+ model?: undefined;
1614
+ scope?: undefined;
1615
+ tags?: undefined;
1616
+ metadata?: undefined;
1617
+ is_global?: undefined;
1618
+ ttlDays?: undefined;
1619
+ supersedes?: undefined;
1620
+ memory_id?: undefined;
1621
+ application_context?: undefined;
1622
+ id?: undefined;
1623
+ query?: undefined;
1624
+ current_tags?: undefined;
1625
+ types?: undefined;
1626
+ minImportance?: undefined;
1627
+ includeRecap?: undefined;
1628
+ include_archived?: undefined;
1629
+ signals?: undefined;
1630
+ ids?: undefined;
1631
+ parent_id?: undefined;
1632
+ depends_on?: undefined;
1633
+ est_tokens?: undefined;
1634
+ comment?: undefined;
1635
+ search?: undefined;
1636
+ action?: undefined;
1637
+ tasks?: undefined;
1638
+ };
1639
+ required: string[];
1640
+ };
1641
+ outputSchema: {
1642
+ type: string;
1643
+ properties: {
1644
+ repo: {
1645
+ type: string;
1646
+ };
1647
+ count: {
1648
+ type: string;
1649
+ };
1650
+ total: {
1651
+ type: string;
1652
+ };
1653
+ offset: {
1654
+ type: string;
1655
+ };
1656
+ summary: {
1657
+ type: string;
1658
+ };
1659
+ memories: {
1660
+ type: string;
1661
+ items: {
1662
+ type: string;
1663
+ properties: {
1664
+ number: {
1665
+ type: string;
1666
+ };
1667
+ id: {
1668
+ type: string;
1669
+ };
1670
+ type: {
1671
+ type: string;
1672
+ };
1673
+ importance: {
1674
+ type: string;
1675
+ };
1676
+ preview: {
1677
+ type: string;
1678
+ };
1679
+ created_at: {
1680
+ type: string;
1681
+ };
1682
+ };
1683
+ required: string[];
1684
+ };
1685
+ };
1686
+ tasks: {
1687
+ type: string;
1688
+ items: {
1689
+ type: string;
1690
+ properties: {
1691
+ id: {
1692
+ type: string;
1693
+ };
1694
+ task_code: {
1695
+ type: string;
1696
+ };
1697
+ title: {
1698
+ type: string;
1699
+ };
1700
+ status: {
1701
+ type: string;
1702
+ };
1703
+ priority: {
1704
+ type: string;
1705
+ };
1706
+ repo?: undefined;
1707
+ phase?: undefined;
1708
+ description?: undefined;
1709
+ };
1710
+ required: string[];
1711
+ };
1712
+ };
1713
+ objective?: undefined;
1714
+ answer?: undefined;
1715
+ model?: undefined;
1716
+ stopReason?: undefined;
1717
+ iterations?: undefined;
1718
+ toolCalls?: undefined;
1719
+ task_code?: undefined;
1720
+ phase?: undefined;
1721
+ title?: undefined;
1722
+ status?: undefined;
1723
+ priority?: undefined;
1724
+ success?: undefined;
1725
+ id?: undefined;
1726
+ type?: undefined;
1727
+ error?: undefined;
1728
+ message?: undefined;
1729
+ updatedFields?: undefined;
1730
+ query?: undefined;
1731
+ recapContext?: undefined;
1732
+ results?: undefined;
1733
+ signalCount?: undefined;
1734
+ deletedCount?: undefined;
1735
+ ids?: undefined;
1736
+ archivedToMemory?: undefined;
1737
+ limit?: undefined;
1738
+ action?: undefined;
1739
+ createdCount?: undefined;
1740
+ taskCodes?: undefined;
1741
+ };
1742
+ required: string[];
1743
+ };
1744
+ execution?: undefined;
1745
+ } | {
1746
+ name: string;
1747
+ title: string;
1748
+ description: string;
1749
+ annotations: {
1750
+ readOnlyHint: boolean;
1751
+ idempotentHint: boolean;
1752
+ openWorldHint: boolean;
1753
+ destructiveHint?: undefined;
1754
+ };
1755
+ inputSchema: {
1756
+ type: string;
1757
+ properties: {
1758
+ repo: {
1759
+ type: string;
1760
+ description: string;
1761
+ };
1762
+ task_code: {
1763
+ type: string;
1764
+ description: string;
1765
+ };
1766
+ phase: {
1767
+ type: string;
1768
+ description: string;
1769
+ };
1770
+ title: {
1771
+ type: string;
1772
+ minLength: number;
1773
+ maxLength: number;
1774
+ description?: undefined;
1775
+ };
1776
+ description: {
1777
+ type: string;
1778
+ minLength?: undefined;
1779
+ };
1780
+ status: {
1781
+ type: string;
1782
+ enum: string[];
1783
+ description: string;
1784
+ default?: undefined;
1785
+ };
1786
+ priority: {
1787
+ type: string;
1788
+ minimum: number;
1789
+ maximum: number;
1790
+ default: number;
1791
+ };
1792
+ agent: {
1793
+ type: string;
1794
+ description?: undefined;
1795
+ };
1796
+ role: {
1797
+ type: string;
1798
+ };
1799
+ doc_path: {
1800
+ type: string;
1801
+ };
1802
+ tags: {
1803
+ type: string;
1804
+ items: {
1805
+ type: string;
1806
+ };
1807
+ description?: undefined;
1808
+ };
1809
+ metadata: {
1810
+ type: string;
1811
+ description?: undefined;
1812
+ };
1813
+ parent_id: {
1814
+ type: string;
1815
+ format: string;
1816
+ };
1817
+ depends_on: {
1818
+ type: string;
1819
+ format: string;
1820
+ };
1821
+ est_tokens: {
1822
+ type: string;
1823
+ minimum: number;
1824
+ description: string;
1825
+ };
1826
+ objective?: undefined;
1827
+ current_file_path?: undefined;
1828
+ include_summary?: undefined;
1829
+ include_tasks?: undefined;
1830
+ use_tools?: undefined;
1831
+ max_iterations?: undefined;
1832
+ max_tokens?: undefined;
1833
+ type?: undefined;
1834
+ content?: undefined;
1835
+ importance?: undefined;
1836
+ model?: undefined;
1837
+ scope?: undefined;
1838
+ is_global?: undefined;
1839
+ ttlDays?: undefined;
1840
+ supersedes?: undefined;
1841
+ memory_id?: undefined;
1842
+ application_context?: undefined;
1843
+ id?: undefined;
1844
+ query?: undefined;
1845
+ current_tags?: undefined;
1846
+ types?: undefined;
1847
+ minImportance?: undefined;
1848
+ limit?: undefined;
1849
+ includeRecap?: undefined;
1850
+ include_archived?: undefined;
1851
+ signals?: undefined;
1852
+ ids?: undefined;
1853
+ offset?: undefined;
1854
+ comment?: undefined;
1855
+ search?: undefined;
1856
+ action?: undefined;
1857
+ tasks?: undefined;
1858
+ };
1859
+ required: string[];
1860
+ };
1861
+ outputSchema: {
1862
+ type: string;
1863
+ properties: {
1864
+ success: {
1865
+ type: string;
1866
+ };
1867
+ id: {
1868
+ type: string;
1869
+ };
1870
+ repo: {
1871
+ type: string;
1872
+ };
1873
+ task_code: {
1874
+ type: string;
1875
+ };
1876
+ phase: {
1877
+ type: string;
1878
+ };
1879
+ title: {
1880
+ type: string;
1881
+ };
1882
+ status: {
1883
+ type: string;
1884
+ };
1885
+ priority: {
1886
+ type: string;
1887
+ };
1888
+ objective?: undefined;
1889
+ answer?: undefined;
1890
+ model?: undefined;
1891
+ stopReason?: undefined;
1892
+ iterations?: undefined;
1893
+ toolCalls?: undefined;
1894
+ type?: undefined;
1895
+ error?: undefined;
1896
+ message?: undefined;
1897
+ updatedFields?: undefined;
1898
+ query?: undefined;
1899
+ recapContext?: undefined;
1900
+ results?: undefined;
1901
+ summary?: undefined;
1902
+ signalCount?: undefined;
1903
+ deletedCount?: undefined;
1904
+ ids?: undefined;
1905
+ count?: undefined;
1906
+ total?: undefined;
1907
+ offset?: undefined;
1908
+ memories?: undefined;
1909
+ tasks?: undefined;
1910
+ archivedToMemory?: undefined;
1911
+ limit?: undefined;
1912
+ action?: undefined;
1913
+ createdCount?: undefined;
1914
+ taskCodes?: undefined;
1915
+ };
1916
+ required: string[];
1917
+ };
1918
+ execution?: undefined;
1919
+ } | {
1920
+ name: string;
1921
+ title: string;
1922
+ description: string;
1923
+ annotations: {
1924
+ readOnlyHint: boolean;
1925
+ idempotentHint: boolean;
1926
+ openWorldHint: boolean;
1927
+ destructiveHint?: undefined;
1928
+ };
1929
+ inputSchema: {
1930
+ type: string;
1931
+ properties: {
1932
+ repo: {
1933
+ type: string;
1934
+ description: string;
1935
+ };
1936
+ id: {
1937
+ type: string;
1938
+ format: string;
1939
+ description: string;
1940
+ };
1941
+ task_code: {
1942
+ type: string;
1943
+ description?: undefined;
1944
+ };
1945
+ phase: {
1946
+ type: string;
1947
+ description?: undefined;
1948
+ };
1949
+ title: {
1950
+ type: string;
1951
+ minLength: number;
1952
+ maxLength: number;
1953
+ description?: undefined;
1954
+ };
1955
+ description: {
1956
+ type: string;
1957
+ minLength?: undefined;
1958
+ };
1959
+ status: {
1960
+ type: string;
1961
+ enum: string[];
1962
+ description: string;
1963
+ default?: undefined;
1964
+ };
1965
+ priority: {
1966
+ type: string;
1967
+ minimum: number;
1968
+ maximum: number;
1969
+ default?: undefined;
1970
+ };
1971
+ agent: {
1972
+ type: string;
1973
+ description?: undefined;
1974
+ };
1975
+ role: {
1976
+ type: string;
1977
+ };
1978
+ model: {
1979
+ type: string;
1980
+ description?: undefined;
1981
+ };
1982
+ comment: {
1983
+ type: string;
1984
+ description: string;
1985
+ };
1986
+ doc_path: {
1987
+ type: string;
1988
+ };
1989
+ tags: {
1990
+ type: string;
1991
+ items: {
1992
+ type: string;
1993
+ };
1994
+ description?: undefined;
1995
+ };
1996
+ metadata: {
1997
+ type: string;
1998
+ description?: undefined;
1999
+ };
2000
+ parent_id: {
2001
+ type: string;
2002
+ format: string;
2003
+ };
2004
+ depends_on: {
2005
+ type: string;
2006
+ format: string;
2007
+ };
2008
+ est_tokens: {
2009
+ type: string;
2010
+ minimum: number;
2011
+ description: string;
2012
+ };
2013
+ objective?: undefined;
2014
+ current_file_path?: undefined;
2015
+ include_summary?: undefined;
2016
+ include_tasks?: undefined;
2017
+ use_tools?: undefined;
2018
+ max_iterations?: undefined;
2019
+ max_tokens?: undefined;
2020
+ type?: undefined;
2021
+ content?: undefined;
2022
+ importance?: undefined;
2023
+ scope?: undefined;
2024
+ is_global?: undefined;
2025
+ ttlDays?: undefined;
2026
+ supersedes?: undefined;
2027
+ memory_id?: undefined;
2028
+ application_context?: undefined;
2029
+ query?: undefined;
2030
+ current_tags?: undefined;
2031
+ types?: undefined;
2032
+ minImportance?: undefined;
2033
+ limit?: undefined;
2034
+ includeRecap?: undefined;
2035
+ include_archived?: undefined;
2036
+ signals?: undefined;
2037
+ ids?: undefined;
2038
+ offset?: undefined;
2039
+ search?: undefined;
2040
+ action?: undefined;
2041
+ tasks?: undefined;
2042
+ };
2043
+ required: string[];
2044
+ };
2045
+ outputSchema: {
2046
+ type: string;
2047
+ properties: {
2048
+ success: {
2049
+ type: string;
2050
+ };
2051
+ id: {
2052
+ type: string;
2053
+ };
2054
+ repo: {
2055
+ type: string;
2056
+ };
2057
+ status: {
2058
+ type: string;
2059
+ };
2060
+ archivedToMemory: {
2061
+ type: string;
2062
+ };
2063
+ updatedFields: {
2064
+ type: string;
2065
+ items: {
2066
+ type: string;
2067
+ };
2068
+ };
2069
+ objective?: undefined;
2070
+ answer?: undefined;
2071
+ model?: undefined;
2072
+ stopReason?: undefined;
2073
+ iterations?: undefined;
2074
+ toolCalls?: undefined;
2075
+ task_code?: undefined;
2076
+ phase?: undefined;
2077
+ title?: undefined;
2078
+ priority?: undefined;
2079
+ type?: undefined;
2080
+ error?: undefined;
2081
+ message?: undefined;
2082
+ query?: undefined;
2083
+ recapContext?: undefined;
2084
+ results?: undefined;
2085
+ summary?: undefined;
2086
+ signalCount?: undefined;
2087
+ deletedCount?: undefined;
2088
+ ids?: undefined;
2089
+ count?: undefined;
2090
+ total?: undefined;
2091
+ offset?: undefined;
2092
+ memories?: undefined;
2093
+ tasks?: undefined;
2094
+ limit?: undefined;
2095
+ action?: undefined;
2096
+ createdCount?: undefined;
2097
+ taskCodes?: undefined;
2098
+ };
2099
+ required: string[];
2100
+ };
2101
+ execution?: undefined;
2102
+ } | {
2103
+ name: string;
2104
+ title: string;
2105
+ description: string;
2106
+ annotations: {
2107
+ readOnlyHint: boolean;
2108
+ idempotentHint: boolean;
2109
+ destructiveHint: boolean;
2110
+ openWorldHint: boolean;
2111
+ };
2112
+ inputSchema: {
2113
+ type: string;
2114
+ properties: {
2115
+ repo: {
2116
+ type: string;
2117
+ description: string;
2118
+ };
2119
+ id: {
2120
+ type: string;
2121
+ format: string;
2122
+ description: string;
2123
+ };
2124
+ objective?: undefined;
2125
+ current_file_path?: undefined;
2126
+ include_summary?: undefined;
2127
+ include_tasks?: undefined;
2128
+ use_tools?: undefined;
2129
+ max_iterations?: undefined;
2130
+ max_tokens?: undefined;
2131
+ task_code?: undefined;
2132
+ phase?: undefined;
2133
+ title?: undefined;
2134
+ description?: undefined;
2135
+ status?: undefined;
2136
+ priority?: undefined;
2137
+ agent?: undefined;
2138
+ role?: undefined;
2139
+ doc_path?: undefined;
2140
+ type?: undefined;
2141
+ content?: undefined;
2142
+ importance?: undefined;
2143
+ model?: undefined;
2144
+ scope?: undefined;
2145
+ tags?: undefined;
2146
+ metadata?: undefined;
2147
+ is_global?: undefined;
2148
+ ttlDays?: undefined;
2149
+ supersedes?: undefined;
2150
+ memory_id?: undefined;
2151
+ application_context?: undefined;
2152
+ query?: undefined;
2153
+ current_tags?: undefined;
2154
+ types?: undefined;
2155
+ minImportance?: undefined;
2156
+ limit?: undefined;
2157
+ includeRecap?: undefined;
2158
+ include_archived?: undefined;
2159
+ signals?: undefined;
2160
+ ids?: undefined;
2161
+ offset?: undefined;
2162
+ parent_id?: undefined;
2163
+ depends_on?: undefined;
2164
+ est_tokens?: undefined;
2165
+ comment?: undefined;
2166
+ search?: undefined;
2167
+ action?: undefined;
2168
+ tasks?: undefined;
2169
+ };
2170
+ required: string[];
2171
+ };
2172
+ outputSchema: {
2173
+ type: string;
2174
+ properties: {
2175
+ success: {
2176
+ type: string;
2177
+ };
2178
+ id: {
2179
+ type: string;
2180
+ };
2181
+ repo: {
2182
+ type: string;
2183
+ };
2184
+ objective?: undefined;
2185
+ answer?: undefined;
2186
+ model?: undefined;
2187
+ stopReason?: undefined;
2188
+ iterations?: undefined;
2189
+ toolCalls?: undefined;
2190
+ task_code?: undefined;
2191
+ phase?: undefined;
2192
+ title?: undefined;
2193
+ status?: undefined;
2194
+ priority?: undefined;
2195
+ type?: undefined;
2196
+ error?: undefined;
2197
+ message?: undefined;
2198
+ updatedFields?: undefined;
2199
+ query?: undefined;
2200
+ recapContext?: undefined;
2201
+ results?: undefined;
2202
+ summary?: undefined;
2203
+ signalCount?: undefined;
2204
+ deletedCount?: undefined;
2205
+ ids?: undefined;
2206
+ count?: undefined;
2207
+ total?: undefined;
2208
+ offset?: undefined;
2209
+ memories?: undefined;
2210
+ tasks?: undefined;
2211
+ archivedToMemory?: undefined;
2212
+ limit?: undefined;
2213
+ action?: undefined;
2214
+ createdCount?: undefined;
2215
+ taskCodes?: undefined;
2216
+ };
2217
+ required: string[];
2218
+ };
2219
+ execution?: undefined;
2220
+ } | {
2221
+ name: string;
2222
+ title: string;
2223
+ description: string;
2224
+ annotations: {
2225
+ readOnlyHint: boolean;
2226
+ idempotentHint: boolean;
2227
+ openWorldHint: boolean;
2228
+ destructiveHint?: undefined;
2229
+ };
2230
+ inputSchema: {
2231
+ type: string;
2232
+ properties: {
2233
+ repo: {
2234
+ type: string;
2235
+ description: string;
2236
+ };
2237
+ status: {
2238
+ type: string;
2239
+ description: string;
2240
+ enum?: undefined;
2241
+ default?: undefined;
2242
+ };
2243
+ phase: {
2244
+ type: string;
2245
+ description: string;
2246
+ };
2247
+ search: {
2248
+ type: string;
2249
+ description: string;
2250
+ };
2251
+ limit: {
2252
+ type: string;
2253
+ minimum: number;
2254
+ maximum: number;
2255
+ default: number;
2256
+ description: string;
2257
+ };
2258
+ offset: {
2259
+ type: string;
2260
+ minimum: number;
2261
+ default: number;
2262
+ description: string;
2263
+ };
2264
+ objective?: undefined;
2265
+ current_file_path?: undefined;
2266
+ include_summary?: undefined;
2267
+ include_tasks?: undefined;
2268
+ use_tools?: undefined;
2269
+ max_iterations?: undefined;
2270
+ max_tokens?: undefined;
2271
+ task_code?: undefined;
2272
+ title?: undefined;
2273
+ description?: undefined;
2274
+ priority?: undefined;
2275
+ agent?: undefined;
2276
+ role?: undefined;
2277
+ doc_path?: undefined;
2278
+ type?: undefined;
2279
+ content?: undefined;
2280
+ importance?: undefined;
2281
+ model?: undefined;
2282
+ scope?: undefined;
2283
+ tags?: undefined;
2284
+ metadata?: undefined;
2285
+ is_global?: undefined;
2286
+ ttlDays?: undefined;
2287
+ supersedes?: undefined;
2288
+ memory_id?: undefined;
2289
+ application_context?: undefined;
2290
+ id?: undefined;
2291
+ query?: undefined;
2292
+ current_tags?: undefined;
2293
+ types?: undefined;
2294
+ minImportance?: undefined;
2295
+ includeRecap?: undefined;
2296
+ include_archived?: undefined;
2297
+ signals?: undefined;
2298
+ ids?: undefined;
2299
+ parent_id?: undefined;
2300
+ depends_on?: undefined;
2301
+ est_tokens?: undefined;
2302
+ comment?: undefined;
2303
+ action?: undefined;
2304
+ tasks?: undefined;
2305
+ };
2306
+ required: string[];
2307
+ };
2308
+ outputSchema: {
2309
+ type: string;
2310
+ properties: {
2311
+ repo: {
2312
+ type: string;
2313
+ };
2314
+ count: {
2315
+ type: string;
2316
+ };
2317
+ offset: {
2318
+ type: string;
2319
+ };
2320
+ limit: {
2321
+ type: string;
2322
+ };
2323
+ tasks: {
2324
+ type: string;
2325
+ items: {
2326
+ type: string;
2327
+ properties: {
2328
+ id: {
2329
+ type: string;
2330
+ };
2331
+ repo: {
2332
+ type: string;
2333
+ };
2334
+ task_code: {
2335
+ type: string;
2336
+ };
2337
+ phase: {
2338
+ type: string;
2339
+ };
2340
+ title: {
2341
+ type: string;
2342
+ };
2343
+ description: {
2344
+ type: string;
2345
+ };
2346
+ status: {
2347
+ type: string;
2348
+ };
2349
+ priority: {
2350
+ type: string;
2351
+ };
2352
+ };
2353
+ required: string[];
2354
+ };
2355
+ };
2356
+ objective?: undefined;
2357
+ answer?: undefined;
2358
+ model?: undefined;
2359
+ stopReason?: undefined;
2360
+ iterations?: undefined;
2361
+ toolCalls?: undefined;
2362
+ task_code?: undefined;
2363
+ phase?: undefined;
2364
+ title?: undefined;
2365
+ status?: undefined;
2366
+ priority?: undefined;
2367
+ success?: undefined;
2368
+ id?: undefined;
2369
+ type?: undefined;
2370
+ error?: undefined;
2371
+ message?: undefined;
2372
+ updatedFields?: undefined;
2373
+ query?: undefined;
2374
+ recapContext?: undefined;
2375
+ results?: undefined;
2376
+ summary?: undefined;
2377
+ signalCount?: undefined;
2378
+ deletedCount?: undefined;
2379
+ ids?: undefined;
2380
+ total?: undefined;
2381
+ memories?: undefined;
2382
+ archivedToMemory?: undefined;
2383
+ action?: undefined;
2384
+ createdCount?: undefined;
2385
+ taskCodes?: undefined;
2386
+ };
2387
+ required: string[];
2388
+ };
2389
+ execution?: undefined;
2390
+ } | {
2391
+ name: string;
2392
+ title: string;
2393
+ description: string;
2394
+ annotations: {
2395
+ readOnlyHint: boolean;
2396
+ idempotentHint: boolean;
2397
+ openWorldHint: boolean;
2398
+ destructiveHint?: undefined;
2399
+ };
2400
+ inputSchema: {
2401
+ type: string;
2402
+ properties: {
2403
+ repo: {
2404
+ type: string;
2405
+ description: string;
2406
+ };
2407
+ query: {
2408
+ type: string;
2409
+ description: string;
2410
+ minLength?: undefined;
2411
+ };
2412
+ status: {
2413
+ type: string;
2414
+ description: string;
2415
+ enum?: undefined;
2416
+ default?: undefined;
2417
+ };
2418
+ limit: {
2419
+ type: string;
2420
+ minimum: number;
2421
+ maximum: number;
2422
+ default: number;
2423
+ description: string;
2424
+ };
2425
+ offset: {
2426
+ type: string;
2427
+ minimum: number;
2428
+ default: number;
2429
+ description: string;
2430
+ };
2431
+ objective?: undefined;
2432
+ current_file_path?: undefined;
2433
+ include_summary?: undefined;
2434
+ include_tasks?: undefined;
2435
+ use_tools?: undefined;
2436
+ max_iterations?: undefined;
2437
+ max_tokens?: undefined;
2438
+ task_code?: undefined;
2439
+ phase?: undefined;
2440
+ title?: undefined;
2441
+ description?: undefined;
2442
+ priority?: undefined;
2443
+ agent?: undefined;
2444
+ role?: undefined;
2445
+ doc_path?: undefined;
2446
+ type?: undefined;
2447
+ content?: undefined;
2448
+ importance?: undefined;
2449
+ model?: undefined;
2450
+ scope?: undefined;
2451
+ tags?: undefined;
2452
+ metadata?: undefined;
2453
+ is_global?: undefined;
2454
+ ttlDays?: undefined;
2455
+ supersedes?: undefined;
2456
+ memory_id?: undefined;
2457
+ application_context?: undefined;
2458
+ id?: undefined;
2459
+ current_tags?: undefined;
2460
+ types?: undefined;
2461
+ minImportance?: undefined;
2462
+ includeRecap?: undefined;
2463
+ include_archived?: undefined;
2464
+ signals?: undefined;
2465
+ ids?: undefined;
2466
+ parent_id?: undefined;
2467
+ depends_on?: undefined;
2468
+ est_tokens?: undefined;
2469
+ comment?: undefined;
2470
+ search?: undefined;
2471
+ action?: undefined;
2472
+ tasks?: undefined;
2473
+ };
2474
+ required: string[];
2475
+ };
2476
+ outputSchema: {
2477
+ type: string;
2478
+ properties: {
2479
+ repo: {
2480
+ type: string;
2481
+ };
2482
+ count: {
2483
+ type: string;
2484
+ };
2485
+ offset: {
2486
+ type: string;
2487
+ };
2488
+ limit: {
2489
+ type: string;
2490
+ };
2491
+ tasks: {
2492
+ type: string;
2493
+ items: {
2494
+ type: string;
2495
+ properties: {
2496
+ id: {
2497
+ type: string;
2498
+ };
2499
+ repo: {
2500
+ type: string;
2501
+ };
2502
+ task_code: {
2503
+ type: string;
2504
+ };
2505
+ phase: {
2506
+ type: string;
2507
+ };
2508
+ title: {
2509
+ type: string;
2510
+ };
2511
+ description: {
2512
+ type: string;
2513
+ };
2514
+ status: {
2515
+ type: string;
2516
+ };
2517
+ priority: {
2518
+ type: string;
2519
+ };
2520
+ };
2521
+ required: string[];
2522
+ };
2523
+ };
2524
+ objective?: undefined;
2525
+ answer?: undefined;
2526
+ model?: undefined;
2527
+ stopReason?: undefined;
2528
+ iterations?: undefined;
2529
+ toolCalls?: undefined;
2530
+ task_code?: undefined;
2531
+ phase?: undefined;
2532
+ title?: undefined;
2533
+ status?: undefined;
2534
+ priority?: undefined;
2535
+ success?: undefined;
2536
+ id?: undefined;
2537
+ type?: undefined;
2538
+ error?: undefined;
2539
+ message?: undefined;
2540
+ updatedFields?: undefined;
2541
+ query?: undefined;
2542
+ recapContext?: undefined;
2543
+ results?: undefined;
2544
+ summary?: undefined;
2545
+ signalCount?: undefined;
2546
+ deletedCount?: undefined;
2547
+ ids?: undefined;
2548
+ total?: undefined;
2549
+ memories?: undefined;
2550
+ archivedToMemory?: undefined;
2551
+ action?: undefined;
2552
+ createdCount?: undefined;
2553
+ taskCodes?: undefined;
2554
+ };
2555
+ required: string[];
2556
+ };
2557
+ execution?: undefined;
2558
+ } | {
2559
+ name: string;
2560
+ title: string;
2561
+ description: string;
2562
+ annotations: {
2563
+ readOnlyHint: boolean;
2564
+ idempotentHint: boolean;
2565
+ destructiveHint: boolean;
2566
+ openWorldHint: boolean;
2567
+ };
2568
+ inputSchema: {
2569
+ type: string;
2570
+ properties: {
2571
+ action: {
2572
+ type: string;
2573
+ enum: string[];
2574
+ description: string;
2575
+ };
2576
+ repo: {
2577
+ type: string;
2578
+ description: string;
2579
+ };
2580
+ tasks: {
2581
+ type: string;
2582
+ items: {
2583
+ type: string;
2584
+ properties: {
2585
+ task_code: {
2586
+ type: string;
2587
+ };
2588
+ phase: {
2589
+ type: string;
2590
+ };
2591
+ title: {
2592
+ type: string;
2593
+ minLength: number;
2594
+ maxLength: number;
2595
+ };
2596
+ description: {
2597
+ type: string;
2598
+ };
2599
+ status: {
2600
+ type: string;
2601
+ enum: string[];
2602
+ };
2603
+ priority: {
2604
+ type: string;
2605
+ minimum: number;
2606
+ maximum: number;
2607
+ };
2608
+ agent: {
2609
+ type: string;
2610
+ };
2611
+ role: {
2612
+ type: string;
2613
+ };
2614
+ doc_path: {
2615
+ type: string;
2616
+ };
2617
+ tags: {
2618
+ type: string;
2619
+ items: {
2620
+ type: string;
2621
+ };
2622
+ };
2623
+ metadata: {
2624
+ type: string;
2625
+ };
2626
+ parent_id: {
2627
+ type: string;
2628
+ format: string;
2629
+ };
2630
+ depends_on: {
2631
+ type: string;
2632
+ format: string;
2633
+ };
2634
+ est_tokens: {
2635
+ type: string;
2636
+ minimum: number;
2637
+ description: string;
2638
+ };
2639
+ };
2640
+ required: string[];
2641
+ };
2642
+ minItems: number;
2643
+ };
2644
+ ids: {
2645
+ type: string;
2646
+ items: {
2647
+ type: string;
2648
+ format: string;
2649
+ };
2650
+ minItems: number;
2651
+ description: string;
2652
+ };
2653
+ objective?: undefined;
2654
+ current_file_path?: undefined;
2655
+ include_summary?: undefined;
2656
+ include_tasks?: undefined;
2657
+ use_tools?: undefined;
2658
+ max_iterations?: undefined;
2659
+ max_tokens?: undefined;
2660
+ task_code?: undefined;
2661
+ phase?: undefined;
2662
+ title?: undefined;
2663
+ description?: undefined;
2664
+ status?: undefined;
2665
+ priority?: undefined;
2666
+ agent?: undefined;
2667
+ role?: undefined;
2668
+ doc_path?: undefined;
2669
+ type?: undefined;
2670
+ content?: undefined;
2671
+ importance?: undefined;
2672
+ model?: undefined;
2673
+ scope?: undefined;
2674
+ tags?: undefined;
2675
+ metadata?: undefined;
2676
+ is_global?: undefined;
2677
+ ttlDays?: undefined;
2678
+ supersedes?: undefined;
2679
+ memory_id?: undefined;
2680
+ application_context?: undefined;
2681
+ id?: undefined;
2682
+ query?: undefined;
2683
+ current_tags?: undefined;
2684
+ types?: undefined;
2685
+ minImportance?: undefined;
2686
+ limit?: undefined;
2687
+ includeRecap?: undefined;
2688
+ include_archived?: undefined;
2689
+ signals?: undefined;
2690
+ offset?: undefined;
2691
+ parent_id?: undefined;
2692
+ depends_on?: undefined;
2693
+ est_tokens?: undefined;
2694
+ comment?: undefined;
2695
+ search?: undefined;
2696
+ };
2697
+ required: string[];
2698
+ };
2699
+ outputSchema: {
2700
+ type: string;
2701
+ properties: {
2702
+ success: {
2703
+ type: string;
2704
+ };
2705
+ action: {
2706
+ type: string;
2707
+ };
2708
+ repo: {
2709
+ type: string;
2710
+ };
2711
+ createdCount: {
2712
+ type: string;
2713
+ };
2714
+ deletedCount: {
2715
+ type: string;
2716
+ };
2717
+ taskCodes: {
2718
+ type: string;
2719
+ items: {
2720
+ type: string;
2721
+ };
2722
+ };
2723
+ ids: {
2724
+ type: string;
2725
+ items: {
2726
+ type: string;
2727
+ };
2728
+ };
2729
+ objective?: undefined;
2730
+ answer?: undefined;
2731
+ model?: undefined;
2732
+ stopReason?: undefined;
2733
+ iterations?: undefined;
2734
+ toolCalls?: undefined;
2735
+ task_code?: undefined;
2736
+ phase?: undefined;
2737
+ title?: undefined;
2738
+ status?: undefined;
2739
+ priority?: undefined;
2740
+ id?: undefined;
2741
+ type?: undefined;
2742
+ error?: undefined;
2743
+ message?: undefined;
2744
+ updatedFields?: undefined;
2745
+ query?: undefined;
2746
+ recapContext?: undefined;
2747
+ results?: undefined;
2748
+ summary?: undefined;
2749
+ signalCount?: undefined;
2750
+ count?: undefined;
2751
+ total?: undefined;
2752
+ offset?: undefined;
2753
+ memories?: undefined;
2754
+ tasks?: undefined;
2755
+ archivedToMemory?: undefined;
2756
+ limit?: undefined;
2757
+ };
2758
+ required: string[];
2759
+ };
2760
+ execution?: undefined;
2761
+ })[];
2762
+ //# sourceMappingURL=schemas.d.ts.map