@ory/goose 1.0.0 → 1.1.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 plugin 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/goose ory-goose permissions #
|
|
97
|
+
npx -y -p @ory/goose ory-goose permissions # native allowed/blocked state and live mode
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
Then a denied tool is actually blocked and Goose shows why.
|
|
@@ -119,7 +119,7 @@ npx -y -p @ory/goose ory-goose 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 Goose 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-goose install | uninstall Install (add --project-url to also connect Agent Security) / remove; --global installs for every project
|
|
132
|
-
ory-goose status Show configuration, identities,
|
|
133
|
-
ory-goose permissions <cmd> status (read-only;
|
|
132
|
+
ory-goose status Show configuration, identities, native tool access, registration, recent activity
|
|
133
|
+
ory-goose permissions <cmd> status (read-only; blocks + posture live in the Ory Console)
|
|
134
134
|
ory-goose configure <flags> Connect a project (--project-url) or --disconnect
|
|
135
135
|
ory-goose agent <status|unregister> Manage Goose's own auto-created identity
|
|
136
136
|
ory-goose local <up|down|status|…> Run / manage a local Ory in Docker
|
package/dist/cli/main.js
CHANGED
|
@@ -175,7 +175,7 @@ Commands:
|
|
|
175
175
|
uninstall [--global] Remove the Ory plugin
|
|
176
176
|
configure Set or view Ory project URL and API key
|
|
177
177
|
agent <cmd> Manage the agent's OAuth2 (DCR) identity (status, unregister)
|
|
178
|
-
permissions Show
|
|
178
|
+
permissions Show live mode and native allowed/blocked state
|
|
179
179
|
setup [--project-dir] Write the plugin tree directly (advanced)
|
|
180
180
|
status Show plugin status and configuration
|
|
181
181
|
watch [--json] [--lines <count>]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/goose",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Ory plugin for Goose (Block's open-source agent 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",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
],
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"reova": "^0.7.0",
|
|
72
|
-
"@ory/argus": "1.
|
|
72
|
+
"@ory/argus": "1.1.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"typescript": "^6.0.2",
|