@liquidmetal-ai/raindrop v0.4.1
raindrop
CLI for the Raindrop platform
Usage
$ npm install -g @liquidmetal-ai/raindrop
$ raindrop COMMAND
running command...
$ raindrop (--version)
@liquidmetal-ai/raindrop/0.4.1 darwin-arm64 node-v22.13.1
$ raindrop --help [COMMAND]
USAGE
$ raindrop COMMAND
...Commands
raindrop auth listraindrop auth loginraindrop auth logoutraindrop auth selectraindrop build branch BRANCHraindrop build checkout [VERSION]raindrop build clone ID [PATH]raindrop build delete [APPLICATION]raindrop build deployraindrop build env get VARraindrop build env set VAR [VALUE]raindrop build findraindrop build generateraindrop build init [PATH]raindrop build listraindrop build sandboxraindrop build startraindrop build statusraindrop build stopraindrop build tools checkraindrop build tools fmtraindrop build unsandboxraindrop build uploadraindrop build validateraindrop help [COMMAND]raindrop object delete KEYraindrop object get KEY [OUTPUT]raindrop object listraindrop object put FILE KEYraindrop pluginsraindrop plugins add PLUGINraindrop plugins:inspect PLUGIN...raindrop plugins install PLUGINraindrop plugins link PATHraindrop plugins remove [PLUGIN]raindrop plugins resetraindrop plugins uninstall [PLUGIN]raindrop plugins unlink [PLUGIN]raindrop plugins updateraindrop query chunk-search QUERYraindrop query document QUERYraindrop query search [QUERY]raindrop tail
raindrop auth list
List authentications
USAGE
$ raindrop auth list [-o text|table|json]
FLAGS
-o, --output=<option> [default: table] output format
<options: text|table|json>
DESCRIPTION
List authenticationsSee code: src/commands/auth/list.ts
raindrop auth login
Logs a user into the LiquidMetal platform. Supports browser-based authentication.
USAGE
$ raindrop auth login
DESCRIPTION
Logs a user into the LiquidMetal platform. Supports browser-based authentication.See code: src/commands/auth/login.ts
raindrop auth logout
Logout authentications
USAGE
$ raindrop auth logout
DESCRIPTION
Logout authenticationsSee code: src/commands/auth/logout.ts
raindrop auth select
Select active organization
USAGE
$ raindrop auth select [--organizationId <value>]
FLAGS
--organizationId=<value> organizationId to select as active
DESCRIPTION
Select active organizationSee code: src/commands/auth/select.ts
raindrop build branch BRANCH
branch a Raindrop application
USAGE
$ raindrop build branch BRANCH [-r <value>] [-M <value>] [-o <value>] [-p <value>] [--start] [--show]
ARGUMENTS
BRANCH branch name
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-o, --output=<value> [default: dist] output directory
-p, --versionId=<value> branch from this version
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
--show show the current branch
--start start the application after deploying
DESCRIPTION
branch a Raindrop application
EXAMPLES
$ raindrop build branch .
Branch a Raindrop application.See code: src/commands/build/branch.ts
raindrop build checkout [VERSION]
switch the current context to a specific version
USAGE
$ raindrop build checkout [VERSION] [-o <value>]
ARGUMENTS
VERSION version id
FLAGS
-o, --output=<value> [default: text] output format
DESCRIPTION
switch the current context to a specific version
EXAMPLES
$ raindrop build checkout
Currently on version: 01jac6p20m4gahn1kaa2mhm2js
$ raindrop build checkout 01jux6z20m4gbhn5kaa4mcm2jr
Switched to version: 01jux6z20m4gbhn5kaa4mcm2jrSee code: src/commands/build/checkout.ts
raindrop build clone ID [PATH]
clone a LiquidMetal.AI project
USAGE
$ raindrop build clone ID [PATH] [--overwrite]
ARGUMENTS
ID liquidmetal project ID to clone (e.g., liquidmetal/smartbucket)
PATH [default: .] Path to initialize the project in
FLAGS
--overwrite Overwrite existing files
DESCRIPTION
clone a LiquidMetal.AI project
EXAMPLES
$ raindrop build clone .
Clone a project in the current directory.
$ raindrop build clone
Clone a project in the specified directory.See code: src/commands/build/clone.ts
raindrop build delete [APPLICATION]
delete Raindrop applications
USAGE
$ raindrop build delete [APPLICATION] [-r <value>] [-M <value>] [-o text|table|json] [-v <value> | -a]
ARGUMENTS
APPLICATION application name
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-a, --all delete all application versions
-o, --output=<option> [default: table] output format
<options: text|table|json>
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
-v, --version=<value> application version to delete
DESCRIPTION
delete Raindrop applications
EXAMPLES
$ raindrop build delete .
Deleted (application) at version (version)See code: src/commands/build/delete.ts
raindrop build deploy
deploy a Raindrop application
USAGE
$ raindrop build deploy [-r <value>] [-M <value>] [-o <value>] [-v <value>] [-s] [--resume] [--lock <value>] [-a]
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-a, --amend amend an existing application
-o, --output=<value> [default: dist] output directory
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
-s, --start start the application after deploying
-v, --versionId=<value> version ID
--lock=<value> override lock ID to resume deployment
--resume resume a deployment
DESCRIPTION
deploy a Raindrop application
EXAMPLES
$ raindrop build deploy .
Deploy a Raindrop application version.See code: src/commands/build/deploy.ts
raindrop build env get VAR
get an env var/secret
USAGE
$ raindrop build env get VAR [-o <value>] [-M <value>] [-v <value>] [-a <value>]
ARGUMENTS
VAR env var/secret name
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-a, --application=<value> application
-o, --output=<value> [default: table] output format
-v, --versionId=<value> version ID
DESCRIPTION
get an env var/secret
EXAMPLES
$ raindrop build env get my-app:env:MY_VAR
sets an env var/secret.See code: src/commands/build/env/get.ts
raindrop build env set VAR [VALUE]
set an env var/secret
USAGE
$ raindrop build env set VAR [VALUE] [-r <value>] [-M <value>] [-o <value>] [-v <value>] [-a <value>]
ARGUMENTS
VAR env var/secret name
VALUE env var/secret value
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-a, --application=<value> application to start
-o, --output=<value> [default: table] output format
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
-v, --versionId=<value> version ID
DESCRIPTION
set an env var/secret
EXAMPLES
$ raindrop build env set .
sets an env var/secret.See code: src/commands/build/env/set.ts
raindrop build find
find resources in Raindrop
USAGE
$ raindrop build find [-r <value>] [-M <value>] [-a <value>] [-v <value>] [--moduleType <value>] [-o
text|table|json] [--all]
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-a, --application=<value> application
-o, --output=<option> [default: table] output format
<options: text|table|json>
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
-v, --version=<value> application version
--all query modules for all applications
--moduleType=<value> filter by module type (e.g. smartbucket)
DESCRIPTION
find resources in Raindrop
EXAMPLES
$ raindrop build find .See code: src/commands/build/find.ts
raindrop build generate
(re)generate all code for a LiquidMetal.AI project
USAGE
$ raindrop build generate [-r <value>] [-M <value>] [-o <value>]
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-o, --output=<value> [default: dist] output directory
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
DESCRIPTION
(re)generate all code for a LiquidMetal.AI project
EXAMPLES
$ raindrop build generateSee code: src/commands/build/generate.ts
raindrop build init [PATH]
start a new LiquidMetal.AI project
USAGE
$ raindrop build init [PATH] [--overwrite]
ARGUMENTS
PATH [default: .] Path to initialize the project in
FLAGS
--overwrite Overwrite existing files
DESCRIPTION
start a new LiquidMetal.AI project
EXAMPLES
$ raindrop build init .
Initialize a project in the current directory.See code: src/commands/build/init.ts
raindrop build list
list Raindrop catalog resources
USAGE
$ raindrop build list [-a] [-o text|table|json|log]
FLAGS
-a, --all show deleted resources
-o, --output=<option> [default: table] output format
<options: text|table|json|log>
DESCRIPTION
list Raindrop catalog resources
EXAMPLES
$ raindrop build list .
List Raindrop catalog resources.See code: src/commands/build/list.ts
raindrop build sandbox
mark a version as sandboxed in the Raindrop catalog
USAGE
$ raindrop build sandbox [--manifest <value>] [-v <value>]
FLAGS
-v, --version=<value> application version to sandbox
--manifest=<value> [default: raindrop.manifest] project manifest
DESCRIPTION
mark a version as sandboxed in the Raindrop catalog
EXAMPLES
$ raindrop build sandboxSee code: src/commands/build/sandbox.ts
raindrop build start
start a Raindrop application
USAGE
$ raindrop build start [-r <value>] [-M <value>] [-a <value>] [-v <value>]
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-a, --application=<value> application to start
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
-v, --version=<value> application version to start
DESCRIPTION
start a Raindrop application
EXAMPLES
$ raindrop build start .
Start a Raindrop application.See code: src/commands/build/start.ts
raindrop build status
show the status of an application in Raindrop
USAGE
$ raindrop build status [-r <value>] [-M <value>] [-a <value>] [-v <value>] [-o watch|table|json]
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-a, --application=<value> application
-o, --output=<option> [default: table] output format
<options: watch|table|json>
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
-v, --version=<value> application version
DESCRIPTION
show the status of an application in Raindrop
EXAMPLES
$ raindrop build status .See code: src/commands/build/status.ts
raindrop build stop
stop a Raindrop application
USAGE
$ raindrop build stop [-r <value>] [-M <value>] [-a <value>] [-v <value>]
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-a, --application=<value> application to stop
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
-v, --version=<value> application version to start
DESCRIPTION
stop a Raindrop application
EXAMPLES
$ raindrop build stop .
Stop a Raindrop application.See code: src/commands/build/stop.ts
raindrop build tools check
validate a LiquidMetal.AI raindrop.manifest
USAGE
$ raindrop build tools check [-r <value>] [-m <value>]
FLAGS
-m, --manifest=<value> [default: raindrop.manifest] project manifest
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
DESCRIPTION
validate a LiquidMetal.AI raindrop.manifest
EXAMPLES
$ raindrop build tools checkSee code: src/commands/build/tools/check.ts
raindrop build tools fmt
format a LiquidMetal.AI raindrop.manifest
USAGE
$ raindrop build tools fmt [-r <value>] [-m <value>]
FLAGS
-m, --manifest=<value> [default: raindrop.manifest] project manifest
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
DESCRIPTION
format a LiquidMetal.AI raindrop.manifest
EXAMPLES
$ raindrop build tools fmtSee code: src/commands/build/tools/fmt.ts
raindrop build unsandbox
mark a version as unsandboxed in the Raindrop catalog
USAGE
$ raindrop build unsandbox [--manifest <value>] [-v <value>]
FLAGS
-v, --version=<value> application version to unsandbox
--manifest=<value> [default: raindrop.manifest] project manifest
DESCRIPTION
mark a version as unsandboxed in the Raindrop catalog
EXAMPLES
$ raindrop build unsandboxSee code: src/commands/build/unsandbox.ts
raindrop build upload
build and validate a LiquidMetal.AI project
USAGE
$ raindrop build upload -v <value> [-r <value>] [-M <value>] [-o <value>]
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-o, --output=<value> [default: dist] output directory
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
-v, --versionId=<value> (required) version ID
DESCRIPTION
build and validate a LiquidMetal.AI project
EXAMPLES
$ raindrop build uploadSee code: src/commands/build/upload.ts
raindrop build validate
build and validate a LiquidMetal.AI project
USAGE
$ raindrop build validate [-r <value>] [-M <value>] [-o <value>]
FLAGS
-M, --manifest=<value> [default: raindrop.manifest] project manifest
-o, --output=<value> [default: dist] output directory
-r, --root=<value> [default: /Users/tungsten/Code/liquidmetal/packages/raindrop] root directory
DESCRIPTION
build and validate a LiquidMetal.AI project
EXAMPLES
$ raindrop build validateSee code: src/commands/build/validate.ts
raindrop help [COMMAND]
Display help for raindrop.
USAGE
$ raindrop help [COMMAND...] [-n]
ARGUMENTS
COMMAND... Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for raindrop.See code: @oclif/plugin-help
raindrop object delete KEY
Delete a file from the object storage
USAGE
$ raindrop object delete KEY [-b <value>] [-m <value>] [-o text|json]
ARGUMENTS
KEY key/path in the bucket to delete
FLAGS
-b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
-m, --moduleId=<value> moduleId
-o, --output=<option> [default: text] output format
<options: text|json>
DESCRIPTION
Delete a file from the object storage
EXAMPLES
$ raindrop object delete my-key --bucket my-bucket
Delete file with key 'my-key' from my-bucketSee code: src/commands/object/delete.ts
raindrop object get KEY [OUTPUT]
Download a file from the object storage
USAGE
$ raindrop object get KEY [OUTPUT] [-b <value>] [-m <value>] [-f file|stdout|json]
ARGUMENTS
KEY key/path in the bucket
OUTPUT output file (defaults to key basename)
FLAGS
-b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
-f, --format=<option> [default: file] output format
<options: file|stdout|json>
-m, --moduleId=<value> moduleId
DESCRIPTION
Download a file from the object storage
EXAMPLES
$ raindrop object get my-key --bucket my-bucket
Download file with key 'my-key' from my-bucket
$ raindrop object get my-key output.txt --bucket my-bucket
Download file with key 'my-key' from my-bucket to output.txtSee code: src/commands/object/get.ts
raindrop object list
List objects in a bucket
USAGE
$ raindrop object list [-b <value>] [-m <value>] [-o text|json|table]
FLAGS
-b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
-m, --moduleId=<value> moduleId
-o, --output=<option> [default: text] output format
<options: text|json|table>
DESCRIPTION
List objects in a bucket
EXAMPLES
$ raindrop object list --bucket my-bucket
List all objects in my-bucketSee code: src/commands/object/list.ts
raindrop object put FILE KEY
Upload a file to the object storage
USAGE
$ raindrop object put FILE KEY [-b <value>] [-m <value>] [-t <value>] [-o text|json]
ARGUMENTS
FILE file to upload
KEY key/path in the bucket
FLAGS
-b, --bucket=<value> bucket name version can be specified with #, e.g. my-bucket#versionId
-m, --moduleId=<value> moduleId
-o, --output=<option> [default: text] output format
<options: text|json>
-t, --contentType=<value> content type of the file
DESCRIPTION
Upload a file to the object storage
EXAMPLES
$ raindrop object put ./myfile.txt my-key --bucket my-bucket
Upload myfile.txt to my-bucket with key 'my-key'See code: src/commands/object/put.ts
raindrop plugins
List installed plugins.
USAGE
$ raindrop plugins [--json] [--core]
FLAGS
--core Show core plugins.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
List installed plugins.
EXAMPLES
$ raindrop pluginsSee code: @oclif/plugin-plugins
raindrop plugins add PLUGIN
Installs a plugin into raindrop.
USAGE
$ raindrop plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
-h, --help Show CLI help.
-s, --silent Silences npm output.
-v, --verbose Show verbose npm output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into raindrop.
Uses npm to install plugins.
Installation of a user-installed plugin will override a core plugin.
Use the RAINDROP_NPM_LOG_LEVEL environment variable to set the npm loglevel.
Use the RAINDROP_NPM_REGISTRY environment variable to set the npm registry.
ALIASES
$ raindrop plugins add
EXAMPLES
Install a plugin from npm registry.
$ raindrop plugins add myplugin
Install a plugin from a github url.
$ raindrop plugins add https://github.com/someuser/someplugin
Install a plugin from a github slug.
$ raindrop plugins add someuser/somepluginraindrop plugins:inspect PLUGIN...
Displays installation properties of a plugin.
USAGE
$ raindrop plugins inspect PLUGIN...
ARGUMENTS
PLUGIN... [default: .] Plugin to inspect.
FLAGS
-h, --help Show CLI help.
-v, --verbose
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Displays installation properties of a plugin.
EXAMPLES
$ raindrop plugins inspect mypluginSee code: @oclif/plugin-plugins
raindrop plugins install PLUGIN
Installs a plugin into raindrop.
USAGE
$ raindrop plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
-h, --help Show CLI help.
-s, --silent Silences npm output.
-v, --verbose Show verbose npm output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into raindrop.
Uses npm to install plugins.
Installation of a user-installed plugin will override a core plugin.
Use the RAINDROP_NPM_LOG_LEVEL environment variable to set the npm loglevel.
Use the RAINDROP_NPM_REGISTRY environment variable to set the npm registry.
ALIASES
$ raindrop plugins add
EXAMPLES
Install a plugin from npm registry.
$ raindrop plugins install myplugin
Install a plugin from a github url.
$ raindrop plugins install https://github.com/someuser/someplugin
Install a plugin from a github slug.
$ raindrop plugins install someuser/somepluginSee code: @oclif/plugin-plugins
raindrop plugins link PATH
Links a plugin into the CLI for development.
USAGE
$ raindrop plugins link PATH [-h] [--install] [-v]
ARGUMENTS
PATH [default: .] path to plugin
FLAGS
-h, --help Show CLI help.
-v, --verbose
--[no-]install Install dependencies after linking the plugin.
DESCRIPTION
Links a plugin into the CLI for development.
Installation of a linked plugin will override a user-installed or core plugin.
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
command will override the user-installed or core plugin implementation. This is useful for development work.
EXAMPLES
$ raindrop plugins link mypluginSee code: @oclif/plugin-plugins
raindrop plugins remove [PLUGIN]
Removes a plugin from the CLI.
USAGE
$ raindrop plugins remove [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ raindrop plugins unlink
$ raindrop plugins remove
EXAMPLES
$ raindrop plugins remove mypluginraindrop plugins reset
Remove all user-installed and linked plugins.
USAGE
$ raindrop plugins reset [--hard] [--reinstall]
FLAGS
--hard Delete node_modules and package manager related files in addition to uninstalling plugins.
--reinstall Reinstall all plugins after uninstalling.See code: @oclif/plugin-plugins
raindrop plugins uninstall [PLUGIN]
Removes a plugin from the CLI.
USAGE
$ raindrop plugins uninstall [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ raindrop plugins unlink
$ raindrop plugins remove
EXAMPLES
$ raindrop plugins uninstall mypluginSee code: @oclif/plugin-plugins
raindrop plugins unlink [PLUGIN]
Removes a plugin from the CLI.
USAGE
$ raindrop plugins unlink [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ raindrop plugins unlink
$ raindrop plugins remove
EXAMPLES
$ raindrop plugins unlink mypluginraindrop plugins update
Update installed plugins.
USAGE
$ raindrop plugins update [-h] [-v]
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Update installed plugins.See code: @oclif/plugin-plugins
raindrop query chunk-search QUERY
Run a RAG (Retrieval Augmented Generation) search query against a Smart Bucket
USAGE
$ raindrop query chunk-search QUERY [-b <value>...] [-m <value>...] [-o text|json]
ARGUMENTS
QUERY search query to run
FLAGS
-b, --buckets=<value>... Bucket names to search in, version can be specified with #, e.g. my-bucket#versionId
-m, --moduleIds=<value>... Module IDs to search in
-o, --output=<option> [default: text] output format
<options: text|json>
DESCRIPTION
Run a RAG (Retrieval Augmented Generation) search query against a Smart Bucket
EXAMPLES
$ raindrop query chunk-search "What is LiquidMetal?"
Run a RAG search query against a Smart Bucket.See code: src/commands/query/chunk-search.ts
raindrop query document QUERY
Chat with a document stored in a Smart Bucket
USAGE
$ raindrop query document QUERY -o <value> [-b <value>] [-m <value>] [-O text|json]
ARGUMENTS
QUERY question or query about the document
FLAGS
-O, --output=<option> [default: text] output format
<options: text|json>
-b, --bucket=<value> Bucket name containing the document, version can be specified with #, e.g. my-bucket#versionId
-m, --moduleId=<value> Module ID containing the document
-o, --objectId=<value> (required) Object ID of the document to chat with
DESCRIPTION
Chat with a document stored in a Smart Bucket
EXAMPLES
$ raindrop query document "What is the main topic of this document?" -b my-bucket -o document.pdf
Chat with a document in a Smart Bucket using bucket name.
$ raindrop query document "What is the main topic of this document?" -m module-id -o document.pdf
Chat with a document in a Smart Bucket using module ID.See code: src/commands/query/document.ts
raindrop query search [QUERY]
Run a search query against a smart bucket using natural language
USAGE
$ raindrop query search [QUERY] [-b <value>...] [-m <value>...] [--requestId <value>] [-p <value>] [-o text|json]
ARGUMENTS
QUERY search query
FLAGS
-b, --buckets=<value>... Bucket names to search in, version can be specified with #, e.g. my-bucket#versionId
-m, --moduleIds=<value>... Module IDs to search in
-o, --output=<option> [default: text] output format
<options: text|json>
-p, --page=<value> [default: 1] page number for paginated results
--requestId=<value> request ID for pagination
DESCRIPTION
Run a search query against a smart bucket using natural language
EXAMPLES
$ raindrop query search "What is LiquidMetal?" --buckets my-bucket-1 my-bucket-2
Run a new supervisor agent search query across multiple buckets.
$ raindrop query search --requestId 01HNG4V2RJXS5T --page 2
Get page 2 of previous search results.See code: src/commands/query/search.ts
raindrop tail
tail logs of applications deployed
USAGE
$ raindrop tail
DESCRIPTION
tail logs of applications deployedSee code: src/commands/tail.ts
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
12 months ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago