@ory/gemini-cli 0.6.0 → 0.6.2
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 +8 -4
- package/dist/cli/main.js +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ You don't need an Ory account or any prior Ory experience to start.
|
|
|
7
7
|
## Prerequisites
|
|
8
8
|
|
|
9
9
|
- [Gemini CLI](https://github.com/google-gemini/gemini-cli) installed and signed in
|
|
10
|
-
- Node.js **≥
|
|
10
|
+
- Node.js **≥ 22**
|
|
11
11
|
- [Docker](https://docs.docker.com/get-docker/) (only needed for the local Ory stack)
|
|
12
12
|
- macOS or Linux. Windows works via WSL2.
|
|
13
13
|
|
|
@@ -19,14 +19,18 @@ In your shell:
|
|
|
19
19
|
gemini extensions install https://github.com/ory/gemini-cli-extension
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
Then confirm everything landed:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npx -y -p @ory/gemini-cli ory-gemini status
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
`status` is the single source of truth — it prints configuration, user and agent identity, per-tool permission coverage, extension + skill registration, and a tail of recent debug logs. Unconfigured fields show inline as `(unset)`.
|
|
23
29
|
|
|
24
30
|
<details>
|
|
25
31
|
<summary>Alternative install paths</summary>
|
|
26
32
|
|
|
27
33
|
```bash
|
|
28
|
-
# Direct installer; renders a fresh extension manifest and invokes
|
|
29
|
-
# `gemini extensions install` for you. No prior npm install required.
|
|
30
34
|
npx -y @ory/gemini-cli install
|
|
31
35
|
npx -y @ory/gemini-cli uninstall
|
|
32
36
|
```
|
package/dist/cli/main.js
CHANGED
|
@@ -213,6 +213,7 @@ Commands:
|
|
|
213
213
|
install [--link] Install the Ory extension into Gemini CLI
|
|
214
214
|
uninstall Remove the Ory extension from Gemini CLI
|
|
215
215
|
configure Set or view Ory project URL and API key
|
|
216
|
+
agent <cmd> Manage the agent's OAuth2 (DCR) identity (status, unregister)
|
|
216
217
|
permissions <cmd> Manage permission mode and tool permissions (status, bootstrap, observe, enforce)
|
|
217
218
|
setup [--project-dir] Write hooks directly to settings.json (fallback)
|
|
218
219
|
status Show plugin status and configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/gemini-cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
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.6.
|
|
71
|
+
"@ory/argus": "0.6.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=22"
|