@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,736 @@
1
+ /**
2
+ * Agent-Proxied Tools — Tools that proxy to agent.crowdlisten.com
3
+ *
4
+ * 5 skill packs, 16 tools. Each tool calls the agent backend via
5
+ * the shared agent-proxy helpers.
6
+ *
7
+ * Free vs Paid:
8
+ * - Free: llm (2 tools), agent-network (2 tools) — no API key needed
9
+ * - Paid: analysis (5), content (4), generation (2) — require CROWDLISTEN_API_KEY
10
+ */
11
+ export declare const AGENT_TOOLS: ({
12
+ name: string;
13
+ description: string;
14
+ inputSchema: {
15
+ type: "object";
16
+ properties: {
17
+ project_id: {
18
+ type: string;
19
+ description: string;
20
+ };
21
+ question: {
22
+ type: string;
23
+ description: string;
24
+ };
25
+ platforms: {
26
+ type: string;
27
+ items: {
28
+ type: string;
29
+ };
30
+ description: string;
31
+ };
32
+ max_results: {
33
+ type: string;
34
+ description: string;
35
+ };
36
+ analysis_id?: undefined;
37
+ limit?: undefined;
38
+ spec_type?: undefined;
39
+ content?: undefined;
40
+ source_url?: undefined;
41
+ title?: undefined;
42
+ metadata?: undefined;
43
+ query?: undefined;
44
+ threshold?: undefined;
45
+ content_id?: undefined;
46
+ analysis_ids?: undefined;
47
+ template?: undefined;
48
+ sections?: undefined;
49
+ document_id?: undefined;
50
+ section?: undefined;
51
+ instructions?: undefined;
52
+ prompt?: undefined;
53
+ model?: undefined;
54
+ max_tokens?: undefined;
55
+ temperature?: undefined;
56
+ system?: undefined;
57
+ name?: undefined;
58
+ capabilities?: undefined;
59
+ executor?: undefined;
60
+ agent_id?: undefined;
61
+ summary?: undefined;
62
+ };
63
+ required: string[];
64
+ };
65
+ } | {
66
+ name: string;
67
+ description: string;
68
+ inputSchema: {
69
+ type: "object";
70
+ properties: {
71
+ analysis_id: {
72
+ type: string;
73
+ description: string;
74
+ };
75
+ question: {
76
+ type: string;
77
+ description: string;
78
+ };
79
+ project_id?: undefined;
80
+ platforms?: undefined;
81
+ max_results?: undefined;
82
+ limit?: undefined;
83
+ spec_type?: undefined;
84
+ content?: undefined;
85
+ source_url?: undefined;
86
+ title?: undefined;
87
+ metadata?: undefined;
88
+ query?: undefined;
89
+ threshold?: undefined;
90
+ content_id?: undefined;
91
+ analysis_ids?: undefined;
92
+ template?: undefined;
93
+ sections?: undefined;
94
+ document_id?: undefined;
95
+ section?: undefined;
96
+ instructions?: undefined;
97
+ prompt?: undefined;
98
+ model?: undefined;
99
+ max_tokens?: undefined;
100
+ temperature?: undefined;
101
+ system?: undefined;
102
+ name?: undefined;
103
+ capabilities?: undefined;
104
+ executor?: undefined;
105
+ agent_id?: undefined;
106
+ summary?: undefined;
107
+ };
108
+ required: string[];
109
+ };
110
+ } | {
111
+ name: string;
112
+ description: string;
113
+ inputSchema: {
114
+ type: "object";
115
+ properties: {
116
+ analysis_id: {
117
+ type: string;
118
+ description: string;
119
+ };
120
+ project_id?: undefined;
121
+ question?: undefined;
122
+ platforms?: undefined;
123
+ max_results?: undefined;
124
+ limit?: undefined;
125
+ spec_type?: undefined;
126
+ content?: undefined;
127
+ source_url?: undefined;
128
+ title?: undefined;
129
+ metadata?: undefined;
130
+ query?: undefined;
131
+ threshold?: undefined;
132
+ content_id?: undefined;
133
+ analysis_ids?: undefined;
134
+ template?: undefined;
135
+ sections?: undefined;
136
+ document_id?: undefined;
137
+ section?: undefined;
138
+ instructions?: undefined;
139
+ prompt?: undefined;
140
+ model?: undefined;
141
+ max_tokens?: undefined;
142
+ temperature?: undefined;
143
+ system?: undefined;
144
+ name?: undefined;
145
+ capabilities?: undefined;
146
+ executor?: undefined;
147
+ agent_id?: undefined;
148
+ summary?: undefined;
149
+ };
150
+ required: string[];
151
+ };
152
+ } | {
153
+ name: string;
154
+ description: string;
155
+ inputSchema: {
156
+ type: "object";
157
+ properties: {
158
+ project_id: {
159
+ type: string;
160
+ description: string;
161
+ };
162
+ limit: {
163
+ type: string;
164
+ description: string;
165
+ };
166
+ question?: undefined;
167
+ platforms?: undefined;
168
+ max_results?: undefined;
169
+ analysis_id?: undefined;
170
+ spec_type?: undefined;
171
+ content?: undefined;
172
+ source_url?: undefined;
173
+ title?: undefined;
174
+ metadata?: undefined;
175
+ query?: undefined;
176
+ threshold?: undefined;
177
+ content_id?: undefined;
178
+ analysis_ids?: undefined;
179
+ template?: undefined;
180
+ sections?: undefined;
181
+ document_id?: undefined;
182
+ section?: undefined;
183
+ instructions?: undefined;
184
+ prompt?: undefined;
185
+ model?: undefined;
186
+ max_tokens?: undefined;
187
+ temperature?: undefined;
188
+ system?: undefined;
189
+ name?: undefined;
190
+ capabilities?: undefined;
191
+ executor?: undefined;
192
+ agent_id?: undefined;
193
+ summary?: undefined;
194
+ };
195
+ required: string[];
196
+ };
197
+ } | {
198
+ name: string;
199
+ description: string;
200
+ inputSchema: {
201
+ type: "object";
202
+ properties: {
203
+ project_id: {
204
+ type: string;
205
+ description: string;
206
+ };
207
+ analysis_id: {
208
+ type: string;
209
+ description: string;
210
+ };
211
+ spec_type: {
212
+ type: string;
213
+ description: string;
214
+ };
215
+ question?: undefined;
216
+ platforms?: undefined;
217
+ max_results?: undefined;
218
+ limit?: undefined;
219
+ content?: undefined;
220
+ source_url?: undefined;
221
+ title?: undefined;
222
+ metadata?: undefined;
223
+ query?: undefined;
224
+ threshold?: undefined;
225
+ content_id?: undefined;
226
+ analysis_ids?: undefined;
227
+ template?: undefined;
228
+ sections?: undefined;
229
+ document_id?: undefined;
230
+ section?: undefined;
231
+ instructions?: undefined;
232
+ prompt?: undefined;
233
+ model?: undefined;
234
+ max_tokens?: undefined;
235
+ temperature?: undefined;
236
+ system?: undefined;
237
+ name?: undefined;
238
+ capabilities?: undefined;
239
+ executor?: undefined;
240
+ agent_id?: undefined;
241
+ summary?: undefined;
242
+ };
243
+ required: string[];
244
+ };
245
+ } | {
246
+ name: string;
247
+ description: string;
248
+ inputSchema: {
249
+ type: "object";
250
+ properties: {
251
+ project_id: {
252
+ type: string;
253
+ description: string;
254
+ };
255
+ content: {
256
+ type: string;
257
+ description: string;
258
+ };
259
+ source_url: {
260
+ type: string;
261
+ description: string;
262
+ };
263
+ title: {
264
+ type: string;
265
+ description: string;
266
+ };
267
+ metadata: {
268
+ type: string;
269
+ description: string;
270
+ };
271
+ question?: undefined;
272
+ platforms?: undefined;
273
+ max_results?: undefined;
274
+ analysis_id?: undefined;
275
+ limit?: undefined;
276
+ spec_type?: undefined;
277
+ query?: undefined;
278
+ threshold?: undefined;
279
+ content_id?: undefined;
280
+ analysis_ids?: undefined;
281
+ template?: undefined;
282
+ sections?: undefined;
283
+ document_id?: undefined;
284
+ section?: undefined;
285
+ instructions?: undefined;
286
+ prompt?: undefined;
287
+ model?: undefined;
288
+ max_tokens?: undefined;
289
+ temperature?: undefined;
290
+ system?: undefined;
291
+ name?: undefined;
292
+ capabilities?: undefined;
293
+ executor?: undefined;
294
+ agent_id?: undefined;
295
+ summary?: undefined;
296
+ };
297
+ required: string[];
298
+ };
299
+ } | {
300
+ name: string;
301
+ description: string;
302
+ inputSchema: {
303
+ type: "object";
304
+ properties: {
305
+ project_id: {
306
+ type: string;
307
+ description: string;
308
+ };
309
+ query: {
310
+ type: string;
311
+ description: string;
312
+ };
313
+ limit: {
314
+ type: string;
315
+ description: string;
316
+ };
317
+ threshold: {
318
+ type: string;
319
+ description: string;
320
+ };
321
+ question?: undefined;
322
+ platforms?: undefined;
323
+ max_results?: undefined;
324
+ analysis_id?: undefined;
325
+ spec_type?: undefined;
326
+ content?: undefined;
327
+ source_url?: undefined;
328
+ title?: undefined;
329
+ metadata?: undefined;
330
+ content_id?: undefined;
331
+ analysis_ids?: undefined;
332
+ template?: undefined;
333
+ sections?: undefined;
334
+ document_id?: undefined;
335
+ section?: undefined;
336
+ instructions?: undefined;
337
+ prompt?: undefined;
338
+ model?: undefined;
339
+ max_tokens?: undefined;
340
+ temperature?: undefined;
341
+ system?: undefined;
342
+ name?: undefined;
343
+ capabilities?: undefined;
344
+ executor?: undefined;
345
+ agent_id?: undefined;
346
+ summary?: undefined;
347
+ };
348
+ required: string[];
349
+ };
350
+ } | {
351
+ name: string;
352
+ description: string;
353
+ inputSchema: {
354
+ type: "object";
355
+ properties: {
356
+ project_id: {
357
+ type: string;
358
+ description: string;
359
+ };
360
+ question?: undefined;
361
+ platforms?: undefined;
362
+ max_results?: undefined;
363
+ analysis_id?: undefined;
364
+ limit?: undefined;
365
+ spec_type?: undefined;
366
+ content?: undefined;
367
+ source_url?: undefined;
368
+ title?: undefined;
369
+ metadata?: undefined;
370
+ query?: undefined;
371
+ threshold?: undefined;
372
+ content_id?: undefined;
373
+ analysis_ids?: undefined;
374
+ template?: undefined;
375
+ sections?: undefined;
376
+ document_id?: undefined;
377
+ section?: undefined;
378
+ instructions?: undefined;
379
+ prompt?: undefined;
380
+ model?: undefined;
381
+ max_tokens?: undefined;
382
+ temperature?: undefined;
383
+ system?: undefined;
384
+ name?: undefined;
385
+ capabilities?: undefined;
386
+ executor?: undefined;
387
+ agent_id?: undefined;
388
+ summary?: undefined;
389
+ };
390
+ required: string[];
391
+ };
392
+ } | {
393
+ name: string;
394
+ description: string;
395
+ inputSchema: {
396
+ type: "object";
397
+ properties: {
398
+ content_id: {
399
+ type: string;
400
+ description: string;
401
+ };
402
+ project_id?: undefined;
403
+ question?: undefined;
404
+ platforms?: undefined;
405
+ max_results?: undefined;
406
+ analysis_id?: undefined;
407
+ limit?: undefined;
408
+ spec_type?: undefined;
409
+ content?: undefined;
410
+ source_url?: undefined;
411
+ title?: undefined;
412
+ metadata?: undefined;
413
+ query?: undefined;
414
+ threshold?: undefined;
415
+ analysis_ids?: undefined;
416
+ template?: undefined;
417
+ sections?: undefined;
418
+ document_id?: undefined;
419
+ section?: undefined;
420
+ instructions?: undefined;
421
+ prompt?: undefined;
422
+ model?: undefined;
423
+ max_tokens?: undefined;
424
+ temperature?: undefined;
425
+ system?: undefined;
426
+ name?: undefined;
427
+ capabilities?: undefined;
428
+ executor?: undefined;
429
+ agent_id?: undefined;
430
+ summary?: undefined;
431
+ };
432
+ required: string[];
433
+ };
434
+ } | {
435
+ name: string;
436
+ description: string;
437
+ inputSchema: {
438
+ type: "object";
439
+ properties: {
440
+ project_id: {
441
+ type: string;
442
+ description: string;
443
+ };
444
+ analysis_ids: {
445
+ type: string;
446
+ items: {
447
+ type: string;
448
+ };
449
+ description: string;
450
+ };
451
+ template: {
452
+ type: string;
453
+ description: string;
454
+ };
455
+ sections: {
456
+ type: string;
457
+ items: {
458
+ type: string;
459
+ };
460
+ description: string;
461
+ };
462
+ question?: undefined;
463
+ platforms?: undefined;
464
+ max_results?: undefined;
465
+ analysis_id?: undefined;
466
+ limit?: undefined;
467
+ spec_type?: undefined;
468
+ content?: undefined;
469
+ source_url?: undefined;
470
+ title?: undefined;
471
+ metadata?: undefined;
472
+ query?: undefined;
473
+ threshold?: undefined;
474
+ content_id?: undefined;
475
+ document_id?: undefined;
476
+ section?: undefined;
477
+ instructions?: undefined;
478
+ prompt?: undefined;
479
+ model?: undefined;
480
+ max_tokens?: undefined;
481
+ temperature?: undefined;
482
+ system?: undefined;
483
+ name?: undefined;
484
+ capabilities?: undefined;
485
+ executor?: undefined;
486
+ agent_id?: undefined;
487
+ summary?: undefined;
488
+ };
489
+ required: string[];
490
+ };
491
+ } | {
492
+ name: string;
493
+ description: string;
494
+ inputSchema: {
495
+ type: "object";
496
+ properties: {
497
+ document_id: {
498
+ type: string;
499
+ description: string;
500
+ };
501
+ section: {
502
+ type: string;
503
+ description: string;
504
+ };
505
+ instructions: {
506
+ type: string;
507
+ description: string;
508
+ };
509
+ content: {
510
+ type: string;
511
+ description: string;
512
+ };
513
+ project_id?: undefined;
514
+ question?: undefined;
515
+ platforms?: undefined;
516
+ max_results?: undefined;
517
+ analysis_id?: undefined;
518
+ limit?: undefined;
519
+ spec_type?: undefined;
520
+ source_url?: undefined;
521
+ title?: undefined;
522
+ metadata?: undefined;
523
+ query?: undefined;
524
+ threshold?: undefined;
525
+ content_id?: undefined;
526
+ analysis_ids?: undefined;
527
+ template?: undefined;
528
+ sections?: undefined;
529
+ prompt?: undefined;
530
+ model?: undefined;
531
+ max_tokens?: undefined;
532
+ temperature?: undefined;
533
+ system?: undefined;
534
+ name?: undefined;
535
+ capabilities?: undefined;
536
+ executor?: undefined;
537
+ agent_id?: undefined;
538
+ summary?: undefined;
539
+ };
540
+ required: string[];
541
+ };
542
+ } | {
543
+ name: string;
544
+ description: string;
545
+ inputSchema: {
546
+ type: "object";
547
+ properties: {
548
+ prompt: {
549
+ type: string;
550
+ description: string;
551
+ };
552
+ model: {
553
+ type: string;
554
+ description: string;
555
+ };
556
+ max_tokens: {
557
+ type: string;
558
+ description: string;
559
+ };
560
+ temperature: {
561
+ type: string;
562
+ description: string;
563
+ };
564
+ system: {
565
+ type: string;
566
+ description: string;
567
+ };
568
+ project_id?: undefined;
569
+ question?: undefined;
570
+ platforms?: undefined;
571
+ max_results?: undefined;
572
+ analysis_id?: undefined;
573
+ limit?: undefined;
574
+ spec_type?: undefined;
575
+ content?: undefined;
576
+ source_url?: undefined;
577
+ title?: undefined;
578
+ metadata?: undefined;
579
+ query?: undefined;
580
+ threshold?: undefined;
581
+ content_id?: undefined;
582
+ analysis_ids?: undefined;
583
+ template?: undefined;
584
+ sections?: undefined;
585
+ document_id?: undefined;
586
+ section?: undefined;
587
+ instructions?: undefined;
588
+ name?: undefined;
589
+ capabilities?: undefined;
590
+ executor?: undefined;
591
+ agent_id?: undefined;
592
+ summary?: undefined;
593
+ };
594
+ required: string[];
595
+ };
596
+ } | {
597
+ name: string;
598
+ description: string;
599
+ inputSchema: {
600
+ type: "object";
601
+ properties: {
602
+ project_id?: undefined;
603
+ question?: undefined;
604
+ platforms?: undefined;
605
+ max_results?: undefined;
606
+ analysis_id?: undefined;
607
+ limit?: undefined;
608
+ spec_type?: undefined;
609
+ content?: undefined;
610
+ source_url?: undefined;
611
+ title?: undefined;
612
+ metadata?: undefined;
613
+ query?: undefined;
614
+ threshold?: undefined;
615
+ content_id?: undefined;
616
+ analysis_ids?: undefined;
617
+ template?: undefined;
618
+ sections?: undefined;
619
+ document_id?: undefined;
620
+ section?: undefined;
621
+ instructions?: undefined;
622
+ prompt?: undefined;
623
+ model?: undefined;
624
+ max_tokens?: undefined;
625
+ temperature?: undefined;
626
+ system?: undefined;
627
+ name?: undefined;
628
+ capabilities?: undefined;
629
+ executor?: undefined;
630
+ agent_id?: undefined;
631
+ summary?: undefined;
632
+ };
633
+ required?: undefined;
634
+ };
635
+ } | {
636
+ name: string;
637
+ description: string;
638
+ inputSchema: {
639
+ type: "object";
640
+ properties: {
641
+ name: {
642
+ type: string;
643
+ description: string;
644
+ };
645
+ capabilities: {
646
+ type: string;
647
+ items: {
648
+ type: string;
649
+ };
650
+ description: string;
651
+ };
652
+ executor: {
653
+ type: string;
654
+ description: string;
655
+ };
656
+ project_id?: undefined;
657
+ question?: undefined;
658
+ platforms?: undefined;
659
+ max_results?: undefined;
660
+ analysis_id?: undefined;
661
+ limit?: undefined;
662
+ spec_type?: undefined;
663
+ content?: undefined;
664
+ source_url?: undefined;
665
+ title?: undefined;
666
+ metadata?: undefined;
667
+ query?: undefined;
668
+ threshold?: undefined;
669
+ content_id?: undefined;
670
+ analysis_ids?: undefined;
671
+ template?: undefined;
672
+ sections?: undefined;
673
+ document_id?: undefined;
674
+ section?: undefined;
675
+ instructions?: undefined;
676
+ prompt?: undefined;
677
+ model?: undefined;
678
+ max_tokens?: undefined;
679
+ temperature?: undefined;
680
+ system?: undefined;
681
+ agent_id?: undefined;
682
+ summary?: undefined;
683
+ };
684
+ required: string[];
685
+ };
686
+ } | {
687
+ name: string;
688
+ description: string;
689
+ inputSchema: {
690
+ type: "object";
691
+ properties: {
692
+ agent_id: {
693
+ type: string;
694
+ description: string;
695
+ };
696
+ analysis_id: {
697
+ type: string;
698
+ description: string;
699
+ };
700
+ summary: {
701
+ type: string;
702
+ description: string;
703
+ };
704
+ project_id?: undefined;
705
+ question?: undefined;
706
+ platforms?: undefined;
707
+ max_results?: undefined;
708
+ limit?: undefined;
709
+ spec_type?: undefined;
710
+ content?: undefined;
711
+ source_url?: undefined;
712
+ title?: undefined;
713
+ metadata?: undefined;
714
+ query?: undefined;
715
+ threshold?: undefined;
716
+ content_id?: undefined;
717
+ analysis_ids?: undefined;
718
+ template?: undefined;
719
+ sections?: undefined;
720
+ document_id?: undefined;
721
+ section?: undefined;
722
+ instructions?: undefined;
723
+ prompt?: undefined;
724
+ model?: undefined;
725
+ max_tokens?: undefined;
726
+ temperature?: undefined;
727
+ system?: undefined;
728
+ name?: undefined;
729
+ capabilities?: undefined;
730
+ executor?: undefined;
731
+ };
732
+ required: string[];
733
+ };
734
+ })[];
735
+ export declare function isAgentTool(name: string): boolean;
736
+ export declare function handleAgentTool(name: string, args: Record<string, unknown>): Promise<string>;