@liquidmetal-ai/raindrop 0.6.0 → 0.6.2
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 +83 -48
- package/dist/commands/build/deploy.d.ts.map +1 -1
- package/dist/commands/build/deploy.js +10 -0
- package/dist/commands/mcp/install-claude.d.ts +3 -0
- package/dist/commands/mcp/install-claude.d.ts.map +1 -1
- package/dist/commands/mcp/install-claude.js +176 -9
- package/dist/commands/mcp/status.d.ts +21 -0
- package/dist/commands/mcp/status.d.ts.map +1 -0
- package/dist/commands/mcp/status.js +158 -0
- package/dist/commands/object/put.d.ts.map +1 -1
- package/dist/commands/object/put.js +2 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/directory-validation.d.ts +8 -0
- package/dist/utils/directory-validation.d.ts.map +1 -0
- package/dist/utils/directory-validation.js +29 -0
- package/oclif.manifest.json +1810 -1646
- package/package.json +3 -3
- package/templates/claude-code/new-raindrop-app.md +5 -0
- package/templates/claude-code/raindrop-guidelines.md +127 -0
- package/templates/claude-code/reattach-raindrop-session.md +12 -0
- package/templates/claude-code/update-raindrop-app.md +11 -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.
|
|
23
|
+
@liquidmetal-ai/raindrop/0.6.2 darwin-arm64 node-v24.5.0
|
|
24
24
|
$ raindrop --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ raindrop COMMAND
|
|
@@ -66,6 +66,7 @@ USAGE
|
|
|
66
66
|
* [`raindrop logs query`](#raindrop-logs-query)
|
|
67
67
|
* [`raindrop logs tail`](#raindrop-logs-tail)
|
|
68
68
|
* [`raindrop mcp install-claude`](#raindrop-mcp-install-claude)
|
|
69
|
+
* [`raindrop mcp status`](#raindrop-mcp-status)
|
|
69
70
|
* [`raindrop object delete KEY`](#raindrop-object-delete-key)
|
|
70
71
|
* [`raindrop object get KEY [OUTPUT]`](#raindrop-object-get-key-output)
|
|
71
72
|
* [`raindrop object list`](#raindrop-object-list)
|
|
@@ -117,7 +118,7 @@ EXAMPLES
|
|
|
117
118
|
Get annotation by partial MRN and output as JSON
|
|
118
119
|
```
|
|
119
120
|
|
|
120
|
-
_See code: [src/commands/annotation/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
121
|
+
_See code: [src/commands/annotation/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/annotation/get.ts)_
|
|
121
122
|
|
|
122
123
|
## `raindrop annotation list [MRNPREFIX]`
|
|
123
124
|
|
|
@@ -150,7 +151,7 @@ EXAMPLES
|
|
|
150
151
|
List annotations for a specific module using full MRN prefix in JSON format
|
|
151
152
|
```
|
|
152
153
|
|
|
153
|
-
_See code: [src/commands/annotation/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
154
|
+
_See code: [src/commands/annotation/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/annotation/list.ts)_
|
|
154
155
|
|
|
155
156
|
## `raindrop annotation put MRN ANNOTATION`
|
|
156
157
|
|
|
@@ -183,7 +184,7 @@ EXAMPLES
|
|
|
183
184
|
Create an annotation from stdin using partial MRN
|
|
184
185
|
```
|
|
185
186
|
|
|
186
|
-
_See code: [src/commands/annotation/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
187
|
+
_See code: [src/commands/annotation/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/annotation/put.ts)_
|
|
187
188
|
|
|
188
189
|
## `raindrop auth list`
|
|
189
190
|
|
|
@@ -201,7 +202,7 @@ DESCRIPTION
|
|
|
201
202
|
List authentications
|
|
202
203
|
```
|
|
203
204
|
|
|
204
|
-
_See code: [src/commands/auth/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
205
|
+
_See code: [src/commands/auth/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/auth/list.ts)_
|
|
205
206
|
|
|
206
207
|
## `raindrop auth login`
|
|
207
208
|
|
|
@@ -215,7 +216,7 @@ DESCRIPTION
|
|
|
215
216
|
Logs a user into the LiquidMetal platform. Supports browser-based authentication.
|
|
216
217
|
```
|
|
217
218
|
|
|
218
|
-
_See code: [src/commands/auth/login.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
219
|
+
_See code: [src/commands/auth/login.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/auth/login.ts)_
|
|
219
220
|
|
|
220
221
|
## `raindrop auth logout`
|
|
221
222
|
|
|
@@ -229,7 +230,7 @@ DESCRIPTION
|
|
|
229
230
|
Logout authentications
|
|
230
231
|
```
|
|
231
232
|
|
|
232
|
-
_See code: [src/commands/auth/logout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
233
|
+
_See code: [src/commands/auth/logout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/auth/logout.ts)_
|
|
233
234
|
|
|
234
235
|
## `raindrop auth select`
|
|
235
236
|
|
|
@@ -246,7 +247,7 @@ DESCRIPTION
|
|
|
246
247
|
Select active organization
|
|
247
248
|
```
|
|
248
249
|
|
|
249
|
-
_See code: [src/commands/auth/select.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
250
|
+
_See code: [src/commands/auth/select.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/auth/select.ts)_
|
|
250
251
|
|
|
251
252
|
## `raindrop bucket create-credential`
|
|
252
253
|
|
|
@@ -281,7 +282,7 @@ EXAMPLES
|
|
|
281
282
|
Create a credential using a direct API URL
|
|
282
283
|
```
|
|
283
284
|
|
|
284
|
-
_See code: [src/commands/bucket/create-credential.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
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)_
|
|
285
286
|
|
|
286
287
|
## `raindrop bucket delete-credential`
|
|
287
288
|
|
|
@@ -312,7 +313,7 @@ EXAMPLES
|
|
|
312
313
|
Delete credential using a direct API URL
|
|
313
314
|
```
|
|
314
315
|
|
|
315
|
-
_See code: [src/commands/bucket/delete-credential.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
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)_
|
|
316
317
|
|
|
317
318
|
## `raindrop bucket get-credential`
|
|
318
319
|
|
|
@@ -343,7 +344,7 @@ EXAMPLES
|
|
|
343
344
|
Get credential details using a direct API URL
|
|
344
345
|
```
|
|
345
346
|
|
|
346
|
-
_See code: [src/commands/bucket/get-credential.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
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)_
|
|
347
348
|
|
|
348
349
|
## `raindrop bucket list-credentials`
|
|
349
350
|
|
|
@@ -372,7 +373,7 @@ EXAMPLES
|
|
|
372
373
|
List all credentials using a direct API URL
|
|
373
374
|
```
|
|
374
375
|
|
|
375
|
-
_See code: [src/commands/bucket/list-credentials.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
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)_
|
|
376
377
|
|
|
377
378
|
## `raindrop build branch BRANCH`
|
|
378
379
|
|
|
@@ -403,7 +404,7 @@ EXAMPLES
|
|
|
403
404
|
Branch a Raindrop application.
|
|
404
405
|
```
|
|
405
406
|
|
|
406
|
-
_See code: [src/commands/build/branch.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
407
|
+
_See code: [src/commands/build/branch.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/branch.ts)_
|
|
407
408
|
|
|
408
409
|
## `raindrop build checkout [VERSION]`
|
|
409
410
|
|
|
@@ -429,7 +430,7 @@ EXAMPLES
|
|
|
429
430
|
Switched to version: 01jux6z20m4gbhn5kaa4mcm2jr
|
|
430
431
|
```
|
|
431
432
|
|
|
432
|
-
_See code: [src/commands/build/checkout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
433
|
+
_See code: [src/commands/build/checkout.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/checkout.ts)_
|
|
433
434
|
|
|
434
435
|
## `raindrop build clone ID [PATH]`
|
|
435
436
|
|
|
@@ -457,7 +458,7 @@ EXAMPLES
|
|
|
457
458
|
Clone a project in the specified directory.
|
|
458
459
|
```
|
|
459
460
|
|
|
460
|
-
_See code: [src/commands/build/clone.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
461
|
+
_See code: [src/commands/build/clone.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/clone.ts)_
|
|
461
462
|
|
|
462
463
|
## `raindrop build delete [APPLICATION]`
|
|
463
464
|
|
|
@@ -486,7 +487,7 @@ EXAMPLES
|
|
|
486
487
|
Deleted (application) at version (version)
|
|
487
488
|
```
|
|
488
489
|
|
|
489
|
-
_See code: [src/commands/build/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
490
|
+
_See code: [src/commands/build/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/delete.ts)_
|
|
490
491
|
|
|
491
492
|
## `raindrop build deploy`
|
|
492
493
|
|
|
@@ -515,7 +516,7 @@ EXAMPLES
|
|
|
515
516
|
Deploy a Raindrop application version.
|
|
516
517
|
```
|
|
517
518
|
|
|
518
|
-
_See code: [src/commands/build/deploy.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
519
|
+
_See code: [src/commands/build/deploy.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/deploy.ts)_
|
|
519
520
|
|
|
520
521
|
## `raindrop build env get VAR`
|
|
521
522
|
|
|
@@ -542,7 +543,7 @@ EXAMPLES
|
|
|
542
543
|
sets an env var/secret.
|
|
543
544
|
```
|
|
544
545
|
|
|
545
|
-
_See code: [src/commands/build/env/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
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)_
|
|
546
547
|
|
|
547
548
|
## `raindrop build env set VAR [VALUE]`
|
|
548
549
|
|
|
@@ -571,7 +572,7 @@ EXAMPLES
|
|
|
571
572
|
sets an env var/secret.
|
|
572
573
|
```
|
|
573
574
|
|
|
574
|
-
_See code: [src/commands/build/env/set.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
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)_
|
|
575
576
|
|
|
576
577
|
## `raindrop build find`
|
|
577
578
|
|
|
@@ -610,7 +611,7 @@ EXAMPLES
|
|
|
610
611
|
Find modules for a specific application and version.
|
|
611
612
|
```
|
|
612
613
|
|
|
613
|
-
_See code: [src/commands/build/find.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
614
|
+
_See code: [src/commands/build/find.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/find.ts)_
|
|
614
615
|
|
|
615
616
|
## `raindrop build generate`
|
|
616
617
|
|
|
@@ -632,7 +633,7 @@ EXAMPLES
|
|
|
632
633
|
$ raindrop build generate
|
|
633
634
|
```
|
|
634
635
|
|
|
635
|
-
_See code: [src/commands/build/generate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
636
|
+
_See code: [src/commands/build/generate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/generate.ts)_
|
|
636
637
|
|
|
637
638
|
## `raindrop build init [PATH]`
|
|
638
639
|
|
|
@@ -656,7 +657,7 @@ EXAMPLES
|
|
|
656
657
|
Initialize a project in the current directory.
|
|
657
658
|
```
|
|
658
659
|
|
|
659
|
-
_See code: [src/commands/build/init.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
660
|
+
_See code: [src/commands/build/init.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/init.ts)_
|
|
660
661
|
|
|
661
662
|
## `raindrop build list`
|
|
662
663
|
|
|
@@ -690,7 +691,7 @@ EXAMPLES
|
|
|
690
691
|
Show only running/active versions.
|
|
691
692
|
```
|
|
692
693
|
|
|
693
|
-
_See code: [src/commands/build/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
694
|
+
_See code: [src/commands/build/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/list.ts)_
|
|
694
695
|
|
|
695
696
|
## `raindrop build sandbox`
|
|
696
697
|
|
|
@@ -711,7 +712,7 @@ EXAMPLES
|
|
|
711
712
|
$ raindrop build sandbox
|
|
712
713
|
```
|
|
713
714
|
|
|
714
|
-
_See code: [src/commands/build/sandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
715
|
+
_See code: [src/commands/build/sandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/sandbox.ts)_
|
|
715
716
|
|
|
716
717
|
## `raindrop build start`
|
|
717
718
|
|
|
@@ -735,7 +736,7 @@ EXAMPLES
|
|
|
735
736
|
Start a Raindrop application.
|
|
736
737
|
```
|
|
737
738
|
|
|
738
|
-
_See code: [src/commands/build/start.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
739
|
+
_See code: [src/commands/build/start.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/start.ts)_
|
|
739
740
|
|
|
740
741
|
## `raindrop build status`
|
|
741
742
|
|
|
@@ -760,7 +761,7 @@ EXAMPLES
|
|
|
760
761
|
$ raindrop build status .
|
|
761
762
|
```
|
|
762
763
|
|
|
763
|
-
_See code: [src/commands/build/status.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
764
|
+
_See code: [src/commands/build/status.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/status.ts)_
|
|
764
765
|
|
|
765
766
|
## `raindrop build stop`
|
|
766
767
|
|
|
@@ -784,7 +785,7 @@ EXAMPLES
|
|
|
784
785
|
Stop a Raindrop application.
|
|
785
786
|
```
|
|
786
787
|
|
|
787
|
-
_See code: [src/commands/build/stop.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
788
|
+
_See code: [src/commands/build/stop.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/stop.ts)_
|
|
788
789
|
|
|
789
790
|
## `raindrop build tools check`
|
|
790
791
|
|
|
@@ -805,7 +806,7 @@ EXAMPLES
|
|
|
805
806
|
$ raindrop build tools check
|
|
806
807
|
```
|
|
807
808
|
|
|
808
|
-
_See code: [src/commands/build/tools/check.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
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)_
|
|
809
810
|
|
|
810
811
|
## `raindrop build tools fmt`
|
|
811
812
|
|
|
@@ -826,7 +827,7 @@ EXAMPLES
|
|
|
826
827
|
$ raindrop build tools fmt
|
|
827
828
|
```
|
|
828
829
|
|
|
829
|
-
_See code: [src/commands/build/tools/fmt.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
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)_
|
|
830
831
|
|
|
831
832
|
## `raindrop build unsandbox`
|
|
832
833
|
|
|
@@ -847,7 +848,7 @@ EXAMPLES
|
|
|
847
848
|
$ raindrop build unsandbox
|
|
848
849
|
```
|
|
849
850
|
|
|
850
|
-
_See code: [src/commands/build/unsandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
851
|
+
_See code: [src/commands/build/unsandbox.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/unsandbox.ts)_
|
|
851
852
|
|
|
852
853
|
## `raindrop build upload`
|
|
853
854
|
|
|
@@ -870,7 +871,7 @@ EXAMPLES
|
|
|
870
871
|
$ raindrop build upload
|
|
871
872
|
```
|
|
872
873
|
|
|
873
|
-
_See code: [src/commands/build/upload.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
874
|
+
_See code: [src/commands/build/upload.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/upload.ts)_
|
|
874
875
|
|
|
875
876
|
## `raindrop build validate`
|
|
876
877
|
|
|
@@ -892,7 +893,7 @@ EXAMPLES
|
|
|
892
893
|
$ raindrop build validate
|
|
893
894
|
```
|
|
894
895
|
|
|
895
|
-
_See code: [src/commands/build/validate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
896
|
+
_See code: [src/commands/build/validate.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/build/validate.ts)_
|
|
896
897
|
|
|
897
898
|
## `raindrop help [COMMAND]`
|
|
898
899
|
|
|
@@ -949,7 +950,7 @@ EXAMPLES
|
|
|
949
950
|
$ raindrop logs query --application my-app --start-time 1638360000000 --end-time 1638363600000
|
|
950
951
|
```
|
|
951
952
|
|
|
952
|
-
_See code: [src/commands/logs/query.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
953
|
+
_See code: [src/commands/logs/query.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/logs/query.ts)_
|
|
953
954
|
|
|
954
955
|
## `raindrop logs tail`
|
|
955
956
|
|
|
@@ -976,25 +977,59 @@ EXAMPLES
|
|
|
976
977
|
$ raindrop logs tail --application my-app --version v1.2.3
|
|
977
978
|
```
|
|
978
979
|
|
|
979
|
-
_See code: [src/commands/logs/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
980
|
+
_See code: [src/commands/logs/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/logs/tail.ts)_
|
|
980
981
|
|
|
981
982
|
## `raindrop mcp install-claude`
|
|
982
983
|
|
|
983
|
-
Install
|
|
984
|
+
Install complete Raindrop integration for Claude Code IDE
|
|
984
985
|
|
|
985
986
|
```
|
|
986
987
|
USAGE
|
|
987
988
|
$ raindrop mcp install-claude
|
|
988
989
|
|
|
989
990
|
DESCRIPTION
|
|
990
|
-
Install
|
|
991
|
+
Install complete Raindrop integration for Claude Code IDE
|
|
991
992
|
|
|
992
993
|
EXAMPLES
|
|
993
994
|
$ raindrop mcp install-claude
|
|
994
|
-
Install MCP
|
|
995
|
+
Install Raindrop MCP server and Claude Code configuration files
|
|
996
|
+
This command will:
|
|
997
|
+
- Check if Claude CLI is installed and accessible
|
|
998
|
+
- Verify if raindrop-mcp server already exists (prevents duplicates)
|
|
999
|
+
- Add the raindrop-mcp server to your Claude Code MCP configuration
|
|
1000
|
+
- Create ~/.claude/RAINDROP.md with complete Raindrop workflow guidelines
|
|
1001
|
+
- Create Claude Code slash commands in ~/.claude/commands/:
|
|
1002
|
+
• /new-raindrop-app - Start new Raindrop application development
|
|
1003
|
+
• /update-raindrop-app - Update existing Raindrop applications
|
|
1004
|
+
• /reattach-raindrop-session - Resume previous development sessions
|
|
1005
|
+
Requirements:
|
|
1006
|
+
- Claude CLI must be installed (https://claude.ai/download)
|
|
1007
|
+
- You must be logged into your Raindrop organization via 'raindrop login'
|
|
995
1008
|
```
|
|
996
1009
|
|
|
997
|
-
_See code: [src/commands/mcp/install-claude.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
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)_
|
|
1011
|
+
|
|
1012
|
+
## `raindrop mcp status`
|
|
1013
|
+
|
|
1014
|
+
show the status of MCP (Model Context Protocol) integration for Claude IDE
|
|
1015
|
+
|
|
1016
|
+
```
|
|
1017
|
+
USAGE
|
|
1018
|
+
$ raindrop mcp status [-o text|json]
|
|
1019
|
+
|
|
1020
|
+
FLAGS
|
|
1021
|
+
-o, --output=<option> [default: text] output format
|
|
1022
|
+
<options: text|json>
|
|
1023
|
+
|
|
1024
|
+
DESCRIPTION
|
|
1025
|
+
show the status of MCP (Model Context Protocol) integration for Claude IDE
|
|
1026
|
+
|
|
1027
|
+
EXAMPLES
|
|
1028
|
+
$ raindrop mcp status
|
|
1029
|
+
Show current MCP integration status
|
|
1030
|
+
```
|
|
1031
|
+
|
|
1032
|
+
_See code: [src/commands/mcp/status.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/mcp/status.ts)_
|
|
998
1033
|
|
|
999
1034
|
## `raindrop object delete KEY`
|
|
1000
1035
|
|
|
@@ -1021,7 +1056,7 @@ EXAMPLES
|
|
|
1021
1056
|
Delete file with key 'my-key' from my-bucket
|
|
1022
1057
|
```
|
|
1023
1058
|
|
|
1024
|
-
_See code: [src/commands/object/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
1059
|
+
_See code: [src/commands/object/delete.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/object/delete.ts)_
|
|
1025
1060
|
|
|
1026
1061
|
## `raindrop object get KEY [OUTPUT]`
|
|
1027
1062
|
|
|
@@ -1052,7 +1087,7 @@ EXAMPLES
|
|
|
1052
1087
|
Download file with key 'my-key' from my-bucket to output.txt
|
|
1053
1088
|
```
|
|
1054
1089
|
|
|
1055
|
-
_See code: [src/commands/object/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
1090
|
+
_See code: [src/commands/object/get.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/object/get.ts)_
|
|
1056
1091
|
|
|
1057
1092
|
## `raindrop object list`
|
|
1058
1093
|
|
|
@@ -1076,7 +1111,7 @@ EXAMPLES
|
|
|
1076
1111
|
List all objects in my-bucket
|
|
1077
1112
|
```
|
|
1078
1113
|
|
|
1079
|
-
_See code: [src/commands/object/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
1114
|
+
_See code: [src/commands/object/list.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/object/list.ts)_
|
|
1080
1115
|
|
|
1081
1116
|
## `raindrop object put FILE KEY`
|
|
1082
1117
|
|
|
@@ -1105,7 +1140,7 @@ EXAMPLES
|
|
|
1105
1140
|
Upload myfile.txt to my-bucket with key 'my-key'
|
|
1106
1141
|
```
|
|
1107
1142
|
|
|
1108
|
-
_See code: [src/commands/object/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
1143
|
+
_See code: [src/commands/object/put.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/object/put.ts)_
|
|
1109
1144
|
|
|
1110
1145
|
## `raindrop plugins`
|
|
1111
1146
|
|
|
@@ -1422,7 +1457,7 @@ EXAMPLES
|
|
|
1422
1457
|
Run a RAG search query against a Smart Bucket.
|
|
1423
1458
|
```
|
|
1424
1459
|
|
|
1425
|
-
_See code: [src/commands/query/chunk-search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
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)_
|
|
1426
1461
|
|
|
1427
1462
|
## `raindrop query document QUERY`
|
|
1428
1463
|
|
|
@@ -1453,7 +1488,7 @@ EXAMPLES
|
|
|
1453
1488
|
Chat with a document in a Smart Bucket using module ID.
|
|
1454
1489
|
```
|
|
1455
1490
|
|
|
1456
|
-
_See code: [src/commands/query/document.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
1491
|
+
_See code: [src/commands/query/document.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/query/document.ts)_
|
|
1457
1492
|
|
|
1458
1493
|
## `raindrop query events`
|
|
1459
1494
|
|
|
@@ -1476,7 +1511,7 @@ EXAMPLES
|
|
|
1476
1511
|
$ raindrop query events .
|
|
1477
1512
|
```
|
|
1478
1513
|
|
|
1479
|
-
_See code: [src/commands/query/events.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
1514
|
+
_See code: [src/commands/query/events.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/query/events.ts)_
|
|
1480
1515
|
|
|
1481
1516
|
## `raindrop query reindex`
|
|
1482
1517
|
|
|
@@ -1502,7 +1537,7 @@ EXAMPLES
|
|
|
1502
1537
|
Reindex objects with 5 parallel operations instead of the default 10
|
|
1503
1538
|
```
|
|
1504
1539
|
|
|
1505
|
-
_See code: [src/commands/query/reindex.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
1540
|
+
_See code: [src/commands/query/reindex.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/query/reindex.ts)_
|
|
1506
1541
|
|
|
1507
1542
|
## `raindrop query search [QUERY]`
|
|
1508
1543
|
|
|
@@ -1534,7 +1569,7 @@ EXAMPLES
|
|
|
1534
1569
|
Get page 2 of previous search results.
|
|
1535
1570
|
```
|
|
1536
1571
|
|
|
1537
|
-
_See code: [src/commands/query/search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
1572
|
+
_See code: [src/commands/query/search.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/query/search.ts)_
|
|
1538
1573
|
|
|
1539
1574
|
## `raindrop tail`
|
|
1540
1575
|
|
|
@@ -1555,5 +1590,5 @@ EXAMPLES
|
|
|
1555
1590
|
$ raindrop logs tail --application my-app --version v1.2.3
|
|
1556
1591
|
```
|
|
1557
1592
|
|
|
1558
|
-
_See code: [src/commands/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.
|
|
1593
|
+
_See code: [src/commands/tail.ts](https://github.com/liquidmetal-ai/liquidmetal/blob/v0.6.2/src/commands/tail.ts)_
|
|
1559
1594
|
<!-- commandsstop -->
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../../src/commands/build/deploy.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../../src/commands/build/deploy.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAKpD,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,WAAW,CAAC,OAAO,MAAM,CAAC;IAC5D,MAAM,CAAC,IAAI,KAAM;IAEjB,MAAM,CAAC,WAAW,SAAmC;IAErD,MAAM,CAAC,QAAQ,WAIb;IAEF,MAAM,CAAC,KAAK;;;;;;;;;;;;;;;;;MAsCV;IAEI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CAmD3B"}
|
|
@@ -2,6 +2,7 @@ import { Flags } from '@oclif/core';
|
|
|
2
2
|
import { BaseCommand } from '../../base-command.js';
|
|
3
3
|
import { deploy } from '../../deploy.js';
|
|
4
4
|
import { watchStatus } from '../../status.js';
|
|
5
|
+
import { validateRaindropDirectory, isDirectoryValidationError } from '../../utils/directory-validation.js';
|
|
5
6
|
export default class Deploy extends BaseCommand {
|
|
6
7
|
static args = {};
|
|
7
8
|
static description = 'deploy a Raindrop application';
|
|
@@ -50,6 +51,15 @@ Deploy a Raindrop application version.
|
|
|
50
51
|
amend: Flags.boolean({ char: 'a', description: 'amend an existing application', required: false, default: false }),
|
|
51
52
|
};
|
|
52
53
|
async run() {
|
|
54
|
+
try {
|
|
55
|
+
await validateRaindropDirectory(this.flags.root, this.flags.manifest);
|
|
56
|
+
}
|
|
57
|
+
catch (error) {
|
|
58
|
+
if (isDirectoryValidationError(error)) {
|
|
59
|
+
this.error(error.message + '\n\nSuggested actions:\n' + error.suggestedActions?.map(action => ` • ${action}`).join('\n'), { exit: 1 });
|
|
60
|
+
}
|
|
61
|
+
throw error;
|
|
62
|
+
}
|
|
53
63
|
const config = await this.loadConfig();
|
|
54
64
|
const versionId = this.flags.versionId ?? config.versionId;
|
|
55
65
|
const unlock = this.flags.lock ?? config.lock ?? 'user';
|
|
@@ -13,7 +13,10 @@ export default class McpInstallClaude extends BaseCommand<typeof McpInstallClaud
|
|
|
13
13
|
};
|
|
14
14
|
run(): Promise<void>;
|
|
15
15
|
private installClaudeIntegration;
|
|
16
|
+
private createClaudeConfigFiles;
|
|
16
17
|
private checkClaudeInstalled;
|
|
18
|
+
private checkMcpServerExists;
|
|
17
19
|
private executeClaudeCommand;
|
|
20
|
+
private checkMcpAlreadyConfigured;
|
|
18
21
|
}
|
|
19
22
|
//# sourceMappingURL=install-claude.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"install-claude.d.ts","sourceRoot":"","sources":["../../../src/commands/mcp/install-claude.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"install-claude.d.ts","sourceRoot":"","sources":["../../../src/commands/mcp/install-claude.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEpD,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,WAAW,CAAC,OAAO,gBAAgB,CAAC;IAChF,MAAM,CAAC,WAAW,SAA+D;IAEjF,MAAM,CAAC,QAAQ,WAkBb;IAEF,MAAM,CAAC,KAAK;;;;;;;;MAEV;IAEI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;YAKZ,wBAAwB;YA6DxB,uBAAuB;YAqFvB,oBAAoB;YAQpB,oBAAoB;YAqBpB,oBAAoB;YAoBpB,yBAAyB;CA2BxC"}
|