zilmate 1.3.4 → 1.4.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 (122) hide show
  1. package/dist/agents/automation-planner.agent.d.ts +108 -0
  2. package/dist/agents/automation-planner.agent.d.ts.map +1 -1
  3. package/dist/agents/automation-planner.agent.js +13 -4
  4. package/dist/agents/automation-planner.agent.js.map +1 -1
  5. package/dist/agents/manager.d.ts +304 -0
  6. package/dist/agents/manager.d.ts.map +1 -1
  7. package/dist/agents/manager.js +45 -3
  8. package/dist/agents/manager.js.map +1 -1
  9. package/dist/agents/security.agent.d.ts +340 -0
  10. package/dist/agents/security.agent.d.ts.map +1 -0
  11. package/dist/agents/security.agent.js +76 -0
  12. package/dist/agents/security.agent.js.map +1 -0
  13. package/dist/cli/confirm.d.ts.map +1 -1
  14. package/dist/cli/confirm.js +8 -14
  15. package/dist/cli/confirm.js.map +1 -1
  16. package/dist/cli/format.js +1 -1
  17. package/dist/cli/interactive.d.ts.map +1 -1
  18. package/dist/cli/interactive.js +2 -0
  19. package/dist/cli/interactive.js.map +1 -1
  20. package/dist/cli/triggers.d.ts.map +1 -1
  21. package/dist/cli/triggers.js +12 -4
  22. package/dist/cli/triggers.js.map +1 -1
  23. package/dist/cli/voice.d.ts.map +1 -1
  24. package/dist/cli/voice.js +2 -0
  25. package/dist/cli/voice.js.map +1 -1
  26. package/dist/config/env.d.ts +4 -0
  27. package/dist/config/env.d.ts.map +1 -1
  28. package/dist/config/env.js +4 -0
  29. package/dist/config/env.js.map +1 -1
  30. package/dist/index.js +1 -1
  31. package/dist/jobs/trigger-orchestrator.d.ts +26 -0
  32. package/dist/jobs/trigger-orchestrator.d.ts.map +1 -0
  33. package/dist/jobs/trigger-orchestrator.js +252 -0
  34. package/dist/jobs/trigger-orchestrator.js.map +1 -0
  35. package/dist/jobs/trigger-policies.d.ts +36 -0
  36. package/dist/jobs/trigger-policies.d.ts.map +1 -0
  37. package/dist/jobs/trigger-policies.js +68 -0
  38. package/dist/jobs/trigger-policies.js.map +1 -0
  39. package/dist/jobs/trigger-router.d.ts +14 -0
  40. package/dist/jobs/trigger-router.d.ts.map +1 -0
  41. package/dist/jobs/trigger-router.js +114 -0
  42. package/dist/jobs/trigger-router.js.map +1 -0
  43. package/dist/jobs/workflows.d.ts +4 -1
  44. package/dist/jobs/workflows.d.ts.map +1 -1
  45. package/dist/jobs/workflows.js +18 -42
  46. package/dist/jobs/workflows.js.map +1 -1
  47. package/dist/memory/personal-context.d.ts +45 -0
  48. package/dist/memory/personal-context.d.ts.map +1 -0
  49. package/dist/memory/personal-context.js +103 -0
  50. package/dist/memory/personal-context.js.map +1 -0
  51. package/dist/runtime/confirm.d.ts +3 -0
  52. package/dist/runtime/confirm.d.ts.map +1 -1
  53. package/dist/runtime/confirm.js +38 -12
  54. package/dist/runtime/confirm.js.map +1 -1
  55. package/dist/runtime/progress.d.ts.map +1 -1
  56. package/dist/runtime/progress.js +3 -0
  57. package/dist/runtime/progress.js.map +1 -1
  58. package/dist/server.d.ts +2 -0
  59. package/dist/server.d.ts.map +1 -1
  60. package/dist/server.js +2 -0
  61. package/dist/server.js.map +1 -1
  62. package/dist/skills/loader.d.ts +14 -0
  63. package/dist/skills/loader.d.ts.map +1 -0
  64. package/dist/skills/loader.js +105 -0
  65. package/dist/skills/loader.js.map +1 -0
  66. package/dist/tools/cli-runner.d.ts +13 -0
  67. package/dist/tools/cli-runner.d.ts.map +1 -0
  68. package/dist/tools/cli-runner.js +75 -0
  69. package/dist/tools/cli-runner.js.map +1 -0
  70. package/dist/tools/computer-use.tool.d.ts +159 -0
  71. package/dist/tools/computer-use.tool.d.ts.map +1 -0
  72. package/dist/tools/computer-use.tool.js +356 -0
  73. package/dist/tools/computer-use.tool.js.map +1 -0
  74. package/dist/tools/desktop.tool.d.ts +70 -0
  75. package/dist/tools/desktop.tool.d.ts.map +1 -1
  76. package/dist/tools/desktop.tool.js +188 -0
  77. package/dist/tools/desktop.tool.js.map +1 -1
  78. package/dist/tools/filesystem.tool.d.ts +49 -0
  79. package/dist/tools/filesystem.tool.d.ts.map +1 -1
  80. package/dist/tools/filesystem.tool.js +97 -0
  81. package/dist/tools/filesystem.tool.js.map +1 -1
  82. package/dist/tools/orchestration.tool.d.ts +83 -0
  83. package/dist/tools/orchestration.tool.d.ts.map +1 -0
  84. package/dist/tools/orchestration.tool.js +154 -0
  85. package/dist/tools/orchestration.tool.js.map +1 -0
  86. package/dist/tools/osint-install.tool.d.ts +35 -0
  87. package/dist/tools/osint-install.tool.d.ts.map +1 -0
  88. package/dist/tools/osint-install.tool.js +334 -0
  89. package/dist/tools/osint-install.tool.js.map +1 -0
  90. package/dist/tools/osint.tool.d.ts +445 -0
  91. package/dist/tools/osint.tool.d.ts.map +1 -0
  92. package/dist/tools/osint.tool.js +630 -0
  93. package/dist/tools/osint.tool.js.map +1 -0
  94. package/dist/tools/pentest-install.tool.d.ts +32 -0
  95. package/dist/tools/pentest-install.tool.d.ts.map +1 -0
  96. package/dist/tools/pentest-install.tool.js +201 -0
  97. package/dist/tools/pentest-install.tool.js.map +1 -0
  98. package/dist/tools/pentest.tool.d.ts +595 -0
  99. package/dist/tools/pentest.tool.d.ts.map +1 -0
  100. package/dist/tools/pentest.tool.js +841 -0
  101. package/dist/tools/pentest.tool.js.map +1 -0
  102. package/dist/tools/personal-context.tool.d.ts +32 -0
  103. package/dist/tools/personal-context.tool.d.ts.map +1 -0
  104. package/dist/tools/personal-context.tool.js +76 -0
  105. package/dist/tools/personal-context.tool.js.map +1 -0
  106. package/dist/tools/shell.tool.d.ts +91 -0
  107. package/dist/tools/shell.tool.d.ts.map +1 -0
  108. package/dist/tools/shell.tool.js +332 -0
  109. package/dist/tools/shell.tool.js.map +1 -0
  110. package/dist/tools/skills.tool.d.ts +17 -0
  111. package/dist/tools/skills.tool.d.ts.map +1 -0
  112. package/dist/tools/skills.tool.js +44 -0
  113. package/dist/tools/skills.tool.js.map +1 -0
  114. package/dist/voice/cascade.d.ts.map +1 -1
  115. package/dist/voice/cascade.js +71 -24
  116. package/dist/voice/cascade.js.map +1 -1
  117. package/dist/voice/deepgram.d.ts.map +1 -1
  118. package/dist/voice/deepgram.js +8 -1
  119. package/dist/voice/deepgram.js.map +1 -1
  120. package/dist/voice/types.d.ts +4 -0
  121. package/dist/voice/types.d.ts.map +1 -1
  122. package/package.json +1 -1
