@ory/cline 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 +6 -0
- package/package.json +3 -2
package/dist/cli/main.js
CHANGED
|
@@ -103,6 +103,11 @@ function main() {
|
|
|
103
103
|
case "watch":
|
|
104
104
|
(0, argus_1.runWatchCommand)("cline", args);
|
|
105
105
|
break;
|
|
106
|
+
case "version":
|
|
107
|
+
case "--version":
|
|
108
|
+
case "-v":
|
|
109
|
+
process.exit((0, argus_1.runVersionCommand)("ory-cline", args, { packageRoot: PACKAGE_ROOT }));
|
|
110
|
+
break;
|
|
106
111
|
case "help":
|
|
107
112
|
case "--help":
|
|
108
113
|
case "-h":
|
|
@@ -162,6 +167,7 @@ Commands:
|
|
|
162
167
|
setup [options] Write hook scripts directly to the hooks directory (fallback)
|
|
163
168
|
status Show plugin status and configuration
|
|
164
169
|
watch [trace-file] Tail the trace stream (OTel spans) live
|
|
170
|
+
version Show version and the ory-agent-plugins build commit
|
|
165
171
|
local <cmd> Manage local Ory dev environment (up, down, status, seed, ...)
|
|
166
172
|
|
|
167
173
|
After installing, the per-event hook scripts wire into these Cline lifecycle events:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/cline",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "Ory plugin for Cline: 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",
|
|
@@ -66,7 +66,8 @@
|
|
|
66
66
|
"!dist/**/*.tsbuildinfo"
|
|
67
67
|
],
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"
|
|
69
|
+
"reo-census": "^1.2.8",
|
|
70
|
+
"@ory/argus": "0.13.0"
|
|
70
71
|
},
|
|
71
72
|
"devDependencies": {
|
|
72
73
|
"typescript": "^6.0.2",
|