@liquidmetal-ai/raindrop 0.2.10 → 0.2.12

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.
package/README.md CHANGED
@@ -20,7 +20,7 @@ $ npm install -g @liquidmetal-ai/raindrop
20
20
  $ raindrop COMMAND
21
21
  running command...
22
22
  $ raindrop (--version)
23
- @liquidmetal-ai/raindrop/0.2.10 darwin-arm64 node-v23.11.0
23
+ @liquidmetal-ai/raindrop/0.2.12 darwin-arm64 node-v23.11.0
24
24
  $ raindrop --help [COMMAND]
25
25
  USAGE
26
26
  $ raindrop COMMAND
@@ -31,7 +31,34 @@ USAGE
31
31
  # Commands
32
32
 
33
33
  <!-- commands -->
34
+ * [`raindrop auth list`](#raindrop-auth-list)
35
+ * [`raindrop auth login`](#raindrop-auth-login)
36
+ * [`raindrop auth logout`](#raindrop-auth-logout)
37
+ * [`raindrop auth select`](#raindrop-auth-select)
38
+ * [`raindrop build branch BRANCH`](#raindrop-build-branch-branch)
39
+ * [`raindrop build checkout [VERSION]`](#raindrop-build-checkout-version)
40
+ * [`raindrop build delete [APPLICATION]`](#raindrop-build-delete-application)
41
+ * [`raindrop build deploy`](#raindrop-build-deploy)
42
+ * [`raindrop build env get VAR`](#raindrop-build-env-get-var)
43
+ * [`raindrop build env set VAR [VALUE]`](#raindrop-build-env-set-var-value)
44
+ * [`raindrop build find`](#raindrop-build-find)
45
+ * [`raindrop build generate`](#raindrop-build-generate)
46
+ * [`raindrop build init [PATH]`](#raindrop-build-init-path)
47
+ * [`raindrop build list`](#raindrop-build-list)
48
+ * [`raindrop build sandbox`](#raindrop-build-sandbox)
49
+ * [`raindrop build start`](#raindrop-build-start)
50
+ * [`raindrop build status`](#raindrop-build-status)
51
+ * [`raindrop build stop`](#raindrop-build-stop)
52
+ * [`raindrop build tools check`](#raindrop-build-tools-check)
53
+ * [`raindrop build tools fmt`](#raindrop-build-tools-fmt)
54
+ * [`raindrop build unsandbox`](#raindrop-build-unsandbox)
55
+ * [`raindrop build upload`](#raindrop-build-upload)
56
+ * [`raindrop build validate`](#raindrop-build-validate)
34
57
  * [`raindrop help [COMMAND]`](#raindrop-help-command)
58
+ * [`raindrop object delete KEY`](#raindrop-object-delete-key)
59
+ * [`raindrop object get KEY [OUTPUT]`](#raindrop-object-get-key-output)
60
+ * [`raindrop object list`](#raindrop-object-list)
61
+ * [`raindrop object put FILE KEY`](#raindrop-object-put-file-key)
35
62
  * [`raindrop plugins`](#raindrop-plugins)
36
63
  * [`raindrop plugins add PLUGIN`](#raindrop-plugins-add-plugin)
37
64
  * [`raindrop plugins:inspect PLUGIN...`](#raindrop-pluginsinspect-plugin)
@@ -42,6 +69,551 @@ USAGE
42
69
  * [`raindrop plugins uninstall [PLUGIN]`](#raindrop-plugins-uninstall-plugin)
43
70
  * [`raindrop plugins unlink [PLUGIN]`](#raindrop-plugins-unlink-plugin)
44
71
  * [`raindrop plugins update`](#raindrop-plugins-update)
72
+ * [`raindrop query chunk-search QUERY`](#raindrop-query-chunk-search-query)
73
+ * [`raindrop query search [QUERY]`](#raindrop-query-search-query)
74
+ * [`raindrop tail`](#raindrop-tail)
75
+
76
+ ## `raindrop auth list`
77
+
78
+ List authentications
79
+
80
+ ```
81
+ USAGE
82
+ $ raindrop auth list [-o text|table|json]
83
+
84
+ FLAGS
85
+ -o, --output=<option> [default: table] output format
86
+ <options: text|table|json>
87
+
88
+ DESCRIPTION
89
+ List authentications
90
+ ```
91
+
92
+ _See code: [src/commands/auth/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/auth/list.ts)_
93
+
94
+ ## `raindrop auth login`
95
+
96
+ Logs a user into the LiquidMetal platform. Supports browser-based authentication.
97
+
98
+ ```
99
+ USAGE
100
+ $ raindrop auth login
101
+
102
+ DESCRIPTION
103
+ Logs a user into the LiquidMetal platform. Supports browser-based authentication.
104
+ ```
105
+
106
+ _See code: [src/commands/auth/login.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/auth/login.ts)_
107
+
108
+ ## `raindrop auth logout`
109
+
110
+ Logout authentications
111
+
112
+ ```
113
+ USAGE
114
+ $ raindrop auth logout
115
+
116
+ DESCRIPTION
117
+ Logout authentications
118
+ ```
119
+
120
+ _See code: [src/commands/auth/logout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/auth/logout.ts)_
121
+
122
+ ## `raindrop auth select`
123
+
124
+ Select active organization
125
+
126
+ ```
127
+ USAGE
128
+ $ raindrop auth select [--organizationId <value>]
129
+
130
+ FLAGS
131
+ --organizationId=<value> organizationId to select as active
132
+
133
+ DESCRIPTION
134
+ Select active organization
135
+ ```
136
+
137
+ _See code: [src/commands/auth/select.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/auth/select.ts)_
138
+
139
+ ## `raindrop build branch BRANCH`
140
+
141
+ branch a Raindrop application
142
+
143
+ ```
144
+ USAGE
145
+ $ raindrop build branch BRANCH [-r <value>] [-m <value>] [-o <value>] [-p <value>] [--start] [--show]
146
+
147
+ ARGUMENTS
148
+ BRANCH branch name
149
+
150
+ FLAGS
151
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
152
+ -o, --output=<value> [default: dist] output directory
153
+ -p, --versionId=<value> branch from this version
154
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
155
+ root directory
156
+ --show show the current branch
157
+ --start start the application after deploying
158
+
159
+ DESCRIPTION
160
+ branch a Raindrop application
161
+
162
+ EXAMPLES
163
+ $ raindrop build branch .
164
+ Branch a Raindrop application.
165
+ ```
166
+
167
+ _See code: [src/commands/build/branch.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/branch.ts)_
168
+
169
+ ## `raindrop build checkout [VERSION]`
170
+
171
+ switch the current context to a specific version
172
+
173
+ ```
174
+ USAGE
175
+ $ raindrop build checkout [VERSION] [-o <value>]
176
+
177
+ ARGUMENTS
178
+ VERSION version id
179
+
180
+ FLAGS
181
+ -o, --output=<value> [default: text] output format
182
+
183
+ DESCRIPTION
184
+ switch the current context to a specific version
185
+
186
+ EXAMPLES
187
+ $ raindrop build checkout
188
+ Currently on version: 01jac6p20m4gahn1kaa2mhm2js
189
+ $ raindrop build checkout 01jux6z20m4gbhn5kaa4mcm2jr
190
+ Switched to version: 01jux6z20m4gbhn5kaa4mcm2jr
191
+ ```
192
+
193
+ _See code: [src/commands/build/checkout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/checkout.ts)_
194
+
195
+ ## `raindrop build delete [APPLICATION]`
196
+
197
+ delete Raindrop applications
198
+
199
+ ```
200
+ USAGE
201
+ $ raindrop build delete [APPLICATION] [-r <value>] [-m <value>] [-o text|table|json] [-v <value> | -a]
202
+
203
+ ARGUMENTS
204
+ APPLICATION application name
205
+
206
+ FLAGS
207
+ -a, --all delete all application versions
208
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
209
+ -o, --output=<option> [default: table] output format
210
+ <options: text|table|json>
211
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop] root
212
+ directory
213
+ -v, --version=<value> application version to delete
214
+
215
+ DESCRIPTION
216
+ delete Raindrop applications
217
+
218
+ EXAMPLES
219
+ $ raindrop build delete .
220
+ Deleted (application) at version (version)
221
+ ```
222
+
223
+ _See code: [src/commands/build/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/delete.ts)_
224
+
225
+ ## `raindrop build deploy`
226
+
227
+ deploy a Raindrop application
228
+
229
+ ```
230
+ USAGE
231
+ $ raindrop build deploy [-r <value>] [-m <value>] [-o <value>] [-v <value>] [-s] [--resume] [--lock <value>] [-a]
232
+
233
+ FLAGS
234
+ -a, --amend amend an existing application
235
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
236
+ -o, --output=<value> [default: dist] output directory
237
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
238
+ root directory
239
+ -s, --start start the application after deploying
240
+ -v, --versionId=<value> version ID
241
+ --lock=<value> override lock ID to resume deployment
242
+ --resume resume a deployment
243
+
244
+ DESCRIPTION
245
+ deploy a Raindrop application
246
+
247
+ EXAMPLES
248
+ $ raindrop build deploy .
249
+ Deploy a Raindrop application version.
250
+ ```
251
+
252
+ _See code: [src/commands/build/deploy.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/deploy.ts)_
253
+
254
+ ## `raindrop build env get VAR`
255
+
256
+ get an env var/secret
257
+
258
+ ```
259
+ USAGE
260
+ $ raindrop build env get VAR [-o <value>] [-m <value>] [-v <value>] [-a <value>]
261
+
262
+ ARGUMENTS
263
+ VAR env var/secret name
264
+
265
+ FLAGS
266
+ -a, --application=<value> application
267
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
268
+ -o, --output=<value> [default: table] output format
269
+ -v, --versionId=<value> version ID
270
+
271
+ DESCRIPTION
272
+ get an env var/secret
273
+
274
+ EXAMPLES
275
+ $ raindrop build env get my-app:env:MY_VAR
276
+ sets an env var/secret.
277
+ ```
278
+
279
+ _See code: [src/commands/build/env/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/env/get.ts)_
280
+
281
+ ## `raindrop build env set VAR [VALUE]`
282
+
283
+ set an env var/secret
284
+
285
+ ```
286
+ USAGE
287
+ $ raindrop build env set VAR [VALUE] [-r <value>] [-m <value>] [-o <value>] [-v <value>] [-a <value>]
288
+
289
+ ARGUMENTS
290
+ VAR env var/secret name
291
+ VALUE env var/secret value
292
+
293
+ FLAGS
294
+ -a, --application=<value> application to start
295
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
296
+ -o, --output=<value> [default: table] output format
297
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
298
+ root directory
299
+ -v, --versionId=<value> version ID
300
+
301
+ DESCRIPTION
302
+ set an env var/secret
303
+
304
+ EXAMPLES
305
+ $ raindrop build env set .
306
+ sets an env var/secret.
307
+ ```
308
+
309
+ _See code: [src/commands/build/env/set.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/env/set.ts)_
310
+
311
+ ## `raindrop build find`
312
+
313
+ find resources in Raindrop
314
+
315
+ ```
316
+ USAGE
317
+ $ raindrop build find [-r <value>] [-m <value>] [-a <value>] [-v <value>] [--moduleType <value>] [-o
318
+ text|table|json]
319
+
320
+ FLAGS
321
+ -a, --application=<value> application
322
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
323
+ -o, --output=<option> [default: table] output format
324
+ <options: text|table|json>
325
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
326
+ root directory
327
+ -v, --version=<value> application version
328
+ --moduleType=<value> filter by module type (e.g. smartbucket)
329
+
330
+ DESCRIPTION
331
+ find resources in Raindrop
332
+
333
+ EXAMPLES
334
+ $ raindrop build find .
335
+ ```
336
+
337
+ _See code: [src/commands/build/find.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/find.ts)_
338
+
339
+ ## `raindrop build generate`
340
+
341
+ (re)generate all code for a LiquidMetal.AI project
342
+
343
+ ```
344
+ USAGE
345
+ $ raindrop build generate [-r <value>] [-m <value>] [-o <value>]
346
+
347
+ FLAGS
348
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
349
+ -o, --output=<value> [default: dist] output directory
350
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop] root
351
+ directory
352
+
353
+ DESCRIPTION
354
+ (re)generate all code for a LiquidMetal.AI project
355
+
356
+ EXAMPLES
357
+ $ raindrop build generate
358
+ ```
359
+
360
+ _See code: [src/commands/build/generate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/generate.ts)_
361
+
362
+ ## `raindrop build init [PATH]`
363
+
364
+ start a new LiquidMetal.AI project
365
+
366
+ ```
367
+ USAGE
368
+ $ raindrop build init [PATH] [--overwrite]
369
+
370
+ ARGUMENTS
371
+ PATH [default: .] Path to initialize the project in
372
+
373
+ FLAGS
374
+ --overwrite Overwrite existing files
375
+
376
+ DESCRIPTION
377
+ start a new LiquidMetal.AI project
378
+
379
+ EXAMPLES
380
+ $ raindrop build init .
381
+ Initialize a project in the current directory.
382
+ ```
383
+
384
+ _See code: [src/commands/build/init.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/init.ts)_
385
+
386
+ ## `raindrop build list`
387
+
388
+ list Raindrop catalog resources
389
+
390
+ ```
391
+ USAGE
392
+ $ raindrop build list [-a] [-o text|table|json|log]
393
+
394
+ FLAGS
395
+ -a, --all show deleted resources
396
+ -o, --output=<option> [default: table] output format
397
+ <options: text|table|json|log>
398
+
399
+ DESCRIPTION
400
+ list Raindrop catalog resources
401
+
402
+ EXAMPLES
403
+ $ raindrop build list .
404
+ List Raindrop catalog resources.
405
+ ```
406
+
407
+ _See code: [src/commands/build/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/list.ts)_
408
+
409
+ ## `raindrop build sandbox`
410
+
411
+ mark a version as sandboxed in the Raindrop catalog
412
+
413
+ ```
414
+ USAGE
415
+ $ raindrop build sandbox [--manifest <value>] [-v <value>]
416
+
417
+ FLAGS
418
+ -v, --version=<value> application version to sandbox
419
+ --manifest=<value> [default: raindrop.manifest] project manifest
420
+
421
+ DESCRIPTION
422
+ mark a version as sandboxed in the Raindrop catalog
423
+
424
+ EXAMPLES
425
+ $ raindrop build sandbox
426
+ ```
427
+
428
+ _See code: [src/commands/build/sandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/sandbox.ts)_
429
+
430
+ ## `raindrop build start`
431
+
432
+ start a Raindrop application
433
+
434
+ ```
435
+ USAGE
436
+ $ raindrop build start [-r <value>] [-m <value>] [-a <value>] [-v <value>]
437
+
438
+ FLAGS
439
+ -a, --application=<value> application to start
440
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
441
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
442
+ root directory
443
+ -v, --version=<value> application version to start
444
+
445
+ DESCRIPTION
446
+ start a Raindrop application
447
+
448
+ EXAMPLES
449
+ $ raindrop build start .
450
+ Start a Raindrop application.
451
+ ```
452
+
453
+ _See code: [src/commands/build/start.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/start.ts)_
454
+
455
+ ## `raindrop build status`
456
+
457
+ show the status of an application in Raindrop
458
+
459
+ ```
460
+ USAGE
461
+ $ raindrop build status [-r <value>] [-m <value>] [-a <value>] [-v <value>] [-o watch|table|json]
462
+
463
+ FLAGS
464
+ -a, --application=<value> application
465
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
466
+ -o, --output=<option> [default: table] output format
467
+ <options: watch|table|json>
468
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
469
+ root directory
470
+ -v, --version=<value> application version
471
+
472
+ DESCRIPTION
473
+ show the status of an application in Raindrop
474
+
475
+ EXAMPLES
476
+ $ raindrop build status .
477
+ ```
478
+
479
+ _See code: [src/commands/build/status.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/status.ts)_
480
+
481
+ ## `raindrop build stop`
482
+
483
+ stop a Raindrop application
484
+
485
+ ```
486
+ USAGE
487
+ $ raindrop build stop [-r <value>] [-m <value>] [-a <value>] [-v <value>]
488
+
489
+ FLAGS
490
+ -a, --application=<value> application to stop
491
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
492
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
493
+ root directory
494
+ -v, --version=<value> application version to start
495
+
496
+ DESCRIPTION
497
+ stop a Raindrop application
498
+
499
+ EXAMPLES
500
+ $ raindrop build stop .
501
+ Stop a Raindrop application.
502
+ ```
503
+
504
+ _See code: [src/commands/build/stop.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/stop.ts)_
505
+
506
+ ## `raindrop build tools check`
507
+
508
+ validate a LiquidMetal.AI raindrop.manifest
509
+
510
+ ```
511
+ USAGE
512
+ $ raindrop build tools check [-r <value>] [-m <value>]
513
+
514
+ FLAGS
515
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
516
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop] root
517
+ directory
518
+
519
+ DESCRIPTION
520
+ validate a LiquidMetal.AI raindrop.manifest
521
+
522
+ EXAMPLES
523
+ $ raindrop build tools check
524
+ ```
525
+
526
+ _See code: [src/commands/build/tools/check.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/tools/check.ts)_
527
+
528
+ ## `raindrop build tools fmt`
529
+
530
+ format a LiquidMetal.AI raindrop.manifest
531
+
532
+ ```
533
+ USAGE
534
+ $ raindrop build tools fmt [-r <value>] [-m <value>]
535
+
536
+ FLAGS
537
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
538
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop] root
539
+ directory
540
+
541
+ DESCRIPTION
542
+ format a LiquidMetal.AI raindrop.manifest
543
+
544
+ EXAMPLES
545
+ $ raindrop build tools fmt
546
+ ```
547
+
548
+ _See code: [src/commands/build/tools/fmt.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/tools/fmt.ts)_
549
+
550
+ ## `raindrop build unsandbox`
551
+
552
+ mark a version as unsandboxed in the Raindrop catalog
553
+
554
+ ```
555
+ USAGE
556
+ $ raindrop build unsandbox [--manifest <value>] [-v <value>]
557
+
558
+ FLAGS
559
+ -v, --version=<value> application version to unsandbox
560
+ --manifest=<value> [default: raindrop.manifest] project manifest
561
+
562
+ DESCRIPTION
563
+ mark a version as unsandboxed in the Raindrop catalog
564
+
565
+ EXAMPLES
566
+ $ raindrop build unsandbox
567
+ ```
568
+
569
+ _See code: [src/commands/build/unsandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/unsandbox.ts)_
570
+
571
+ ## `raindrop build upload`
572
+
573
+ build and validate a LiquidMetal.AI project
574
+
575
+ ```
576
+ USAGE
577
+ $ raindrop build upload -v <value> [-r <value>] [-m <value>] [-o <value>]
578
+
579
+ FLAGS
580
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
581
+ -o, --output=<value> [default: dist] output directory
582
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop]
583
+ root directory
584
+ -v, --versionId=<value> (required) version ID
585
+
586
+ DESCRIPTION
587
+ build and validate a LiquidMetal.AI project
588
+
589
+ EXAMPLES
590
+ $ raindrop build upload
591
+ ```
592
+
593
+ _See code: [src/commands/build/upload.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/upload.ts)_
594
+
595
+ ## `raindrop build validate`
596
+
597
+ build and validate a LiquidMetal.AI project
598
+
599
+ ```
600
+ USAGE
601
+ $ raindrop build validate [-r <value>] [-m <value>] [-o <value>]
602
+
603
+ FLAGS
604
+ -m, --manifest=<value> [default: raindrop.manifest] project manifest
605
+ -o, --output=<value> [default: dist] output directory
606
+ -r, --root=<value> [default: /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/raindrop] root
607
+ directory
608
+
609
+ DESCRIPTION
610
+ build and validate a LiquidMetal.AI project
611
+
612
+ EXAMPLES
613
+ $ raindrop build validate
614
+ ```
615
+
616
+ _See code: [src/commands/build/validate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/build/validate.ts)_
45
617
 
46
618
  ## `raindrop help [COMMAND]`
47
619
 
@@ -63,6 +635,113 @@ DESCRIPTION
63
635
 
64
636
  _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.27/src/commands/help.ts)_
65
637
 
638
+ ## `raindrop object delete KEY`
639
+
640
+ Delete a file from the object storage
641
+
642
+ ```
643
+ USAGE
644
+ $ raindrop object delete KEY -b <value> [-o text|json]
645
+
646
+ ARGUMENTS
647
+ KEY key/path in the bucket to delete
648
+
649
+ FLAGS
650
+ -b, --bucket=<value> (required) bucket ID
651
+ -o, --output=<option> [default: text] output format
652
+ <options: text|json>
653
+
654
+ DESCRIPTION
655
+ Delete a file from the object storage
656
+
657
+ EXAMPLES
658
+ $ raindrop object delete my-key --bucket my-bucket
659
+ Delete file with key 'my-key' from my-bucket
660
+ ```
661
+
662
+ _See code: [src/commands/object/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/object/delete.ts)_
663
+
664
+ ## `raindrop object get KEY [OUTPUT]`
665
+
666
+ Download a file from the object storage
667
+
668
+ ```
669
+ USAGE
670
+ $ raindrop object get KEY [OUTPUT] -b <value> [-f file|stdout|json]
671
+
672
+ ARGUMENTS
673
+ KEY key/path in the bucket
674
+ OUTPUT output file (defaults to key basename)
675
+
676
+ FLAGS
677
+ -b, --bucket=<value> (required) bucket ID
678
+ -f, --format=<option> [default: file] output format
679
+ <options: file|stdout|json>
680
+
681
+ DESCRIPTION
682
+ Download a file from the object storage
683
+
684
+ EXAMPLES
685
+ $ raindrop object get my-key --bucket my-bucket
686
+ Download file with key 'my-key' from my-bucket
687
+
688
+ $ raindrop object get my-key output.txt --bucket my-bucket
689
+ Download file with key 'my-key' from my-bucket to output.txt
690
+ ```
691
+
692
+ _See code: [src/commands/object/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/object/get.ts)_
693
+
694
+ ## `raindrop object list`
695
+
696
+ List objects in a bucket
697
+
698
+ ```
699
+ USAGE
700
+ $ raindrop object list -b <value> [-o text|json|table]
701
+
702
+ FLAGS
703
+ -b, --bucket=<value> (required) bucket ID
704
+ -o, --output=<option> [default: text] output format
705
+ <options: text|json|table>
706
+
707
+ DESCRIPTION
708
+ List objects in a bucket
709
+
710
+ EXAMPLES
711
+ $ raindrop object list --bucket my-bucket
712
+ List all objects in my-bucket
713
+ ```
714
+
715
+ _See code: [src/commands/object/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/object/list.ts)_
716
+
717
+ ## `raindrop object put FILE KEY`
718
+
719
+ Upload a file to the object storage
720
+
721
+ ```
722
+ USAGE
723
+ $ raindrop object put FILE KEY -b <value> [-t <value>] [-o text|json]
724
+
725
+ ARGUMENTS
726
+ FILE file to upload
727
+ KEY key/path in the bucket
728
+
729
+ FLAGS
730
+ -b, --bucket=<value> (required) bucket ID
731
+ -o, --output=<option> [default: text] output format
732
+ <options: text|json>
733
+ -t, --contentType=<value> content type of the file
734
+
735
+ DESCRIPTION
736
+ Upload a file to the object storage
737
+
738
+ EXAMPLES
739
+ $ raindrop object put ./myfile.txt my-key --bucket my-bucket
740
+ Upload myfile.txt to my-bucket with key 'my-key'
741
+ ```
742
+
743
+ _See code: [src/commands/object/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/object/put.ts)_
744
+
66
745
  ## `raindrop plugins`
67
746
 
68
747
  List installed plugins.
@@ -352,4 +1031,73 @@ DESCRIPTION
352
1031
  ```
353
1032
 
354
1033
  _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.36/src/commands/plugins/update.ts)_
1034
+
1035
+ ## `raindrop query chunk-search QUERY`
1036
+
1037
+ Run a RAG (Retrieval Augmented Generation) search query against a Smart Bucket
1038
+
1039
+ ```
1040
+ USAGE
1041
+ $ raindrop query chunk-search QUERY [-o text|json]
1042
+
1043
+ ARGUMENTS
1044
+ QUERY search query to run
1045
+
1046
+ FLAGS
1047
+ -o, --output=<option> [default: text] output format
1048
+ <options: text|json>
1049
+
1050
+ DESCRIPTION
1051
+ Run a RAG (Retrieval Augmented Generation) search query against a Smart Bucket
1052
+
1053
+ EXAMPLES
1054
+ $ raindrop query chunk-search "What is LiquidMetal?"
1055
+ Run a RAG search query against a Smart Bucket.
1056
+ ```
1057
+
1058
+ _See code: [src/commands/query/chunk-search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/query/chunk-search.ts)_
1059
+
1060
+ ## `raindrop query search [QUERY]`
1061
+
1062
+ Run a search query against a smart bucket using natural language
1063
+
1064
+ ```
1065
+ USAGE
1066
+ $ raindrop query search [QUERY] [--requestId <value>] [-p <value>] [-o text|json]
1067
+
1068
+ ARGUMENTS
1069
+ QUERY search query
1070
+
1071
+ FLAGS
1072
+ -o, --output=<option> [default: text] output format
1073
+ <options: text|json>
1074
+ -p, --page=<value> [default: 1] page number for paginated results
1075
+ --requestId=<value> request ID for pagination
1076
+
1077
+ DESCRIPTION
1078
+ Run a search query against a smart bucket using natural language
1079
+
1080
+ EXAMPLES
1081
+ $ raindrop query search "What is LiquidMetal?"
1082
+ Run a new supervisor agent search query.
1083
+
1084
+ $ raindrop query search --requestId 01HNG4V2RJXS5T --page 2
1085
+ Get page 2 of previous search results.
1086
+ ```
1087
+
1088
+ _See code: [src/commands/query/search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/query/search.ts)_
1089
+
1090
+ ## `raindrop tail`
1091
+
1092
+ tail logs of applications deployed
1093
+
1094
+ ```
1095
+ USAGE
1096
+ $ raindrop tail
1097
+
1098
+ DESCRIPTION
1099
+ tail logs of applications deployed
1100
+ ```
1101
+
1102
+ _See code: [src/commands/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.2.12/src/commands/tail.ts)_
355
1103
  <!-- commandsstop -->