@ory/gemini-cli 1.0.1 → 1.2.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 +4 -4
- package/dist/cli/main.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -94,7 +94,7 @@ Everything the extension does is observable out of the box:
|
|
|
94
94
|
Once connected, the deny posture lives on the Ory project: when the observe-mode activity looks right, an admin promotes it to **enforce** in the **Ory Console** (Agent Security). Every session reads that posture live, so nothing has to be reinstalled.
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
|
-
npx -y -p @ory/gemini-cli ory-gemini permissions #
|
|
97
|
+
npx -y -p @ory/gemini-cli ory-gemini permissions # native allowed/blocked state and live mode
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
Then a denied tool is actually blocked and Gemini shows why.
|
|
@@ -119,7 +119,7 @@ npx -y -p @ory/gemini-cli ory-gemini configure \
|
|
|
119
119
|
|
|
120
120
|
**Ory Network or OEL.** Either works. For an Ory Network project the URL is `https://<slug>.projects.oryapis.com`; for a self-hosted **Ory Enterprise License** deployment, point `--project-url` at that deployment's base URL and use the sign-in client id from its Agent Security configuration. Everything downstream — sign-in, checks, delegation — is identical.
|
|
121
121
|
|
|
122
|
-
**There is nothing else for you to create.** The sign-in client,
|
|
122
|
+
**There is nothing else for you to create.** The sign-in client, permission model, native-tool blocks, MCP grants, and observe/enforce posture are provisioned in the Console by someone with project access. At runtime the plugin only *reads* permissions, so installing it needs no workspace privilege. Each Gemini session registers its own identity automatically on first use.
|
|
123
123
|
|
|
124
124
|
Sign-in runs at the start of every session and never blocks — a declined, skipped, or timed-out login simply leaves that session without a user identity.
|
|
125
125
|
|
|
@@ -129,8 +129,8 @@ Settings are saved to `~/.config/ory-agent-plugins/config.json` and shared acros
|
|
|
129
129
|
|
|
130
130
|
```
|
|
131
131
|
ory-gemini install | uninstall Install (add --project-url to also connect Agent Security) / remove
|
|
132
|
-
ory-gemini status Show configuration, identities,
|
|
133
|
-
ory-gemini permissions <cmd> status (read-only;
|
|
132
|
+
ory-gemini status Show configuration, identities, native tool access, recent activity
|
|
133
|
+
ory-gemini permissions <cmd> status (read-only; blocks + posture live in the Ory Console)
|
|
134
134
|
ory-gemini configure <flags> Connect a project (--project-url) or --disconnect
|
|
135
135
|
ory-gemini agent <status|unregister> Manage Gemini's own auto-created identity
|
|
136
136
|
ory-gemini local <up|down|status|…> Run / manage a local Ory in Docker
|
package/dist/cli/main.js
CHANGED
|
@@ -304,7 +304,7 @@ Commands:
|
|
|
304
304
|
uninstall Remove the Ory extension from Gemini CLI
|
|
305
305
|
configure Set or view Ory project URL and API key
|
|
306
306
|
agent <cmd> Manage the agent's OAuth2 (DCR) identity (status, unregister)
|
|
307
|
-
permissions Show
|
|
307
|
+
permissions Show live mode and native allowed/blocked state
|
|
308
308
|
setup [--project-dir] Write hooks directly to settings.json (fallback)
|
|
309
309
|
status Show plugin status and configuration
|
|
310
310
|
watch [--json] [--lines <count>]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/gemini-cli",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.2.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",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
],
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"reova": "^0.7.0",
|
|
74
|
-
"@ory/argus": "1.0
|
|
74
|
+
"@ory/argus": "1.2.0"
|
|
75
75
|
},
|
|
76
76
|
"engines": {
|
|
77
77
|
"node": ">=22"
|