@plori/cli 0.1.0 → 0.2.0
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 +5 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -43,6 +43,11 @@ plori schedule mate "daily report" --in 86400
|
|
|
43
43
|
plori inputs mate # runs paused on a human question
|
|
44
44
|
plori answer <run-id> <tool-call-id> --approve
|
|
45
45
|
plori credits && plori disk
|
|
46
|
+
|
|
47
|
+
plori workflows list # your workflows
|
|
48
|
+
plori workflows create "rss digest" --trigger cron --cron "0 9 * * *"
|
|
49
|
+
plori workflows run "rss digest" # run it now (real fire, billed)
|
|
50
|
+
plori workflows execution "rss digest" <exec-id> # poll one run
|
|
46
51
|
```
|
|
47
52
|
|
|
48
53
|
Agents are addressed by name or UUID. Every command accepts `--json`; when
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plori/cli",
|
|
3
3
|
"description": "plori on the command line: give your AI agent its own cloud computer.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.2.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://plori.ai",
|
|
7
7
|
"repository": {
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"node": ">=18"
|
|
27
27
|
},
|
|
28
28
|
"optionalDependencies": {
|
|
29
|
-
"@plori/cli-darwin-arm64": "0.
|
|
30
|
-
"@plori/cli-darwin-x64": "0.
|
|
31
|
-
"@plori/cli-linux-x64": "0.
|
|
32
|
-
"@plori/cli-linux-arm64": "0.
|
|
33
|
-
"@plori/cli-win32-x64": "0.
|
|
29
|
+
"@plori/cli-darwin-arm64": "0.2.0",
|
|
30
|
+
"@plori/cli-darwin-x64": "0.2.0",
|
|
31
|
+
"@plori/cli-linux-x64": "0.2.0",
|
|
32
|
+
"@plori/cli-linux-arm64": "0.2.0",
|
|
33
|
+
"@plori/cli-win32-x64": "0.2.0"
|
|
34
34
|
}
|
|
35
35
|
}
|