Installation
Authentication
reminix login
Authenticate with Reminix via browser-based OAuth.
| Flag | Description |
|---|---|
--no-browser | Print the URL instead of opening the browser |
reminix logout
Clear stored credentials and project config.
reminix whoami
Show the currently logged-in user.
| Flag | Description |
|---|---|
--verbose | Show token creation time and credentials path |
Deploying
reminix deploy
Deploy the current directory to Reminix.
| Flag | Description |
|---|---|
-p, --project <id> | Project ID or org-slug/project-slug |
-d, --directory <path> | Directory to deploy (default: .) |
--no-wait | Don’t wait for the deployment to complete |
reminix deploy status
Check deployment status or list recent deployments.
| Flag | Description |
|---|---|
-p, --project <id> | Project ID or org-slug/project-slug |
Agents
reminix agent list
List agents in the current project.
reminix agent show <name>
Show details of an agent.
reminix agent invoke <name>
Invoke an agent with input.
| Flag | Description |
|---|---|
--prompt <text> | Prompt string (for prompt-type agents) |
--message <text> | Single user message (for chat/thread agents) |
--messages <json> | Messages array as JSON |
-i, --input <json> | Arbitrary input as JSON |
--stream | Stream the response |
-v, --verbose | Show execution ID, status, duration, and log URL |
reminix agent chat <name>
Send a chat message to an agent.
| Flag | Description |
|---|---|
-m, --message <text> | Message to send |
--history <json> | Conversation history as JSON |
--stream | Stream the response |
Tools
reminix tool list
List tools in the current project.
reminix tool show <name>
Show details of a tool.
reminix tool call <name>
Call a tool with input data.
| Flag | Description |
|---|---|
-i, --input <json> | Input data as JSON |
-v, --verbose | Show execution ID, status, duration, and log URL |
Projects
reminix project list
List projects you have access to.
reminix project show
Show details of the current project.
reminix project select
Interactively select and set the default project.
reminix project clear
Clear the default project.
Secrets
reminix secret list
List secrets for the current project. Values are hidden by default.
reminix secret set <key> <value>
Create or update a secret.
| Flag | Description |
|---|---|
--sensitive <bool> | Hide value in responses (default: true) |
reminix secret delete <key>
Delete a secret.
Configuration
reminix config set <key> <value>
Set a configuration value.
reminix config get <key>
Get a configuration value.
reminix config list
List all configuration values.
Global flags
All resource commands (agent, tool, secret, deploy) accept:
| Flag | Description |
|---|---|
-p, --project <id> | Override the default project |
-o, --output <format> | Output format: json or table |