@crowdlisten/harness 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/AGENTS.md +167 -0
  2. package/LICENSE +21 -0
  3. package/README.md +153 -0
  4. package/dist/agent-proxy.d.ts +24 -0
  5. package/dist/agent-proxy.js +140 -0
  6. package/dist/agent-tools.d.ts +736 -0
  7. package/dist/agent-tools.js +409 -0
  8. package/dist/context/api.d.ts +5 -0
  9. package/dist/context/api.js +164 -0
  10. package/dist/context/cli.d.ts +19 -0
  11. package/dist/context/cli.js +108 -0
  12. package/dist/context/extractor.d.ts +12 -0
  13. package/dist/context/extractor.js +43 -0
  14. package/dist/context/index.d.ts +12 -0
  15. package/dist/context/index.js +11 -0
  16. package/dist/context/matcher.d.ts +39 -0
  17. package/dist/context/matcher.js +246 -0
  18. package/dist/context/parser.d.ts +28 -0
  19. package/dist/context/parser.js +157 -0
  20. package/dist/context/pipeline.d.ts +26 -0
  21. package/dist/context/pipeline.js +56 -0
  22. package/dist/context/prompts.d.ts +6 -0
  23. package/dist/context/prompts.js +60 -0
  24. package/dist/context/providers.d.ts +6 -0
  25. package/dist/context/providers.js +106 -0
  26. package/dist/context/redactor.d.ts +10 -0
  27. package/dist/context/redactor.js +68 -0
  28. package/dist/context/server.d.ts +5 -0
  29. package/dist/context/server.js +134 -0
  30. package/dist/context/store.d.ts +12 -0
  31. package/dist/context/store.js +82 -0
  32. package/dist/context/types.d.ts +79 -0
  33. package/dist/context/types.js +4 -0
  34. package/dist/context/user-state.d.ts +40 -0
  35. package/dist/context/user-state.js +144 -0
  36. package/dist/index.d.ts +14 -0
  37. package/dist/index.js +385 -0
  38. package/dist/insights/browser/BrowserPool.d.ts +87 -0
  39. package/dist/insights/browser/BrowserPool.js +266 -0
  40. package/dist/insights/browser/RequestInterceptor.d.ts +46 -0
  41. package/dist/insights/browser/RequestInterceptor.js +115 -0
  42. package/dist/insights/cli.d.ts +8 -0
  43. package/dist/insights/cli.js +206 -0
  44. package/dist/insights/core/base/BaseAdapter.d.ts +37 -0
  45. package/dist/insights/core/base/BaseAdapter.js +123 -0
  46. package/dist/insights/core/health/HealthMonitor.d.ts +75 -0
  47. package/dist/insights/core/health/HealthMonitor.js +171 -0
  48. package/dist/insights/core/interfaces/SocialMediaPlatform.d.ts +125 -0
  49. package/dist/insights/core/interfaces/SocialMediaPlatform.js +42 -0
  50. package/dist/insights/core/utils/DataNormalizer.d.ts +53 -0
  51. package/dist/insights/core/utils/DataNormalizer.js +349 -0
  52. package/dist/insights/core/utils/InstagramUrlUtils.d.ts +11 -0
  53. package/dist/insights/core/utils/InstagramUrlUtils.js +60 -0
  54. package/dist/insights/core/utils/TikTokUrlUtils.d.ts +10 -0
  55. package/dist/insights/core/utils/TikTokUrlUtils.js +57 -0
  56. package/dist/insights/handlers.d.ts +157 -0
  57. package/dist/insights/handlers.js +246 -0
  58. package/dist/insights/index.d.ts +437 -0
  59. package/dist/insights/index.js +426 -0
  60. package/dist/insights/platforms/instagram/InstagramAdapter.d.ts +34 -0
  61. package/dist/insights/platforms/instagram/InstagramAdapter.js +342 -0
  62. package/dist/insights/platforms/moltbook/MoltbookAdapter.d.ts +31 -0
  63. package/dist/insights/platforms/moltbook/MoltbookAdapter.js +227 -0
  64. package/dist/insights/platforms/reddit/RedditAdapter.d.ts +21 -0
  65. package/dist/insights/platforms/reddit/RedditAdapter.js +212 -0
  66. package/dist/insights/platforms/tiktok/TikTokAdapter.d.ts +34 -0
  67. package/dist/insights/platforms/tiktok/TikTokAdapter.js +269 -0
  68. package/dist/insights/platforms/twitter/TwitterAdapter.d.ts +23 -0
  69. package/dist/insights/platforms/twitter/TwitterAdapter.js +211 -0
  70. package/dist/insights/platforms/xiaohongshu/XiaohongshuAdapter.d.ts +35 -0
  71. package/dist/insights/platforms/xiaohongshu/XiaohongshuAdapter.js +258 -0
  72. package/dist/insights/platforms/youtube/YouTubeAdapter.d.ts +22 -0
  73. package/dist/insights/platforms/youtube/YouTubeAdapter.js +254 -0
  74. package/dist/insights/service-config.d.ts +7 -0
  75. package/dist/insights/service-config.js +60 -0
  76. package/dist/insights/services/UnifiedSocialMediaService.d.ts +94 -0
  77. package/dist/insights/services/UnifiedSocialMediaService.js +259 -0
  78. package/dist/insights/vision/VisionExtractor.d.ts +46 -0
  79. package/dist/insights/vision/VisionExtractor.js +236 -0
  80. package/dist/learnings.d.ts +50 -0
  81. package/dist/learnings.js +130 -0
  82. package/dist/openapi.d.ts +29 -0
  83. package/dist/openapi.js +169 -0
  84. package/dist/server-factory.d.ts +20 -0
  85. package/dist/server-factory.js +41 -0
  86. package/dist/suggestions.d.ts +16 -0
  87. package/dist/suggestions.js +72 -0
  88. package/dist/telemetry.d.ts +44 -0
  89. package/dist/telemetry.js +93 -0
  90. package/dist/tools/registry.d.ts +65 -0
  91. package/dist/tools/registry.js +256 -0
  92. package/dist/tools.d.ts +2433 -0
  93. package/dist/tools.js +2294 -0
  94. package/dist/transport/http.d.ts +15 -0
  95. package/dist/transport/http.js +154 -0
  96. package/package.json +76 -0
  97. package/skills/catalog.json +272 -0
  98. package/skills/community-catalog.json +4202 -0
  99. package/skills/competitive-analysis/SKILL.md +174 -0
  100. package/skills/content-creator/SKILL.md +256 -0
  101. package/skills/content-strategy/SKILL.md +222 -0
  102. package/skills/data-storytelling/SKILL.md +248 -0
  103. package/skills/heuristic-evaluation/SKILL.md +201 -0
  104. package/skills/market-research-reports/SKILL.md +184 -0
  105. package/skills/user-stories/SKILL.md +178 -0
  106. package/skills/ux-researcher/SKILL.md +239 -0
  107. package/web-dist/assets/index-B1b25lNd.css +1 -0
  108. package/web-dist/assets/index-CDWHwHbl.js +64 -0
  109. package/web-dist/index.html +16 -0
