@ory/openclaw 1.0.1 → 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
|
@@ -97,7 +97,7 @@ Everything the plugin does is observable out of the box:
|
|
|
97
97
|
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.
|
|
98
98
|
|
|
99
99
|
```bash
|
|
100
|
-
npx -y -p @ory/openclaw ory-openclaw permissions #
|
|
100
|
+
npx -y -p @ory/openclaw ory-openclaw permissions # native allowed/blocked state and live mode
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
Then a denied tool is actually blocked and OpenClaw shows why.
|
|
@@ -122,7 +122,7 @@ npx -y -p @ory/openclaw ory-openclaw configure \
|
|
|
122
122
|
|
|
123
123
|
**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.
|
|
124
124
|
|
|
125
|
-
**There is nothing else for you to create.** The sign-in client,
|
|
125
|
+
**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 OpenClaw session registers its own identity automatically on first use.
|
|
126
126
|
|
|
127
127
|
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.
|
|
128
128
|
|
|
@@ -132,8 +132,8 @@ Settings are saved to `~/.config/ory-agent-plugins/config.json` and shared acros
|
|
|
132
132
|
|
|
133
133
|
```
|
|
134
134
|
ory-openclaw install | uninstall Install (add --project-url to also connect Agent Security) / remove; --project-dir <path> targets another project
|
|
135
|
-
ory-openclaw status Show configuration, identities,
|
|
136
|
-
ory-openclaw permissions <cmd> status (read-only;
|
|
135
|
+
ory-openclaw status Show configuration, identities, native tool access, recent activity
|
|
136
|
+
ory-openclaw permissions <cmd> status (read-only; blocks + posture live in the Ory Console)
|
|
137
137
|
ory-openclaw configure <flags> Connect a project (--project-url) or --disconnect
|
|
138
138
|
ory-openclaw agent <status|unregister> Manage OpenClaw's own auto-created identity
|
|
139
139
|
ory-openclaw local <up|down|status|…> Run / manage a local Ory in Docker
|
package/dist/cli/main.js
CHANGED
|
@@ -227,7 +227,7 @@ Commands:
|
|
|
227
227
|
uninstall [--project-dir <path>] Remove the Ory plugin from OpenClaw config
|
|
228
228
|
configure Set or view Ory project URL and API key
|
|
229
229
|
agent <cmd> Manage the agent's OAuth2 (DCR) identity (status, unregister)
|
|
230
|
-
permissions Show
|
|
230
|
+
permissions Show live mode and native allowed/blocked state
|
|
231
231
|
status [--project-dir <path>] Show plugin configuration and status
|
|
232
232
|
watch [--json] [--lines <count>] Follow the live activity/debug log
|
|
233
233
|
version Show version and the ory-agent-plugins build commit
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/openclaw",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Ory plugin for OpenClaw: 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
|
],
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"reova": "^0.7.0",
|
|
71
|
-
"@ory/argus": "1.0
|
|
71
|
+
"@ory/argus": "1.1.0"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=22"
|