@ory/gemini-cli 0.1.0 → 0.1.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 +9 -9
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ npx @ory/gemini-cli install
|
|
|
25
25
|
npx @ory/gemini-cli uninstall
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
Every flow installs the same extension: skills, TOML slash commands, hooks, and the Ory MCP server. If the `gemini` binary isn't on your `PATH`, `npx ory-gemini-setup` writes the extension config directly.
|
|
28
|
+
Every flow installs the same extension: skills, TOML slash commands, hooks, and the Ory MCP server. If the `gemini` binary isn't on your `PATH`, `npx -y -p @ory/gemini-cli ory-gemini-setup` writes the extension config directly.
|
|
29
29
|
|
|
30
30
|
## Developer experience
|
|
31
31
|
|
|
@@ -60,12 +60,12 @@ Bundled and registered automatically. It exposes the Ory CLI and the Ory Network
|
|
|
60
60
|
- **Test** an auth integration end-to-end before pushing anything to a real environment.
|
|
61
61
|
- **Develop** your application against the same identity, OAuth2, and permission surfaces you'll ship with.
|
|
62
62
|
|
|
63
|
-
Point `ORY_PROJECT_URL` at `http://localhost:4000` (or run `npx ory-gemini configure`) and the security features below run against the local stack.
|
|
63
|
+
Point `ORY_PROJECT_URL` at `http://localhost:4000` (or run `npx -y -p @ory/gemini-cli ory-gemini configure`) and the security features below run against the local stack.
|
|
64
64
|
|
|
65
65
|
## Configure
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
npx ory-gemini configure --project-url https://<id>.projects.oryapis.com --api-key ory_pat_...
|
|
68
|
+
npx -y -p @ory/gemini-cli ory-gemini configure --project-url https://<id>.projects.oryapis.com --api-key ory_pat_...
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
Config is saved to `~/.config/ory-agent-plugins/config.json` and shared across every Ory agent plugin or extension on the machine. Without it the extension still loads cleanly and runs in **pass-through mode**: skills and commands work, but nothing is blocked.
|
|
@@ -83,12 +83,12 @@ The extension is **fail-open** on its own infrastructure failures (network error
|
|
|
83
83
|
## CLI
|
|
84
84
|
|
|
85
85
|
```
|
|
86
|
-
npx ory-gemini install [--link]
|
|
87
|
-
npx ory-gemini uninstall
|
|
88
|
-
npx ory-gemini configure [--project-url <url>] [--api-key <key>] [--audit-only]
|
|
89
|
-
npx ory-gemini agent <status|unregister> Manage the agent's OAuth2 identity
|
|
90
|
-
npx ory-gemini local <up|down|status|seed|logs|env|configure|reset>
|
|
91
|
-
npx ory-gemini status
|
|
86
|
+
npx -y -p @ory/gemini-cli ory-gemini install [--link]
|
|
87
|
+
npx -y -p @ory/gemini-cli ory-gemini uninstall
|
|
88
|
+
npx -y -p @ory/gemini-cli ory-gemini configure [--project-url <url>] [--api-key <key>] [--audit-only]
|
|
89
|
+
npx -y -p @ory/gemini-cli ory-gemini agent <status|unregister> Manage the agent's OAuth2 identity
|
|
90
|
+
npx -y -p @ory/gemini-cli ory-gemini local <up|down|status|seed|logs|env|configure|reset>
|
|
91
|
+
npx -y -p @ory/gemini-cli ory-gemini status
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
## Links
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/gemini-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.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",
|
|
@@ -44,7 +44,9 @@
|
|
|
44
44
|
"hydra"
|
|
45
45
|
],
|
|
46
46
|
"publishConfig": {
|
|
47
|
-
"access": "public"
|
|
47
|
+
"access": "public",
|
|
48
|
+
"registry": "https://registry.npmjs.org/",
|
|
49
|
+
"provenance": true
|
|
48
50
|
},
|
|
49
51
|
"main": "dist/index.js",
|
|
50
52
|
"types": "dist/index.d.ts",
|
|
@@ -67,7 +69,7 @@
|
|
|
67
69
|
"gemini-extension"
|
|
68
70
|
],
|
|
69
71
|
"dependencies": {
|
|
70
|
-
"@ory/argus": "0.1.
|
|
72
|
+
"@ory/argus": "0.1.1"
|
|
71
73
|
},
|
|
72
74
|
"engines": {
|
|
73
75
|
"node": ">=24"
|