@ory/gemini-cli 0.8.2 → 0.9.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/README.md CHANGED
@@ -60,10 +60,11 @@ From any project where you'd like Ory authentication, inside Gemini CLI:
60
60
  4. **Turn on Ory login for the Gemini session itself.** *(Optional but recommended.)* Out of the box the extension only governs your *app*. To also attach an Ory identity to *Gemini's* session — so every tool call is attributed to you, not a fallback `session:<id>` subject — opt in to the user-login flow:
61
61
 
62
62
  ```bash
63
- export ORY_USER_LOGIN=1
63
+ export ORY_USER_LOGIN=true
64
+ export ORY_OAUTH2_CLIENT_ID=<value printed by `local up`>
64
65
  ```
65
66
 
66
- User login is off by default. With it on, the next Gemini session opens an Ory login in your browser; sign in with the same seeded credentials from step 1, and the token is reused on subsequent sessions until it expires. This is what makes `permissions enforce` (see [Agent security](#agent-security)) deny on the right identity later.
67
+ User login is off by default. Both exports above are printed in the `local up` banner — copy them straight from there. `ORY_OAUTH2_CLIENT_ID` is required whenever `ORY_USER_LOGIN` is on: it identifies the public OAuth2 client the PKCE browser flow exchanges for a token. With both set, the next Gemini session opens an Ory login in your browser; sign in with the same seeded credentials from step 1, and the token is reused on subsequent sessions until it expires. This is what makes `permissions enforce` (see [Agent security](#agent-security)) deny on the right identity later.
67
68
 
68
69
  That's the full Ory DX path. Stop here if you're just evaluating the extension. Continue to [Agent security](#agent-security) when you're ready to enforce.
69
70
 
@@ -105,23 +106,80 @@ Bundled and registered automatically. Exposes the Ory CLI and the Ory Network RE
105
106
 
106
107
  ## Pointing at a real Ory project
107
108
 
108
- The Quickstart uses the local stack. If you have a hosted [Ory Network](https://console.ory.sh) project, point the extension at it:
109
+ The Quickstart uses the local stack. If you have a hosted [Ory Network](https://console.ory.sh) project, point the extension at it with a single configure command. **The extension requires `--oauth2-client-id` whenever `--project-url` is provided** — register the client first (see [Register the user OAuth2 client](#register-the-user-oauth2-client) below), then run:
109
110
 
110
111
  ```bash
111
112
  npx -y -p @ory/gemini-cli ory-gemini configure \
112
113
  --project-url https://<id>.projects.oryapis.com \
113
- --api-key ory_pat_...
114
+ --oauth2-client-id <public OAuth2 client id>
114
115
  ```
115
116
 
117
+ - **`--project-url`** points the extension at your project. The **agent identity** (machine credentials for Gemini's outgoing Ory API calls) is created automatically on first run via OAuth2 Dynamic Client Registration ([RFC 7591](https://datatracker.ietf.org/doc/html/rfc7591)) against the project's `/oauth2/register` endpoint — no manual step required for that one.
118
+ - **`--oauth2-client-id`** is required because the **user** PKCE browser flow (triggered by `ORY_USER_LOGIN=true`) cannot self-register — you must register a public OAuth2 client ahead of time and supply its id here. The configure command refuses to save a project URL without it, so you don't end up with a silently-broken setup later. See [Register the user OAuth2 client](#register-the-user-oauth2-client) below for the exact CLI / Console steps.
119
+ - **`--api-key ory_pat_...`** is optional — pass it only if you want to override the auto-registered agent identity with a static personal access token (operator override; rarely needed).
120
+
121
+ If you only want audit logging (no auth or permission checks), substitute `--audit-only` — the OAuth2 client id is not required in that mode:
122
+
123
+ ```bash
124
+ npx -y -p @ory/gemini-cli ory-gemini configure --audit-only
125
+ ```
126
+
127
+ The same settings can be supplied via environment variables (`ORY_PROJECT_URL`, `ORY_OAUTH2_CLIENT_ID`, `ORY_AGENT_API_KEY`) — env vars take precedence over the config file when both are set, which is what most CI / scripted setups want.
128
+
116
129
  Config is saved to `~/.config/ory-agent-plugins/config.json` and shared across every Ory agent plugin or extension on the machine.
117
130
 
118
131
  Without configuration the extension still loads cleanly and runs in **pass-through mode**: skills and commands work, but nothing is blocked. You can stay in pass-through mode indefinitely if you only want the DX features.
119
132
 
133
+ ### Register the user OAuth2 client
134
+
135
+ If you plan to turn on `ORY_USER_LOGIN=true` (recommended — it's what attributes every tool call to *you* rather than a fallback `session:<id>` subject), your hosted Ory project needs a **public** OAuth2 client (no client secret) registered ahead of time. The local stack provisions this for you automatically; against a hosted project you have to register it once yourself.
136
+
137
+ The client must list **all four** loopback ports as redirect URIs:
138
+
139
+ - `http://127.0.0.1:47823/callback`
140
+ - `http://127.0.0.1:47824/callback`
141
+ - `http://127.0.0.1:47825/callback`
142
+ - `http://127.0.0.1:47826/callback`
143
+
144
+ The extension walks the four ports at runtime so the login can survive any one of them being occupied — Ory rejects the callback if the port it lands on isn't on the registered list, so register all four.
145
+
146
+ Create the client with the [Ory CLI](https://www.ory.com/docs/guides/cli/installation):
147
+
148
+ ```bash
149
+ ory create oauth2-client --project <project-id> \
150
+ --name "ory-agent-plugin" \
151
+ --grant-type authorization_code,refresh_token \
152
+ --response-type code \
153
+ --scope openid,offline_access \
154
+ --token-endpoint-auth-method none \
155
+ --redirect-uri http://127.0.0.1:47823/callback \
156
+ --redirect-uri http://127.0.0.1:47824/callback \
157
+ --redirect-uri http://127.0.0.1:47825/callback \
158
+ --redirect-uri http://127.0.0.1:47826/callback
159
+ ```
160
+
161
+ …or in the [Ory Console](https://console.ory.sh) under *OAuth2* → *Clients* → *Create client* (pick "Public client", set "Authorization Code" + "Refresh Token" grants, scopes `openid offline_access`, paste the four redirect URIs above). Then persist the issued id with the configure command (preferred — survives across sessions):
162
+
163
+ ```bash
164
+ npx -y -p @ory/gemini-cli ory-gemini configure \
165
+ --project-url https://<id>.projects.oryapis.com \
166
+ --oauth2-client-id <client-id from the step above>
167
+ ```
168
+
169
+ …or set it in the environment alongside `ORY_USER_LOGIN`:
170
+
171
+ ```bash
172
+ export ORY_USER_LOGIN=true
173
+ export ORY_OAUTH2_CLIENT_ID=<client-id from the step above>
174
+ ```
175
+
176
+ Headless / CI runs that already hold a session token can skip this entirely by setting `ORY_USER_SESSION_TOKEN` instead — no browser flow runs, so no OAuth2 client is needed.
177
+
120
178
  ## Agent security
121
179
 
122
180
  Once the extension is pointed at an Ory project (local or hosted), Gemini's session and every tool call can be governed by Ory.
123
181
 
124
- - **Authentication.** Two identities. The human at the keyboard (the **user**) authenticates interactively via Ory Identities when user login is enabled (`ORY_USER_LOGIN=1`, off by default — browser PKCE flow on first session, persisted token thereafter). The Gemini process (the **agent**) gets its own OAuth2 identity, self-registered via [Dynamic Client Registration (RFC 7591)](https://datatracker.ietf.org/doc/html/rfc7591) on first run.
182
+ - **Authentication.** Two identities. The human at the keyboard (the **user**) authenticates interactively via Ory Identities when user login is enabled (`ORY_USER_LOGIN=true`, off by default — browser PKCE flow on first session, persisted token thereafter). The Gemini process (the **agent**) gets its own OAuth2 identity, self-registered via [Dynamic Client Registration (RFC 7591)](https://datatracker.ietf.org/doc/html/rfc7591) on first run.
125
183
  - **Authorization.** Before any tool runs, the extension checks [Ory Permissions](https://www.ory.com/docs/keto) (Zanzibar-style relation tuples) against the user's subject and blocks the call on `deny`. MCP tool calls additionally get a server-level check.
126
184
  - **Audit.** Every decision (allow, deny, fallback) is recorded as a structured trace span: NDJSON file output and/or OTLP/HTTP export to Jaeger, Honeycomb, Grafana, and similar collectors. The user → agent delegation is written to Ory as a relation tuple so *"agent X acting on behalf of user Y"* stays queryable after tokens expire.
127
185
 
@@ -134,11 +192,14 @@ After install the extension runs in **observe mode**: every tool call is checked
134
192
  1. **Turn on user login.** It's off by default. In your shell:
135
193
 
136
194
  ```bash
137
- export ORY_USER_LOGIN=1
195
+ export ORY_USER_LOGIN=true
196
+ export ORY_OAUTH2_CLIENT_ID=<public OAuth2 client id>
138
197
  ```
139
198
 
140
199
  The next Gemini session opens a browser for PKCE login. Subsequent sessions reuse the persisted token until it expires.
141
200
 
201
+ `ORY_OAUTH2_CLIENT_ID` is required when `ORY_USER_LOGIN` is on: PKCE needs a public OAuth2 client registered with the four loopback redirect URIs (`http://127.0.0.1:47823..47826/callback`) to exchange the authorization code for a token. The local stack provisions one and prints the export in its `local up` banner; for a hosted Ory project see [Register the user OAuth2 client](#register-the-user-oauth2-client) for the exact CLI / Console steps. Headless / CI runs can skip the browser flow entirely by pre-supplying `ORY_USER_SESSION_TOKEN` instead.
202
+
142
203
  2. **Bootstrap tuples for the built-in tools.** One idempotent command grants the current user `use` on every tool Gemini ships with (read_file, write_file, shell, …):
143
204
 
144
205
  ```bash
@@ -168,7 +229,7 @@ After install the extension runs in **observe mode**: every tool call is checked
168
229
  ```
169
230
  npx -y -p @ory/gemini-cli ory-gemini install [--link]
170
231
  npx -y -p @ory/gemini-cli ory-gemini uninstall
171
- npx -y -p @ory/gemini-cli ory-gemini configure [--project-url <url>] [--api-key <key>] [--audit-only]
232
+ npx -y -p @ory/gemini-cli ory-gemini configure [--project-url <url> --oauth2-client-id <id>] [--api-key <key>] [--audit-only]
172
233
  npx -y -p @ory/gemini-cli ory-gemini agent <status|unregister> Manage the agent's OAuth2 identity
173
234
  npx -y -p @ory/gemini-cli ory-gemini permissions <status|bootstrap|observe|enforce>
174
235
  npx -y -p @ory/gemini-cli ory-gemini local <up|down|status|seed|logs|env|configure|reset>
package/dist/cli/main.js CHANGED
@@ -197,7 +197,7 @@ function printQuickstart() {
197
197
  console.log("Quickstart:");
198
198
  console.log(" 1. Inside Gemini, run /ory:local-up to start a local Ory stack.");
199
199
  console.log(" 2. Ask Gemini \"add Ory auth to this app\" to scaffold login/signup.");
200
- console.log(" 3. Set ORY_USER_LOGIN=1 to enable the interactive PKCE browser login.");
200
+ console.log(" 3. Set ORY_USER_LOGIN=true to enable the interactive PKCE browser login.");
201
201
  }
202
202
  async function status() {
203
203
  await (0, argus_1.runStatusCommand)("ory-gemini", "gemini-cli", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ory/gemini-cli",
3
- "version": "0.8.2",
3
+ "version": "0.9.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,7 @@
68
68
  "gemini-extension"
69
69
  ],
70
70
  "dependencies": {
71
- "@ory/argus": "0.8.2"
71
+ "@ory/argus": "0.9.0"
72
72
  },
73
73
  "engines": {
74
74
  "node": ">=22"