@tpmjs/cli 0.1.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 (97) hide show
  1. package/README.md +127 -0
  2. package/bin/run.js +5 -0
  3. package/dist/commands/agent/chat.d.ts +23 -0
  4. package/dist/commands/agent/chat.js +608 -0
  5. package/dist/commands/agent/chat.js.map +1 -0
  6. package/dist/commands/agent/create.d.ts +22 -0
  7. package/dist/commands/agent/create.js +549 -0
  8. package/dist/commands/agent/create.js.map +1 -0
  9. package/dist/commands/agent/delete.d.ts +19 -0
  10. package/dist/commands/agent/delete.js +529 -0
  11. package/dist/commands/agent/delete.js.map +1 -0
  12. package/dist/commands/agent/list.d.ts +16 -0
  13. package/dist/commands/agent/list.js +535 -0
  14. package/dist/commands/agent/list.js.map +1 -0
  15. package/dist/commands/agent/update.d.ts +25 -0
  16. package/dist/commands/agent/update.js +547 -0
  17. package/dist/commands/agent/update.js.map +1 -0
  18. package/dist/commands/auth/login.d.ts +21 -0
  19. package/dist/commands/auth/login.js +603 -0
  20. package/dist/commands/auth/login.js.map +1 -0
  21. package/dist/commands/auth/logout.d.ts +13 -0
  22. package/dist/commands/auth/logout.js +227 -0
  23. package/dist/commands/auth/logout.js.map +1 -0
  24. package/dist/commands/auth/status.d.ts +14 -0
  25. package/dist/commands/auth/status.js +542 -0
  26. package/dist/commands/auth/status.js.map +1 -0
  27. package/dist/commands/auth/whoami.d.ts +14 -0
  28. package/dist/commands/auth/whoami.js +500 -0
  29. package/dist/commands/auth/whoami.js.map +1 -0
  30. package/dist/commands/collection/add.d.ts +18 -0
  31. package/dist/commands/collection/add.js +509 -0
  32. package/dist/commands/collection/add.js.map +1 -0
  33. package/dist/commands/collection/create.d.ts +17 -0
  34. package/dist/commands/collection/create.js +521 -0
  35. package/dist/commands/collection/create.js.map +1 -0
  36. package/dist/commands/collection/delete.d.ts +19 -0
  37. package/dist/commands/collection/delete.js +531 -0
  38. package/dist/commands/collection/delete.js.map +1 -0
  39. package/dist/commands/collection/import.d.ts +18 -0
  40. package/dist/commands/collection/import.js +546 -0
  41. package/dist/commands/collection/import.js.map +1 -0
  42. package/dist/commands/collection/list.d.ts +16 -0
  43. package/dist/commands/collection/list.js +531 -0
  44. package/dist/commands/collection/list.js.map +1 -0
  45. package/dist/commands/collection/remove.d.ts +18 -0
  46. package/dist/commands/collection/remove.js +501 -0
  47. package/dist/commands/collection/remove.js.map +1 -0
  48. package/dist/commands/collection/update.d.ts +20 -0
  49. package/dist/commands/collection/update.js +522 -0
  50. package/dist/commands/collection/update.js.map +1 -0
  51. package/dist/commands/doctor.d.ts +14 -0
  52. package/dist/commands/doctor.js +592 -0
  53. package/dist/commands/doctor.js.map +1 -0
  54. package/dist/commands/mcp/config.d.ts +19 -0
  55. package/dist/commands/mcp/config.js +265 -0
  56. package/dist/commands/mcp/config.js.map +1 -0
  57. package/dist/commands/mcp/serve.d.ts +23 -0
  58. package/dist/commands/mcp/serve.js +689 -0
  59. package/dist/commands/mcp/serve.js.map +1 -0
  60. package/dist/commands/playground.d.ts +23 -0
  61. package/dist/commands/playground.js +666 -0
  62. package/dist/commands/playground.js.map +1 -0
  63. package/dist/commands/publish/check.d.ts +17 -0
  64. package/dist/commands/publish/check.js +544 -0
  65. package/dist/commands/publish/check.js.map +1 -0
  66. package/dist/commands/publish/preview.d.ts +19 -0
  67. package/dist/commands/publish/preview.js +291 -0
  68. package/dist/commands/publish/preview.js.map +1 -0
  69. package/dist/commands/tool/execute.d.ts +21 -0
  70. package/dist/commands/tool/execute.js +574 -0
  71. package/dist/commands/tool/execute.js.map +1 -0
  72. package/dist/commands/tool/info.d.ts +18 -0
  73. package/dist/commands/tool/info.js +537 -0
  74. package/dist/commands/tool/info.js.map +1 -0
  75. package/dist/commands/tool/init.d.ts +24 -0
  76. package/dist/commands/tool/init.js +461 -0
  77. package/dist/commands/tool/init.js.map +1 -0
  78. package/dist/commands/tool/search.d.ts +20 -0
  79. package/dist/commands/tool/search.js +566 -0
  80. package/dist/commands/tool/search.js.map +1 -0
  81. package/dist/commands/tool/trending.d.ts +15 -0
  82. package/dist/commands/tool/trending.js +523 -0
  83. package/dist/commands/tool/trending.js.map +1 -0
  84. package/dist/commands/tool/validate.d.ts +15 -0
  85. package/dist/commands/tool/validate.js +555 -0
  86. package/dist/commands/tool/validate.js.map +1 -0
  87. package/dist/commands/update.d.ts +15 -0
  88. package/dist/commands/update.js +228 -0
  89. package/dist/commands/update.js.map +1 -0
  90. package/dist/hooks/init.d.ts +5 -0
  91. package/dist/hooks/init.js +8 -0
  92. package/dist/hooks/init.js.map +1 -0
  93. package/dist/index.d.ts +262 -0
  94. package/dist/index.js +473 -0
  95. package/dist/index.js.map +1 -0
  96. package/oclif.manifest.json +1699 -0
  97. package/package.json +104 -0
