@liquidmetal-ai/raindrop 0.6.2 → 0.6.4

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 (70) hide show
  1. package/README.md +433 -78
  2. package/dist/base-command.d.ts +7 -1
  3. package/dist/base-command.d.ts.map +1 -1
  4. package/dist/base-command.js +23 -5
  5. package/dist/commands/annotation/get.js +1 -1
  6. package/dist/commands/annotation/list.d.ts.map +1 -1
  7. package/dist/commands/annotation/list.js +1 -9
  8. package/dist/commands/annotation/put.js +1 -1
  9. package/dist/commands/dns/create.d.ts +25 -0
  10. package/dist/commands/dns/create.d.ts.map +1 -0
  11. package/dist/commands/dns/create.js +116 -0
  12. package/dist/commands/dns/delete.d.ts +20 -0
  13. package/dist/commands/dns/delete.d.ts.map +1 -0
  14. package/dist/commands/dns/delete.js +62 -0
  15. package/dist/commands/dns/get.d.ts +20 -0
  16. package/dist/commands/dns/get.d.ts.map +1 -0
  17. package/dist/commands/dns/get.js +144 -0
  18. package/dist/commands/dns/list.d.ts +21 -0
  19. package/dist/commands/dns/list.d.ts.map +1 -0
  20. package/dist/commands/dns/list.js +195 -0
  21. package/dist/commands/dns/records/create.d.ts +28 -0
  22. package/dist/commands/dns/records/create.d.ts.map +1 -0
  23. package/dist/commands/dns/records/create.js +140 -0
  24. package/dist/commands/dns/records/delete.d.ts +21 -0
  25. package/dist/commands/dns/records/delete.d.ts.map +1 -0
  26. package/dist/commands/dns/records/delete.js +64 -0
  27. package/dist/commands/dns/records/get.d.ts +21 -0
  28. package/dist/commands/dns/records/get.d.ts.map +1 -0
  29. package/dist/commands/dns/records/get.js +102 -0
  30. package/dist/commands/dns/records/list.d.ts +24 -0
  31. package/dist/commands/dns/records/list.d.ts.map +1 -0
  32. package/dist/commands/dns/records/list.js +132 -0
  33. package/dist/commands/dns/records/update.d.ts +29 -0
  34. package/dist/commands/dns/records/update.d.ts.map +1 -0
  35. package/dist/commands/dns/records/update.js +137 -0
  36. package/dist/commands/mcp/install-claude.js +3 -3
  37. package/dist/commands/mcp/install-gemini.d.ts +22 -0
  38. package/dist/commands/mcp/install-gemini.d.ts.map +1 -0
  39. package/dist/commands/mcp/install-gemini.js +233 -0
  40. package/dist/commands/object/delete.d.ts +1 -0
  41. package/dist/commands/object/delete.d.ts.map +1 -1
  42. package/dist/commands/object/delete.js +91 -10
  43. package/dist/commands/object/get.d.ts +1 -0
  44. package/dist/commands/object/get.d.ts.map +1 -1
  45. package/dist/commands/object/get.js +90 -13
  46. package/dist/commands/object/list.d.ts +1 -0
  47. package/dist/commands/object/list.d.ts.map +1 -1
  48. package/dist/commands/object/list.js +94 -9
  49. package/dist/commands/object/put.d.ts +1 -0
  50. package/dist/commands/object/put.d.ts.map +1 -1
  51. package/dist/commands/object/put.js +91 -10
  52. package/dist/index.d.ts +2 -0
  53. package/dist/index.d.ts.map +1 -1
  54. package/dist/index.js +4 -0
  55. package/dist/lib/dns-utils.d.ts +7 -0
  56. package/dist/lib/dns-utils.d.ts.map +1 -0
  57. package/dist/lib/dns-utils.js +44 -0
  58. package/dist/tsconfig.tsbuildinfo +1 -1
  59. package/oclif.manifest.json +3915 -1962
  60. package/package.json +3 -3
  61. package/templates/claude-code/raindrop-guidelines.md +219 -24
  62. package/templates/db/node_modules/.bin/prisma +2 -2
  63. package/templates/db/node_modules/.bin/prisma-kysely +2 -2
  64. package/templates/db/node_modules/.bin/tsc +2 -2
  65. package/templates/db/node_modules/.bin/tsserver +2 -2
  66. package/templates/db/node_modules/.bin/zx +2 -2
  67. package/templates/gemini-code/new-raindrop-app.toml +5 -0
  68. package/templates/gemini-code/raindrop-guidelines.md +322 -0
  69. package/templates/gemini-code/reattach-raindrop-session.toml +17 -0
  70. package/templates/gemini-code/update-raindrop-app.toml +15 -0
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.6.2 darwin-arm64 node-v24.5.0
23
+ @liquidmetal-ai/raindrop/0.6.4 darwin-arm64 node-v23.10.0
24
24
  $ raindrop --help [COMMAND]
25
25
  USAGE
26
26
  $ raindrop COMMAND