@@ -0,0 +1,445 @@
1
+ export declare const usernameTools: {
2
+ /**
3
+ * Sherlock: sherlock [--timeout N] [--print-found] [--csv] [--xlsx]
4
+ * --folderoutput <dir> for multiple usernames
5
+ * --output <file> for a single username
6
+ * Docs: https://sherlockproject.xyz/usage
7
+ */
8
+ runSherlock: import("ai").Tool<{
9
+ username: string;
10
+ timeout: number;
11
+ csv: boolean;
12
+ xlsx: boolean;
13
+ printFoundOnly: boolean;
14
+ }, {
15
+ username: string;
16
+ found: string[];
17
+ foundCount: number;
18
+ outputFile: string;
19
+ raw: string;
20
+ }>;
21
+ /**
22
+ * Maigret: maigret <username> [--top-sites N] [-a] [--pdf] [--html] [--csv] [--json]
23
+ * --no-extracting skip metadata extraction
24
+ * --permute generate username variants
25
+ * Docs: https://github.com/soxoj/maigret
26
+ */
27
+ runMaigret: import("ai").Tool<{
28
+ username: string;
29
+ allSites: boolean;
30
+ permute: boolean;
31
+ format: "csv" | "json" | "pdf" | "html" | "txt";
32
+ tags?: string | undefined;
33
+ }, {
34
+ username: string;
35
+ outputDir: string;
36
+ format: "csv" | "json" | "pdf" | "html" | "txt";
37
+ raw: string;
38
+ }>;
39
+ /**
40
+ * Blackbird (p1ngul1n0): python3 blackbird.py -u <username> -e <email> [--pdf] [--csv]
41
+ * Docs: https://github.com/p1ngul1n0/blackbird
42
+ * Note: installed as `blackbird` CLI via pip install blackbird-osint
43
+ */
44
+ runBlackbird: import("ai").Tool<{
45
+ pdf: boolean;
46
+ csv: boolean;
47
+ username?: string | undefined;
48
+ email?: string | undefined;
49
+ }, {
50
+ username: string | undefined;
51
+ email: string | undefined;
52
+ outputFile: string;
53
+ raw: string;
54
+ }>;
55
+ /**
56
+ * Naminter: naminter <username>
57
+ * Uses TLS browser impersonation — bypasses Cloudflare bot detection
58
+ * Docs: https://github.com/soxoj/naminter
59
+ */
60
+ runNaminter: import("ai").Tool<{
61
+ username: string;
62
+ }, {
63
+ username: string;
64
+ outputFile: string;
65
+ raw: string;
66
+ }>;
67
+ /**
68
+ * Linkook: linkook --url <profile_url> [--depth N]
69
+ * Recursively scrapes linked profiles to find alternate usernames
70
+ * Docs: https://github.com/soxoj/linkook
71
+ */
72
+ runLinkook: import("ai").Tool<{
73
+ profileUrl: string;
74
+ depth: number;
75
+ }, {
76
+ profileUrl: string;
77
+ depth: number;
78
+ outputFile: string;
79
+ raw: string;
80
+ }>;
81
+ };
82
+ export declare const emailTools: {
83
+ /**
84
+ * Holehe: holehe [--only-used] [--no-color] <email>
85
+ * Output markers: [+] = found, [-] = not found, [x] = rate limit, [!] = error
86
+ * Docs: https://github.com/megadose/holehe
87
+ */
88
+ runHolehe: import("ai").Tool<{
89
+ email: string;
90
+ }, {
91
+ email: string;
92
+ found: string[];
93
+ foundCount: number;
94
+ rateLimited: string[];
95
+ outputFile: string;
96
+ raw: string;
97
+ }>;
98
+ /**
99
+ * Epieos: epieos <email> [--api-key KEY]
100
+ * Reverse email → Google ID, profile pic, Calendar events, Maps reviews
101
+ * Docs: https://epieos.com
102
+ */
103
+ runEpieos: import("ai").Tool<{
104
+ email: string;
105
+ apiKey?: string | undefined;
106
+ }, {
107
+ email: string;
108
+ outputFile: string;
109
+ raw: string;
110
+ }>;
111
+ };
112
+ export declare const phoneTools: {
113
+ /**
114
+ * PhoneInfoga: phoneinfoga scan -n <number> [--disable scanner1,scanner2]
115
+ * Scanners: local, numverify (needs NUMVERIFY_API_KEY), googlesearch, ovh
116
+ * Exact flag: -n or --number (not --number as a positional)
117
+ * Docs: https://sundowndev.github.io/phoneinfoga/getting-started/usage/
118
+ */
119
+ runPhoneInfoga: import("ai").Tool<{
120
+ phoneNumber: string;
121
+ disableScanners?: ("numverify" | "googlesearch" | "ovh")[] | undefined;
122
+ }, {
123
+ phoneNumber: string;
124
+ outputFile: string;
125
+ raw: string;
126
+ }>;
127
+ };
128
+ export declare const domainTools: {
129
+ /**
130
+ * theHarvester: theHarvester -d <domain> -b <sources> -l <limit> [-f <output>] [-v] [-c] [-n]
131
+ * Sources: google, bing, yahoo, duckduckgo, crtsh, dnsdumpster, hackertarget,
132
+ * hunter, securityTrails, shodan, virustotal, certspotter, github-code, linkedin, all
133
+ * -v verify hosts via DNS
134
+ * -c DNS brute force
135
+ * -n DNS reverse query on ranges
136
+ * Docs: https://github.com/laramies/theHarvester
137
+ */
138
+ runTheHarvester: import("ai").Tool<{
139
+ domain: string;
140
+ sources: ("google" | "baidu" | "bing" | "certspotter" | "crtsh" | "dnsdumpster" | "duckduckgo" | "github-code" | "hackertarget" | "hunter" | "linkedin" | "otx" | "securityTrails" | "shodan" | "urlscan" | "virustotal" | "yahoo" | "all")[];
141
+ limit: number;
142
+ verifyDns: boolean;
143
+ bruteForceDns: boolean;
144
+ }, {
145
+ domain: string;
146
+ emails: string[];
147
+ hosts: string[];
148
+ emailCount: number;
149
+ hostCount: number;
150
+ outputFiles: {
151
+ xml: string;
152
+ json: string;
153
+ };
154
+ raw: string;
155
+ }>;
156
+ /**
157
+ * SpiderFoot: python3 -m spiderfoot -s <target> -o json -R <output>
158
+ * Or spiderfoot CLI if installed globally
159
+ * Docs: https://github.com/smicallef/spiderfoot
160
+ */
161
+ runSpiderFoot: import("ai").Tool<{
162
+ target: string;
163
+ maxRuntime: number;
164
+ modules?: string[] | undefined;
165
+ }, {
166
+ target: string;
167
+ outputFile: string;
168
+ raw: string;
169
+ }>;
170
+ };
171
+ export declare const forensicsTools: {
172
+ /**
173
+ * ExifTool: exiftool [-json] [-csv] [-GPS*] <file>
174
+ * -json structured JSON output (one object per file)
175
+ * -GPS* extract only GPS fields
176
+ * -fast skip tail-of-file scan (faster on large files)
177
+ * Docs: https://exiftool.org
178
+ */
179
+ runExifTool: import("ai").Tool<{
180
+ filePath: string;
181
+ gpsOnly: boolean;
182
+ }, {
183
+ filePath: string;
184
+ metadata: Record<string, unknown> | null;
185
+ outputFile: string;
186
+ }>;
187
+ /**
188
+ * Shodan CLI: shodan host <ip> | shodan domain <domain> | shodan search <query>
189
+ * Requires SHODAN_API_KEY env var (free tier works for basic host lookups)
190
+ * Docs: https://cli.shodan.io
191
+ */
192
+ runShodan: import("ai").Tool<{
193
+ target: string;
194
+ type: "search" | "host" | "domain";
195
+ query?: string | undefined;
196
+ }, {
197
+ target: string;
198
+ type: "search" | "host" | "domain";
199
+ outputFile: string;
200
+ raw: string;
201
+ }>;
202
+ };
203
+ export declare const orchestrationTools: {
204
+ /**
205
+ * Master investigation entry point — chains the right tools based on what identifiers are known.
206
+ *
207
+ * Chain logic by depth:
208
+ * quick → Sherlock, Holehe, PhoneInfoga, theHarvester (fastest single-source per input type)
209
+ * standard → all quick + Blackbird, ExifTool
210
+ * deep → all standard + Maigret, Linkook, SpiderFoot (thorough, slow)
211
+ */
212
+ osintInvestigation: import("ai").Tool<{
213
+ depth: "quick" | "standard" | "deep";
214
+ username?: string | undefined;
215
+ email?: string | undefined;
216
+ phone?: string | undefined;
217
+ domain?: string | undefined;
218
+ filePath?: string | undefined;
219
+ profileUrl?: string | undefined;
220
+ }, {
221
+ identifiers: string[];
222
+ depth: "quick" | "standard" | "deep";
223
+ toolsRun: string[];
224
+ outputFile: string;
225
+ results: Record<string, unknown>;
226
+ }>;
227
+ };
228
+ export declare const osintTools: {
229
+ /**
230
+ * Master investigation entry point — chains the right tools based on what identifiers are known.
231
+ *
232
+ * Chain logic by depth:
233
+ * quick → Sherlock, Holehe, PhoneInfoga, theHarvester (fastest single-source per input type)
234
+ * standard → all quick + Blackbird, ExifTool
235
+ * deep → all standard + Maigret, Linkook, SpiderFoot (thorough, slow)
236
+ */
237
+ osintInvestigation: import("ai").Tool<{
238
+ depth: "quick" | "standard" | "deep";
239
+ username?: string | undefined;
240
+ email?: string | undefined;
241
+ phone?: string | undefined;
242
+ domain?: string | undefined;
243
+ filePath?: string | undefined;
244
+ profileUrl?: string | undefined;
245
+ }, {
246
+ identifiers: string[];
247
+ depth: "quick" | "standard" | "deep";
248
+ toolsRun: string[];
249
+ outputFile: string;
250
+ results: Record<string, unknown>;
251
+ }>;
252
+ /**
253
+ * ExifTool: exiftool [-json] [-csv] [-GPS*] <file>
254
+ * -json structured JSON output (one object per file)
255
+ * -GPS* extract only GPS fields
256
+ * -fast skip tail-of-file scan (faster on large files)
257
+ * Docs: https://exiftool.org
258
+ */
259
+ runExifTool: import("ai").Tool<{
260
+ filePath: string;
261
+ gpsOnly: boolean;
262
+ }, {
263
+ filePath: string;
264
+ metadata: Record<string, unknown> | null;
265
+ outputFile: string;
266
+ }>;
267
+ /**
268
+ * Shodan CLI: shodan host <ip> | shodan domain <domain> | shodan search <query>
269
+ * Requires SHODAN_API_KEY env var (free tier works for basic host lookups)
270
+ * Docs: https://cli.shodan.io
271
+ */
272
+ runShodan: import("ai").Tool<{
273
+ target: string;
274
+ type: "search" | "host" | "domain";
275
+ query?: string | undefined;
276
+ }, {
277
+ target: string;
278
+ type: "search" | "host" | "domain";
279
+ outputFile: string;
280
+ raw: string;
281
+ }>;
282
+ /**
283
+ * theHarvester: theHarvester -d <domain> -b <sources> -l <limit> [-f <output>] [-v] [-c] [-n]
284
+ * Sources: google, bing, yahoo, duckduckgo, crtsh, dnsdumpster, hackertarget,
285
+ * hunter, securityTrails, shodan, virustotal, certspotter, github-code, linkedin, all
286
+ * -v verify hosts via DNS
287
+ * -c DNS brute force
288
+ * -n DNS reverse query on ranges
289
+ * Docs: https://github.com/laramies/theHarvester
290
+ */
291
+ runTheHarvester: import("ai").Tool<{
292
+ domain: string;
293
+ sources: ("google" | "baidu" | "bing" | "certspotter" | "crtsh" | "dnsdumpster" | "duckduckgo" | "github-code" | "hackertarget" | "hunter" | "linkedin" | "otx" | "securityTrails" | "shodan" | "urlscan" | "virustotal" | "yahoo" | "all")[];
294
+ limit: number;
295
+ verifyDns: boolean;
296
+ bruteForceDns: boolean;
297
+ }, {
298
+ domain: string;
299
+ emails: string[];
300
+ hosts: string[];
301
+ emailCount: number;
302
+ hostCount: number;
303
+ outputFiles: {
304
+ xml: string;
305
+ json: string;
306
+ };
307
+ raw: string;
308
+ }>;
309
+ /**
310
+ * SpiderFoot: python3 -m spiderfoot -s <target> -o json -R <output>
311
+ * Or spiderfoot CLI if installed globally
312
+ * Docs: https://github.com/smicallef/spiderfoot
313
+ */
314
+ runSpiderFoot: import("ai").Tool<{
315
+ target: string;
316
+ maxRuntime: number;
317
+ modules?: string[] | undefined;
318
+ }, {
319
+ target: string;
320
+ outputFile: string;
321
+ raw: string;
322
+ }>;
323
+ /**
324
+ * PhoneInfoga: phoneinfoga scan -n <number> [--disable scanner1,scanner2]
325
+ * Scanners: local, numverify (needs NUMVERIFY_API_KEY), googlesearch, ovh
326
+ * Exact flag: -n or --number (not --number as a positional)
327
+ * Docs: https://sundowndev.github.io/phoneinfoga/getting-started/usage/
328
+ */
329
+ runPhoneInfoga: import("ai").Tool<{
330
+ phoneNumber: string;
331
+ disableScanners?: ("numverify" | "googlesearch" | "ovh")[] | undefined;
332
+ }, {
333
+ phoneNumber: string;
334
+ outputFile: string;
335
+ raw: string;
336
+ }>;
337
+ /**
338
+ * Holehe: holehe [--only-used] [--no-color] <email>
339
+ * Output markers: [+] = found, [-] = not found, [x] = rate limit, [!] = error
340
+ * Docs: https://github.com/megadose/holehe
341
+ */
342
+ runHolehe: import("ai").Tool<{
343
+ email: string;
344
+ }, {
345
+ email: string;
346
+ found: string[];
347
+ foundCount: number;
348
+ rateLimited: string[];
349
+ outputFile: string;
350
+ raw: string;
351
+ }>;
352
+ /**
353
+ * Epieos: epieos <email> [--api-key KEY]
354
+ * Reverse email → Google ID, profile pic, Calendar events, Maps reviews
355
+ * Docs: https://epieos.com
356
+ */
357
+ runEpieos: import("ai").Tool<{
358
+ email: string;
359
+ apiKey?: string | undefined;
360
+ }, {
361
+ email: string;
362
+ outputFile: string;
363
+ raw: string;
364
+ }>;
365
+ /**
366
+ * Sherlock: sherlock [--timeout N] [--print-found] [--csv] [--xlsx]
367
+ * --folderoutput <dir> for multiple usernames
368
+ * --output <file> for a single username
369
+ * Docs: https://sherlockproject.xyz/usage
370
+ */
371
+ runSherlock: import("ai").Tool<{
372
+ username: string;
373
+ timeout: number;
374
+ csv: boolean;
375
+ xlsx: boolean;
376
+ printFoundOnly: boolean;
377
+ }, {
378
+ username: string;
379
+ found: string[];
380
+ foundCount: number;
381
+ outputFile: string;
382
+ raw: string;
383
+ }>;
384
+ /**
385
+ * Maigret: maigret <username> [--top-sites N] [-a] [--pdf] [--html] [--csv] [--json]
386
+ * --no-extracting skip metadata extraction
387
+ * --permute generate username variants
388
+ * Docs: https://github.com/soxoj/maigret
389
+ */
390
+ runMaigret: import("ai").Tool<{
391
+ username: string;
392
+ allSites: boolean;
393
+ permute: boolean;
394
+ format: "csv" | "json" | "pdf" | "html" | "txt";
395
+ tags?: string | undefined;
396
+ }, {
397
+ username: string;
398
+ outputDir: string;
399
+ format: "csv" | "json" | "pdf" | "html" | "txt";
400
+ raw: string;
401
+ }>;
402
+ /**
403
+ * Blackbird (p1ngul1n0): python3 blackbird.py -u <username> -e <email> [--pdf] [--csv]
404
+ * Docs: https://github.com/p1ngul1n0/blackbird
405
+ * Note: installed as `blackbird` CLI via pip install blackbird-osint
406
+ */
407
+ runBlackbird: import("ai").Tool<{
408
+ pdf: boolean;
409
+ csv: boolean;
410
+ username?: string | undefined;
411
+ email?: string | undefined;
412
+ }, {
413
+ username: string | undefined;
414
+ email: string | undefined;
415
+ outputFile: string;
416
+ raw: string;
417
+ }>;
418
+ /**
419
+ * Naminter: naminter <username>
420
+ * Uses TLS browser impersonation — bypasses Cloudflare bot detection
421
+ * Docs: https://github.com/soxoj/naminter
422
+ */
423
+ runNaminter: import("ai").Tool<{
424
+ username: string;
425
+ }, {
426
+ username: string;
427
+ outputFile: string;
428
+ raw: string;
429
+ }>;
430
+ /**
431
+ * Linkook: linkook --url <profile_url> [--depth N]
432
+ * Recursively scrapes linked profiles to find alternate usernames
433
+ * Docs: https://github.com/soxoj/linkook
434
+ */
435
+ runLinkook: import("ai").Tool<{
436
+ profileUrl: string;
437
+ depth: number;
438
+ }, {
439
+ profileUrl: string;
440
+ depth: number;
441
+ outputFile: string;
442
+ raw: string;
443
+ }>;
444
+ };
445
+ //# sourceMappingURL=osint.tool.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"osint.tool.d.ts","sourceRoot":"","sources":["../../src/tools/osint.tool.ts"],"names":[],"mappings":"AAuDA,eAAO,MAAM,aAAa;IACxB;;;;;OAKG;;;;;;;;;;;;;;IAwCH;;;;;OAKG;;;;;;;;;;;;;IAyCH;;;;OAIG;;;;;;;;;;;;IAsCH;;;;OAIG;;;;;;;;IAsBH;;;;OAIG;;;;;;;;;;CAwBJ,CAAC;AAIF,eAAO,MAAM,UAAU;IACrB;;;;OAIG;;;;;;;;;;;IAiCH;;;;OAIG;;;;;;;;;CAwBJ,CAAC;AAIF,eAAO,MAAM,UAAU;IACrB;;;;;OAKG;;;;;;;;;CAmCJ,CAAC;AAIF,eAAO,MAAM,WAAW;IACtB;;;;;;;;OAQG;;;;;;;;;;;;;;;;;;;IAqEH;;;;OAIG;;;;;;;;;;CAiCJ,CAAC;AAIF,eAAO,MAAM,cAAc;IACzB;;;;;;OAMG;;;;;;;;;IAqCH;;;;OAIG;;;;;;;;;;;CA2CJ,CAAC;AAIF,eAAO,MAAM,kBAAkB;IAC7B;;;;;;;OAOG;;;;;;;;;;;;;;;;CA0GJ,CAAC;AAIF,eAAO,MAAM,UAAU;IArHrB;;;;;;;OAOG;;;;;;;;;;;;;;;;IAtGH;;;;;;OAMG;;;;;;;;;IAqCH;;;;OAIG;;;;;;;;;;;IAtKH;;;;;;;;OAQG;;;;;;;;;;;;;;;;;;;IAqEH;;;;OAIG;;;;;;;;;;IA9HH;;;;;OAKG;;;;;;;;;IA3EH;;;;OAIG;;;;;;;;;;;IAiCH;;;;OAIG;;;;;;;;;IAzOH;;;;;OAKG;;;;;;;;;;;;;;IAwCH;;;;;OAKG;;;;;;;;;;;;;IAyCH;;;;OAIG;;;;;;;;;;;;IAsCH;;;;OAIG;;;;;;;;IAsBH;;;;OAIG;;;;;;;;;;CAkeJ,CAAC"}