@@ -0,0 +1,1699 @@
1
+ {
2
+ "commands": {
3
+ "doctor": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "Run diagnostic checks for TPMJS CLI",
7
+ "examples": [
8
+ "<%= config.bin %> <%= command.id %>"
9
+ ],
10
+ "flags": {
11
+ "json": {
12
+ "description": "Output in JSON format",
13
+ "name": "json",
14
+ "allowNo": false,
15
+ "type": "boolean"
16
+ },
17
+ "verbose": {
18
+ "char": "v",
19
+ "description": "Show verbose output",
20
+ "name": "verbose",
21
+ "allowNo": false,
22
+ "type": "boolean"
23
+ }
24
+ },
25
+ "hasDynamicHelp": false,
26
+ "hiddenAliases": [],
27
+ "id": "doctor",
28
+ "pluginAlias": "@tpmjs/cli",
29
+ "pluginName": "@tpmjs/cli",
30
+ "pluginType": "core",
31
+ "strict": true,
32
+ "enableJsonFlag": false,
33
+ "isESM": true,
34
+ "relativePath": [
35
+ "dist",
36
+ "commands",
37
+ "doctor.js"
38
+ ]
39
+ },
40
+ "playground": {
41
+ "aliases": [],
42
+ "args": {},
43
+ "description": "Interactive playground for testing tools",
44
+ "examples": [
45
+ "<%= config.bin %> <%= command.id %>",
46
+ "<%= config.bin %> <%= command.id %> --tool firecrawl-scrape",
47
+ "<%= config.bin %> <%= command.id %> --web"
48
+ ],
49
+ "flags": {
50
+ "tool": {
51
+ "char": "t",
52
+ "description": "Start with a specific tool selected",
53
+ "name": "tool",
54
+ "hasDynamicHelp": false,
55
+ "multiple": false,
56
+ "type": "option"
57
+ },
58
+ "web": {
59
+ "char": "w",
60
+ "description": "Open the web playground instead",
61
+ "name": "web",
62
+ "allowNo": false,
63
+ "type": "boolean"
64
+ },
65
+ "verbose": {
66
+ "char": "v",
67
+ "description": "Show verbose output",
68
+ "name": "verbose",
69
+ "allowNo": false,
70
+ "type": "boolean"
71
+ }
72
+ },
73
+ "hasDynamicHelp": false,
74
+ "hiddenAliases": [],
75
+ "id": "playground",
76
+ "pluginAlias": "@tpmjs/cli",
77
+ "pluginName": "@tpmjs/cli",
78
+ "pluginType": "core",
79
+ "strict": true,
80
+ "enableJsonFlag": false,
81
+ "isESM": true,
82
+ "relativePath": [
83
+ "dist",
84
+ "commands",
85
+ "playground.js"
86
+ ]
87
+ },
88
+ "update": {
89
+ "aliases": [],
90
+ "args": {},
91
+ "description": "Update the TPMJS CLI to the latest version",
92
+ "examples": [
93
+ "<%= config.bin %> <%= command.id %>"
94
+ ],
95
+ "flags": {
96
+ "json": {
97
+ "description": "Output in JSON format",
98
+ "name": "json",
99
+ "allowNo": false,
100
+ "type": "boolean"
101
+ },
102
+ "verbose": {
103
+ "char": "v",
104
+ "description": "Show verbose output",
105
+ "name": "verbose",
106
+ "allowNo": false,
107
+ "type": "boolean"
108
+ },
109
+ "check": {
110
+ "description": "Only check for updates, do not install",
111
+ "name": "check",
112
+ "allowNo": false,
113
+ "type": "boolean"
114
+ }
115
+ },
116
+ "hasDynamicHelp": false,
117
+ "hiddenAliases": [],
118
+ "id": "update",
119
+ "pluginAlias": "@tpmjs/cli",
120
+ "pluginName": "@tpmjs/cli",
121
+ "pluginType": "core",
122
+ "strict": true,
123
+ "enableJsonFlag": false,
124
+ "isESM": true,
125
+ "relativePath": [
126
+ "dist",
127
+ "commands",
128
+ "update.js"
129
+ ]
130
+ },
131
+ "agent:chat": {
132
+ "aliases": [],
133
+ "args": {
134
+ "agent": {
135
+ "description": "Agent ID or UID",
136
+ "name": "agent",
137
+ "required": true
138
+ },
139
+ "message": {
140
+ "description": "Message to send (required unless --interactive)",
141
+ "name": "message"
142
+ }
143
+ },
144
+ "description": "Chat with an agent",
145
+ "examples": [
146
+ "<%= config.bin %> <%= command.id %> my-agent \"Hello!\"",
147
+ "<%= config.bin %> <%= command.id %> my-agent --interactive",
148
+ "<%= config.bin %> <%= command.id %> my-agent -i"
149
+ ],
150
+ "flags": {
151
+ "interactive": {
152
+ "char": "i",
153
+ "description": "Enter interactive chat mode (REPL)",
154
+ "name": "interactive",
155
+ "allowNo": false,
156
+ "type": "boolean"
157
+ },
158
+ "conversation": {
159
+ "char": "c",
160
+ "description": "Continue existing conversation by ID",
161
+ "name": "conversation",
162
+ "hasDynamicHelp": false,
163
+ "multiple": false,
164
+ "type": "option"
165
+ },
166
+ "json": {
167
+ "description": "Output in JSON format",
168
+ "name": "json",
169
+ "allowNo": false,
170
+ "type": "boolean"
171
+ },
172
+ "verbose": {
173
+ "char": "v",
174
+ "description": "Show verbose output",
175
+ "name": "verbose",
176
+ "allowNo": false,
177
+ "type": "boolean"
178
+ }
179
+ },
180
+ "hasDynamicHelp": false,
181
+ "hiddenAliases": [],
182
+ "id": "agent:chat",
183
+ "pluginAlias": "@tpmjs/cli",
184
+ "pluginName": "@tpmjs/cli",
185
+ "pluginType": "core",
186
+ "strict": true,
187
+ "enableJsonFlag": false,
188
+ "isESM": true,
189
+ "relativePath": [
190
+ "dist",
191
+ "commands",
192
+ "agent",
193
+ "chat.js"
194
+ ]
195
+ },
196
+ "agent:create": {
197
+ "aliases": [],
198
+ "args": {},
199
+ "description": "Create a new agent",
200
+ "examples": [
201
+ "<%= config.bin %> <%= command.id %> --name \"My Agent\" --provider ANTHROPIC --model claude-3-5-sonnet-20241022",
202
+ "<%= config.bin %> <%= command.id %> --name \"GPT Agent\" --provider OPENAI --model gpt-4o --public"
203
+ ],
204
+ "flags": {
205
+ "name": {
206
+ "char": "n",
207
+ "description": "Agent name",
208
+ "name": "name",
209
+ "required": true,
210
+ "hasDynamicHelp": false,
211
+ "multiple": false,
212
+ "type": "option"
213
+ },
214
+ "uid": {
215
+ "description": "Unique identifier (URL-friendly)",
216
+ "name": "uid",
217
+ "hasDynamicHelp": false,
218
+ "multiple": false,
219
+ "type": "option"
220
+ },
221
+ "description": {
222
+ "char": "d",
223
+ "description": "Agent description",
224
+ "name": "description",
225
+ "hasDynamicHelp": false,
226
+ "multiple": false,
227
+ "type": "option"
228
+ },
229
+ "provider": {
230
+ "char": "p",
231
+ "description": "AI provider (ANTHROPIC, OPENAI, GOOGLE, GROQ, MISTRAL)",
232
+ "name": "provider",
233
+ "required": true,
234
+ "hasDynamicHelp": false,
235
+ "multiple": false,
236
+ "options": [
237
+ "ANTHROPIC",
238
+ "OPENAI",
239
+ "GOOGLE",
240
+ "GROQ",
241
+ "MISTRAL"
242
+ ],
243
+ "type": "option"
244
+ },
245
+ "model": {
246
+ "char": "m",
247
+ "description": "Model ID",
248
+ "name": "model",
249
+ "required": true,
250
+ "hasDynamicHelp": false,
251
+ "multiple": false,
252
+ "type": "option"
253
+ },
254
+ "system-prompt": {
255
+ "char": "s",
256
+ "description": "System prompt",
257
+ "name": "system-prompt",
258
+ "hasDynamicHelp": false,
259
+ "multiple": false,
260
+ "type": "option"
261
+ },
262
+ "temperature": {
263
+ "char": "t",
264
+ "description": "Temperature (0-2)",
265
+ "name": "temperature",
266
+ "default": "0.7",
267
+ "hasDynamicHelp": false,
268
+ "multiple": false,
269
+ "type": "option"
270
+ },
271
+ "public": {
272
+ "description": "Make agent public",
273
+ "name": "public",
274
+ "allowNo": false,
275
+ "type": "boolean"
276
+ },
277
+ "json": {
278
+ "description": "Output in JSON format",
279
+ "name": "json",
280
+ "allowNo": false,
281
+ "type": "boolean"
282
+ },
283
+ "verbose": {
284
+ "char": "v",
285
+ "description": "Show verbose output",
286
+ "name": "verbose",
287
+ "allowNo": false,
288
+ "type": "boolean"
289
+ }
290
+ },
291
+ "hasDynamicHelp": false,
292
+ "hiddenAliases": [],
293
+ "id": "agent:create",
294
+ "pluginAlias": "@tpmjs/cli",
295
+ "pluginName": "@tpmjs/cli",
296
+ "pluginType": "core",
297
+ "strict": true,
298
+ "enableJsonFlag": false,
299
+ "isESM": true,
300
+ "relativePath": [
301
+ "dist",
302
+ "commands",
303
+ "agent",
304
+ "create.js"
305
+ ]
306
+ },
307
+ "agent:delete": {
308
+ "aliases": [],
309
+ "args": {
310
+ "id": {
311
+ "description": "Agent ID or UID",
312
+ "name": "id",
313
+ "required": true
314
+ }
315
+ },
316
+ "description": "Delete an agent",
317
+ "examples": [
318
+ "<%= config.bin %> <%= command.id %> my-agent",
319
+ "<%= config.bin %> <%= command.id %> my-agent --force"
320
+ ],
321
+ "flags": {
322
+ "force": {
323
+ "char": "f",
324
+ "description": "Skip confirmation prompt",
325
+ "name": "force",
326
+ "allowNo": false,
327
+ "type": "boolean"
328
+ },
329
+ "json": {
330
+ "description": "Output in JSON format",
331
+ "name": "json",
332
+ "allowNo": false,
333
+ "type": "boolean"
334
+ },
335
+ "verbose": {
336
+ "char": "v",
337
+ "description": "Show verbose output",
338
+ "name": "verbose",
339
+ "allowNo": false,
340
+ "type": "boolean"
341
+ }
342
+ },
343
+ "hasDynamicHelp": false,
344
+ "hiddenAliases": [],
345
+ "id": "agent:delete",
346
+ "pluginAlias": "@tpmjs/cli",
347
+ "pluginName": "@tpmjs/cli",
348
+ "pluginType": "core",
349
+ "strict": true,
350
+ "enableJsonFlag": false,
351
+ "isESM": true,
352
+ "relativePath": [
353
+ "dist",
354
+ "commands",
355
+ "agent",
356
+ "delete.js"
357
+ ]
358
+ },
359
+ "agent:list": {
360
+ "aliases": [],
361
+ "args": {},
362
+ "description": "List your agents",
363
+ "examples": [
364
+ "<%= config.bin %> <%= command.id %>",
365
+ "<%= config.bin %> <%= command.id %> --limit 10"
366
+ ],
367
+ "flags": {
368
+ "limit": {
369
+ "char": "l",
370
+ "description": "Maximum number of results",
371
+ "name": "limit",
372
+ "default": 20,
373
+ "hasDynamicHelp": false,
374
+ "multiple": false,
375
+ "type": "option"
376
+ },
377
+ "offset": {
378
+ "char": "o",
379
+ "description": "Offset for pagination",
380
+ "name": "offset",
381
+ "default": 0,
382
+ "hasDynamicHelp": false,
383
+ "multiple": false,
384
+ "type": "option"
385
+ },
386
+ "json": {
387
+ "description": "Output in JSON format",
388
+ "name": "json",
389
+ "allowNo": false,
390
+ "type": "boolean"
391
+ },
392
+ "verbose": {
393
+ "char": "v",
394
+ "description": "Show verbose output",
395
+ "name": "verbose",
396
+ "allowNo": false,
397
+ "type": "boolean"
398
+ }
399
+ },
400
+ "hasDynamicHelp": false,
401
+ "hiddenAliases": [],
402
+ "id": "agent:list",
403
+ "pluginAlias": "@tpmjs/cli",
404
+ "pluginName": "@tpmjs/cli",
405
+ "pluginType": "core",
406
+ "strict": true,
407
+ "enableJsonFlag": false,
408
+ "isESM": true,
409
+ "relativePath": [
410
+ "dist",
411
+ "commands",
412
+ "agent",
413
+ "list.js"
414
+ ]
415
+ },
416
+ "agent:update": {
417
+ "aliases": [],
418
+ "args": {
419
+ "id": {
420
+ "description": "Agent ID or UID",
421
+ "name": "id",
422
+ "required": true
423
+ }
424
+ },
425
+ "description": "Update an agent",
426
+ "examples": [
427
+ "<%= config.bin %> <%= command.id %> my-agent --name \"New Name\"",
428
+ "<%= config.bin %> <%= command.id %> my-agent --temperature 0.5 --public false"
429
+ ],
430
+ "flags": {
431
+ "name": {
432
+ "char": "n",
433
+ "description": "Agent name",
434
+ "name": "name",
435
+ "hasDynamicHelp": false,
436
+ "multiple": false,
437
+ "type": "option"
438
+ },
439
+ "uid": {
440
+ "description": "Unique identifier (URL-friendly)",
441
+ "name": "uid",
442
+ "hasDynamicHelp": false,
443
+ "multiple": false,
444
+ "type": "option"
445
+ },
446
+ "description": {
447
+ "char": "d",
448
+ "description": "Agent description",
449
+ "name": "description",
450
+ "hasDynamicHelp": false,
451
+ "multiple": false,
452
+ "type": "option"
453
+ },
454
+ "provider": {
455
+ "char": "p",
456
+ "description": "AI provider",
457
+ "name": "provider",
458
+ "hasDynamicHelp": false,
459
+ "multiple": false,
460
+ "options": [
461
+ "ANTHROPIC",
462
+ "OPENAI",
463
+ "GOOGLE",
464
+ "GROQ",
465
+ "MISTRAL"
466
+ ],
467
+ "type": "option"
468
+ },
469
+ "model": {
470
+ "char": "m",
471
+ "description": "Model ID",
472
+ "name": "model",
473
+ "hasDynamicHelp": false,
474
+ "multiple": false,
475
+ "type": "option"
476
+ },
477
+ "system-prompt": {
478
+ "char": "s",
479
+ "description": "System prompt",
480
+ "name": "system-prompt",
481
+ "hasDynamicHelp": false,
482
+ "multiple": false,
483
+ "type": "option"
484
+ },
485
+ "temperature": {
486
+ "char": "t",
487
+ "description": "Temperature (0-2)",
488
+ "name": "temperature",
489
+ "hasDynamicHelp": false,
490
+ "multiple": false,
491
+ "type": "option"
492
+ },
493
+ "public": {
494
+ "description": "Make agent public",
495
+ "name": "public",
496
+ "allowNo": true,
497
+ "type": "boolean"
498
+ },
499
+ "json": {
500
+ "description": "Output in JSON format",
501
+ "name": "json",
502
+ "allowNo": false,
503
+ "type": "boolean"
504
+ },
505
+ "verbose": {
506
+ "char": "v",
507
+ "description": "Show verbose output",
508
+ "name": "verbose",
509
+ "allowNo": false,
510
+ "type": "boolean"
511
+ }
512
+ },
513
+ "hasDynamicHelp": false,
514
+ "hiddenAliases": [],
515
+ "id": "agent:update",
516
+ "pluginAlias": "@tpmjs/cli",
517
+ "pluginName": "@tpmjs/cli",
518
+ "pluginType": "core",
519
+ "strict": true,
520
+ "enableJsonFlag": false,
521
+ "isESM": true,
522
+ "relativePath": [
523
+ "dist",
524
+ "commands",
525
+ "agent",
526
+ "update.js"
527
+ ]
528
+ },
529
+ "auth:login": {
530
+ "aliases": [],
531
+ "args": {
532
+ "key": {
533
+ "description": "API key (alternative to --api-key flag)",
534
+ "name": "key",
535
+ "required": false
536
+ }
537
+ },
538
+ "description": "Authenticate with TPMJS",
539
+ "examples": [
540
+ "<%= config.bin %> <%= command.id %> --api-key tpm_xxxxx",
541
+ "<%= config.bin %> <%= command.id %> --browser"
542
+ ],
543
+ "flags": {
544
+ "api-key": {
545
+ "char": "k",
546
+ "description": "API key (or set TPMJS_API_KEY environment variable)",
547
+ "name": "api-key",
548
+ "hasDynamicHelp": false,
549
+ "multiple": false,
550
+ "type": "option"
551
+ },
552
+ "browser": {
553
+ "char": "b",
554
+ "description": "Open browser for OAuth authentication",
555
+ "name": "browser",
556
+ "allowNo": false,
557
+ "type": "boolean"
558
+ },
559
+ "json": {
560
+ "description": "Output in JSON format",
561
+ "name": "json",
562
+ "allowNo": false,
563
+ "type": "boolean"
564
+ },
565
+ "verbose": {
566
+ "char": "v",
567
+ "description": "Show verbose output",
568
+ "name": "verbose",
569
+ "allowNo": false,
570
+ "type": "boolean"
571
+ }
572
+ },
573
+ "hasDynamicHelp": false,
574
+ "hiddenAliases": [],
575
+ "id": "auth:login",
576
+ "pluginAlias": "@tpmjs/cli",
577
+ "pluginName": "@tpmjs/cli",
578
+ "pluginType": "core",
579
+ "strict": true,
580
+ "enableJsonFlag": false,
581
+ "isESM": true,
582
+ "relativePath": [
583
+ "dist",
584
+ "commands",
585
+ "auth",
586
+ "login.js"
587
+ ]
588
+ },
589
+ "auth:logout": {
590
+ "aliases": [],
591
+ "args": {},
592
+ "description": "Log out from TPMJS",
593
+ "examples": [
594
+ "<%= config.bin %> <%= command.id %>"
595
+ ],
596
+ "flags": {
597
+ "json": {
598
+ "description": "Output in JSON format",
599
+ "name": "json",
600
+ "allowNo": false,
601
+ "type": "boolean"
602
+ }
603
+ },
604
+ "hasDynamicHelp": false,
605
+ "hiddenAliases": [],
606
+ "id": "auth:logout",
607
+ "pluginAlias": "@tpmjs/cli",
608
+ "pluginName": "@tpmjs/cli",
609
+ "pluginType": "core",
610
+ "strict": true,
611
+ "enableJsonFlag": false,
612
+ "isESM": true,
613
+ "relativePath": [
614
+ "dist",
615
+ "commands",
616
+ "auth",
617
+ "logout.js"
618
+ ]
619
+ },
620
+ "auth:status": {
621
+ "aliases": [],
622
+ "args": {},
623
+ "description": "Show authentication status",
624
+ "examples": [
625
+ "<%= config.bin %> <%= command.id %>"
626
+ ],
627
+ "flags": {
628
+ "json": {
629
+ "description": "Output in JSON format",
630
+ "name": "json",
631
+ "allowNo": false,
632
+ "type": "boolean"
633
+ },
634
+ "verbose": {
635
+ "char": "v",
636
+ "description": "Show verbose output",
637
+ "name": "verbose",
638
+ "allowNo": false,
639
+ "type": "boolean"
640
+ }
641
+ },
642
+ "hasDynamicHelp": false,
643
+ "hiddenAliases": [],
644
+ "id": "auth:status",
645
+ "pluginAlias": "@tpmjs/cli",
646
+ "pluginName": "@tpmjs/cli",
647
+ "pluginType": "core",
648
+ "strict": true,
649
+ "enableJsonFlag": false,
650
+ "isESM": true,
651
+ "relativePath": [
652
+ "dist",
653
+ "commands",
654
+ "auth",
655
+ "status.js"
656
+ ]
657
+ },
658
+ "auth:whoami": {
659
+ "aliases": [],
660
+ "args": {},
661
+ "description": "Show current user information",
662
+ "examples": [
663
+ "<%= config.bin %> <%= command.id %>"
664
+ ],
665
+ "flags": {
666
+ "json": {
667
+ "description": "Output in JSON format",
668
+ "name": "json",
669
+ "allowNo": false,
670
+ "type": "boolean"
671
+ },
672
+ "verbose": {
673
+ "char": "v",
674
+ "description": "Show verbose output",
675
+ "name": "verbose",
676
+ "allowNo": false,
677
+ "type": "boolean"
678
+ }
679
+ },
680
+ "hasDynamicHelp": false,
681
+ "hiddenAliases": [],
682
+ "id": "auth:whoami",
683
+ "pluginAlias": "@tpmjs/cli",
684
+ "pluginName": "@tpmjs/cli",
685
+ "pluginType": "core",
686
+ "strict": true,
687
+ "enableJsonFlag": false,
688
+ "isESM": true,
689
+ "relativePath": [
690
+ "dist",
691
+ "commands",
692
+ "auth",
693
+ "whoami.js"
694
+ ]
695
+ },
696
+ "collection:add": {
697
+ "aliases": [],
698
+ "args": {
699
+ "collection": {
700
+ "description": "Collection ID or slug",
701
+ "name": "collection",
702
+ "required": true
703
+ }
704
+ },
705
+ "description": "Add tools to a collection",
706
+ "examples": [
707
+ "<%= config.bin %> <%= command.id %> my-collection tool-id-1",
708
+ "<%= config.bin %> <%= command.id %> my-collection tool-id-1 tool-id-2 tool-id-3"
709
+ ],
710
+ "flags": {
711
+ "json": {
712
+ "description": "Output in JSON format",
713
+ "name": "json",
714
+ "allowNo": false,
715
+ "type": "boolean"
716
+ },
717
+ "verbose": {
718
+ "char": "v",
719
+ "description": "Show verbose output",
720
+ "name": "verbose",
721
+ "allowNo": false,
722
+ "type": "boolean"
723
+ }
724
+ },
725
+ "hasDynamicHelp": false,
726
+ "hiddenAliases": [],
727
+ "id": "collection:add",
728
+ "pluginAlias": "@tpmjs/cli",
729
+ "pluginName": "@tpmjs/cli",
730
+ "pluginType": "core",
731
+ "strict": false,
732
+ "enableJsonFlag": false,
733
+ "isESM": true,
734
+ "relativePath": [
735
+ "dist",
736
+ "commands",
737
+ "collection",
738
+ "add.js"
739
+ ]
740
+ },
741
+ "collection:create": {
742
+ "aliases": [],
743
+ "args": {},
744
+ "description": "Create a new collection",
745
+ "examples": [
746
+ "<%= config.bin %> <%= command.id %> --name \"My Tools\"",
747
+ "<%= config.bin %> <%= command.id %> --name \"Web Scrapers\" --description \"Tools for web scraping\" --public"
748
+ ],
749
+ "flags": {
750
+ "name": {
751
+ "char": "n",
752
+ "description": "Collection name",
753
+ "name": "name",
754
+ "required": true,
755
+ "hasDynamicHelp": false,
756
+ "multiple": false,
757
+ "type": "option"
758
+ },
759
+ "description": {
760
+ "char": "d",
761
+ "description": "Collection description",
762
+ "name": "description",
763
+ "hasDynamicHelp": false,
764
+ "multiple": false,
765
+ "type": "option"
766
+ },
767
+ "public": {
768
+ "description": "Make collection public",
769
+ "name": "public",
770
+ "allowNo": false,
771
+ "type": "boolean"
772
+ },
773
+ "json": {
774
+ "description": "Output in JSON format",
775
+ "name": "json",
776
+ "allowNo": false,
777
+ "type": "boolean"
778
+ },
779
+ "verbose": {
780
+ "char": "v",
781
+ "description": "Show verbose output",
782
+ "name": "verbose",
783
+ "allowNo": false,
784
+ "type": "boolean"
785
+ }
786
+ },
787
+ "hasDynamicHelp": false,
788
+ "hiddenAliases": [],
789
+ "id": "collection:create",
790
+ "pluginAlias": "@tpmjs/cli",
791
+ "pluginName": "@tpmjs/cli",
792
+ "pluginType": "core",
793
+ "strict": true,
794
+ "enableJsonFlag": false,
795
+ "isESM": true,
796
+ "relativePath": [
797
+ "dist",
798
+ "commands",
799
+ "collection",
800
+ "create.js"
801
+ ]
802
+ },
803
+ "collection:delete": {
804
+ "aliases": [],
805
+ "args": {
806
+ "id": {
807
+ "description": "Collection ID or slug",
808
+ "name": "id",
809
+ "required": true
810
+ }
811
+ },
812
+ "description": "Delete a collection",
813
+ "examples": [
814
+ "<%= config.bin %> <%= command.id %> my-collection",
815
+ "<%= config.bin %> <%= command.id %> my-collection --force"
816
+ ],
817
+ "flags": {
818
+ "force": {
819
+ "char": "f",
820
+ "description": "Skip confirmation prompt",
821
+ "name": "force",
822
+ "allowNo": false,
823
+ "type": "boolean"
824
+ },
825
+ "json": {
826
+ "description": "Output in JSON format",
827
+ "name": "json",
828
+ "allowNo": false,
829
+ "type": "boolean"
830
+ },
831
+ "verbose": {
832
+ "char": "v",
833
+ "description": "Show verbose output",
834
+ "name": "verbose",
835
+ "allowNo": false,
836
+ "type": "boolean"
837
+ }
838
+ },
839
+ "hasDynamicHelp": false,
840
+ "hiddenAliases": [],
841
+ "id": "collection:delete",
842
+ "pluginAlias": "@tpmjs/cli",
843
+ "pluginName": "@tpmjs/cli",
844
+ "pluginType": "core",
845
+ "strict": true,
846
+ "enableJsonFlag": false,
847
+ "isESM": true,
848
+ "relativePath": [
849
+ "dist",
850
+ "commands",
851
+ "collection",
852
+ "delete.js"
853
+ ]
854
+ },
855
+ "collection:import": {
856
+ "aliases": [],
857
+ "args": {
858
+ "collection": {
859
+ "description": "Collection ID or slug",
860
+ "name": "collection",
861
+ "required": true
862
+ }
863
+ },
864
+ "description": "Import tools to a collection from a file",
865
+ "examples": [
866
+ "<%= config.bin %> <%= command.id %> my-collection --file tools.txt",
867
+ "<%= config.bin %> <%= command.id %> my-collection --file tools.json"
868
+ ],
869
+ "flags": {
870
+ "file": {
871
+ "char": "f",
872
+ "description": "File containing tool IDs (one per line or JSON array)",
873
+ "name": "file",
874
+ "required": true,
875
+ "hasDynamicHelp": false,
876
+ "multiple": false,
877
+ "type": "option"
878
+ },
879
+ "json": {
880
+ "description": "Output in JSON format",
881
+ "name": "json",
882
+ "allowNo": false,
883
+ "type": "boolean"
884
+ },
885
+ "verbose": {
886
+ "char": "v",
887
+ "description": "Show verbose output",
888
+ "name": "verbose",
889
+ "allowNo": false,
890
+ "type": "boolean"
891
+ }
892
+ },
893
+ "hasDynamicHelp": false,
894
+ "hiddenAliases": [],
895
+ "id": "collection:import",
896
+ "pluginAlias": "@tpmjs/cli",
897
+ "pluginName": "@tpmjs/cli",
898
+ "pluginType": "core",
899
+ "strict": true,
900
+ "enableJsonFlag": false,
901
+ "isESM": true,
902
+ "relativePath": [
903
+ "dist",
904
+ "commands",
905
+ "collection",
906
+ "import.js"
907
+ ]
908
+ },
909
+ "collection:list": {
910
+ "aliases": [],
911
+ "args": {},
912
+ "description": "List your collections",
913
+ "examples": [
914
+ "<%= config.bin %> <%= command.id %>",
915
+ "<%= config.bin %> <%= command.id %> --limit 10"
916
+ ],
917
+ "flags": {
918
+ "limit": {
919
+ "char": "l",
920
+ "description": "Maximum number of results",
921
+ "name": "limit",
922
+ "default": 20,
923
+ "hasDynamicHelp": false,
924
+ "multiple": false,
925
+ "type": "option"
926
+ },
927
+ "offset": {
928
+ "char": "o",
929
+ "description": "Offset for pagination",
930
+ "name": "offset",
931
+ "default": 0,
932
+ "hasDynamicHelp": false,
933
+ "multiple": false,
934
+ "type": "option"
935
+ },
936
+ "json": {
937
+ "description": "Output in JSON format",
938
+ "name": "json",
939
+ "allowNo": false,
940
+ "type": "boolean"
941
+ },
942
+ "verbose": {
943
+ "char": "v",
944
+ "description": "Show verbose output",
945
+ "name": "verbose",
946
+ "allowNo": false,
947
+ "type": "boolean"
948
+ }
949
+ },
950
+ "hasDynamicHelp": false,
951
+ "hiddenAliases": [],
952
+ "id": "collection:list",
953
+ "pluginAlias": "@tpmjs/cli",
954
+ "pluginName": "@tpmjs/cli",
955
+ "pluginType": "core",
956
+ "strict": true,
957
+ "enableJsonFlag": false,
958
+ "isESM": true,
959
+ "relativePath": [
960
+ "dist",
961
+ "commands",
962
+ "collection",
963
+ "list.js"
964
+ ]
965
+ },
966
+ "collection:remove": {
967
+ "aliases": [],
968
+ "args": {
969
+ "collection": {
970
+ "description": "Collection ID or slug",
971
+ "name": "collection",
972
+ "required": true
973
+ },
974
+ "tool": {
975
+ "description": "Tool ID to remove",
976
+ "name": "tool",
977
+ "required": true
978
+ }
979
+ },
980
+ "description": "Remove a tool from a collection",
981
+ "examples": [
982
+ "<%= config.bin %> <%= command.id %> my-collection tool-id-1"
983
+ ],
984
+ "flags": {
985
+ "json": {
986
+ "description": "Output in JSON format",
987
+ "name": "json",
988
+ "allowNo": false,
989
+ "type": "boolean"
990
+ },
991
+ "verbose": {
992
+ "char": "v",
993
+ "description": "Show verbose output",
994
+ "name": "verbose",
995
+ "allowNo": false,
996
+ "type": "boolean"
997
+ }
998
+ },
999
+ "hasDynamicHelp": false,
1000
+ "hiddenAliases": [],
1001
+ "id": "collection:remove",
1002
+ "pluginAlias": "@tpmjs/cli",
1003
+ "pluginName": "@tpmjs/cli",
1004
+ "pluginType": "core",
1005
+ "strict": true,
1006
+ "enableJsonFlag": false,
1007
+ "isESM": true,
1008
+ "relativePath": [
1009
+ "dist",
1010
+ "commands",
1011
+ "collection",
1012
+ "remove.js"
1013
+ ]
1014
+ },
1015
+ "collection:update": {
1016
+ "aliases": [],
1017
+ "args": {
1018
+ "id": {
1019
+ "description": "Collection ID or slug",
1020
+ "name": "id",
1021
+ "required": true
1022
+ }
1023
+ },
1024
+ "description": "Update a collection",
1025
+ "examples": [
1026
+ "<%= config.bin %> <%= command.id %> my-collection --name \"New Name\"",
1027
+ "<%= config.bin %> <%= command.id %> my-collection --public"
1028
+ ],
1029
+ "flags": {
1030
+ "name": {
1031
+ "char": "n",
1032
+ "description": "Collection name",
1033
+ "name": "name",
1034
+ "hasDynamicHelp": false,
1035
+ "multiple": false,
1036
+ "type": "option"
1037
+ },
1038
+ "description": {
1039
+ "char": "d",
1040
+ "description": "Collection description",
1041
+ "name": "description",
1042
+ "hasDynamicHelp": false,
1043
+ "multiple": false,
1044
+ "type": "option"
1045
+ },
1046
+ "public": {
1047
+ "description": "Make collection public",
1048
+ "name": "public",
1049
+ "allowNo": true,
1050
+ "type": "boolean"
1051
+ },
1052
+ "json": {
1053
+ "description": "Output in JSON format",
1054
+ "name": "json",
1055
+ "allowNo": false,
1056
+ "type": "boolean"
1057
+ },
1058
+ "verbose": {
1059
+ "char": "v",
1060
+ "description": "Show verbose output",
1061
+ "name": "verbose",
1062
+ "allowNo": false,
1063
+ "type": "boolean"
1064
+ }
1065
+ },
1066
+ "hasDynamicHelp": false,
1067
+ "hiddenAliases": [],
1068
+ "id": "collection:update",
1069
+ "pluginAlias": "@tpmjs/cli",
1070
+ "pluginName": "@tpmjs/cli",
1071
+ "pluginType": "core",
1072
+ "strict": true,
1073
+ "enableJsonFlag": false,
1074
+ "isESM": true,
1075
+ "relativePath": [
1076
+ "dist",
1077
+ "commands",
1078
+ "collection",
1079
+ "update.js"
1080
+ ]
1081
+ },
1082
+ "mcp:config": {
1083
+ "aliases": [],
1084
+ "args": {
1085
+ "collection": {
1086
+ "description": "Collection path (username/slug)",
1087
+ "name": "collection",
1088
+ "required": true
1089
+ }
1090
+ },
1091
+ "description": "Generate MCP configuration for AI clients",
1092
+ "examples": [
1093
+ "<%= config.bin %> <%= command.id %> ajax/ajax-collection",
1094
+ "<%= config.bin %> <%= command.id %> ajax/ajax-collection --client cursor",
1095
+ "<%= config.bin %> <%= command.id %> ajax/ajax-collection --output ~/Library/Application\\ Support/Claude/claude_desktop_config.json"
1096
+ ],
1097
+ "flags": {
1098
+ "client": {
1099
+ "char": "c",
1100
+ "description": "Target client (claude, cursor, windsurf, generic)",
1101
+ "name": "client",
1102
+ "default": "claude",
1103
+ "hasDynamicHelp": false,
1104
+ "multiple": false,
1105
+ "options": [
1106
+ "claude",
1107
+ "cursor",
1108
+ "windsurf",
1109
+ "generic"
1110
+ ],
1111
+ "type": "option"
1112
+ },
1113
+ "output": {
1114
+ "char": "o",
1115
+ "description": "Output file path (will merge with existing config)",
1116
+ "name": "output",
1117
+ "hasDynamicHelp": false,
1118
+ "multiple": false,
1119
+ "type": "option"
1120
+ },
1121
+ "json": {
1122
+ "description": "Output in JSON format",
1123
+ "name": "json",
1124
+ "allowNo": false,
1125
+ "type": "boolean"
1126
+ },
1127
+ "api-key": {
1128
+ "char": "k",
1129
+ "description": "API key to include in config (optional)",
1130
+ "name": "api-key",
1131
+ "hasDynamicHelp": false,
1132
+ "multiple": false,
1133
+ "type": "option"
1134
+ }
1135
+ },
1136
+ "hasDynamicHelp": false,
1137
+ "hiddenAliases": [],
1138
+ "id": "mcp:config",
1139
+ "pluginAlias": "@tpmjs/cli",
1140
+ "pluginName": "@tpmjs/cli",
1141
+ "pluginType": "core",
1142
+ "strict": true,
1143
+ "enableJsonFlag": false,
1144
+ "isESM": true,
1145
+ "relativePath": [
1146
+ "dist",
1147
+ "commands",
1148
+ "mcp",
1149
+ "config.js"
1150
+ ]
1151
+ },
1152
+ "mcp:serve": {
1153
+ "aliases": [],
1154
+ "args": {},
1155
+ "description": "Run as a local MCP server",
1156
+ "examples": [
1157
+ "<%= config.bin %> <%= command.id %>",
1158
+ "<%= config.bin %> <%= command.id %> --port 8080",
1159
+ "<%= config.bin %> <%= command.id %> --stdio",
1160
+ "<%= config.bin %> <%= command.id %> --collection my-collection"
1161
+ ],
1162
+ "flags": {
1163
+ "port": {
1164
+ "char": "p",
1165
+ "description": "Port to run the server on (HTTP mode)",
1166
+ "name": "port",
1167
+ "default": 3333,
1168
+ "hasDynamicHelp": false,
1169
+ "multiple": false,
1170
+ "type": "option"
1171
+ },
1172
+ "stdio": {
1173
+ "description": "Use stdio transport instead of HTTP",
1174
+ "name": "stdio",
1175
+ "allowNo": false,
1176
+ "type": "boolean"
1177
+ },
1178
+ "collection": {
1179
+ "char": "c",
1180
+ "description": "Serve tools from a specific collection",
1181
+ "name": "collection",
1182
+ "hasDynamicHelp": false,
1183
+ "multiple": false,
1184
+ "type": "option"
1185
+ },
1186
+ "tool": {
1187
+ "char": "t",
1188
+ "description": "Serve specific tools (comma-separated)",
1189
+ "name": "tool",
1190
+ "hasDynamicHelp": false,
1191
+ "multiple": true,
1192
+ "type": "option"
1193
+ },
1194
+ "verbose": {
1195
+ "char": "v",
1196
+ "description": "Show verbose output",
1197
+ "name": "verbose",
1198
+ "allowNo": false,
1199
+ "type": "boolean"
1200
+ }
1201
+ },
1202
+ "hasDynamicHelp": false,
1203
+ "hiddenAliases": [],
1204
+ "id": "mcp:serve",
1205
+ "pluginAlias": "@tpmjs/cli",
1206
+ "pluginName": "@tpmjs/cli",
1207
+ "pluginType": "core",
1208
+ "strict": true,
1209
+ "enableJsonFlag": false,
1210
+ "isESM": true,
1211
+ "relativePath": [
1212
+ "dist",
1213
+ "commands",
1214
+ "mcp",
1215
+ "serve.js"
1216
+ ]
1217
+ },
1218
+ "publish:check": {
1219
+ "aliases": [],
1220
+ "args": {
1221
+ "package": {
1222
+ "description": "npm package name (defaults to current directory)",
1223
+ "name": "package",
1224
+ "required": false
1225
+ }
1226
+ },
1227
+ "description": "Check if your package has been discovered by tpmjs.com",
1228
+ "examples": [
1229
+ "<%= config.bin %> <%= command.id %> @myorg/my-tool",
1230
+ "<%= config.bin %> <%= command.id %>"
1231
+ ],
1232
+ "flags": {
1233
+ "json": {
1234
+ "description": "Output in JSON format",
1235
+ "name": "json",
1236
+ "allowNo": false,
1237
+ "type": "boolean"
1238
+ },
1239
+ "verbose": {
1240
+ "char": "v",
1241
+ "description": "Show verbose output",
1242
+ "name": "verbose",
1243
+ "allowNo": false,
1244
+ "type": "boolean"
1245
+ }
1246
+ },
1247
+ "hasDynamicHelp": false,
1248
+ "hiddenAliases": [],
1249
+ "id": "publish:check",
1250
+ "pluginAlias": "@tpmjs/cli",
1251
+ "pluginName": "@tpmjs/cli",
1252
+ "pluginType": "core",
1253
+ "strict": true,
1254
+ "enableJsonFlag": false,
1255
+ "isESM": true,
1256
+ "relativePath": [
1257
+ "dist",
1258
+ "commands",
1259
+ "publish",
1260
+ "check.js"
1261
+ ]
1262
+ },
1263
+ "publish:preview": {
1264
+ "aliases": [],
1265
+ "args": {},
1266
+ "description": "Preview how your tool will appear on tpmjs.com",
1267
+ "examples": [
1268
+ "<%= config.bin %> <%= command.id %>",
1269
+ "<%= config.bin %> <%= command.id %> --path ./my-tool"
1270
+ ],
1271
+ "flags": {
1272
+ "path": {
1273
+ "char": "p",
1274
+ "description": "Path to package directory",
1275
+ "name": "path",
1276
+ "default": ".",
1277
+ "hasDynamicHelp": false,
1278
+ "multiple": false,
1279
+ "type": "option"
1280
+ },
1281
+ "json": {
1282
+ "description": "Output in JSON format",
1283
+ "name": "json",
1284
+ "allowNo": false,
1285
+ "type": "boolean"
1286
+ },
1287
+ "verbose": {
1288
+ "char": "v",
1289
+ "description": "Show verbose output",
1290
+ "name": "verbose",
1291
+ "allowNo": false,
1292
+ "type": "boolean"
1293
+ }
1294
+ },
1295
+ "hasDynamicHelp": false,
1296
+ "hiddenAliases": [],
1297
+ "id": "publish:preview",
1298
+ "pluginAlias": "@tpmjs/cli",
1299
+ "pluginName": "@tpmjs/cli",
1300
+ "pluginType": "core",
1301
+ "strict": true,
1302
+ "enableJsonFlag": false,
1303
+ "isESM": true,
1304
+ "relativePath": [
1305
+ "dist",
1306
+ "commands",
1307
+ "publish",
1308
+ "preview.js"
1309
+ ]
1310
+ },
1311
+ "tool:execute": {
1312
+ "aliases": [],
1313
+ "args": {
1314
+ "tool": {
1315
+ "description": "Tool slug or ID",
1316
+ "name": "tool",
1317
+ "required": true
1318
+ }
1319
+ },
1320
+ "description": "Execute a TPMJS tool",
1321
+ "examples": [
1322
+ "<%= config.bin %> <%= command.id %> firecrawl-scrape --input '{\"url\":\"https://example.com\"}'",
1323
+ "<%= config.bin %> <%= command.id %> my-tool --input-file params.json",
1324
+ "<%= config.bin %> <%= command.id %> my-tool --stream"
1325
+ ],
1326
+ "flags": {
1327
+ "input": {
1328
+ "char": "i",
1329
+ "description": "Input parameters as JSON string",
1330
+ "name": "input",
1331
+ "hasDynamicHelp": false,
1332
+ "multiple": false,
1333
+ "type": "option"
1334
+ },
1335
+ "input-file": {
1336
+ "char": "f",
1337
+ "description": "Path to JSON file containing input parameters",
1338
+ "name": "input-file",
1339
+ "hasDynamicHelp": false,
1340
+ "multiple": false,
1341
+ "type": "option"
1342
+ },
1343
+ "stream": {
1344
+ "char": "s",
1345
+ "description": "Stream output (for tools that support it)",
1346
+ "name": "stream",
1347
+ "allowNo": false,
1348
+ "type": "boolean"
1349
+ },
1350
+ "timeout": {
1351
+ "char": "t",
1352
+ "description": "Timeout in seconds",
1353
+ "name": "timeout",
1354
+ "default": 300,
1355
+ "hasDynamicHelp": false,
1356
+ "multiple": false,
1357
+ "type": "option"
1358
+ },
1359
+ "json": {
1360
+ "description": "Output in JSON format",
1361
+ "name": "json",
1362
+ "allowNo": false,
1363
+ "type": "boolean"
1364
+ },
1365
+ "verbose": {
1366
+ "char": "v",
1367
+ "description": "Show verbose output",
1368
+ "name": "verbose",
1369
+ "allowNo": false,
1370
+ "type": "boolean"
1371
+ }
1372
+ },
1373
+ "hasDynamicHelp": false,
1374
+ "hiddenAliases": [],
1375
+ "id": "tool:execute",
1376
+ "pluginAlias": "@tpmjs/cli",
1377
+ "pluginName": "@tpmjs/cli",
1378
+ "pluginType": "core",
1379
+ "strict": true,
1380
+ "enableJsonFlag": false,
1381
+ "isESM": true,
1382
+ "relativePath": [
1383
+ "dist",
1384
+ "commands",
1385
+ "tool",
1386
+ "execute.js"
1387
+ ]
1388
+ },
1389
+ "tool:info": {
1390
+ "aliases": [],
1391
+ "args": {
1392
+ "package": {
1393
+ "description": "Package name (e.g., @tpmjs/official-firecrawl)",
1394
+ "name": "package",
1395
+ "required": true
1396
+ },
1397
+ "tool": {
1398
+ "description": "Tool name (e.g., scrapeTool)",
1399
+ "name": "tool",
1400
+ "required": true
1401
+ }
1402
+ },
1403
+ "description": "Get detailed information about a tool",
1404
+ "examples": [
1405
+ "<%= config.bin %> <%= command.id %> @tpmjs/official-firecrawl scrapeTool",
1406
+ "<%= config.bin %> <%= command.id %> firecrawl-tool default"
1407
+ ],
1408
+ "flags": {
1409
+ "json": {
1410
+ "description": "Output in JSON format",
1411
+ "name": "json",
1412
+ "allowNo": false,
1413
+ "type": "boolean"
1414
+ },
1415
+ "verbose": {
1416
+ "char": "v",
1417
+ "description": "Show verbose output",
1418
+ "name": "verbose",
1419
+ "allowNo": false,
1420
+ "type": "boolean"
1421
+ }
1422
+ },
1423
+ "hasDynamicHelp": false,
1424
+ "hiddenAliases": [],
1425
+ "id": "tool:info",
1426
+ "pluginAlias": "@tpmjs/cli",
1427
+ "pluginName": "@tpmjs/cli",
1428
+ "pluginType": "core",
1429
+ "strict": true,
1430
+ "enableJsonFlag": false,
1431
+ "isESM": true,
1432
+ "relativePath": [
1433
+ "dist",
1434
+ "commands",
1435
+ "tool",
1436
+ "info.js"
1437
+ ]
1438
+ },
1439
+ "tool:init": {
1440
+ "aliases": [],
1441
+ "args": {
1442
+ "name": {
1443
+ "description": "Tool name (creates directory if not exists)",
1444
+ "name": "name",
1445
+ "required": false
1446
+ }
1447
+ },
1448
+ "description": "Initialize a new TPMJS tool package",
1449
+ "examples": [
1450
+ "<%= config.bin %> <%= command.id %>",
1451
+ "<%= config.bin %> <%= command.id %> my-tool",
1452
+ "<%= config.bin %> <%= command.id %> --template minimal"
1453
+ ],
1454
+ "flags": {
1455
+ "template": {
1456
+ "char": "t",
1457
+ "description": "Template to use",
1458
+ "name": "template",
1459
+ "default": "minimal",
1460
+ "hasDynamicHelp": false,
1461
+ "multiple": false,
1462
+ "options": [
1463
+ "minimal",
1464
+ "rich"
1465
+ ],
1466
+ "type": "option"
1467
+ },
1468
+ "category": {
1469
+ "char": "c",
1470
+ "description": "Tool category",
1471
+ "name": "category",
1472
+ "hasDynamicHelp": false,
1473
+ "multiple": false,
1474
+ "options": [
1475
+ "research",
1476
+ "web",
1477
+ "data",
1478
+ "documentation",
1479
+ "engineering",
1480
+ "security",
1481
+ "statistics",
1482
+ "ops",
1483
+ "agent",
1484
+ "sandbox",
1485
+ "utilities",
1486
+ "html",
1487
+ "compliance"
1488
+ ],
1489
+ "type": "option"
1490
+ },
1491
+ "force": {
1492
+ "char": "f",
1493
+ "description": "Overwrite existing files",
1494
+ "name": "force",
1495
+ "allowNo": false,
1496
+ "type": "boolean"
1497
+ },
1498
+ "yes": {
1499
+ "char": "y",
1500
+ "description": "Skip prompts and use defaults",
1501
+ "name": "yes",
1502
+ "allowNo": false,
1503
+ "type": "boolean"
1504
+ },
1505
+ "verbose": {
1506
+ "char": "v",
1507
+ "description": "Show verbose output",
1508
+ "name": "verbose",
1509
+ "allowNo": false,
1510
+ "type": "boolean"
1511
+ }
1512
+ },
1513
+ "hasDynamicHelp": false,
1514
+ "hiddenAliases": [],
1515
+ "id": "tool:init",
1516
+ "pluginAlias": "@tpmjs/cli",
1517
+ "pluginName": "@tpmjs/cli",
1518
+ "pluginType": "core",
1519
+ "strict": true,
1520
+ "enableJsonFlag": false,
1521
+ "isESM": true,
1522
+ "relativePath": [
1523
+ "dist",
1524
+ "commands",
1525
+ "tool",
1526
+ "init.js"
1527
+ ]
1528
+ },
1529
+ "tool:search": {
1530
+ "aliases": [],
1531
+ "args": {
1532
+ "query": {
1533
+ "description": "Search query",
1534
+ "name": "query",
1535
+ "required": false
1536
+ }
1537
+ },
1538
+ "description": "Search for tools in the TPMJS registry",
1539
+ "examples": [
1540
+ "<%= config.bin %> <%= command.id %> firecrawl",
1541
+ "<%= config.bin %> <%= command.id %> \"web scraper\" --category web",
1542
+ "<%= config.bin %> <%= command.id %> --category data --limit 20"
1543
+ ],
1544
+ "flags": {
1545
+ "category": {
1546
+ "char": "c",
1547
+ "description": "Filter by category",
1548
+ "name": "category",
1549
+ "hasDynamicHelp": false,
1550
+ "multiple": false,
1551
+ "type": "option"
1552
+ },
1553
+ "limit": {
1554
+ "char": "l",
1555
+ "description": "Maximum number of results",
1556
+ "name": "limit",
1557
+ "default": 20,
1558
+ "hasDynamicHelp": false,
1559
+ "multiple": false,
1560
+ "type": "option"
1561
+ },
1562
+ "offset": {
1563
+ "char": "o",
1564
+ "description": "Offset for pagination",
1565
+ "name": "offset",
1566
+ "default": 0,
1567
+ "hasDynamicHelp": false,
1568
+ "multiple": false,
1569
+ "type": "option"
1570
+ },
1571
+ "json": {
1572
+ "description": "Output in JSON format",
1573
+ "name": "json",
1574
+ "allowNo": false,
1575
+ "type": "boolean"
1576
+ },
1577
+ "verbose": {
1578
+ "char": "v",
1579
+ "description": "Show verbose output",
1580
+ "name": "verbose",
1581
+ "allowNo": false,
1582
+ "type": "boolean"
1583
+ }
1584
+ },
1585
+ "hasDynamicHelp": false,
1586
+ "hiddenAliases": [],
1587
+ "id": "tool:search",
1588
+ "pluginAlias": "@tpmjs/cli",
1589
+ "pluginName": "@tpmjs/cli",
1590
+ "pluginType": "core",
1591
+ "strict": true,
1592
+ "enableJsonFlag": false,
1593
+ "isESM": true,
1594
+ "relativePath": [
1595
+ "dist",
1596
+ "commands",
1597
+ "tool",
1598
+ "search.js"
1599
+ ]
1600
+ },
1601
+ "tool:trending": {
1602
+ "aliases": [],
1603
+ "args": {},
1604
+ "description": "Show trending tools",
1605
+ "examples": [
1606
+ "<%= config.bin %> <%= command.id %>",
1607
+ "<%= config.bin %> <%= command.id %> --limit 10"
1608
+ ],
1609
+ "flags": {
1610
+ "limit": {
1611
+ "char": "l",
1612
+ "description": "Maximum number of results",
1613
+ "name": "limit",
1614
+ "default": 10,
1615
+ "hasDynamicHelp": false,
1616
+ "multiple": false,
1617
+ "type": "option"
1618
+ },
1619
+ "json": {
1620
+ "description": "Output in JSON format",
1621
+ "name": "json",
1622
+ "allowNo": false,
1623
+ "type": "boolean"
1624
+ },
1625
+ "verbose": {
1626
+ "char": "v",
1627
+ "description": "Show verbose output",
1628
+ "name": "verbose",
1629
+ "allowNo": false,
1630
+ "type": "boolean"
1631
+ }
1632
+ },
1633
+ "hasDynamicHelp": false,
1634
+ "hiddenAliases": [],
1635
+ "id": "tool:trending",
1636
+ "pluginAlias": "@tpmjs/cli",
1637
+ "pluginName": "@tpmjs/cli",
1638
+ "pluginType": "core",
1639
+ "strict": true,
1640
+ "enableJsonFlag": false,
1641
+ "isESM": true,
1642
+ "relativePath": [
1643
+ "dist",
1644
+ "commands",
1645
+ "tool",
1646
+ "trending.js"
1647
+ ]
1648
+ },
1649
+ "tool:validate": {
1650
+ "aliases": [],
1651
+ "args": {},
1652
+ "description": "Validate a tpmjs package configuration",
1653
+ "examples": [
1654
+ "<%= config.bin %> <%= command.id %>",
1655
+ "<%= config.bin %> <%= command.id %> --path ./my-tool"
1656
+ ],
1657
+ "flags": {
1658
+ "path": {
1659
+ "char": "p",
1660
+ "description": "Path to package directory (defaults to current directory)",
1661
+ "name": "path",
1662
+ "default": ".",
1663
+ "hasDynamicHelp": false,
1664
+ "multiple": false,
1665
+ "type": "option"
1666
+ },
1667
+ "json": {
1668
+ "description": "Output in JSON format",
1669
+ "name": "json",
1670
+ "allowNo": false,
1671
+ "type": "boolean"
1672
+ },
1673
+ "verbose": {
1674
+ "char": "v",
1675
+ "description": "Show verbose output",
1676
+ "name": "verbose",
1677
+ "allowNo": false,
1678
+ "type": "boolean"
1679
+ }
1680
+ },
1681
+ "hasDynamicHelp": false,
1682
+ "hiddenAliases": [],
1683
+ "id": "tool:validate",
1684
+ "pluginAlias": "@tpmjs/cli",
1685
+ "pluginName": "@tpmjs/cli",
1686
+ "pluginType": "core",
1687
+ "strict": true,
1688
+ "enableJsonFlag": false,
1689
+ "isESM": true,
1690
+ "relativePath": [
1691
+ "dist",
1692
+ "commands",
1693
+ "tool",
1694
+ "validate.js"
1695
+ ]
1696
+ }
1697
+ },
1698
+ "version": "0.1.0"
1699
+ }