@ory/gemini-cli 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 CHANGED
@@ -141,7 +141,7 @@ All prefixed with `npx -y -p @ory/gemini-cli`.
141
141
 
142
142
  - **`/ory:local-up` fails** — make sure Docker is running and ports `4000`, `4100`, `4455`, and `16686` are free.
143
143
  - **Browser sign-in loops** — reset with `ory-gemini agent unregister` and try again.
144
- - **`npx` grabbed an old version** force the latest: `npx -y -p @ory/gemini-cli@latest ory-gemini …`.
144
+ - **Install ran but never asked how to connect** — you're almost certainly on a stale `npx` cache. `npx -p @ory/gemini-cli` (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/gemini-cli ory-gemini version`. To force the current release, clear the cache and reinstall: `rm -rf ~/.npm/_npx` then `npx -y -p @ory/gemini-cli ory-gemini install`. Pinning an exact version (`@ory/gemini-cli@<version>`) also bypasses the cached copy.
145
145
  - **Want to see what's happening** — `npx -y -p @ory/gemini-cli ory-gemini status` for a snapshot, `npx -y -p @ory/gemini-cli ory-gemini 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/gemini-cli/` (see [See what's happening](#see-whats-happening)).
146
146
 
147
147
  ## Learn more
package/dist/cli/main.js CHANGED
@@ -108,6 +108,11 @@ function main() {
108
108
  case "watch":
109
109
  (0, argus_1.runWatchCommand)("gemini-cli", args);
110
110
  break;
111
+ case "version":
112
+ case "--version":
113
+ case "-v":
114
+ process.exit((0, argus_1.runVersionCommand)("ory-gemini", args, { packageRoot: PACKAGE_ROOT }));
115
+ break;
111
116
  case "help":
112
117
  case "--help":
113
118
  case "-h":
@@ -230,6 +235,7 @@ Commands:
230
235
  setup [--project-dir] Write hooks directly to settings.json (fallback)
231
236
  status Show plugin status and configuration
232
237
  watch [trace-file] Tail the trace stream (OTel spans) live
238
+ version Show version and the ory-agent-plugins build commit
233
239
  local <cmd> Manage local Ory dev environment (up, down, status, seed, ...)
234
240
 
235
241
  After installing, the extension hooks into these Gemini CLI lifecycle events:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ory/gemini-cli",
3
- "version": "0.12.1",
3
+ "version": "0.13.1",
4
4
  "description": "Ory extension for Gemini CLI: 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",
@@ -69,7 +69,7 @@
69
69
  ],
70
70
  "dependencies": {
71
71
  "reo-census": "^1.2.8",
72
- "@ory/argus": "0.12.1"
72
+ "@ory/argus": "0.13.1"
73
73
  },
74
74
  "engines": {
75
75
  "node": ">=22"