@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 +12 -12
- package/dist/commands/version.d.ts +1 -1
- package/dist/commands/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,20 +31,20 @@ reminix deploy
|
|
|
31
31
|
reminix agent list
|
|
32
32
|
reminix tool list
|
|
33
33
|
|
|
34
|
-
#
|
|
35
|
-
reminix agent
|
|
34
|
+
# Invoke a task agent
|
|
35
|
+
reminix agent invoke my-agent --prompt "Hello!"
|
|
36
36
|
|
|
37
|
-
#
|
|
38
|
-
reminix agent
|
|
37
|
+
# Invoke a chat agent
|
|
38
|
+
reminix agent invoke chat-bot --messages '[{"role": "user", "content": "Hello!"}]'
|
|
39
39
|
|
|
40
|
-
#
|
|
41
|
-
reminix agent
|
|
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
|
|
44
|
+
reminix agent invoke my-agent --prompt "Write a story" --stream
|
|
45
45
|
|
|
46
|
-
#
|
|
47
|
-
reminix tool
|
|
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
|
|
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
|
|
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
|
|
77
|
+
## Agent Invoke Options
|
|
78
78
|
|
|
79
79
|
| Option | Description |
|
|
80
80
|
|--------|-------------|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "0.1.
|
|
1
|
+
export declare const version = "0.1.21";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/commands/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '0.1.
|
|
1
|
+
export const version = '0.1.21';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|