@ory/cline 0.12.1 → 0.13.1
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 +1 -1
- package/dist/cli/main.js +6 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -124,7 +124,7 @@ All prefixed with `npx -y -p @ory/cline`.
|
|
|
124
124
|
|
|
125
125
|
- **Local Ory fails to start** — make sure Docker is running and ports `4000`, `4100`, `4455`, and `16686` are free.
|
|
126
126
|
- **Browser sign-in loops** — reset with `ory-cline agent unregister` and try again.
|
|
127
|
-
-
|
|
127
|
+
- **Install ran but never asked how to connect** — you're almost certainly on a stale `npx` cache. `npx -p @ory/cline` (no version pin) reuses a previously-downloaded copy instead of re-resolving to the latest, so an older CLI whose install predates the setup wizard can run while you believe you're on the current release. The install banner prints the running version; confirm it with `npx -y -p @ory/cline ory-cline version`. To force the current release, clear the cache and reinstall: `rm -rf ~/.npm/_npx` then `npx -y -p @ory/cline ory-cline install`. Pinning an exact version (`@ory/cline@<version>`) also bypasses the cached copy.
|
|
128
128
|
- **A hook didn't install** — check the install output for a skipped-event warning; move or remove your own script at that event name and re-run install.
|
|
129
129
|
- **Want to see what's happening** — `npx -y -p @ory/cline ory-cline status` for a snapshot, `npx -y -p @ory/cline ory-cline watch` for the live trace stream, or set `ORY_AGENT_DEBUG=true` for a verbose log. Traces and logs live under `~/.config/ory-agent-plugins/cline/` (see [See what's happening](#see-whats-happening)).
|
|
130
130
|
|
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.1",
|
|
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",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
],
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"reo-census": "^1.2.8",
|
|
70
|
-
"@ory/argus": "0.
|
|
70
|
+
"@ory/argus": "0.13.1"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"typescript": "^6.0.2",
|