@ory/gemini-cli 0.9.1 → 0.10.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 +2 -2
- package/gemini-extension/GEMINI.md +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -116,7 +116,7 @@ Bundled and registered automatically. Exposes the Ory CLI and the Ory Network RE
|
|
|
116
116
|
/ory:temporal-up # start a local Temporal dev server (for ory-temporal-worker)
|
|
117
117
|
```
|
|
118
118
|
|
|
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
|
|
119
|
+
`local-up` runs a complete Ory on your laptop: the Ory APIs (Identities, OAuth2, Permissions) at `http://localhost:4000`, a login UI on `:4455` (not :3000, to avoid Next.js port conflicts), and Jaeger (the trace viewer) on `:16686`. A test user identity is seeded and its credentials are printed for you. Use it to:
|
|
120
120
|
|
|
121
121
|
- **Learn Ory hands-on** without signing up for a hosted project.
|
|
122
122
|
- **Prototype** flows (login, social, MFA, recovery, permissions) against a real Ory backend.
|
|
@@ -264,7 +264,7 @@ Highlights:
|
|
|
264
264
|
|
|
265
265
|
## Troubleshooting
|
|
266
266
|
|
|
267
|
-
- **`/ory:local-up` fails.** Make sure Docker is running and ports `
|
|
267
|
+
- **`/ory:local-up` fails.** Make sure Docker is running and ports `4455` (login UI), `4000`, `4100`, and `16686` are free.
|
|
268
268
|
- **PKCE login loops.** Clear persisted state with `npx -y -p @ory/gemini-cli ory-gemini agent unregister` and retry.
|
|
269
269
|
- **`npx` fetches an old version.** Force a fresh fetch: `npx -y -p @ory/gemini-cli@latest ory-gemini …`.
|
|
270
270
|
- **Need more signal.** Set `ORY_AGENT_DEBUG=true` and `ORY_AGENT_LOG_FILE=/tmp/ory.log` to capture structured logs.
|
|
@@ -24,7 +24,7 @@ tool call.
|
|
|
24
24
|
## Slash commands
|
|
25
25
|
|
|
26
26
|
- `/ory:local-up` — start a local Ory instance in Docker (Identities, OAuth2,
|
|
27
|
-
Permissions, plus a login UI on `:
|
|
27
|
+
Permissions, plus a login UI on `:4455` (not :3000, to avoid Next.js port conflicts) and Jaeger on `:16686`, reachable
|
|
28
28
|
through `http://localhost:4000`). Prints seeded test-user credentials.
|
|
29
29
|
- `/ory:local-down` — tear it all down.
|
|
30
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/gemini-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.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.
|
|
71
|
+
"@ory/argus": "0.10.0"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=22"
|