@ory/openclaw 0.12.0 → 0.13.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/dist/cli/main.js +7 -0
- package/package.json +3 -2
package/dist/cli/main.js
CHANGED
|
@@ -50,6 +50,7 @@ const argus_1 = require("@ory/argus");
|
|
|
50
50
|
const assets_js_1 = require("./assets.js");
|
|
51
51
|
const plugin_config_js_1 = require("./plugin-config.js");
|
|
52
52
|
const CONFIG_DIR = ".openclaw";
|
|
53
|
+
const PACKAGE_ROOT = path.resolve(__dirname, "..", "..");
|
|
53
54
|
function main() {
|
|
54
55
|
const [command, ...args] = process.argv.slice(2);
|
|
55
56
|
switch (command) {
|
|
@@ -98,6 +99,11 @@ function main() {
|
|
|
98
99
|
case "watch":
|
|
99
100
|
(0, argus_1.runWatchCommand)("openclaw", args);
|
|
100
101
|
break;
|
|
102
|
+
case "version":
|
|
103
|
+
case "--version":
|
|
104
|
+
case "-v":
|
|
105
|
+
process.exit((0, argus_1.runVersionCommand)("ory-openclaw", args, { packageRoot: PACKAGE_ROOT }));
|
|
106
|
+
break;
|
|
101
107
|
case "help":
|
|
102
108
|
case "--help":
|
|
103
109
|
case "-h":
|
|
@@ -185,6 +191,7 @@ Commands:
|
|
|
185
191
|
permissions <cmd> Manage permission mode and tool permissions (status, bootstrap, observe, enforce)
|
|
186
192
|
status [--project-dir <path>] Show plugin configuration and status
|
|
187
193
|
watch [trace-file] Watch live trace output
|
|
194
|
+
version Show version and the ory-agent-plugins build commit
|
|
188
195
|
local <cmd> Manage local Ory dev environment (up, down, status, seed, ...)
|
|
189
196
|
|
|
190
197
|
After installing, the plugin hooks into these OpenClaw lifecycle events:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/openclaw",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "Ory plugin for OpenClaw: scaffolding skills, a local Ory instance, and authentication, authorization, and audit for every tool call",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://ory.com",
|
|
@@ -65,7 +65,8 @@
|
|
|
65
65
|
"!dist/**/*.tsbuildinfo"
|
|
66
66
|
],
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"
|
|
68
|
+
"reo-census": "^1.2.8",
|
|
69
|
+
"@ory/argus": "0.13.0"
|
|
69
70
|
},
|
|
70
71
|
"engines": {
|
|
71
72
|
"node": ">=22"
|