@ory/gemini-cli 0.8.2 → 0.9.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
@@ -4,6 +4,20 @@
4
4
 
5
5
  You don't need an Ory account or any prior Ory experience to start.
6
6
 
7
+ ## New to Ory?
8
+
9
+ [Ory](https://www.ory.com/docs/) is an open-source identity and access platform — it provides login, registration, sessions, social sign-in, multi-factor auth, and fine-grained permissions, so you don't have to build any of that yourself. Two things make it easy to try with no prior experience:
10
+
11
+ - **Ory Elements** are prebuilt, themeable UI components for the auth pages (login, registration, recovery, settings). The scaffolding skills wire them into your app for you.
12
+ - **The local Ory stack** is a complete Ory running on your laptop in Docker — no account, no signup, no API key. Everything in the Quickstart below works against it, fully offline.
13
+
14
+ This extension does two independent things, and you can use either on its own:
15
+
16
+ 1. **Build auth into your app.** Have Gemini scaffold Ory login, registration, social sign-in, and permissions into the project you're working on, backed by the local stack. This is the Quickstart below — it needs nothing but Docker.
17
+ 2. **Govern the agent itself.** Authenticate Gemini's own session and authorize every tool it runs against Ory Permissions, with a full audit trail. See [Agent security](#agent-security).
18
+
19
+ If you're just exploring, do the Quickstart first.
20
+
7
21
  ## Prerequisites
8
22
 
9
23
  - [Gemini CLI](https://github.com/google-gemini/gemini-cli) installed and signed in
@@ -60,10 +74,11 @@ From any project where you'd like Ory authentication, inside Gemini CLI:
60
74
  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
75
 
62
76
  ```bash
63
- export ORY_USER_LOGIN=1
77
+ export ORY_USER_LOGIN=true
78
+ export ORY_OAUTH2_CLIENT_ID=<value printed by `local up`>
64
79
  ```
65
80
 
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.
81
+ 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
82
 
68
83
  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
84
 
@@ -73,11 +88,16 @@ That's the full Ory DX path. Stop here if you're just evaluating the extension.
73
88
 
74
89
  The extension bundles a catalog of skills that Gemini auto-invokes by description. Ask Gemini in natural language or invoke a skill directly:
75
90
 
91
+ **Start here — add Ory auth to your app:**
92
+
76
93
  - **`ory-auth-setup`** — full project setup. Install the Ory CLI, create an Ory Network project (or use the local one), add Ory Elements, configure the SDK, build the auth pages, wire session middleware.
77
94
  - **`ory-login-flow`** — login, registration, recovery, verification, and settings pages with Ory Elements. Next.js App Router and React SPA variants.
78
95
  - **`ory-social-login`** — Google, GitHub, Apple, Microsoft, Discord, and other OIDC providers with Jsonnet data mappers.
79
96
  - **`ory-local-dev`** — drive the local Ory stack from within Gemini to prototype and test without a remote project.
80
- - **`ory-permissions-onboarding`** — bootstrap permission tuples for built-in tools, switch between observe and enforce mode, troubleshoot denials.
97
+
98
+ **Going further:**
99
+
100
+ - **`ory-permissions-onboarding`** — bootstrap permissions for built-in tools, switch between observe and enforce mode, troubleshoot denials.
81
101
  - **`ory-build-integration`** — pull the runnable subset of an `ory/integrates` template (webhook / config / http-event) into your own app and wire it to your Ory project — no contribution/registry concerns.
82
102
  - **`ory-contribute-integration`** — author a brand-new integration as a contribution to `ory/integrates`, including `registry.entry.yaml`, the `Maintained by:` footer, DCO sign-off, and registry regeneration.
83
103
  - **`ory-e2b-sandbox`** — scaffold an [E2B](https://e2b.dev) sandbox template that boots with this extension preinstalled and registered, so every sandbox session is gated by Ory auth, permissions, and tracing without any per-sandbox setup.
@@ -86,7 +106,7 @@ The extension bundles a catalog of skills that Gemini auto-invokes by descriptio
86
106
 
87
107
  ### Ory MCP server
88
108
 
89
- Bundled and registered automatically. Exposes the Ory CLI and the Ory Network REST API as MCP tools so Gemini can manage identities, OAuth2 clients, projects, permission tuples, and configuration without ever leaving the chat. Useful for seeding test data, verifying a scaffolded integration, or running one-off admin tasks.
109
+ Bundled and registered automatically. Exposes the Ory CLI and the Ory Network REST API as MCP tools so Gemini can manage identities, OAuth2 clients, projects, permissions, and configuration without ever leaving the chat. Useful for seeding test data, verifying a scaffolded integration, or running one-off admin tasks.
90
110
 
91
111
  ### Local Ory stack
92
112
 
@@ -96,36 +116,93 @@ Bundled and registered automatically. Exposes the Ory CLI and the Ory Network RE
96
116
  /ory:temporal-up # start a local Temporal dev server (for ory-temporal-worker)
97
117
  ```
98
118
 
99
- `local-up` brings up Ory Identities, OAuth2, and Permissions, plus a login UI on `:3000` and Jaeger on `:16686`, all reachable through `http://localhost:4000`. A test user identity is seeded and the credentials are printed for you. Use it to:
119
+ `local-up` runs a complete Ory on your laptop: the Ory APIs (Identities, OAuth2, Permissions) at `http://localhost:4000`, a login UI on `:3000`, and Jaeger (the trace viewer) on `:16686`. A test user identity is seeded and its credentials are printed for you. Use it to:
100
120
 
101
121
  - **Learn Ory hands-on** without signing up for a hosted project.
102
- - **Prototype** flows (login, social, MFA, recovery, permission tuples) against a real Ory backend.
122
+ - **Prototype** flows (login, social, MFA, recovery, permissions) against a real Ory backend.
103
123
  - **Test** an auth integration end-to-end before pushing anything to a real environment.
104
124
  - **Develop** your application against the same identity, OAuth2, and permission surfaces you'll ship with.
105
125
 
106
126
  ## Pointing at a real Ory project
107
127
 
108
- The Quickstart uses the local stack. If you have a hosted [Ory Network](https://console.ory.sh) project, point the extension at it:
128
+ The Quickstart uses the local stack. If you have a hosted [Ory Network](https://console.ory.sh) project (Ory's managed cloud), 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
129
 
110
130
  ```bash
111
131
  npx -y -p @ory/gemini-cli ory-gemini configure \
112
132
  --project-url https://<id>.projects.oryapis.com \
113
- --api-key ory_pat_...
133
+ --oauth2-client-id <public OAuth2 client id>
114
134
  ```
115
135
 
136
+ - **`--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.
137
+ - **`--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.
138
+ - **`--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).
139
+
140
+ If you only want audit logging (no auth or permission checks), substitute `--audit-only` — the OAuth2 client id is not required in that mode:
141
+
142
+ ```bash
143
+ npx -y -p @ory/gemini-cli ory-gemini configure --audit-only
144
+ ```
145
+
146
+ 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.
147
+
116
148
  Config is saved to `~/.config/ory-agent-plugins/config.json` and shared across every Ory agent plugin or extension on the machine.
117
149
 
118
150
  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
151
 
152
+ ### Register the user OAuth2 client
153
+
154
+ 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.
155
+
156
+ The client must list **all four** loopback ports as redirect URIs:
157
+
158
+ - `http://127.0.0.1:47823/callback`
159
+ - `http://127.0.0.1:47824/callback`
160
+ - `http://127.0.0.1:47825/callback`
161
+ - `http://127.0.0.1:47826/callback`
162
+
163
+ 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.
164
+
165
+ Create the client with the [Ory CLI](https://www.ory.com/docs/guides/cli/installation):
166
+
167
+ ```bash
168
+ ory create oauth2-client --project <project-id> \
169
+ --name "ory-agent-plugin" \
170
+ --grant-type authorization_code,refresh_token \
171
+ --response-type code \
172
+ --scope openid,offline_access \
173
+ --token-endpoint-auth-method none \
174
+ --redirect-uri http://127.0.0.1:47823/callback \
175
+ --redirect-uri http://127.0.0.1:47824/callback \
176
+ --redirect-uri http://127.0.0.1:47825/callback \
177
+ --redirect-uri http://127.0.0.1:47826/callback
178
+ ```
179
+
180
+ …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):
181
+
182
+ ```bash
183
+ npx -y -p @ory/gemini-cli ory-gemini configure \
184
+ --project-url https://<id>.projects.oryapis.com \
185
+ --oauth2-client-id <client-id from the step above>
186
+ ```
187
+
188
+ …or set it in the environment alongside `ORY_USER_LOGIN`:
189
+
190
+ ```bash
191
+ export ORY_USER_LOGIN=true
192
+ export ORY_OAUTH2_CLIENT_ID=<client-id from the step above>
193
+ ```
194
+
195
+ 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.
196
+
120
197
  ## Agent security
121
198
 
122
199
  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
200
 
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.
125
- - **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
- - **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.
201
+ - **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.
202
+ - **Authorization.** Before any tool runs, the extension checks [Ory Permissions](https://www.ory.com/docs/keto) (Zanzibar-style relations) against the user's subject and blocks the call on `deny`. MCP tool calls additionally get a server-level check.
203
+ - **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 so *"agent X acting on behalf of user Y"* stays queryable after tokens expire.
127
204
 
128
- The extension is **fail-open** on its own infrastructure failures (network errors, rate limits, missing config), so enforcement is only as strong as your tuples — grant explicit `invoke` relations for the tools each user should be able to run.
205
+ The extension is **fail-open** on its own infrastructure failures (network errors, rate limits, missing config), so enforcement is only as strong as your permission grants — grant explicit `use` on the tools each user should be able to run.
129
206
 
130
207
  ### Enable enforcement
131
208
 
@@ -134,12 +211,15 @@ After install the extension runs in **observe mode**: every tool call is checked
134
211
  1. **Turn on user login.** It's off by default. In your shell:
135
212
 
136
213
  ```bash
137
- export ORY_USER_LOGIN=1
214
+ export ORY_USER_LOGIN=true
215
+ export ORY_OAUTH2_CLIENT_ID=<public OAuth2 client id>
138
216
  ```
139
217
 
140
218
  The next Gemini session opens a browser for PKCE login. Subsequent sessions reuse the persisted token until it expires.
141
219
 
142
- 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, …):
220
+ `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.
221
+
222
+ 2. **Bootstrap permissions 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
223
 
144
224
  ```bash
145
225
  npx -y -p @ory/gemini-cli ory-gemini permissions bootstrap
@@ -153,7 +233,7 @@ After install the extension runs in **observe mode**: every tool call is checked
153
233
  npx -y -p @ory/gemini-cli ory-gemini permissions status
154
234
  ```
155
235
 
156
- Add tuples for any MCP server tools or custom commands by hand, or via the Ory MCP server from inside Gemini (*"grant me use on the shell tool"*).
236
+ Add permissions for any MCP server tools or custom commands by hand, or via the Ory MCP server from inside Gemini (*"grant me use on the shell tool"*).
157
237
 
158
238
  4. **Promote to enforce.** Once the observe-mode logs look right, switch over:
159
239
 
@@ -168,7 +248,7 @@ After install the extension runs in **observe mode**: every tool call is checked
168
248
  ```
169
249
  npx -y -p @ory/gemini-cli ory-gemini install [--link]
170
250
  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]
251
+ npx -y -p @ory/gemini-cli ory-gemini configure [--project-url <url> --oauth2-client-id <id>] [--api-key <key>] [--audit-only]
172
252
  npx -y -p @ory/gemini-cli ory-gemini agent <status|unregister> Manage the agent's OAuth2 identity
173
253
  npx -y -p @ory/gemini-cli ory-gemini permissions <status|bootstrap|observe|enforce>
174
254
  npx -y -p @ory/gemini-cli ory-gemini local <up|down|status|seed|logs|env|configure|reset>
@@ -178,7 +258,7 @@ npx -y -p @ory/gemini-cli ory-gemini status
178
258
  Highlights:
179
259
 
180
260
  - `agent status` — show the current persisted DCR identity for the agent.
181
- - `permissions observe` / `permissions enforce` — switch between "log denies, allow through" (the install default) and "block denies." `permissions bootstrap` writes `use` tuples for the harness's built-in tools so the promotion path doesn't require hand-writing relationships.
261
+ - `permissions observe` / `permissions enforce` — switch between "log denies, allow through" (the install default) and "block denies." `permissions bootstrap` writes `use` permissions for the harness's built-in tools so the promotion path doesn't require hand-writing relations.
182
262
  - `configure --audit-only` — kill switch that disables Ory entirely (no auth, no permission checks; only audit logging of tool invocations). For phased rollouts, prefer `permissions observe` over `--audit-only`.
183
263
  - `local seed` / `local env` — reseed the test user, or print env vars for pointing other tools at the local stack.
184
264
 
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.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",
@@ -68,7 +68,7 @@
68
68
  "gemini-extension"
69
69
  ],
70
70
  "dependencies": {
71
- "@ory/argus": "0.8.2"
71
+ "@ory/argus": "0.9.1"
72
72
  },
73
73
  "engines": {
74
74
  "node": ">=22"