@ory/gemini-cli 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.
Files changed (2) hide show
  1. package/dist/cli/main.js +6 -0
  2. package/package.json +3 -2
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.0",
3
+ "version": "0.13.0",
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",
@@ -68,7 +68,8 @@
68
68
  "gemini-extension"
69
69
  ],
70
70
  "dependencies": {
71
- "@ory/argus": "0.12.0"
71
+ "reo-census": "^1.2.8",
72
+ "@ory/argus": "0.13.0"
72
73
  },
73
74
  "engines": {
74
75
  "node": ">=22"