@@ -62,10 +62,20 @@ USAGE
62
62
  * [`raindrop build unsandbox`](#raindrop-build-unsandbox)
63
63
  * [`raindrop build upload`](#raindrop-build-upload)
64
64
  * [`raindrop build validate`](#raindrop-build-validate)
65
+ * [`raindrop dns create DOMAIN`](#raindrop-dns-create-domain)
66
+ * [`raindrop dns delete DNSNAME`](#raindrop-dns-delete-dnsname)
67
+ * [`raindrop dns get DNSNAME`](#raindrop-dns-get-dnsname)
68
+ * [`raindrop dns list`](#raindrop-dns-list)
69
+ * [`raindrop dns records create ZONEID TYPE NAME CONTENT`](#raindrop-dns-records-create-zoneid-type-name-content)
70
+ * [`raindrop dns records delete ZONEID RECORDID`](#raindrop-dns-records-delete-zoneid-recordid)
71
+ * [`raindrop dns records get ZONEID RECORDID`](#raindrop-dns-records-get-zoneid-recordid)
72
+ * [`raindrop dns records list ZONEID`](#raindrop-dns-records-list-zoneid)
73
+ * [`raindrop dns records update ZONEID RECORDID`](#raindrop-dns-records-update-zoneid-recordid)
65
74
  * [`raindrop help [COMMAND]`](#raindrop-help-command)
66
75
  * [`raindrop logs query`](#raindrop-logs-query)
67
76
  * [`raindrop logs tail`](#raindrop-logs-tail)
68
77
  * [`raindrop mcp install-claude`](#raindrop-mcp-install-claude)
78
+ * [`raindrop mcp install-gemini`](#raindrop-mcp-install-gemini)
69
79
  * [`raindrop mcp status`](#raindrop-mcp-status)
70
80
  * [`raindrop object delete KEY`](#raindrop-object-delete-key)
71
81
  * [`raindrop object get KEY [OUTPUT]`](#raindrop-object-get-key-output)
@@ -118,7 +128,7 @@ EXAMPLES
118
128
  Get annotation by partial MRN and output as JSON
119
129
  ```
120
130
 
121
- _See code: [src/commands/annotation/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/annotation/get.ts)_
131
+ _See code: [src/commands/annotation/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/annotation/get.ts)_
122
132
 
123
133
  ## `raindrop annotation list [MRNPREFIX]`
124
134
 
@@ -151,7 +161,7 @@ EXAMPLES
151
161
  List annotations for a specific module using full MRN prefix in JSON format
152
162
  ```
153
163
 
154
- _See code: [src/commands/annotation/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/annotation/list.ts)_
164
+ _See code: [src/commands/annotation/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/annotation/list.ts)_
155
165
 
156
166
  ## `raindrop annotation put MRN ANNOTATION`
157
167
 
@@ -184,7 +194,7 @@ EXAMPLES
184
194
  Create an annotation from stdin using partial MRN
185
195
  ```
186
196
 
187
- _See code: [src/commands/annotation/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/annotation/put.ts)_
197
+ _See code: [src/commands/annotation/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/annotation/put.ts)_
188
198
 
189
199
  ## `raindrop auth list`
190
200
 
@@ -202,7 +212,7 @@ DESCRIPTION
202
212
  List authentications
203
213
  ```
204
214
 
205
- _See code: [src/commands/auth/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/auth/list.ts)_
215
+ _See code: [src/commands/auth/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/auth/list.ts)_
206
216
 
207
217
  ## `raindrop auth login`
208
218
 
@@ -216,7 +226,7 @@ DESCRIPTION
216
226
  Logs a user into the LiquidMetal platform. Supports browser-based authentication.
217
227
  ```
218
228
 
219
- _See code: [src/commands/auth/login.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/auth/login.ts)_
229
+ _See code: [src/commands/auth/login.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/auth/login.ts)_
220
230
 
221
231
  ## `raindrop auth logout`
222
232
 
@@ -230,7 +240,7 @@ DESCRIPTION
230
240
  Logout authentications
231
241
  ```
232
242
 
233
- _See code: [src/commands/auth/logout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/auth/logout.ts)_
243
+ _See code: [src/commands/auth/logout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/auth/logout.ts)_
234
244
 
235
245
  ## `raindrop auth select`
236
246
 
@@ -247,7 +257,7 @@ DESCRIPTION
247
257
  Select active organization
248
258
  ```
249
259
 
250
- _See code: [src/commands/auth/select.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/auth/select.ts)_
260
+ _See code: [src/commands/auth/select.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/auth/select.ts)_
251
261
 
252
262
  ## `raindrop bucket create-credential`
253
263
 
@@ -282,7 +292,7 @@ EXAMPLES
282
292
  Create a credential using a direct API URL
283
293
  ```
284
294
 
285
- _See code: [src/commands/bucket/create-credential.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/bucket/create-credential.ts)_
295
+ _See code: [src/commands/bucket/create-credential.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/bucket/create-credential.ts)_
286
296
 
287
297
  ## `raindrop bucket delete-credential`
288
298
 
@@ -313,7 +323,7 @@ EXAMPLES
313
323
  Delete credential using a direct API URL
314
324
  ```
315
325
 
316
- _See code: [src/commands/bucket/delete-credential.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/bucket/delete-credential.ts)_
326
+ _See code: [src/commands/bucket/delete-credential.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/bucket/delete-credential.ts)_
317
327
 
318
328
  ## `raindrop bucket get-credential`
319
329
 
@@ -344,7 +354,7 @@ EXAMPLES
344
354
  Get credential details using a direct API URL
345
355
  ```
346
356
 
347
- _See code: [src/commands/bucket/get-credential.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/bucket/get-credential.ts)_
357
+ _See code: [src/commands/bucket/get-credential.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/bucket/get-credential.ts)_
348
358
 
349
359
  ## `raindrop bucket list-credentials`
350
360
 
@@ -373,7 +383,7 @@ EXAMPLES
373
383
  List all credentials using a direct API URL
374
384
  ```
375
385
 
376
- _See code: [src/commands/bucket/list-credentials.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/bucket/list-credentials.ts)_
386
+ _See code: [src/commands/bucket/list-credentials.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/bucket/list-credentials.ts)_
377
387
 
378
388
  ## `raindrop build branch BRANCH`
379
389
 
@@ -391,7 +401,7 @@ FLAGS
391
401
  -M, --manifest=<value> [default: raindrop.manifest] project manifest
392
402
  -o, --output=<value> [default: dist] output directory
393
403
  -p, --versionId=<value> branch from this version
394
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
404
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
395
405
  --no-watch skip watching deployment status after branch
396
406
  --show show the current branch
397
407
  --start start the application after deploying
@@ -404,7 +414,7 @@ EXAMPLES
404
414
  Branch a Raindrop application.
405
415
  ```
406
416
 
407
- _See code: [src/commands/build/branch.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/branch.ts)_
417
+ _See code: [src/commands/build/branch.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/branch.ts)_
408
418
 
409
419
  ## `raindrop build checkout [VERSION]`
410
420
 
@@ -430,7 +440,7 @@ EXAMPLES
430
440
  Switched to version: 01jux6z20m4gbhn5kaa4mcm2jr
431
441
  ```
432
442
 
433
- _See code: [src/commands/build/checkout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/checkout.ts)_
443
+ _See code: [src/commands/build/checkout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/checkout.ts)_
434
444
 
435
445
  ## `raindrop build clone ID [PATH]`
436
446
 
@@ -458,7 +468,7 @@ EXAMPLES
458
468
  Clone a project in the specified directory.
459
469
  ```
460
470
 
461
- _See code: [src/commands/build/clone.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/clone.ts)_
471
+ _See code: [src/commands/build/clone.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/clone.ts)_
462
472
 
463
473
  ## `raindrop build delete [APPLICATION]`
464
474
 
@@ -476,7 +486,7 @@ FLAGS
476
486
  -a, --all delete all application versions
477
487
  -o, --output=<option> [default: table] output format
478
488
  <options: text|table|json>
479
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
489
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
480
490
  -v, --version=<value> application version to delete
481
491
 
482
492
  DESCRIPTION
@@ -487,7 +497,7 @@ EXAMPLES
487
497
  Deleted (application) at version (version)
488
498
  ```
489
499
 
490
- _See code: [src/commands/build/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/delete.ts)_
500
+ _See code: [src/commands/build/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/delete.ts)_
491
501
 
492
502
  ## `raindrop build deploy`
493
503
 
@@ -502,7 +512,7 @@ FLAGS
502
512
  -M, --manifest=<value> [default: raindrop.manifest] project manifest
503
513
  -a, --amend amend an existing application
504
514
  -o, --output=<value> [default: dist] output directory
505
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
515
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
506
516
  -s, --start start the application after deploying
507
517
  -v, --versionId=<value> version ID
508
518
  --lock=<value> override lock ID to resume deployment
@@ -516,7 +526,7 @@ EXAMPLES
516
526
  Deploy a Raindrop application version.
517
527
  ```
518
528
 
519
- _See code: [src/commands/build/deploy.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/deploy.ts)_
529
+ _See code: [src/commands/build/deploy.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/deploy.ts)_
520
530
 
521
531
  ## `raindrop build env get VAR`
522
532
 
@@ -543,7 +553,7 @@ EXAMPLES
543
553
  sets an env var/secret.
544
554
  ```
545
555
 
546
- _See code: [src/commands/build/env/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/env/get.ts)_
556
+ _See code: [src/commands/build/env/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/env/get.ts)_
547
557
 
548
558
  ## `raindrop build env set VAR [VALUE]`
549
559
 
@@ -561,7 +571,7 @@ FLAGS
561
571
  -M, --manifest=<value> [default: raindrop.manifest] project manifest
562
572
  -a, --application=<value> application to start
563
573
  -o, --output=<value> [default: table] output format
564
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
574
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
565
575
  -v, --versionId=<value> version ID
566
576
 
567
577
  DESCRIPTION
@@ -572,7 +582,7 @@ EXAMPLES
572
582
  sets an env var/secret.
573
583
  ```
574
584
 
575
- _See code: [src/commands/build/env/set.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/env/set.ts)_
585
+ _See code: [src/commands/build/env/set.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/env/set.ts)_
576
586
 
577
587
  ## `raindrop build find`
578
588
 
@@ -588,7 +598,7 @@ FLAGS
588
598
  -a, --application=<value> application
589
599
  -o, --output=<option> [default: full] output format
590
600
  <options: text|full|json|compact>
591
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
601
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
592
602
  -v, --version=<value> application version
593
603
  --all query modules for all applications
594
604
  --moduleType=<value> filter by module type (e.g. smartbucket)
@@ -611,7 +621,7 @@ EXAMPLES
611
621
  Find modules for a specific application and version.
612
622
  ```
613
623
 
614
- _See code: [src/commands/build/find.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/find.ts)_
624
+ _See code: [src/commands/build/find.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/find.ts)_
615
625
 
616
626
  ## `raindrop build generate`
617
627
 
@@ -624,7 +634,7 @@ USAGE
624
634
  FLAGS
625
635
  -M, --manifest=<value> [default: raindrop.manifest] project manifest
626
636
  -o, --output=<value> [default: dist] output directory
627
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
637
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
628
638
 
629
639
  DESCRIPTION
630
640
  (re)generate all code for a LiquidMetal.AI project
@@ -633,7 +643,7 @@ EXAMPLES
633
643
  $ raindrop build generate
634
644
  ```
635
645
 
636
- _See code: [src/commands/build/generate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/generate.ts)_
646
+ _See code: [src/commands/build/generate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/generate.ts)_
637
647
 
638
648
  ## `raindrop build init [PATH]`
639
649
 
@@ -657,7 +667,7 @@ EXAMPLES
657
667
  Initialize a project in the current directory.
658
668
  ```
659
669
 
660
- _See code: [src/commands/build/init.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/init.ts)_
670
+ _See code: [src/commands/build/init.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/init.ts)_
661
671
 
662
672
  ## `raindrop build list`
663
673
 
@@ -691,7 +701,7 @@ EXAMPLES
691
701
  Show only running/active versions.
692
702
  ```
693
703
 
694
- _See code: [src/commands/build/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/list.ts)_
704
+ _See code: [src/commands/build/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/list.ts)_
695
705
 
696
706
  ## `raindrop build sandbox`
697
707
 
@@ -712,7 +722,7 @@ EXAMPLES
712
722
  $ raindrop build sandbox
713
723
  ```
714
724
 
715
- _See code: [src/commands/build/sandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/sandbox.ts)_
725
+ _See code: [src/commands/build/sandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/sandbox.ts)_
716
726
 
717
727
  ## `raindrop build start`
718
728
 
@@ -725,7 +735,7 @@ USAGE
725
735
  FLAGS
726
736
  -M, --manifest=<value> [default: raindrop.manifest] project manifest
727
737
  -a, --application=<value> application to start
728
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
738
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
729
739
  -v, --version=<value> application version to start
730
740
 
731
741
  DESCRIPTION
@@ -736,7 +746,7 @@ EXAMPLES
736
746
  Start a Raindrop application.
737
747
  ```
738
748
 
739
- _See code: [src/commands/build/start.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/start.ts)_
749
+ _See code: [src/commands/build/start.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/start.ts)_
740
750
 
741
751
  ## `raindrop build status`
742
752
 
@@ -751,7 +761,7 @@ FLAGS
751
761
  -a, --application=<value> application
752
762
  -o, --output=<option> [default: compact] output format
753
763
  <options: watch|table|json|compact>
754
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
764
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
755
765
  -v, --version=<value> application version
756
766
 
757
767
  DESCRIPTION
@@ -761,7 +771,7 @@ EXAMPLES
761
771
  $ raindrop build status .
762
772
  ```
763
773
 
764
- _See code: [src/commands/build/status.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/status.ts)_
774
+ _See code: [src/commands/build/status.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/status.ts)_
765
775
 
766
776
  ## `raindrop build stop`
767
777
 
@@ -774,7 +784,7 @@ USAGE
774
784
  FLAGS
775
785
  -M, --manifest=<value> [default: raindrop.manifest] project manifest
776
786
  -a, --application=<value> application to stop
777
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
787
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
778
788
  -v, --version=<value> application version to start
779
789
 
780
790
  DESCRIPTION
@@ -785,7 +795,7 @@ EXAMPLES
785
795
  Stop a Raindrop application.
786
796
  ```
787
797
 
788
- _See code: [src/commands/build/stop.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/stop.ts)_
798
+ _See code: [src/commands/build/stop.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/stop.ts)_
789
799
 
790
800
  ## `raindrop build tools check`
791
801
 
@@ -797,7 +807,7 @@ USAGE
797
807
 
798
808
  FLAGS
799
809
  -m, --manifest=<value> [default: raindrop.manifest] project manifest
800
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
810
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
801
811
 
802
812
  DESCRIPTION
803
813
  validate a LiquidMetal.AI raindrop.manifest
@@ -806,7 +816,7 @@ EXAMPLES
806
816
  $ raindrop build tools check
807
817
  ```
808
818
 
809
- _See code: [src/commands/build/tools/check.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/tools/check.ts)_
819
+ _See code: [src/commands/build/tools/check.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/tools/check.ts)_
810
820
 
811
821
  ## `raindrop build tools fmt`
812
822
 
@@ -818,7 +828,7 @@ USAGE
818
828
 
819
829
  FLAGS
820
830
  -m, --manifest=<value> [default: raindrop.manifest] project manifest
821
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
831
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
822
832
 
823
833
  DESCRIPTION
824
834
  format a LiquidMetal.AI raindrop.manifest
@@ -827,7 +837,7 @@ EXAMPLES
827
837
  $ raindrop build tools fmt
828
838
  ```
829
839
 
830
- _See code: [src/commands/build/tools/fmt.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/tools/fmt.ts)_
840
+ _See code: [src/commands/build/tools/fmt.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/tools/fmt.ts)_
831
841
 
832
842
  ## `raindrop build unsandbox`
833
843
 
@@ -848,7 +858,7 @@ EXAMPLES
848
858
  $ raindrop build unsandbox
849
859
  ```
850
860
 
851
- _See code: [src/commands/build/unsandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/unsandbox.ts)_
861
+ _See code: [src/commands/build/unsandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/unsandbox.ts)_
852
862
 
853
863
  ## `raindrop build upload`
854
864
 
@@ -861,7 +871,7 @@ USAGE
861
871
  FLAGS
862
872
  -M, --manifest=<value> [default: raindrop.manifest] project manifest
863
873
  -o, --output=<value> [default: dist] output directory
864
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
874
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
865
875
  -v, --versionId=<value> (required) version ID
866
876
 
867
877
  DESCRIPTION
@@ -871,7 +881,7 @@ EXAMPLES
871
881
  $ raindrop build upload
872
882
  ```
873
883
 
874
- _See code: [src/commands/build/upload.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/upload.ts)_
884
+ _See code: [src/commands/build/upload.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/upload.ts)_
875
885
 
876
886
  ## `raindrop build validate`
877
887
 
@@ -884,7 +894,7 @@ USAGE
884
894
  FLAGS
885
895
  -M, --manifest=<value> [default: raindrop.manifest] project manifest
886
896
  -o, --output=<value> [default: dist] output directory
887
- -r, --root=<value> [default: /Users/ian/liquidmetal/packages/raindrop] root directory
897
+ -r, --root=<value> [default: /Users/dstaley/Work/liquidmetal/packages/raindrop] root directory
888
898
 
889
899
  DESCRIPTION
890
900
  build and validate a LiquidMetal.AI project
@@ -893,7 +903,306 @@ EXAMPLES
893
903
  $ raindrop build validate
894
904
  ```
895
905
 
896
- _See code: [src/commands/build/validate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/validate.ts)_
906
+ _See code: [src/commands/build/validate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/build/validate.ts)_
907
+
908
+ ## `raindrop dns create DOMAIN`
909
+
910
+ Create a new DNS zone
911
+
912
+ ```
913
+ USAGE
914
+ $ raindrop dns create DOMAIN [-d <value>] [-j] [--type full|partial] [--tags <value>...] [-o text|json]
915
+
916
+ ARGUMENTS
917
+ DOMAIN Fully qualified domain name (e.g., example.com)
918
+
919
+ FLAGS
920
+ -d, --description=<value> Description for the DNS zone
921
+ -j, --jumpStart Enable CloudFlare jump start (automatically detect and create DNS records)
922
+ -o, --output=<option> [default: text] output format
923
+ <options: text|json>
924
+ --tags=<value>... Comma-separated list of tags
925
+ --type=<option> [default: full] DNS zone type configuration (full or partial)
926
+ <options: full|partial>
927
+
928
+ DESCRIPTION
929
+ Create a new DNS zone
930
+
931
+ EXAMPLES
932
+ $ raindrop dns create example.com
933
+ Creates a new full DNS zone for example.com
934
+
935
+ $ raindrop dns create subdomain.example.com --description "My subdomain zone"
936
+ Creates a new DNS zone with a description
937
+
938
+ $ raindrop dns create example.com --type partial --jump-start
939
+ Creates a partial DNS zone with jump start enabled
940
+ ```
941
+
942
+ _See code: [src/commands/dns/create.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/dns/create.ts)_
943
+
944
+ ## `raindrop dns delete DNSNAME`
945
+
946
+ Delete a DNS zone
947
+
948
+ ```
949
+ USAGE
950
+ $ raindrop dns delete DNSNAME [-f]
951
+
952
+ ARGUMENTS
953
+ DNSNAME DNS name to delete (e.g., example.com)
954
+
955
+ FLAGS
956
+ -f, --force Skip confirmation prompt
957
+
958
+ DESCRIPTION
959
+ Delete a DNS zone
960
+
961
+ EXAMPLES
962
+ $ raindrop dns delete example.com
963
+ Deletes the DNS zone for example.com
964
+
965
+ $ raindrop dns delete subdomain.example.com --force
966
+ Deletes the DNS zone without confirmation prompt
967
+ ```
968
+
969
+ _See code: [src/commands/dns/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/dns/delete.ts)_
970
+
971
+ ## `raindrop dns get DNSNAME`
972
+
973
+ Get details of a specific DNS zone
974
+
975
+ ```
976
+ USAGE
977
+ $ raindrop dns get DNSNAME [-o text|json]
978
+
979
+ ARGUMENTS
980
+ DNSNAME DNS name to get details for (e.g., example.com)
981
+
982
+ FLAGS
983
+ -o, --output=<option> [default: text] output format
984
+ <options: text|json>
985
+
986
+ DESCRIPTION
987
+ Get details of a specific DNS zone
988
+
989
+ EXAMPLES
990
+ $ raindrop dns get example.com
991
+ Shows details for DNS zone for example.com
992
+
993
+ $ raindrop dns get subdomain.example.com --output json
994
+ Shows zone details in JSON format
995
+ ```
996
+
997
+ _See code: [src/commands/dns/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/dns/get.ts)_
998
+
999
+ ## `raindrop dns list`
1000
+
1001
+ List DNS zones for your organization
1002
+
1003
+ ```
1004
+ USAGE
1005
+ $ raindrop dns list [-o text|table|json|compact] [--pageSize <value>] [--pageToken <value>] [--zoneType
1006
+ custom|tenant]
1007
+
1008
+ FLAGS
1009
+ -o, --output=<option> [default: compact] output format
1010
+ <options: text|table|json|compact>
1011
+ --pageSize=<value> [default: 20] number of zones to return per page
1012
+ --pageToken=<value> page token for pagination
1013
+ --zoneType=<option> filter by zone type
1014
+ <options: custom|tenant>
1015
+
1016
+ DESCRIPTION
1017
+ List DNS zones for your organization
1018
+
1019
+ EXAMPLES
1020
+ $ raindrop dns list
1021
+ Lists all DNS zones in compact format (default)
1022
+ $ raindrop dns list --output table
1023
+ Lists all DNS zones in table format
1024
+ $ raindrop dns list --output text
1025
+ Lists all DNS zones with detailed information
1026
+ $ raindrop dns list --output json
1027
+ Lists all DNS zones in JSON format
1028
+ $ raindrop dns list --zone-type custom
1029
+ Lists only custom DNS zones
1030
+ $ raindrop dns list --page-size 10
1031
+ Lists DNS zones with pagination (10 per page)
1032
+ ```
1033
+
1034
+ _See code: [src/commands/dns/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/dns/list.ts)_
1035
+
1036
+ ## `raindrop dns records create ZONEID TYPE NAME CONTENT`
1037
+
1038
+ Create a new DNS record
1039
+
1040
+ ```
1041
+ USAGE
1042
+ $ raindrop dns records create ZONEID TYPE NAME CONTENT [--ttl <value>] [-p <value>] [--proxied] [-c <value>] [--tags
1043
+ <value>...] [-o text|json]
1044
+
1045
+ ARGUMENTS
1046
+ ZONEID Zone ID to create record in
1047
+ TYPE Record type (A, AAAA, CNAME, MX, TXT, NS, etc.)
1048
+ NAME Record name (e.g., www, @, subdomain)
1049
+ CONTENT Record content (IP address, domain, text value, etc.)
1050
+
1051
+ FLAGS
1052
+ -c, --comment=<value> Comment for the record
1053
+ -o, --output=<option> [default: text] output format
1054
+ <options: text|json>
1055
+ -p, --priority=<value> Priority (for MX and SRV records)
1056
+ --proxied Whether the record should be proxied through CloudFlare
1057
+ --tags=<value>... Comma-separated list of tags
1058
+ --ttl=<value> [default: 1] Time to live in seconds (1 = automatic)
1059
+
1060
+ DESCRIPTION
1061
+ Create a new DNS record
1062
+
1063
+ EXAMPLES
1064
+ $ raindrop dns records create zone-123 A www 192.0.2.1
1065
+ Creates an A record for www pointing to 192.0.2.1
1066
+
1067
+ $ raindrop dns records create zone-123 MX @ mail.example.com --priority 10
1068
+ Creates an MX record with priority 10
1069
+
1070
+ $ raindrop dns records create zone-123 TXT @ "v=spf1 include:_spf.google.com ~all"
1071
+ Creates a TXT record for SPF
1072
+ ```
1073
+
1074
+ _See code: [src/commands/dns/records/create.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/dns/records/create.ts)_
1075
+
1076
+ ## `raindrop dns records delete ZONEID RECORDID`
1077
+
1078
+ Delete a DNS record
1079
+
1080
+ ```
1081
+ USAGE
1082
+ $ raindrop dns records delete ZONEID RECORDID [-f]
1083
+
1084
+ ARGUMENTS
1085
+ ZONEID Zone ID containing the record
1086
+ RECORDID Record ID to delete
1087
+
1088
+ FLAGS
1089
+ -f, --force Skip confirmation prompt
1090
+
1091
+ DESCRIPTION
1092
+ Delete a DNS record
1093
+
1094
+ EXAMPLES
1095
+ $ raindrop dns records delete zone-123 record-456
1096
+ Deletes the DNS record with ID record-456 from zone-123
1097
+
1098
+ $ raindrop dns records delete zone-123 record-789 --force
1099
+ Deletes the DNS record without confirmation prompt
1100
+ ```
1101
+
1102
+ _See code: [src/commands/dns/records/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/dns/records/delete.ts)_
1103
+
1104
+ ## `raindrop dns records get ZONEID RECORDID`
1105
+
1106
+ Get details of a specific DNS record
1107
+
1108
+ ```
1109
+ USAGE
1110
+ $ raindrop dns records get ZONEID RECORDID [-o text|json]
1111
+
1112
+ ARGUMENTS
1113
+ ZONEID Zone ID containing the record
1114
+ RECORDID Record ID to get details for
1115
+
1116
+ FLAGS
1117
+ -o, --output=<option> [default: text] output format
1118
+ <options: text|json>
1119
+
1120
+ DESCRIPTION
1121
+ Get details of a specific DNS record
1122
+
1123
+ EXAMPLES
1124
+ $ raindrop dns records get zone-123 record-456
1125
+ Shows details for DNS record with ID record-456
1126
+
1127
+ $ raindrop dns records get zone-123 record-789 --output json
1128
+ Shows record details in JSON format
1129
+ ```
1130
+
1131
+ _See code: [src/commands/dns/records/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/dns/records/get.ts)_
1132
+
1133
+ ## `raindrop dns records list ZONEID`
1134
+
1135
+ List DNS records in a zone
1136
+
1137
+ ```
1138
+ USAGE
1139
+ $ raindrop dns records list ZONEID [-o text|table|json] [-t <value>] [-n <value>] [--pageSize <value>] [--pageToken
1140
+ <value>]
1141
+
1142
+ ARGUMENTS
1143
+ ZONEID Zone ID to list records for
1144
+
1145
+ FLAGS
1146
+ -n, --name=<value> Filter by record name
1147
+ -o, --output=<option> [default: table] output format
1148
+ <options: text|table|json>
1149
+ -t, --type=<value> Filter by record type (A, AAAA, CNAME, MX, TXT, NS, etc.)
1150
+ --pageSize=<value> [default: 20] number of records to return per page
1151
+ --pageToken=<value> page token for pagination
1152
+
1153
+ DESCRIPTION
1154
+ List DNS records in a zone
1155
+
1156
+ EXAMPLES
1157
+ $ raindrop dns records list zone-123
1158
+ Lists all DNS records in zone-123
1159
+
1160
+ $ raindrop dns records list zone-123 --type A
1161
+ Lists only A records in zone-123
1162
+
1163
+ $ raindrop dns records list zone-123 --name www
1164
+ Lists only records with name 'www'
1165
+ ```
1166
+
1167
+ _See code: [src/commands/dns/records/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/dns/records/list.ts)_
1168
+
1169
+ ## `raindrop dns records update ZONEID RECORDID`
1170
+
1171
+ Update an existing DNS record
1172
+
1173
+ ```
1174
+ USAGE
1175
+ $ raindrop dns records update ZONEID RECORDID [-t <value>] [-n <value>] [-c <value>] [--ttl <value>] [-p <value>]
1176
+ [--proxied] [--comment <value>] [--tags <value>...] [-o text|json]
1177
+
1178
+ ARGUMENTS
1179
+ ZONEID Zone ID containing the record
1180
+ RECORDID Record ID to update
1181
+
1182
+ FLAGS
1183
+ -c, --content=<value> Record content
1184
+ -n, --name=<value> Record name
1185
+ -o, --output=<option> [default: text] output format
1186
+ <options: text|json>
1187
+ -p, --priority=<value> Priority (for MX and SRV records)
1188
+ -t, --type=<value> Record type (required if changing)
1189
+ --comment=<value> Comment for the record
1190
+ --[no-]proxied Whether the record should be proxied through CloudFlare
1191
+ --tags=<value>... Comma-separated list of tags
1192
+ --ttl=<value> Time to live in seconds (1 = automatic)
1193
+
1194
+ DESCRIPTION
1195
+ Update an existing DNS record
1196
+
1197
+ EXAMPLES
1198
+ $ raindrop dns records update zone-123 record-456 --content 192.0.2.2
1199
+ Updates the content of a record
1200
+
1201
+ $ raindrop dns records update zone-123 record-456 --ttl 3600 --proxied
1202
+ Updates TTL and proxy settings
1203
+ ```
1204
+
1205
+ _See code: [src/commands/dns/records/update.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/dns/records/update.ts)_
897
1206
 
898
1207
  ## `raindrop help [COMMAND]`
899
1208
 
@@ -950,7 +1259,7 @@ EXAMPLES
950
1259
  $ raindrop logs query --application my-app --start-time 1638360000000 --end-time 1638363600000
951
1260
  ```
952
1261
 
953
- _See code: [src/commands/logs/query.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/logs/query.ts)_
1262
+ _See code: [src/commands/logs/query.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/logs/query.ts)_
954
1263
 
955
1264
  ## `raindrop logs tail`
956
1265
 
@@ -977,7 +1286,7 @@ EXAMPLES
977
1286
  $ raindrop logs tail --application my-app --version v1.2.3
978
1287
  ```
979
1288
 
980
- _See code: [src/commands/logs/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/logs/tail.ts)_
1289
+ _See code: [src/commands/logs/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/logs/tail.ts)_
981
1290
 
982
1291
  ## `raindrop mcp install-claude`
983
1292
 
@@ -1004,10 +1313,40 @@ EXAMPLES
1004
1313
  • /reattach-raindrop-session - Resume previous development sessions
1005
1314
  Requirements:
1006
1315
  - Claude CLI must be installed (https://claude.ai/download)
1007
- - You must be logged into your Raindrop organization via 'raindrop login'
1316
+ - You must be logged into your Raindrop organization via 'raindrop auth login'
1317
+ ```
1318
+
1319
+ _See code: [src/commands/mcp/install-claude.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/mcp/install-claude.ts)_
1320
+
1321
+ ## `raindrop mcp install-gemini`
1322
+
1323
+ Install complete Raindrop integration for Gemini CLI
1324
+
1008
1325
  ```
1326
+ USAGE
1327
+ $ raindrop mcp install-gemini
1009
1328
 
1010
- _See code: [src/commands/mcp/install-claude.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/mcp/install-claude.ts)_
1329
+ DESCRIPTION
1330
+ Install complete Raindrop integration for Gemini CLI
1331
+
1332
+ EXAMPLES
1333
+ $ raindrop mcp install-gemini
1334
+ Install Raindrop MCP server and Gemini CLI configuration files
1335
+ This command will:
1336
+ - Check if Gemini CLI is installed and accessible
1337
+ - Verify if raindrop-mcp server already exists (prevents duplicates)
1338
+ - Add the raindrop-mcp server to your Gemini CLI MCP configuration
1339
+ - Create ~/.gemini/RAINDROP.md with complete Raindrop workflow guidelines
1340
+ - Create Gemini CLI slash commands in ~/.gemini/commands/ (TOML format):
1341
+ • /new-raindrop-app - Start new Raindrop application development
1342
+ • /update-raindrop-app - Update existing Raindrop applications
1343
+ • /reattach-raindrop-session - Resume previous development sessions
1344
+ Requirements:
1345
+ - Gemini CLI must be installed
1346
+ - You must be logged into your Raindrop organization via 'raindrop auth login'
1347
+ ```
1348
+
1349
+ _See code: [src/commands/mcp/install-gemini.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/mcp/install-gemini.ts)_
1011
1350
 
1012
1351
  ## `raindrop mcp status`
1013
1352
 
@@ -1029,7 +1368,7 @@ EXAMPLES
1029
1368
  Show current MCP integration status
1030
1369
  ```
1031
1370
 
1032
- _See code: [src/commands/mcp/status.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/mcp/status.ts)_
1371
+ _See code: [src/commands/mcp/status.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/mcp/status.ts)_
1033
1372
 
1034
1373
  ## `raindrop object delete KEY`
1035
1374
 
@@ -1037,16 +1376,17 @@ Delete a file from the object storage
1037
1376
 
1038
1377
  ```
1039
1378
  USAGE
1040
- $ raindrop object delete KEY [-b <value>] [-m <value>] [-o text|json]
1379
+ $ raindrop object delete KEY [-b <value>] [-m <value>] [-a <value>] [-o text|json]
1041
1380
 
1042
1381
  ARGUMENTS
1043
1382
  KEY key/path in the bucket to delete
1044
1383
 
1045
1384
  FLAGS
1046
- -b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
1047
- -m, --moduleId=<value> moduleId
1048
- -o, --output=<option> [default: text] output format
1049
- <options: text|json>
1385
+ -a, --application=<value> application name
1386
+ -b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
1387
+ -m, --moduleId=<value> moduleId
1388
+ -o, --output=<option> [default: text] output format
1389
+ <options: text|json>
1050
1390
 
1051
1391
  DESCRIPTION
1052
1392
  Delete a file from the object storage
@@ -1054,9 +1394,12 @@ DESCRIPTION
1054
1394
  EXAMPLES
1055
1395
  $ raindrop object delete my-key --bucket my-bucket
1056
1396
  Delete file with key 'my-key' from my-bucket
1397
+
1398
+ $ raindrop object delete my-key --application my-app --bucket my-bucket
1399
+ Delete file with key 'my-key' from my-bucket within my-app
1057
1400
  ```
1058
1401
 
1059
- _See code: [src/commands/object/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/object/delete.ts)_
1402
+ _See code: [src/commands/object/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/object/delete.ts)_
1060
1403
 
1061
1404
  ## `raindrop object get KEY [OUTPUT]`
1062
1405
 
@@ -1064,17 +1407,18 @@ Download a file from the object storage
1064
1407
 
1065
1408
  ```
1066
1409
  USAGE
1067
- $ raindrop object get KEY [OUTPUT] [-b <value>] [-m <value>] [-f file|stdout|json]
1410
+ $ raindrop object get KEY [OUTPUT] [-b <value>] [-m <value>] [-a <value>] [-f file|stdout|json]
1068
1411
 
1069
1412
  ARGUMENTS
1070
1413
  KEY key/path in the bucket
1071
1414
  OUTPUT output file (defaults to key basename)
1072
1415
 
1073
1416
  FLAGS
1074
- -b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
1075
- -f, --format=<option> [default: file] output format
1076
- <options: file|stdout|json>
1077
- -m, --moduleId=<value> moduleId
1417
+ -a, --application=<value> application name
1418
+ -b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
1419
+ -f, --format=<option> [default: file] output format
1420
+ <options: file|stdout|json>
1421
+ -m, --moduleId=<value> moduleId
1078
1422
 
1079
1423
  DESCRIPTION
1080
1424
  Download a file from the object storage
@@ -1083,11 +1427,11 @@ EXAMPLES
1083
1427
  $ raindrop object get my-key --bucket my-bucket
1084
1428
  Download file with key 'my-key' from my-bucket
1085
1429
 
1086
- $ raindrop object get my-key output.txt --bucket my-bucket
1087
- Download file with key 'my-key' from my-bucket to output.txt
1430
+ $ raindrop object get my-key output.txt --application my-app --bucket my-bucket
1431
+ Download file with key 'my-key' from my-bucket within my-app to output.txt
1088
1432
  ```
1089
1433
 
1090
- _See code: [src/commands/object/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/object/get.ts)_
1434
+ _See code: [src/commands/object/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/object/get.ts)_
1091
1435
 
1092
1436
  ## `raindrop object list`
1093
1437
 
@@ -1095,13 +1439,14 @@ List objects in a bucket
1095
1439
 
1096
1440
  ```
1097
1441
  USAGE
1098
- $ raindrop object list [-b <value>] [-m <value>] [-o text|json|table]
1442
+ $ raindrop object list [-b <value>] [-m <value>] [-a <value>] [-o text|json|table]
1099
1443
 
1100
1444
  FLAGS
1101
- -b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
1102
- -m, --moduleId=<value> moduleId
1103
- -o, --output=<option> [default: text] output format
1104
- <options: text|json|table>
1445
+ -a, --application=<value> application name
1446
+ -b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
1447
+ -m, --moduleId=<value> moduleId
1448
+ -o, --output=<option> [default: text] output format
1449
+ <options: text|json|table>
1105
1450
 
1106
1451
  DESCRIPTION
1107
1452
  List objects in a bucket
@@ -1109,9 +1454,15 @@ DESCRIPTION
1109
1454
  EXAMPLES
1110
1455
  $ raindrop object list --bucket my-bucket
1111
1456
  List all objects in my-bucket
1457
+
1458
+ $ raindrop object list --application my-app
1459
+ List objects in the first bucket of my-app
1460
+
1461
+ $ raindrop object list --application my-app --bucket my-bucket
1462
+ List objects in my-bucket within my-app
1112
1463
  ```
1113
1464
 
1114
- _See code: [src/commands/object/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/object/list.ts)_
1465
+ _See code: [src/commands/object/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/object/list.ts)_
1115
1466
 
1116
1467
  ## `raindrop object put FILE KEY`
1117
1468
 
@@ -1119,13 +1470,14 @@ Upload a file to the object storage
1119
1470
 
1120
1471
  ```
1121
1472
  USAGE
1122
- $ raindrop object put FILE KEY [-b <value>] [-m <value>] [-t <value>] [-o text|json]
1473
+ $ raindrop object put FILE KEY [-b <value>] [-m <value>] [-a <value>] [-t <value>] [-o text|json]
1123
1474
 
1124
1475
  ARGUMENTS
1125
1476
  FILE file to upload
1126
1477
  KEY key/path in the bucket
1127
1478
 
1128
1479
  FLAGS
1480
+ -a, --application=<value> application name
1129
1481
  -b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
1130
1482
  -m, --moduleId=<value> moduleId
1131
1483
  -o, --output=<option> [default: text] output format
@@ -1138,9 +1490,12 @@ DESCRIPTION
1138
1490
  EXAMPLES
1139
1491
  $ raindrop object put ./myfile.txt my-key --bucket my-bucket
1140
1492
  Upload myfile.txt to my-bucket with key 'my-key'
1493
+
1494
+ $ raindrop object put ./myfile.txt my-key --application my-app --bucket my-bucket
1495
+ Upload myfile.txt to my-bucket within my-app with key 'my-key'
1141
1496
  ```
1142
1497
 
1143
- _See code: [src/commands/object/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/object/put.ts)_
1498
+ _See code: [src/commands/object/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/object/put.ts)_
1144
1499
 
1145
1500
  ## `raindrop plugins`
1146
1501
 
@@ -1457,7 +1812,7 @@ EXAMPLES
1457
1812
  Run a RAG search query against a Smart Bucket.
1458
1813
  ```
1459
1814
 
1460
- _See code: [src/commands/query/chunk-search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/query/chunk-search.ts)_
1815
+ _See code: [src/commands/query/chunk-search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/query/chunk-search.ts)_
1461
1816
 
1462
1817
  ## `raindrop query document QUERY`
1463
1818
 
@@ -1488,7 +1843,7 @@ EXAMPLES
1488
1843
  Chat with a document in a Smart Bucket using module ID.
1489
1844
  ```
1490
1845
 
1491
- _See code: [src/commands/query/document.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/query/document.ts)_
1846
+ _See code: [src/commands/query/document.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/query/document.ts)_
1492
1847
 
1493
1848
  ## `raindrop query events`
1494
1849
 
@@ -1511,7 +1866,7 @@ EXAMPLES
1511
1866
  $ raindrop query events .
1512
1867
  ```
1513
1868
 
1514
- _See code: [src/commands/query/events.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/query/events.ts)_
1869
+ _See code: [src/commands/query/events.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/query/events.ts)_
1515
1870
 
1516
1871
  ## `raindrop query reindex`
1517
1872
 
@@ -1537,7 +1892,7 @@ EXAMPLES
1537
1892
  Reindex objects with 5 parallel operations instead of the default 10
1538
1893
  ```
1539
1894
 
1540
- _See code: [src/commands/query/reindex.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/query/reindex.ts)_
1895
+ _See code: [src/commands/query/reindex.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/query/reindex.ts)_
1541
1896
 
1542
1897
  ## `raindrop query search [QUERY]`
1543
1898
 
@@ -1569,7 +1924,7 @@ EXAMPLES
1569
1924
  Get page 2 of previous search results.
1570
1925
  ```
1571
1926
 
1572
- _See code: [src/commands/query/search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/query/search.ts)_
1927
+ _See code: [src/commands/query/search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/query/search.ts)_
1573
1928
 
1574
1929
  ## `raindrop tail`
1575
1930
 
@@ -1590,5 +1945,5 @@ EXAMPLES
1590
1945
  $ raindrop logs tail --application my-app --version v1.2.3
1591
1946
  ```
1592
1947
 
1593
- _See code: [src/commands/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/tail.ts)_
1948
+ _See code: [src/commands/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.4/src/commands/tail.ts)_
1594
1949
  <!-- commandsstop -->