@reminix/cli 0.1.20 → 0.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -31,20 +31,20 @@ reminix deploy
31
31
  reminix agent list
32
32
  reminix tool list
33
33
 
34
- # Execute a task agent
35
- reminix agent execute my-agent --prompt "Hello!"
34
+ # Invoke a task agent
35
+ reminix agent invoke my-agent --prompt "Hello!"
36
36
 
37
- # Execute a chat agent
38
- reminix agent execute chat-bot --messages '[{"role": "user", "content": "Hello!"}]'
37
+ # Invoke a chat agent
38
+ reminix agent invoke chat-bot --messages '[{"role": "user", "content": "Hello!"}]'
39
39
 
40
- # Execute with custom parameters
41
- reminix agent execute calculator --data '{"a": 5, "b": 3}'
40
+ # Invoke with custom parameters
41
+ reminix agent invoke calculator --data '{"a": 5, "b": 3}'
42
42
 
43
43
  # Stream the response
44
- reminix agent execute my-agent --prompt "Write a story" --stream
44
+ reminix agent invoke my-agent --prompt "Write a story" --stream
45
45
 
46
- # Execute a tool
47
- reminix tool execute my-tool -i '{"name": "World"}'
46
+ # Call a tool
47
+ reminix tool call my-tool -i '{"name": "World"}'
48
48
  ```
49
49
 
50
50
  ## Commands
@@ -60,10 +60,10 @@ reminix tool execute my-tool -i '{"name": "World"}'
60
60
  | `reminix project clear` | Clear the default project |
61
61
  | `reminix agent list` | List all agents |
62
62
  | `reminix agent show <name>` | Show agent details |
63
- | `reminix agent execute <name>` | Execute an agent |
63
+ | `reminix agent invoke <name>` | Invoke an agent |
64
64
  | `reminix tool list` | List all tools |
65
65
  | `reminix tool show <name>` | Show tool details |
66
- | `reminix tool execute <name>` | Execute a tool with input |
66
+ | `reminix tool call <name>` | Call a tool with input |
67
67
  | `reminix secret list` | List all secrets for the project |
68
68
  | `reminix secret set <key> <value>` | Set a secret (create or update) |
69
69
  | `reminix secret delete <key>` | Delete a secret |
@@ -74,7 +74,7 @@ reminix tool execute my-tool -i '{"name": "World"}'
74
74
  | `reminix config get <key>` | Get configuration value |
75
75
  | `reminix config list` | List all configuration |
76
76
 
77
- ## Agent Execute Options
77
+ ## Agent Invoke Options
78
78
 
79
79
  | Option | Description |
80
80
  |--------|-------------|
@@ -1,2 +1,2 @@
1
- export declare const version = "0.1.20";
1
+ export declare const version = "0.1.21";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,2 +1,2 @@
1
- export const version = '0.1.20';
1
+ export const version = '0.1.21';
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reminix/cli",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "description": "Reminix CLI - Command-line interface for Reminix",
5
5
  "license": "Apache-2.0",
6
6
  "author": {