@@ -0,0 +1,2433 @@
1
+ /**
2
+ * CrowdListen Tasks — Planning and Delegation Business Logic
3
+ *
4
+ * All pure functions, tool handlers, and Supabase interaction logic.
5
+ * Routes executable work to coding agents with project context intact.
6
+ * Extracted from index.ts for testability.
7
+ */
8
+ import { SupabaseClient } from "@supabase/supabase-js";
9
+ export declare const AUTH_DIR: string;
10
+ export declare const AUTH_FILE: string;
11
+ export interface StoredAuth {
12
+ access_token: string;
13
+ refresh_token: string;
14
+ user_id: string;
15
+ email: string;
16
+ expires_at?: number;
17
+ }
18
+ export declare function loadAuth(): StoredAuth | null;
19
+ export declare function saveAuth(auth: StoredAuth): void;
20
+ export declare function clearAuth(): void;
21
+ export declare function openBrowser(url: string): void;
22
+ /**
23
+ * HTML page shown in the browser after auth callback
24
+ */
25
+ export declare function callbackHtml(success: boolean, error?: string): string;
26
+ export declare const MCP_ENTRY: {
27
+ command: string;
28
+ args: string[];
29
+ };
30
+ export interface AgentConfig {
31
+ name: string;
32
+ configPath: string;
33
+ mcpKey: string;
34
+ wrapperKey?: string;
35
+ }
36
+ export declare function getAgentConfigs(): AgentConfig[];
37
+ export declare function autoInstallMcp(): Promise<string[]>;
38
+ export declare const TOOLS: ({
39
+ name: string;
40
+ description: string;
41
+ inputSchema: {
42
+ type: "object";
43
+ properties: {
44
+ project_id: {
45
+ type: string;
46
+ description: string;
47
+ };
48
+ question: {
49
+ type: string;
50
+ description: string;
51
+ };
52
+ platforms: {
53
+ type: string;
54
+ items: {
55
+ type: string;
56
+ };
57
+ description: string;
58
+ };
59
+ max_results: {
60
+ type: string;
61
+ description: string;
62
+ };
63
+ analysis_id?: undefined;
64
+ limit?: undefined;
65
+ spec_type?: undefined;
66
+ content?: undefined;
67
+ source_url?: undefined;
68
+ title?: undefined;
69
+ metadata?: undefined;
70
+ query?: undefined;
71
+ threshold?: undefined;
72
+ content_id?: undefined;
73
+ analysis_ids?: undefined;
74
+ template?: undefined;
75
+ sections?: undefined;
76
+ document_id?: undefined;
77
+ section?: undefined;
78
+ instructions?: undefined;
79
+ prompt?: undefined;
80
+ model?: undefined;
81
+ max_tokens?: undefined;
82
+ temperature?: undefined;
83
+ system?: undefined;
84
+ name?: undefined;
85
+ capabilities?: undefined;
86
+ executor?: undefined;
87
+ agent_id?: undefined;
88
+ summary?: undefined;
89
+ };
90
+ required: string[];
91
+ };
92
+ } | {
93
+ name: string;
94
+ description: string;
95
+ inputSchema: {
96
+ type: "object";
97
+ properties: {
98
+ analysis_id: {
99
+ type: string;
100
+ description: string;
101
+ };
102
+ question: {
103
+ type: string;
104
+ description: string;
105
+ };
106
+ project_id?: undefined;
107
+ platforms?: undefined;
108
+ max_results?: undefined;
109
+ limit?: undefined;
110
+ spec_type?: undefined;
111
+ content?: undefined;
112
+ source_url?: undefined;
113
+ title?: undefined;
114
+ metadata?: undefined;
115
+ query?: undefined;
116
+ threshold?: undefined;
117
+ content_id?: undefined;
118
+ analysis_ids?: undefined;
119
+ template?: undefined;
120
+ sections?: undefined;
121
+ document_id?: undefined;
122
+ section?: undefined;
123
+ instructions?: undefined;
124
+ prompt?: undefined;
125
+ model?: undefined;
126
+ max_tokens?: undefined;
127
+ temperature?: undefined;
128
+ system?: undefined;
129
+ name?: undefined;
130
+ capabilities?: undefined;
131
+ executor?: undefined;
132
+ agent_id?: undefined;
133
+ summary?: undefined;
134
+ };
135
+ required: string[];
136
+ };
137
+ } | {
138
+ name: string;
139
+ description: string;
140
+ inputSchema: {
141
+ type: "object";
142
+ properties: {
143
+ analysis_id: {
144
+ type: string;
145
+ description: string;
146
+ };
147
+ project_id?: undefined;
148
+ question?: undefined;
149
+ platforms?: undefined;
150
+ max_results?: undefined;
151
+ limit?: undefined;
152
+ spec_type?: undefined;
153
+ content?: undefined;
154
+ source_url?: undefined;
155
+ title?: undefined;
156
+ metadata?: undefined;
157
+ query?: undefined;
158
+ threshold?: undefined;
159
+ content_id?: undefined;
160
+ analysis_ids?: undefined;
161
+ template?: undefined;
162
+ sections?: undefined;
163
+ document_id?: undefined;
164
+ section?: undefined;
165
+ instructions?: undefined;
166
+ prompt?: undefined;
167
+ model?: undefined;
168
+ max_tokens?: undefined;
169
+ temperature?: undefined;
170
+ system?: undefined;
171
+ name?: undefined;
172
+ capabilities?: undefined;
173
+ executor?: undefined;
174
+ agent_id?: undefined;
175
+ summary?: undefined;
176
+ };
177
+ required: string[];
178
+ };
179
+ } | {
180
+ name: string;
181
+ description: string;
182
+ inputSchema: {
183
+ type: "object";
184
+ properties: {
185
+ project_id: {
186
+ type: string;
187
+ description: string;
188
+ };
189
+ limit: {
190
+ type: string;
191
+ description: string;
192
+ };
193
+ question?: undefined;
194
+ platforms?: undefined;
195
+ max_results?: undefined;
196
+ analysis_id?: undefined;
197
+ spec_type?: undefined;
198
+ content?: undefined;
199
+ source_url?: undefined;
200
+ title?: undefined;
201
+ metadata?: undefined;
202
+ query?: undefined;
203
+ threshold?: undefined;
204
+ content_id?: undefined;
205
+ analysis_ids?: undefined;
206
+ template?: undefined;
207
+ sections?: undefined;
208
+ document_id?: undefined;
209
+ section?: undefined;
210
+ instructions?: undefined;
211
+ prompt?: undefined;
212
+ model?: undefined;
213
+ max_tokens?: undefined;
214
+ temperature?: undefined;
215
+ system?: undefined;
216
+ name?: undefined;
217
+ capabilities?: undefined;
218
+ executor?: undefined;
219
+ agent_id?: undefined;
220
+ summary?: undefined;
221
+ };
222
+ required: string[];
223
+ };
224
+ } | {
225
+ name: string;
226
+ description: string;
227
+ inputSchema: {
228
+ type: "object";
229
+ properties: {
230
+ project_id: {
231
+ type: string;
232
+ description: string;
233
+ };
234
+ analysis_id: {
235
+ type: string;
236
+ description: string;
237
+ };
238
+ spec_type: {
239
+ type: string;
240
+ description: string;
241
+ };
242
+ question?: undefined;
243
+ platforms?: undefined;
244
+ max_results?: undefined;
245
+ limit?: undefined;
246
+ content?: undefined;
247
+ source_url?: undefined;
248
+ title?: undefined;
249
+ metadata?: undefined;
250
+ query?: undefined;
251
+ threshold?: undefined;
252
+ content_id?: undefined;
253
+ analysis_ids?: undefined;
254
+ template?: undefined;
255
+ sections?: undefined;
256
+ document_id?: undefined;
257
+ section?: undefined;
258
+ instructions?: undefined;
259
+ prompt?: undefined;
260
+ model?: undefined;
261
+ max_tokens?: undefined;
262
+ temperature?: undefined;
263
+ system?: undefined;
264
+ name?: undefined;
265
+ capabilities?: undefined;
266
+ executor?: undefined;
267
+ agent_id?: undefined;
268
+ summary?: undefined;
269
+ };
270
+ required: string[];
271
+ };
272
+ } | {
273
+ name: string;
274
+ description: string;
275
+ inputSchema: {
276
+ type: "object";
277
+ properties: {
278
+ project_id: {
279
+ type: string;
280
+ description: string;
281
+ };
282
+ content: {
283
+ type: string;
284
+ description: string;
285
+ };
286
+ source_url: {
287
+ type: string;
288
+ description: string;
289
+ };
290
+ title: {
291
+ type: string;
292
+ description: string;
293
+ };
294
+ metadata: {
295
+ type: string;
296
+ description: string;
297
+ };
298
+ question?: undefined;
299
+ platforms?: undefined;
300
+ max_results?: undefined;
301
+ analysis_id?: undefined;
302
+ limit?: undefined;
303
+ spec_type?: undefined;
304
+ query?: undefined;
305
+ threshold?: undefined;
306
+ content_id?: undefined;
307
+ analysis_ids?: undefined;
308
+ template?: undefined;
309
+ sections?: undefined;
310
+ document_id?: undefined;
311
+ section?: undefined;
312
+ instructions?: undefined;
313
+ prompt?: undefined;
314
+ model?: undefined;
315
+ max_tokens?: undefined;
316
+ temperature?: undefined;
317
+ system?: undefined;
318
+ name?: undefined;
319
+ capabilities?: undefined;
320
+ executor?: undefined;
321
+ agent_id?: undefined;
322
+ summary?: undefined;
323
+ };
324
+ required: string[];
325
+ };
326
+ } | {
327
+ name: string;
328
+ description: string;
329
+ inputSchema: {
330
+ type: "object";
331
+ properties: {
332
+ project_id: {
333
+ type: string;
334
+ description: string;
335
+ };
336
+ query: {
337
+ type: string;
338
+ description: string;
339
+ };
340
+ limit: {
341
+ type: string;
342
+ description: string;
343
+ };
344
+ threshold: {
345
+ type: string;
346
+ description: string;
347
+ };
348
+ question?: undefined;
349
+ platforms?: undefined;
350
+ max_results?: undefined;
351
+ analysis_id?: undefined;
352
+ spec_type?: undefined;
353
+ content?: undefined;
354
+ source_url?: undefined;
355
+ title?: undefined;
356
+ metadata?: undefined;
357
+ content_id?: undefined;
358
+ analysis_ids?: undefined;
359
+ template?: undefined;
360
+ sections?: undefined;
361
+ document_id?: undefined;
362
+ section?: undefined;
363
+ instructions?: undefined;
364
+ prompt?: undefined;
365
+ model?: undefined;
366
+ max_tokens?: undefined;
367
+ temperature?: undefined;
368
+ system?: undefined;
369
+ name?: undefined;
370
+ capabilities?: undefined;
371
+ executor?: undefined;
372
+ agent_id?: undefined;
373
+ summary?: undefined;
374
+ };
375
+ required: string[];
376
+ };
377
+ } | {
378
+ name: string;
379
+ description: string;
380
+ inputSchema: {
381
+ type: "object";
382
+ properties: {
383
+ project_id: {
384
+ type: string;
385
+ description: string;
386
+ };
387
+ question?: undefined;
388
+ platforms?: undefined;
389
+ max_results?: undefined;
390
+ analysis_id?: undefined;
391
+ limit?: undefined;
392
+ spec_type?: undefined;
393
+ content?: undefined;
394
+ source_url?: undefined;
395
+ title?: undefined;
396
+ metadata?: undefined;
397
+ query?: undefined;
398
+ threshold?: undefined;
399
+ content_id?: undefined;
400
+ analysis_ids?: undefined;
401
+ template?: undefined;
402
+ sections?: undefined;
403
+ document_id?: undefined;
404
+ section?: undefined;
405
+ instructions?: undefined;
406
+ prompt?: undefined;
407
+ model?: undefined;
408
+ max_tokens?: undefined;
409
+ temperature?: undefined;
410
+ system?: undefined;
411
+ name?: undefined;
412
+ capabilities?: undefined;
413
+ executor?: undefined;
414
+ agent_id?: undefined;
415
+ summary?: undefined;
416
+ };
417
+ required: string[];
418
+ };
419
+ } | {
420
+ name: string;
421
+ description: string;
422
+ inputSchema: {
423
+ type: "object";
424
+ properties: {
425
+ content_id: {
426
+ type: string;
427
+ description: string;
428
+ };
429
+ project_id?: undefined;
430
+ question?: undefined;
431
+ platforms?: undefined;
432
+ max_results?: undefined;
433
+ analysis_id?: undefined;
434
+ limit?: undefined;
435
+ spec_type?: undefined;
436
+ content?: undefined;
437
+ source_url?: undefined;
438
+ title?: undefined;
439
+ metadata?: undefined;
440
+ query?: undefined;
441
+ threshold?: undefined;
442
+ analysis_ids?: undefined;
443
+ template?: undefined;
444
+ sections?: undefined;
445
+ document_id?: undefined;
446
+ section?: undefined;
447
+ instructions?: undefined;
448
+ prompt?: undefined;
449
+ model?: undefined;
450
+ max_tokens?: undefined;
451
+ temperature?: undefined;
452
+ system?: undefined;
453
+ name?: undefined;
454
+ capabilities?: undefined;
455
+ executor?: undefined;
456
+ agent_id?: undefined;
457
+ summary?: undefined;
458
+ };
459
+ required: string[];
460
+ };
461
+ } | {
462
+ name: string;
463
+ description: string;
464
+ inputSchema: {
465
+ type: "object";
466
+ properties: {
467
+ project_id: {
468
+ type: string;
469
+ description: string;
470
+ };
471
+ analysis_ids: {
472
+ type: string;
473
+ items: {
474
+ type: string;
475
+ };
476
+ description: string;
477
+ };
478
+ template: {
479
+ type: string;
480
+ description: string;
481
+ };
482
+ sections: {
483
+ type: string;
484
+ items: {
485
+ type: string;
486
+ };
487
+ description: string;
488
+ };
489
+ question?: undefined;
490
+ platforms?: undefined;
491
+ max_results?: undefined;
492
+ analysis_id?: undefined;
493
+ limit?: undefined;
494
+ spec_type?: undefined;
495
+ content?: undefined;
496
+ source_url?: undefined;
497
+ title?: undefined;
498
+ metadata?: undefined;
499
+ query?: undefined;
500
+ threshold?: undefined;
501
+ content_id?: undefined;
502
+ document_id?: undefined;
503
+ section?: undefined;
504
+ instructions?: undefined;
505
+ prompt?: undefined;
506
+ model?: undefined;
507
+ max_tokens?: undefined;
508
+ temperature?: undefined;
509
+ system?: undefined;
510
+ name?: undefined;
511
+ capabilities?: undefined;
512
+ executor?: undefined;
513
+ agent_id?: undefined;
514
+ summary?: undefined;
515
+ };
516
+ required: string[];
517
+ };
518
+ } | {
519
+ name: string;
520
+ description: string;
521
+ inputSchema: {
522
+ type: "object";
523
+ properties: {
524
+ document_id: {
525
+ type: string;
526
+ description: string;
527
+ };
528
+ section: {
529
+ type: string;
530
+ description: string;
531
+ };
532
+ instructions: {
533
+ type: string;
534
+ description: string;
535
+ };
536
+ content: {
537
+ type: string;
538
+ description: string;
539
+ };
540
+ project_id?: undefined;
541
+ question?: undefined;
542
+ platforms?: undefined;
543
+ max_results?: undefined;
544
+ analysis_id?: undefined;
545
+ limit?: undefined;
546
+ spec_type?: undefined;
547
+ source_url?: undefined;
548
+ title?: undefined;
549
+ metadata?: undefined;
550
+ query?: undefined;
551
+ threshold?: undefined;
552
+ content_id?: undefined;
553
+ analysis_ids?: undefined;
554
+ template?: undefined;
555
+ sections?: undefined;
556
+ prompt?: undefined;
557
+ model?: undefined;
558
+ max_tokens?: undefined;
559
+ temperature?: undefined;
560
+ system?: undefined;
561
+ name?: undefined;
562
+ capabilities?: undefined;
563
+ executor?: undefined;
564
+ agent_id?: undefined;
565
+ summary?: undefined;
566
+ };
567
+ required: string[];
568
+ };
569
+ } | {
570
+ name: string;
571
+ description: string;
572
+ inputSchema: {
573
+ type: "object";
574
+ properties: {
575
+ prompt: {
576
+ type: string;
577
+ description: string;
578
+ };
579
+ model: {
580
+ type: string;
581
+ description: string;
582
+ };
583
+ max_tokens: {
584
+ type: string;
585
+ description: string;
586
+ };
587
+ temperature: {
588
+ type: string;
589
+ description: string;
590
+ };
591
+ system: {
592
+ type: string;
593
+ description: string;
594
+ };
595
+ project_id?: undefined;
596
+ question?: undefined;
597
+ platforms?: undefined;
598
+ max_results?: undefined;
599
+ analysis_id?: undefined;
600
+ limit?: undefined;
601
+ spec_type?: undefined;
602
+ content?: undefined;
603
+ source_url?: undefined;
604
+ title?: undefined;
605
+ metadata?: undefined;
606
+ query?: undefined;
607
+ threshold?: undefined;
608
+ content_id?: undefined;
609
+ analysis_ids?: undefined;
610
+ template?: undefined;
611
+ sections?: undefined;
612
+ document_id?: undefined;
613
+ section?: undefined;
614
+ instructions?: undefined;
615
+ name?: undefined;
616
+ capabilities?: undefined;
617
+ executor?: undefined;
618
+ agent_id?: undefined;
619
+ summary?: undefined;
620
+ };
621
+ required: string[];
622
+ };
623
+ } | {
624
+ name: string;
625
+ description: string;
626
+ inputSchema: {
627
+ type: "object";
628
+ properties: {
629
+ project_id?: undefined;
630
+ question?: undefined;
631
+ platforms?: undefined;
632
+ max_results?: undefined;
633
+ analysis_id?: undefined;
634
+ limit?: undefined;
635
+ spec_type?: undefined;
636
+ content?: undefined;
637
+ source_url?: undefined;
638
+ title?: undefined;
639
+ metadata?: undefined;
640
+ query?: undefined;
641
+ threshold?: undefined;
642
+ content_id?: undefined;
643
+ analysis_ids?: undefined;
644
+ template?: undefined;
645
+ sections?: undefined;
646
+ document_id?: undefined;
647
+ section?: undefined;
648
+ instructions?: undefined;
649
+ prompt?: undefined;
650
+ model?: undefined;
651
+ max_tokens?: undefined;
652
+ temperature?: undefined;
653
+ system?: undefined;
654
+ name?: undefined;
655
+ capabilities?: undefined;
656
+ executor?: undefined;
657
+ agent_id?: undefined;
658
+ summary?: undefined;
659
+ };
660
+ required?: undefined;
661
+ };
662
+ } | {
663
+ name: string;
664
+ description: string;
665
+ inputSchema: {
666
+ type: "object";
667
+ properties: {
668
+ name: {
669
+ type: string;
670
+ description: string;
671
+ };
672
+ capabilities: {
673
+ type: string;
674
+ items: {
675
+ type: string;
676
+ };
677
+ description: string;
678
+ };
679
+ executor: {
680
+ type: string;
681
+ description: string;
682
+ };
683
+ project_id?: undefined;
684
+ question?: undefined;
685
+ platforms?: undefined;
686
+ max_results?: undefined;
687
+ analysis_id?: undefined;
688
+ limit?: undefined;
689
+ spec_type?: undefined;
690
+ content?: undefined;
691
+ source_url?: undefined;
692
+ title?: undefined;
693
+ metadata?: undefined;
694
+ query?: undefined;
695
+ threshold?: undefined;
696
+ content_id?: undefined;
697
+ analysis_ids?: undefined;
698
+ template?: undefined;
699
+ sections?: undefined;
700
+ document_id?: undefined;
701
+ section?: undefined;
702
+ instructions?: undefined;
703
+ prompt?: undefined;
704
+ model?: undefined;
705
+ max_tokens?: undefined;
706
+ temperature?: undefined;
707
+ system?: undefined;
708
+ agent_id?: undefined;
709
+ summary?: undefined;
710
+ };
711
+ required: string[];
712
+ };
713
+ } | {
714
+ name: string;
715
+ description: string;
716
+ inputSchema: {
717
+ type: "object";
718
+ properties: {
719
+ agent_id: {
720
+ type: string;
721
+ description: string;
722
+ };
723
+ analysis_id: {
724
+ type: string;
725
+ description: string;
726
+ };
727
+ summary: {
728
+ type: string;
729
+ description: string;
730
+ };
731
+ project_id?: undefined;
732
+ question?: undefined;
733
+ platforms?: undefined;
734
+ max_results?: undefined;
735
+ limit?: undefined;
736
+ spec_type?: undefined;
737
+ content?: undefined;
738
+ source_url?: undefined;
739
+ title?: undefined;
740
+ metadata?: undefined;
741
+ query?: undefined;
742
+ threshold?: undefined;
743
+ content_id?: undefined;
744
+ analysis_ids?: undefined;
745
+ template?: undefined;
746
+ sections?: undefined;
747
+ document_id?: undefined;
748
+ section?: undefined;
749
+ instructions?: undefined;
750
+ prompt?: undefined;
751
+ model?: undefined;
752
+ max_tokens?: undefined;
753
+ temperature?: undefined;
754
+ system?: undefined;
755
+ name?: undefined;
756
+ capabilities?: undefined;
757
+ executor?: undefined;
758
+ };
759
+ required: string[];
760
+ };
761
+ } | {
762
+ name: string;
763
+ description: string;
764
+ inputSchema: {
765
+ type: "object";
766
+ properties: {
767
+ project_id: {
768
+ type: string;
769
+ description: string;
770
+ };
771
+ name: {
772
+ type: string;
773
+ description: string;
774
+ };
775
+ board_id?: undefined;
776
+ status?: undefined;
777
+ limit?: undefined;
778
+ task_id?: undefined;
779
+ title?: undefined;
780
+ description?: undefined;
781
+ priority?: undefined;
782
+ labels?: undefined;
783
+ executor?: undefined;
784
+ branch?: undefined;
785
+ summary?: undefined;
786
+ message?: undefined;
787
+ session_id?: undefined;
788
+ focus?: undefined;
789
+ approach?: undefined;
790
+ assumptions?: undefined;
791
+ constraints?: undefined;
792
+ success_criteria?: undefined;
793
+ risks?: undefined;
794
+ estimated_steps?: undefined;
795
+ plan_id?: undefined;
796
+ feedback?: undefined;
797
+ text?: undefined;
798
+ source?: undefined;
799
+ is_chat?: undefined;
800
+ context?: undefined;
801
+ category?: undefined;
802
+ tier?: undefined;
803
+ query?: undefined;
804
+ skill_id?: undefined;
805
+ target_dir?: undefined;
806
+ include_virtual?: undefined;
807
+ pack_id?: undefined;
808
+ content?: undefined;
809
+ tags?: undefined;
810
+ confidence?: undefined;
811
+ search?: undefined;
812
+ spec_type?: undefined;
813
+ min_confidence?: undefined;
814
+ spec_id?: undefined;
815
+ telemetry?: undefined;
816
+ proactive_suggestions?: undefined;
817
+ cross_project_learnings?: undefined;
818
+ };
819
+ required: string[];
820
+ };
821
+ } | {
822
+ name: string;
823
+ description: string;
824
+ inputSchema: {
825
+ type: "object";
826
+ properties: {
827
+ board_id: {
828
+ type: string;
829
+ description: string;
830
+ };
831
+ status: {
832
+ type: string;
833
+ description: string;
834
+ enum?: undefined;
835
+ };
836
+ limit: {
837
+ type: string;
838
+ description: string;
839
+ };
840
+ project_id?: undefined;
841
+ name?: undefined;
842
+ task_id?: undefined;
843
+ title?: undefined;
844
+ description?: undefined;
845
+ priority?: undefined;
846
+ labels?: undefined;
847
+ executor?: undefined;
848
+ branch?: undefined;
849
+ summary?: undefined;
850
+ message?: undefined;
851
+ session_id?: undefined;
852
+ focus?: undefined;
853
+ approach?: undefined;
854
+ assumptions?: undefined;
855
+ constraints?: undefined;
856
+ success_criteria?: undefined;
857
+ risks?: undefined;
858
+ estimated_steps?: undefined;
859
+ plan_id?: undefined;
860
+ feedback?: undefined;
861
+ text?: undefined;
862
+ source?: undefined;
863
+ is_chat?: undefined;
864
+ context?: undefined;
865
+ category?: undefined;
866
+ tier?: undefined;
867
+ query?: undefined;
868
+ skill_id?: undefined;
869
+ target_dir?: undefined;
870
+ include_virtual?: undefined;
871
+ pack_id?: undefined;
872
+ content?: undefined;
873
+ tags?: undefined;
874
+ confidence?: undefined;
875
+ search?: undefined;
876
+ spec_type?: undefined;
877
+ min_confidence?: undefined;
878
+ spec_id?: undefined;
879
+ telemetry?: undefined;
880
+ proactive_suggestions?: undefined;
881
+ cross_project_learnings?: undefined;
882
+ };
883
+ required?: undefined;
884
+ };
885
+ } | {
886
+ name: string;
887
+ description: string;
888
+ inputSchema: {
889
+ type: "object";
890
+ properties: {
891
+ task_id: {
892
+ type: string;
893
+ description: string;
894
+ };
895
+ project_id?: undefined;
896
+ name?: undefined;
897
+ board_id?: undefined;
898
+ status?: undefined;
899
+ limit?: undefined;
900
+ title?: undefined;
901
+ description?: undefined;
902
+ priority?: undefined;
903
+ labels?: undefined;
904
+ executor?: undefined;
905
+ branch?: undefined;
906
+ summary?: undefined;
907
+ message?: undefined;
908
+ session_id?: undefined;
909
+ focus?: undefined;
910
+ approach?: undefined;
911
+ assumptions?: undefined;
912
+ constraints?: undefined;
913
+ success_criteria?: undefined;
914
+ risks?: undefined;
915
+ estimated_steps?: undefined;
916
+ plan_id?: undefined;
917
+ feedback?: undefined;
918
+ text?: undefined;
919
+ source?: undefined;
920
+ is_chat?: undefined;
921
+ context?: undefined;
922
+ category?: undefined;
923
+ tier?: undefined;
924
+ query?: undefined;
925
+ skill_id?: undefined;
926
+ target_dir?: undefined;
927
+ include_virtual?: undefined;
928
+ pack_id?: undefined;
929
+ content?: undefined;
930
+ tags?: undefined;
931
+ confidence?: undefined;
932
+ search?: undefined;
933
+ spec_type?: undefined;
934
+ min_confidence?: undefined;
935
+ spec_id?: undefined;
936
+ telemetry?: undefined;
937
+ proactive_suggestions?: undefined;
938
+ cross_project_learnings?: undefined;
939
+ };
940
+ required: string[];
941
+ };
942
+ } | {
943
+ name: string;
944
+ description: string;
945
+ inputSchema: {
946
+ type: "object";
947
+ properties: {
948
+ title: {
949
+ type: string;
950
+ description: string;
951
+ };
952
+ description: {
953
+ type: string;
954
+ description: string;
955
+ };
956
+ priority: {
957
+ type: string;
958
+ description: string;
959
+ enum?: undefined;
960
+ };
961
+ project_id: {
962
+ type: string;
963
+ description: string;
964
+ };
965
+ board_id: {
966
+ type: string;
967
+ description: string;
968
+ };
969
+ labels: {
970
+ type: string;
971
+ items: {
972
+ type: string;
973
+ properties: {
974
+ name: {
975
+ type: string;
976
+ };
977
+ color: {
978
+ type: string;
979
+ };
980
+ };
981
+ };
982
+ description: string;
983
+ };
984
+ name?: undefined;
985
+ status?: undefined;
986
+ limit?: undefined;
987
+ task_id?: undefined;
988
+ executor?: undefined;
989
+ branch?: undefined;
990
+ summary?: undefined;
991
+ message?: undefined;
992
+ session_id?: undefined;
993
+ focus?: undefined;
994
+ approach?: undefined;
995
+ assumptions?: undefined;
996
+ constraints?: undefined;
997
+ success_criteria?: undefined;
998
+ risks?: undefined;
999
+ estimated_steps?: undefined;
1000
+ plan_id?: undefined;
1001
+ feedback?: undefined;
1002
+ text?: undefined;
1003
+ source?: undefined;
1004
+ is_chat?: undefined;
1005
+ context?: undefined;
1006
+ category?: undefined;
1007
+ tier?: undefined;
1008
+ query?: undefined;
1009
+ skill_id?: undefined;
1010
+ target_dir?: undefined;
1011
+ include_virtual?: undefined;
1012
+ pack_id?: undefined;
1013
+ content?: undefined;
1014
+ tags?: undefined;
1015
+ confidence?: undefined;
1016
+ search?: undefined;
1017
+ spec_type?: undefined;
1018
+ min_confidence?: undefined;
1019
+ spec_id?: undefined;
1020
+ telemetry?: undefined;
1021
+ proactive_suggestions?: undefined;
1022
+ cross_project_learnings?: undefined;
1023
+ };
1024
+ required: string[];
1025
+ };
1026
+ } | {
1027
+ name: string;
1028
+ description: string;
1029
+ inputSchema: {
1030
+ type: "object";
1031
+ properties: {
1032
+ task_id: {
1033
+ type: string;
1034
+ description: string;
1035
+ };
1036
+ title: {
1037
+ type: string;
1038
+ description?: undefined;
1039
+ };
1040
+ description: {
1041
+ type: string;
1042
+ description?: undefined;
1043
+ };
1044
+ status: {
1045
+ type: string;
1046
+ description: string;
1047
+ enum?: undefined;
1048
+ };
1049
+ priority: {
1050
+ type: string;
1051
+ description: string;
1052
+ enum?: undefined;
1053
+ };
1054
+ project_id?: undefined;
1055
+ name?: undefined;
1056
+ board_id?: undefined;
1057
+ limit?: undefined;
1058
+ labels?: undefined;
1059
+ executor?: undefined;
1060
+ branch?: undefined;
1061
+ summary?: undefined;
1062
+ message?: undefined;
1063
+ session_id?: undefined;
1064
+ focus?: undefined;
1065
+ approach?: undefined;
1066
+ assumptions?: undefined;
1067
+ constraints?: undefined;
1068
+ success_criteria?: undefined;
1069
+ risks?: undefined;
1070
+ estimated_steps?: undefined;
1071
+ plan_id?: undefined;
1072
+ feedback?: undefined;
1073
+ text?: undefined;
1074
+ source?: undefined;
1075
+ is_chat?: undefined;
1076
+ context?: undefined;
1077
+ category?: undefined;
1078
+ tier?: undefined;
1079
+ query?: undefined;
1080
+ skill_id?: undefined;
1081
+ target_dir?: undefined;
1082
+ include_virtual?: undefined;
1083
+ pack_id?: undefined;
1084
+ content?: undefined;
1085
+ tags?: undefined;
1086
+ confidence?: undefined;
1087
+ search?: undefined;
1088
+ spec_type?: undefined;
1089
+ min_confidence?: undefined;
1090
+ spec_id?: undefined;
1091
+ telemetry?: undefined;
1092
+ proactive_suggestions?: undefined;
1093
+ cross_project_learnings?: undefined;
1094
+ };
1095
+ required: string[];
1096
+ };
1097
+ } | {
1098
+ name: string;
1099
+ description: string;
1100
+ inputSchema: {
1101
+ type: "object";
1102
+ properties: {
1103
+ task_id: {
1104
+ type: string;
1105
+ description: string;
1106
+ };
1107
+ executor: {
1108
+ type: string;
1109
+ description: string;
1110
+ };
1111
+ branch: {
1112
+ type: string;
1113
+ description: string;
1114
+ };
1115
+ project_id?: undefined;
1116
+ name?: undefined;
1117
+ board_id?: undefined;
1118
+ status?: undefined;
1119
+ limit?: undefined;
1120
+ title?: undefined;
1121
+ description?: undefined;
1122
+ priority?: undefined;
1123
+ labels?: undefined;
1124
+ summary?: undefined;
1125
+ message?: undefined;
1126
+ session_id?: undefined;
1127
+ focus?: undefined;
1128
+ approach?: undefined;
1129
+ assumptions?: undefined;
1130
+ constraints?: undefined;
1131
+ success_criteria?: undefined;
1132
+ risks?: undefined;
1133
+ estimated_steps?: undefined;
1134
+ plan_id?: undefined;
1135
+ feedback?: undefined;
1136
+ text?: undefined;
1137
+ source?: undefined;
1138
+ is_chat?: undefined;
1139
+ context?: undefined;
1140
+ category?: undefined;
1141
+ tier?: undefined;
1142
+ query?: undefined;
1143
+ skill_id?: undefined;
1144
+ target_dir?: undefined;
1145
+ include_virtual?: undefined;
1146
+ pack_id?: undefined;
1147
+ content?: undefined;
1148
+ tags?: undefined;
1149
+ confidence?: undefined;
1150
+ search?: undefined;
1151
+ spec_type?: undefined;
1152
+ min_confidence?: undefined;
1153
+ spec_id?: undefined;
1154
+ telemetry?: undefined;
1155
+ proactive_suggestions?: undefined;
1156
+ cross_project_learnings?: undefined;
1157
+ };
1158
+ required: string[];
1159
+ };
1160
+ } | {
1161
+ name: string;
1162
+ description: string;
1163
+ inputSchema: {
1164
+ type: "object";
1165
+ properties: {
1166
+ task_id: {
1167
+ type: string;
1168
+ description: string;
1169
+ };
1170
+ summary: {
1171
+ type: string;
1172
+ description: string;
1173
+ };
1174
+ project_id?: undefined;
1175
+ name?: undefined;
1176
+ board_id?: undefined;
1177
+ status?: undefined;
1178
+ limit?: undefined;
1179
+ title?: undefined;
1180
+ description?: undefined;
1181
+ priority?: undefined;
1182
+ labels?: undefined;
1183
+ executor?: undefined;
1184
+ branch?: undefined;
1185
+ message?: undefined;
1186
+ session_id?: undefined;
1187
+ focus?: undefined;
1188
+ approach?: undefined;
1189
+ assumptions?: undefined;
1190
+ constraints?: undefined;
1191
+ success_criteria?: undefined;
1192
+ risks?: undefined;
1193
+ estimated_steps?: undefined;
1194
+ plan_id?: undefined;
1195
+ feedback?: undefined;
1196
+ text?: undefined;
1197
+ source?: undefined;
1198
+ is_chat?: undefined;
1199
+ context?: undefined;
1200
+ category?: undefined;
1201
+ tier?: undefined;
1202
+ query?: undefined;
1203
+ skill_id?: undefined;
1204
+ target_dir?: undefined;
1205
+ include_virtual?: undefined;
1206
+ pack_id?: undefined;
1207
+ content?: undefined;
1208
+ tags?: undefined;
1209
+ confidence?: undefined;
1210
+ search?: undefined;
1211
+ spec_type?: undefined;
1212
+ min_confidence?: undefined;
1213
+ spec_id?: undefined;
1214
+ telemetry?: undefined;
1215
+ proactive_suggestions?: undefined;
1216
+ cross_project_learnings?: undefined;
1217
+ };
1218
+ required: string[];
1219
+ };
1220
+ } | {
1221
+ name: string;
1222
+ description: string;
1223
+ inputSchema: {
1224
+ type: "object";
1225
+ properties: {
1226
+ task_id: {
1227
+ type: string;
1228
+ description: string;
1229
+ };
1230
+ message: {
1231
+ type: string;
1232
+ description: string;
1233
+ };
1234
+ session_id: {
1235
+ type: string;
1236
+ description: string;
1237
+ };
1238
+ project_id?: undefined;
1239
+ name?: undefined;
1240
+ board_id?: undefined;
1241
+ status?: undefined;
1242
+ limit?: undefined;
1243
+ title?: undefined;
1244
+ description?: undefined;
1245
+ priority?: undefined;
1246
+ labels?: undefined;
1247
+ executor?: undefined;
1248
+ branch?: undefined;
1249
+ summary?: undefined;
1250
+ focus?: undefined;
1251
+ approach?: undefined;
1252
+ assumptions?: undefined;
1253
+ constraints?: undefined;
1254
+ success_criteria?: undefined;
1255
+ risks?: undefined;
1256
+ estimated_steps?: undefined;
1257
+ plan_id?: undefined;
1258
+ feedback?: undefined;
1259
+ text?: undefined;
1260
+ source?: undefined;
1261
+ is_chat?: undefined;
1262
+ context?: undefined;
1263
+ category?: undefined;
1264
+ tier?: undefined;
1265
+ query?: undefined;
1266
+ skill_id?: undefined;
1267
+ target_dir?: undefined;
1268
+ include_virtual?: undefined;
1269
+ pack_id?: undefined;
1270
+ content?: undefined;
1271
+ tags?: undefined;
1272
+ confidence?: undefined;
1273
+ search?: undefined;
1274
+ spec_type?: undefined;
1275
+ min_confidence?: undefined;
1276
+ spec_id?: undefined;
1277
+ telemetry?: undefined;
1278
+ proactive_suggestions?: undefined;
1279
+ cross_project_learnings?: undefined;
1280
+ };
1281
+ required: string[];
1282
+ };
1283
+ } | {
1284
+ name: string;
1285
+ description: string;
1286
+ inputSchema: {
1287
+ type: "object";
1288
+ properties: {
1289
+ task_id: {
1290
+ type: string;
1291
+ description: string;
1292
+ };
1293
+ executor: {
1294
+ type: string;
1295
+ description: string;
1296
+ };
1297
+ focus: {
1298
+ type: string;
1299
+ description: string;
1300
+ };
1301
+ project_id?: undefined;
1302
+ name?: undefined;
1303
+ board_id?: undefined;
1304
+ status?: undefined;
1305
+ limit?: undefined;
1306
+ title?: undefined;
1307
+ description?: undefined;
1308
+ priority?: undefined;
1309
+ labels?: undefined;
1310
+ branch?: undefined;
1311
+ summary?: undefined;
1312
+ message?: undefined;
1313
+ session_id?: undefined;
1314
+ approach?: undefined;
1315
+ assumptions?: undefined;
1316
+ constraints?: undefined;
1317
+ success_criteria?: undefined;
1318
+ risks?: undefined;
1319
+ estimated_steps?: undefined;
1320
+ plan_id?: undefined;
1321
+ feedback?: undefined;
1322
+ text?: undefined;
1323
+ source?: undefined;
1324
+ is_chat?: undefined;
1325
+ context?: undefined;
1326
+ category?: undefined;
1327
+ tier?: undefined;
1328
+ query?: undefined;
1329
+ skill_id?: undefined;
1330
+ target_dir?: undefined;
1331
+ include_virtual?: undefined;
1332
+ pack_id?: undefined;
1333
+ content?: undefined;
1334
+ tags?: undefined;
1335
+ confidence?: undefined;
1336
+ search?: undefined;
1337
+ spec_type?: undefined;
1338
+ min_confidence?: undefined;
1339
+ spec_id?: undefined;
1340
+ telemetry?: undefined;
1341
+ proactive_suggestions?: undefined;
1342
+ cross_project_learnings?: undefined;
1343
+ };
1344
+ required: string[];
1345
+ };
1346
+ } | {
1347
+ name: string;
1348
+ description: string;
1349
+ inputSchema: {
1350
+ type: "object";
1351
+ properties: {
1352
+ task_id: {
1353
+ type: string;
1354
+ description: string;
1355
+ };
1356
+ status: {
1357
+ type: string;
1358
+ description: string;
1359
+ enum?: undefined;
1360
+ };
1361
+ project_id?: undefined;
1362
+ name?: undefined;
1363
+ board_id?: undefined;
1364
+ limit?: undefined;
1365
+ title?: undefined;
1366
+ description?: undefined;
1367
+ priority?: undefined;
1368
+ labels?: undefined;
1369
+ executor?: undefined;
1370
+ branch?: undefined;
1371
+ summary?: undefined;
1372
+ message?: undefined;
1373
+ session_id?: undefined;
1374
+ focus?: undefined;
1375
+ approach?: undefined;
1376
+ assumptions?: undefined;
1377
+ constraints?: undefined;
1378
+ success_criteria?: undefined;
1379
+ risks?: undefined;
1380
+ estimated_steps?: undefined;
1381
+ plan_id?: undefined;
1382
+ feedback?: undefined;
1383
+ text?: undefined;
1384
+ source?: undefined;
1385
+ is_chat?: undefined;
1386
+ context?: undefined;
1387
+ category?: undefined;
1388
+ tier?: undefined;
1389
+ query?: undefined;
1390
+ skill_id?: undefined;
1391
+ target_dir?: undefined;
1392
+ include_virtual?: undefined;
1393
+ pack_id?: undefined;
1394
+ content?: undefined;
1395
+ tags?: undefined;
1396
+ confidence?: undefined;
1397
+ search?: undefined;
1398
+ spec_type?: undefined;
1399
+ min_confidence?: undefined;
1400
+ spec_id?: undefined;
1401
+ telemetry?: undefined;
1402
+ proactive_suggestions?: undefined;
1403
+ cross_project_learnings?: undefined;
1404
+ };
1405
+ required: string[];
1406
+ };
1407
+ } | {
1408
+ name: string;
1409
+ description: string;
1410
+ inputSchema: {
1411
+ type: "object";
1412
+ properties: {
1413
+ session_id: {
1414
+ type: string;
1415
+ description: string;
1416
+ };
1417
+ status: {
1418
+ type: string;
1419
+ description: string;
1420
+ enum?: undefined;
1421
+ };
1422
+ focus: {
1423
+ type: string;
1424
+ description: string;
1425
+ };
1426
+ project_id?: undefined;
1427
+ name?: undefined;
1428
+ board_id?: undefined;
1429
+ limit?: undefined;
1430
+ task_id?: undefined;
1431
+ title?: undefined;
1432
+ description?: undefined;
1433
+ priority?: undefined;
1434
+ labels?: undefined;
1435
+ executor?: undefined;
1436
+ branch?: undefined;
1437
+ summary?: undefined;
1438
+ message?: undefined;
1439
+ approach?: undefined;
1440
+ assumptions?: undefined;
1441
+ constraints?: undefined;
1442
+ success_criteria?: undefined;
1443
+ risks?: undefined;
1444
+ estimated_steps?: undefined;
1445
+ plan_id?: undefined;
1446
+ feedback?: undefined;
1447
+ text?: undefined;
1448
+ source?: undefined;
1449
+ is_chat?: undefined;
1450
+ context?: undefined;
1451
+ category?: undefined;
1452
+ tier?: undefined;
1453
+ query?: undefined;
1454
+ skill_id?: undefined;
1455
+ target_dir?: undefined;
1456
+ include_virtual?: undefined;
1457
+ pack_id?: undefined;
1458
+ content?: undefined;
1459
+ tags?: undefined;
1460
+ confidence?: undefined;
1461
+ search?: undefined;
1462
+ spec_type?: undefined;
1463
+ min_confidence?: undefined;
1464
+ spec_id?: undefined;
1465
+ telemetry?: undefined;
1466
+ proactive_suggestions?: undefined;
1467
+ cross_project_learnings?: undefined;
1468
+ };
1469
+ required: string[];
1470
+ };
1471
+ } | {
1472
+ name: string;
1473
+ description: string;
1474
+ inputSchema: {
1475
+ type: "object";
1476
+ properties: {
1477
+ task_id: {
1478
+ type: string;
1479
+ description: string;
1480
+ };
1481
+ approach: {
1482
+ type: string;
1483
+ description: string;
1484
+ };
1485
+ assumptions: {
1486
+ type: string;
1487
+ items: {
1488
+ type: string;
1489
+ };
1490
+ description: string;
1491
+ };
1492
+ constraints: {
1493
+ type: string;
1494
+ items: {
1495
+ type: string;
1496
+ };
1497
+ description: string;
1498
+ };
1499
+ success_criteria: {
1500
+ type: string;
1501
+ items: {
1502
+ type: string;
1503
+ };
1504
+ description: string;
1505
+ };
1506
+ risks: {
1507
+ type: string;
1508
+ items: {
1509
+ type: string;
1510
+ };
1511
+ description: string;
1512
+ };
1513
+ estimated_steps: {
1514
+ type: string;
1515
+ description: string;
1516
+ };
1517
+ project_id?: undefined;
1518
+ name?: undefined;
1519
+ board_id?: undefined;
1520
+ status?: undefined;
1521
+ limit?: undefined;
1522
+ title?: undefined;
1523
+ description?: undefined;
1524
+ priority?: undefined;
1525
+ labels?: undefined;
1526
+ executor?: undefined;
1527
+ branch?: undefined;
1528
+ summary?: undefined;
1529
+ message?: undefined;
1530
+ session_id?: undefined;
1531
+ focus?: undefined;
1532
+ plan_id?: undefined;
1533
+ feedback?: undefined;
1534
+ text?: undefined;
1535
+ source?: undefined;
1536
+ is_chat?: undefined;
1537
+ context?: undefined;
1538
+ category?: undefined;
1539
+ tier?: undefined;
1540
+ query?: undefined;
1541
+ skill_id?: undefined;
1542
+ target_dir?: undefined;
1543
+ include_virtual?: undefined;
1544
+ pack_id?: undefined;
1545
+ content?: undefined;
1546
+ tags?: undefined;
1547
+ confidence?: undefined;
1548
+ search?: undefined;
1549
+ spec_type?: undefined;
1550
+ min_confidence?: undefined;
1551
+ spec_id?: undefined;
1552
+ telemetry?: undefined;
1553
+ proactive_suggestions?: undefined;
1554
+ cross_project_learnings?: undefined;
1555
+ };
1556
+ required: string[];
1557
+ };
1558
+ } | {
1559
+ name: string;
1560
+ description: string;
1561
+ inputSchema: {
1562
+ type: "object";
1563
+ properties: {
1564
+ plan_id: {
1565
+ type: string;
1566
+ description: string;
1567
+ };
1568
+ approach: {
1569
+ type: string;
1570
+ description: string;
1571
+ };
1572
+ status: {
1573
+ type: string;
1574
+ description: string;
1575
+ enum?: undefined;
1576
+ };
1577
+ feedback: {
1578
+ type: string;
1579
+ description: string;
1580
+ };
1581
+ assumptions: {
1582
+ type: string;
1583
+ items: {
1584
+ type: string;
1585
+ };
1586
+ description?: undefined;
1587
+ };
1588
+ constraints: {
1589
+ type: string;
1590
+ items: {
1591
+ type: string;
1592
+ };
1593
+ description?: undefined;
1594
+ };
1595
+ success_criteria: {
1596
+ type: string;
1597
+ items: {
1598
+ type: string;
1599
+ };
1600
+ description?: undefined;
1601
+ };
1602
+ risks: {
1603
+ type: string;
1604
+ items: {
1605
+ type: string;
1606
+ };
1607
+ description?: undefined;
1608
+ };
1609
+ project_id?: undefined;
1610
+ name?: undefined;
1611
+ board_id?: undefined;
1612
+ limit?: undefined;
1613
+ task_id?: undefined;
1614
+ title?: undefined;
1615
+ description?: undefined;
1616
+ priority?: undefined;
1617
+ labels?: undefined;
1618
+ executor?: undefined;
1619
+ branch?: undefined;
1620
+ summary?: undefined;
1621
+ message?: undefined;
1622
+ session_id?: undefined;
1623
+ focus?: undefined;
1624
+ estimated_steps?: undefined;
1625
+ text?: undefined;
1626
+ source?: undefined;
1627
+ is_chat?: undefined;
1628
+ context?: undefined;
1629
+ category?: undefined;
1630
+ tier?: undefined;
1631
+ query?: undefined;
1632
+ skill_id?: undefined;
1633
+ target_dir?: undefined;
1634
+ include_virtual?: undefined;
1635
+ pack_id?: undefined;
1636
+ content?: undefined;
1637
+ tags?: undefined;
1638
+ confidence?: undefined;
1639
+ search?: undefined;
1640
+ spec_type?: undefined;
1641
+ min_confidence?: undefined;
1642
+ spec_id?: undefined;
1643
+ telemetry?: undefined;
1644
+ proactive_suggestions?: undefined;
1645
+ cross_project_learnings?: undefined;
1646
+ };
1647
+ required: string[];
1648
+ };
1649
+ } | {
1650
+ name: string;
1651
+ description: string;
1652
+ inputSchema: {
1653
+ type: "object";
1654
+ properties: {
1655
+ text: {
1656
+ type: string;
1657
+ description: string;
1658
+ };
1659
+ source: {
1660
+ type: string;
1661
+ description: string;
1662
+ };
1663
+ is_chat: {
1664
+ type: string;
1665
+ description: string;
1666
+ };
1667
+ project_id?: undefined;
1668
+ name?: undefined;
1669
+ board_id?: undefined;
1670
+ status?: undefined;
1671
+ limit?: undefined;
1672
+ task_id?: undefined;
1673
+ title?: undefined;
1674
+ description?: undefined;
1675
+ priority?: undefined;
1676
+ labels?: undefined;
1677
+ executor?: undefined;
1678
+ branch?: undefined;
1679
+ summary?: undefined;
1680
+ message?: undefined;
1681
+ session_id?: undefined;
1682
+ focus?: undefined;
1683
+ approach?: undefined;
1684
+ assumptions?: undefined;
1685
+ constraints?: undefined;
1686
+ success_criteria?: undefined;
1687
+ risks?: undefined;
1688
+ estimated_steps?: undefined;
1689
+ plan_id?: undefined;
1690
+ feedback?: undefined;
1691
+ context?: undefined;
1692
+ category?: undefined;
1693
+ tier?: undefined;
1694
+ query?: undefined;
1695
+ skill_id?: undefined;
1696
+ target_dir?: undefined;
1697
+ include_virtual?: undefined;
1698
+ pack_id?: undefined;
1699
+ content?: undefined;
1700
+ tags?: undefined;
1701
+ confidence?: undefined;
1702
+ search?: undefined;
1703
+ spec_type?: undefined;
1704
+ min_confidence?: undefined;
1705
+ spec_id?: undefined;
1706
+ telemetry?: undefined;
1707
+ proactive_suggestions?: undefined;
1708
+ cross_project_learnings?: undefined;
1709
+ };
1710
+ required: string[];
1711
+ };
1712
+ } | {
1713
+ name: string;
1714
+ description: string;
1715
+ inputSchema: {
1716
+ type: "object";
1717
+ properties: {
1718
+ context: {
1719
+ type: string;
1720
+ description: string;
1721
+ };
1722
+ category: {
1723
+ type: string;
1724
+ description: string;
1725
+ };
1726
+ tier: {
1727
+ type: string;
1728
+ description: string;
1729
+ };
1730
+ limit: {
1731
+ type: string;
1732
+ description: string;
1733
+ };
1734
+ project_id?: undefined;
1735
+ name?: undefined;
1736
+ board_id?: undefined;
1737
+ status?: undefined;
1738
+ task_id?: undefined;
1739
+ title?: undefined;
1740
+ description?: undefined;
1741
+ priority?: undefined;
1742
+ labels?: undefined;
1743
+ executor?: undefined;
1744
+ branch?: undefined;
1745
+ summary?: undefined;
1746
+ message?: undefined;
1747
+ session_id?: undefined;
1748
+ focus?: undefined;
1749
+ approach?: undefined;
1750
+ assumptions?: undefined;
1751
+ constraints?: undefined;
1752
+ success_criteria?: undefined;
1753
+ risks?: undefined;
1754
+ estimated_steps?: undefined;
1755
+ plan_id?: undefined;
1756
+ feedback?: undefined;
1757
+ text?: undefined;
1758
+ source?: undefined;
1759
+ is_chat?: undefined;
1760
+ query?: undefined;
1761
+ skill_id?: undefined;
1762
+ target_dir?: undefined;
1763
+ include_virtual?: undefined;
1764
+ pack_id?: undefined;
1765
+ content?: undefined;
1766
+ tags?: undefined;
1767
+ confidence?: undefined;
1768
+ search?: undefined;
1769
+ spec_type?: undefined;
1770
+ min_confidence?: undefined;
1771
+ spec_id?: undefined;
1772
+ telemetry?: undefined;
1773
+ proactive_suggestions?: undefined;
1774
+ cross_project_learnings?: undefined;
1775
+ };
1776
+ required?: undefined;
1777
+ };
1778
+ } | {
1779
+ name: string;
1780
+ description: string;
1781
+ inputSchema: {
1782
+ type: "object";
1783
+ properties: {
1784
+ query: {
1785
+ type: string;
1786
+ description: string;
1787
+ };
1788
+ tier: {
1789
+ type: string;
1790
+ description: string;
1791
+ };
1792
+ category: {
1793
+ type: string;
1794
+ description: string;
1795
+ };
1796
+ project_id?: undefined;
1797
+ name?: undefined;
1798
+ board_id?: undefined;
1799
+ status?: undefined;
1800
+ limit?: undefined;
1801
+ task_id?: undefined;
1802
+ title?: undefined;
1803
+ description?: undefined;
1804
+ priority?: undefined;
1805
+ labels?: undefined;
1806
+ executor?: undefined;
1807
+ branch?: undefined;
1808
+ summary?: undefined;
1809
+ message?: undefined;
1810
+ session_id?: undefined;
1811
+ focus?: undefined;
1812
+ approach?: undefined;
1813
+ assumptions?: undefined;
1814
+ constraints?: undefined;
1815
+ success_criteria?: undefined;
1816
+ risks?: undefined;
1817
+ estimated_steps?: undefined;
1818
+ plan_id?: undefined;
1819
+ feedback?: undefined;
1820
+ text?: undefined;
1821
+ source?: undefined;
1822
+ is_chat?: undefined;
1823
+ context?: undefined;
1824
+ skill_id?: undefined;
1825
+ target_dir?: undefined;
1826
+ include_virtual?: undefined;
1827
+ pack_id?: undefined;
1828
+ content?: undefined;
1829
+ tags?: undefined;
1830
+ confidence?: undefined;
1831
+ search?: undefined;
1832
+ spec_type?: undefined;
1833
+ min_confidence?: undefined;
1834
+ spec_id?: undefined;
1835
+ telemetry?: undefined;
1836
+ proactive_suggestions?: undefined;
1837
+ cross_project_learnings?: undefined;
1838
+ };
1839
+ required: string[];
1840
+ };
1841
+ } | {
1842
+ name: string;
1843
+ description: string;
1844
+ inputSchema: {
1845
+ type: "object";
1846
+ properties: {
1847
+ skill_id: {
1848
+ type: string;
1849
+ description: string;
1850
+ };
1851
+ target_dir: {
1852
+ type: string;
1853
+ description: string;
1854
+ };
1855
+ project_id?: undefined;
1856
+ name?: undefined;
1857
+ board_id?: undefined;
1858
+ status?: undefined;
1859
+ limit?: undefined;
1860
+ task_id?: undefined;
1861
+ title?: undefined;
1862
+ description?: undefined;
1863
+ priority?: undefined;
1864
+ labels?: undefined;
1865
+ executor?: undefined;
1866
+ branch?: undefined;
1867
+ summary?: undefined;
1868
+ message?: undefined;
1869
+ session_id?: undefined;
1870
+ focus?: undefined;
1871
+ approach?: undefined;
1872
+ assumptions?: undefined;
1873
+ constraints?: undefined;
1874
+ success_criteria?: undefined;
1875
+ risks?: undefined;
1876
+ estimated_steps?: undefined;
1877
+ plan_id?: undefined;
1878
+ feedback?: undefined;
1879
+ text?: undefined;
1880
+ source?: undefined;
1881
+ is_chat?: undefined;
1882
+ context?: undefined;
1883
+ category?: undefined;
1884
+ tier?: undefined;
1885
+ query?: undefined;
1886
+ include_virtual?: undefined;
1887
+ pack_id?: undefined;
1888
+ content?: undefined;
1889
+ tags?: undefined;
1890
+ confidence?: undefined;
1891
+ search?: undefined;
1892
+ spec_type?: undefined;
1893
+ min_confidence?: undefined;
1894
+ spec_id?: undefined;
1895
+ telemetry?: undefined;
1896
+ proactive_suggestions?: undefined;
1897
+ cross_project_learnings?: undefined;
1898
+ };
1899
+ required: string[];
1900
+ };
1901
+ } | {
1902
+ name: string;
1903
+ description: string;
1904
+ inputSchema: {
1905
+ type: "object";
1906
+ properties: {
1907
+ include_virtual: {
1908
+ type: string;
1909
+ description: string;
1910
+ };
1911
+ project_id?: undefined;
1912
+ name?: undefined;
1913
+ board_id?: undefined;
1914
+ status?: undefined;
1915
+ limit?: undefined;
1916
+ task_id?: undefined;
1917
+ title?: undefined;
1918
+ description?: undefined;
1919
+ priority?: undefined;
1920
+ labels?: undefined;
1921
+ executor?: undefined;
1922
+ branch?: undefined;
1923
+ summary?: undefined;
1924
+ message?: undefined;
1925
+ session_id?: undefined;
1926
+ focus?: undefined;
1927
+ approach?: undefined;
1928
+ assumptions?: undefined;
1929
+ constraints?: undefined;
1930
+ success_criteria?: undefined;
1931
+ risks?: undefined;
1932
+ estimated_steps?: undefined;
1933
+ plan_id?: undefined;
1934
+ feedback?: undefined;
1935
+ text?: undefined;
1936
+ source?: undefined;
1937
+ is_chat?: undefined;
1938
+ context?: undefined;
1939
+ category?: undefined;
1940
+ tier?: undefined;
1941
+ query?: undefined;
1942
+ skill_id?: undefined;
1943
+ target_dir?: undefined;
1944
+ pack_id?: undefined;
1945
+ content?: undefined;
1946
+ tags?: undefined;
1947
+ confidence?: undefined;
1948
+ search?: undefined;
1949
+ spec_type?: undefined;
1950
+ min_confidence?: undefined;
1951
+ spec_id?: undefined;
1952
+ telemetry?: undefined;
1953
+ proactive_suggestions?: undefined;
1954
+ cross_project_learnings?: undefined;
1955
+ };
1956
+ required?: undefined;
1957
+ };
1958
+ } | {
1959
+ name: string;
1960
+ description: string;
1961
+ inputSchema: {
1962
+ type: "object";
1963
+ properties: {
1964
+ pack_id: {
1965
+ type: string;
1966
+ description: string;
1967
+ };
1968
+ project_id?: undefined;
1969
+ name?: undefined;
1970
+ board_id?: undefined;
1971
+ status?: undefined;
1972
+ limit?: undefined;
1973
+ task_id?: undefined;
1974
+ title?: undefined;
1975
+ description?: undefined;
1976
+ priority?: undefined;
1977
+ labels?: undefined;
1978
+ executor?: undefined;
1979
+ branch?: undefined;
1980
+ summary?: undefined;
1981
+ message?: undefined;
1982
+ session_id?: undefined;
1983
+ focus?: undefined;
1984
+ approach?: undefined;
1985
+ assumptions?: undefined;
1986
+ constraints?: undefined;
1987
+ success_criteria?: undefined;
1988
+ risks?: undefined;
1989
+ estimated_steps?: undefined;
1990
+ plan_id?: undefined;
1991
+ feedback?: undefined;
1992
+ text?: undefined;
1993
+ source?: undefined;
1994
+ is_chat?: undefined;
1995
+ context?: undefined;
1996
+ category?: undefined;
1997
+ tier?: undefined;
1998
+ query?: undefined;
1999
+ skill_id?: undefined;
2000
+ target_dir?: undefined;
2001
+ include_virtual?: undefined;
2002
+ content?: undefined;
2003
+ tags?: undefined;
2004
+ confidence?: undefined;
2005
+ search?: undefined;
2006
+ spec_type?: undefined;
2007
+ min_confidence?: undefined;
2008
+ spec_id?: undefined;
2009
+ telemetry?: undefined;
2010
+ proactive_suggestions?: undefined;
2011
+ cross_project_learnings?: undefined;
2012
+ };
2013
+ required: string[];
2014
+ };
2015
+ } | {
2016
+ name: string;
2017
+ description: string;
2018
+ inputSchema: {
2019
+ type: "object";
2020
+ properties: {
2021
+ title: {
2022
+ type: string;
2023
+ description: string;
2024
+ };
2025
+ content: {
2026
+ type: string;
2027
+ description: string;
2028
+ };
2029
+ tags: {
2030
+ type: string;
2031
+ items: {
2032
+ type: string;
2033
+ };
2034
+ description: string;
2035
+ };
2036
+ project_id: {
2037
+ type: string;
2038
+ description: string;
2039
+ };
2040
+ task_id: {
2041
+ type: string;
2042
+ description: string;
2043
+ };
2044
+ confidence: {
2045
+ type: string;
2046
+ description: string;
2047
+ };
2048
+ name?: undefined;
2049
+ board_id?: undefined;
2050
+ status?: undefined;
2051
+ limit?: undefined;
2052
+ description?: undefined;
2053
+ priority?: undefined;
2054
+ labels?: undefined;
2055
+ executor?: undefined;
2056
+ branch?: undefined;
2057
+ summary?: undefined;
2058
+ message?: undefined;
2059
+ session_id?: undefined;
2060
+ focus?: undefined;
2061
+ approach?: undefined;
2062
+ assumptions?: undefined;
2063
+ constraints?: undefined;
2064
+ success_criteria?: undefined;
2065
+ risks?: undefined;
2066
+ estimated_steps?: undefined;
2067
+ plan_id?: undefined;
2068
+ feedback?: undefined;
2069
+ text?: undefined;
2070
+ source?: undefined;
2071
+ is_chat?: undefined;
2072
+ context?: undefined;
2073
+ category?: undefined;
2074
+ tier?: undefined;
2075
+ query?: undefined;
2076
+ skill_id?: undefined;
2077
+ target_dir?: undefined;
2078
+ include_virtual?: undefined;
2079
+ pack_id?: undefined;
2080
+ search?: undefined;
2081
+ spec_type?: undefined;
2082
+ min_confidence?: undefined;
2083
+ spec_id?: undefined;
2084
+ telemetry?: undefined;
2085
+ proactive_suggestions?: undefined;
2086
+ cross_project_learnings?: undefined;
2087
+ };
2088
+ required: string[];
2089
+ };
2090
+ } | {
2091
+ name: string;
2092
+ description: string;
2093
+ inputSchema: {
2094
+ type: "object";
2095
+ properties: {
2096
+ search: {
2097
+ type: string;
2098
+ description: string;
2099
+ };
2100
+ tags: {
2101
+ type: string;
2102
+ items: {
2103
+ type: string;
2104
+ };
2105
+ description: string;
2106
+ };
2107
+ project_id: {
2108
+ type: string;
2109
+ description: string;
2110
+ };
2111
+ limit: {
2112
+ type: string;
2113
+ description: string;
2114
+ };
2115
+ name?: undefined;
2116
+ board_id?: undefined;
2117
+ status?: undefined;
2118
+ task_id?: undefined;
2119
+ title?: undefined;
2120
+ description?: undefined;
2121
+ priority?: undefined;
2122
+ labels?: undefined;
2123
+ executor?: undefined;
2124
+ branch?: undefined;
2125
+ summary?: undefined;
2126
+ message?: undefined;
2127
+ session_id?: undefined;
2128
+ focus?: undefined;
2129
+ approach?: undefined;
2130
+ assumptions?: undefined;
2131
+ constraints?: undefined;
2132
+ success_criteria?: undefined;
2133
+ risks?: undefined;
2134
+ estimated_steps?: undefined;
2135
+ plan_id?: undefined;
2136
+ feedback?: undefined;
2137
+ text?: undefined;
2138
+ source?: undefined;
2139
+ is_chat?: undefined;
2140
+ context?: undefined;
2141
+ category?: undefined;
2142
+ tier?: undefined;
2143
+ query?: undefined;
2144
+ skill_id?: undefined;
2145
+ target_dir?: undefined;
2146
+ include_virtual?: undefined;
2147
+ pack_id?: undefined;
2148
+ content?: undefined;
2149
+ confidence?: undefined;
2150
+ spec_type?: undefined;
2151
+ min_confidence?: undefined;
2152
+ spec_id?: undefined;
2153
+ telemetry?: undefined;
2154
+ proactive_suggestions?: undefined;
2155
+ cross_project_learnings?: undefined;
2156
+ };
2157
+ required?: undefined;
2158
+ };
2159
+ } | {
2160
+ name: string;
2161
+ description: string;
2162
+ inputSchema: {
2163
+ type: "object";
2164
+ properties: {
2165
+ project_id: {
2166
+ type: string;
2167
+ description: string;
2168
+ };
2169
+ status: {
2170
+ type: string;
2171
+ enum: string[];
2172
+ description: string;
2173
+ };
2174
+ spec_type: {
2175
+ type: string;
2176
+ enum: string[];
2177
+ description: string;
2178
+ };
2179
+ min_confidence: {
2180
+ type: string;
2181
+ description: string;
2182
+ };
2183
+ priority: {
2184
+ type: string;
2185
+ enum: string[];
2186
+ description: string;
2187
+ };
2188
+ limit: {
2189
+ type: string;
2190
+ description: string;
2191
+ };
2192
+ name?: undefined;
2193
+ board_id?: undefined;
2194
+ task_id?: undefined;
2195
+ title?: undefined;
2196
+ description?: undefined;
2197
+ labels?: undefined;
2198
+ executor?: undefined;
2199
+ branch?: undefined;
2200
+ summary?: undefined;
2201
+ message?: undefined;
2202
+ session_id?: undefined;
2203
+ focus?: undefined;
2204
+ approach?: undefined;
2205
+ assumptions?: undefined;
2206
+ constraints?: undefined;
2207
+ success_criteria?: undefined;
2208
+ risks?: undefined;
2209
+ estimated_steps?: undefined;
2210
+ plan_id?: undefined;
2211
+ feedback?: undefined;
2212
+ text?: undefined;
2213
+ source?: undefined;
2214
+ is_chat?: undefined;
2215
+ context?: undefined;
2216
+ category?: undefined;
2217
+ tier?: undefined;
2218
+ query?: undefined;
2219
+ skill_id?: undefined;
2220
+ target_dir?: undefined;
2221
+ include_virtual?: undefined;
2222
+ pack_id?: undefined;
2223
+ content?: undefined;
2224
+ tags?: undefined;
2225
+ confidence?: undefined;
2226
+ search?: undefined;
2227
+ spec_id?: undefined;
2228
+ telemetry?: undefined;
2229
+ proactive_suggestions?: undefined;
2230
+ cross_project_learnings?: undefined;
2231
+ };
2232
+ required?: undefined;
2233
+ };
2234
+ } | {
2235
+ name: string;
2236
+ description: string;
2237
+ inputSchema: {
2238
+ type: "object";
2239
+ properties: {
2240
+ spec_id: {
2241
+ type: string;
2242
+ description: string;
2243
+ };
2244
+ project_id?: undefined;
2245
+ name?: undefined;
2246
+ board_id?: undefined;
2247
+ status?: undefined;
2248
+ limit?: undefined;
2249
+ task_id?: undefined;
2250
+ title?: undefined;
2251
+ description?: undefined;
2252
+ priority?: undefined;
2253
+ labels?: undefined;
2254
+ executor?: undefined;
2255
+ branch?: undefined;
2256
+ summary?: undefined;
2257
+ message?: undefined;
2258
+ session_id?: undefined;
2259
+ focus?: undefined;
2260
+ approach?: undefined;
2261
+ assumptions?: undefined;
2262
+ constraints?: undefined;
2263
+ success_criteria?: undefined;
2264
+ risks?: undefined;
2265
+ estimated_steps?: undefined;
2266
+ plan_id?: undefined;
2267
+ feedback?: undefined;
2268
+ text?: undefined;
2269
+ source?: undefined;
2270
+ is_chat?: undefined;
2271
+ context?: undefined;
2272
+ category?: undefined;
2273
+ tier?: undefined;
2274
+ query?: undefined;
2275
+ skill_id?: undefined;
2276
+ target_dir?: undefined;
2277
+ include_virtual?: undefined;
2278
+ pack_id?: undefined;
2279
+ content?: undefined;
2280
+ tags?: undefined;
2281
+ confidence?: undefined;
2282
+ search?: undefined;
2283
+ spec_type?: undefined;
2284
+ min_confidence?: undefined;
2285
+ telemetry?: undefined;
2286
+ proactive_suggestions?: undefined;
2287
+ cross_project_learnings?: undefined;
2288
+ };
2289
+ required: string[];
2290
+ };
2291
+ } | {
2292
+ name: string;
2293
+ description: string;
2294
+ inputSchema: {
2295
+ type: "object";
2296
+ properties: {
2297
+ spec_id: {
2298
+ type: string;
2299
+ description: string;
2300
+ };
2301
+ executor: {
2302
+ type: string;
2303
+ description: string;
2304
+ };
2305
+ project_id?: undefined;
2306
+ name?: undefined;
2307
+ board_id?: undefined;
2308
+ status?: undefined;
2309
+ limit?: undefined;
2310
+ task_id?: undefined;
2311
+ title?: undefined;
2312
+ description?: undefined;
2313
+ priority?: undefined;
2314
+ labels?: undefined;
2315
+ branch?: undefined;
2316
+ summary?: undefined;
2317
+ message?: undefined;
2318
+ session_id?: undefined;
2319
+ focus?: undefined;
2320
+ approach?: undefined;
2321
+ assumptions?: undefined;
2322
+ constraints?: undefined;
2323
+ success_criteria?: undefined;
2324
+ risks?: undefined;
2325
+ estimated_steps?: undefined;
2326
+ plan_id?: undefined;
2327
+ feedback?: undefined;
2328
+ text?: undefined;
2329
+ source?: undefined;
2330
+ is_chat?: undefined;
2331
+ context?: undefined;
2332
+ category?: undefined;
2333
+ tier?: undefined;
2334
+ query?: undefined;
2335
+ skill_id?: undefined;
2336
+ target_dir?: undefined;
2337
+ include_virtual?: undefined;
2338
+ pack_id?: undefined;
2339
+ content?: undefined;
2340
+ tags?: undefined;
2341
+ confidence?: undefined;
2342
+ search?: undefined;
2343
+ spec_type?: undefined;
2344
+ min_confidence?: undefined;
2345
+ telemetry?: undefined;
2346
+ proactive_suggestions?: undefined;
2347
+ cross_project_learnings?: undefined;
2348
+ };
2349
+ required: string[];
2350
+ };
2351
+ } | {
2352
+ name: string;
2353
+ description: string;
2354
+ inputSchema: {
2355
+ type: "object";
2356
+ properties: {
2357
+ telemetry: {
2358
+ type: string;
2359
+ enum: string[];
2360
+ description: string;
2361
+ };
2362
+ proactive_suggestions: {
2363
+ type: string;
2364
+ description: string;
2365
+ };
2366
+ cross_project_learnings: {
2367
+ type: string;
2368
+ description: string;
2369
+ };
2370
+ project_id?: undefined;
2371
+ name?: undefined;
2372
+ board_id?: undefined;
2373
+ status?: undefined;
2374
+ limit?: undefined;
2375
+ task_id?: undefined;
2376
+ title?: undefined;
2377
+ description?: undefined;
2378
+ priority?: undefined;
2379
+ labels?: undefined;
2380
+ executor?: undefined;
2381
+ branch?: undefined;
2382
+ summary?: undefined;
2383
+ message?: undefined;
2384
+ session_id?: undefined;
2385
+ focus?: undefined;
2386
+ approach?: undefined;
2387
+ assumptions?: undefined;
2388
+ constraints?: undefined;
2389
+ success_criteria?: undefined;
2390
+ risks?: undefined;
2391
+ estimated_steps?: undefined;
2392
+ plan_id?: undefined;
2393
+ feedback?: undefined;
2394
+ text?: undefined;
2395
+ source?: undefined;
2396
+ is_chat?: undefined;
2397
+ context?: undefined;
2398
+ category?: undefined;
2399
+ tier?: undefined;
2400
+ query?: undefined;
2401
+ skill_id?: undefined;
2402
+ target_dir?: undefined;
2403
+ include_virtual?: undefined;
2404
+ pack_id?: undefined;
2405
+ content?: undefined;
2406
+ tags?: undefined;
2407
+ confidence?: undefined;
2408
+ search?: undefined;
2409
+ spec_type?: undefined;
2410
+ min_confidence?: undefined;
2411
+ spec_id?: undefined;
2412
+ };
2413
+ required?: undefined;
2414
+ };
2415
+ })[];
2416
+ export declare const STATUS_COLUMN: Record<string, string>;
2417
+ export declare function getColumnByStatus(sb: SupabaseClient, boardId: string, status: string): Promise<string | null>;
2418
+ export declare const GLOBAL_BOARD_NAME = "Global Tasks";
2419
+ export declare function getOrCreateGlobalBoard(sb: SupabaseClient, userId: string): Promise<{
2420
+ id: string;
2421
+ name: string;
2422
+ created: boolean;
2423
+ }>;
2424
+ export declare function handleTool(sb: SupabaseClient, userId: string, name: string, args: Record<string, unknown>): Promise<string>;
2425
+ export declare function json(obj: unknown): string;
2426
+ export declare function slugify(text: string): string;
2427
+ export declare function detectExecutor(): string;
2428
+ export declare function logToSession(sb: SupabaseClient, userId: string, taskId: string, message: string, complete: boolean, sessionId?: string): Promise<void>;
2429
+ /**
2430
+ * Build a project context markdown document from Supabase data.
2431
+ * No LLM call — pure data assembly with ~8K char cap.
2432
+ */
2433
+ export declare function buildProjectContextMd(sb: SupabaseClient, projectId: string): Promise<string | null>;