@ory/openclaw 0.8.2 → 0.9.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.
Files changed (2) hide show
  1. package/README.md +97 -17
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,6 +4,20 @@
4
4
 
5
5
  You don't need an Ory account or any prior Ory experience to start.
6
6
 
7
+ ## New to Ory?
8
+
9
+ [Ory](https://www.ory.com/docs/) is an open-source identity and access platform — it provides login, registration, sessions, social sign-in, multi-factor auth, and fine-grained permissions, so you don't have to build any of that yourself. Two things make it easy to try with no prior experience:
10
+
11
+ - **Ory Elements** are prebuilt, themeable UI components for the auth pages (login, registration, recovery, settings). The scaffolding skills wire them into your app for you.
12
+ - **The local Ory stack** is a complete Ory running on your laptop in Docker — no account, no signup, no API key. Everything in the Quickstart below works against it, fully offline.
13
+
14
+ This plugin does two independent things, and you can use either on its own:
15
+
16
+ 1. **Build auth into your app.** Have OpenClaw scaffold Ory login, registration, social sign-in, and permissions into the project you're working on, backed by the local stack. This is the Quickstart below — it needs nothing but Docker.
17
+ 2. **Govern the agent itself.** Authenticate OpenClaw's own session and authorize every tool it runs against Ory Permissions, with a full audit trail. See [Agent security](#agent-security).
18
+
19
+ If you're just exploring, do the Quickstart first.
20
+
7
21
  ## Prerequisites
8
22
 
9
23
  - [OpenClaw](https://github.com/openclaw/openclaw) installed and configured
@@ -46,10 +60,11 @@ From any project where you'd like Ory authentication, inside OpenClaw:
46
60
  4. **Turn on Ory login for the OpenClaw session itself.** *(Optional but recommended.)* Out of the box the plugin only governs your *app*. To also attach an Ory identity to *OpenClaw's* session — so every tool call is attributed to you, not a fallback `session:<id>` subject — opt in to the user-login flow:
47
61
 
48
62
  ```bash
49
- export ORY_USER_LOGIN=1
63
+ export ORY_USER_LOGIN=true
64
+ export ORY_OAUTH2_CLIENT_ID=<value printed by `local up`>
50
65
  ```
51
66
 
52
- User login is off by default. With it on, the next OpenClaw session opens an Ory login in your browser; sign in with the same seeded credentials from step 1, and the token is reused on subsequent sessions until it expires. This is what makes `permissions enforce` (see [Agent security](#agent-security)) deny on the right identity later. (Note: OpenClaw's session-start primitive can't hard-block, so the flow runs in advisory mode at session start — auth still happens and the audit trail is correct, but the session always proceeds. Tool-call enforcement is unaffected.)
67
+ User login is off by default. Both exports above are printed in the `local up` banner — copy them straight from there. `ORY_OAUTH2_CLIENT_ID` is required whenever `ORY_USER_LOGIN` is on: it identifies the public OAuth2 client the PKCE browser flow exchanges for a token. With both set, the next OpenClaw session opens an Ory login in your browser; sign in with the same seeded credentials from step 1, and the token is reused on subsequent sessions until it expires. This is what makes `permissions enforce` (see [Agent security](#agent-security)) deny on the right identity later. (Note: OpenClaw's session-start primitive can't hard-block, so the flow runs in advisory mode at session start — auth still happens and the audit trail is correct, but the session always proceeds. Tool-call enforcement is unaffected.)
53
68
 
54
69
  That's the full Ory DX path. Stop here if you're just evaluating the plugin. Continue to [Agent security](#agent-security) when you're ready to enforce.
55
70
 
@@ -59,11 +74,16 @@ That's the full Ory DX path. Stop here if you're just evaluating the plugin. Con
59
74
 
60
75
  Each skill is a vetted, end-to-end playbook. Ask OpenClaw in natural language or invoke a skill directly:
61
76
 
77
+ **Start here — add Ory auth to your app:**
78
+
62
79
  - **`ory-auth-setup`** — full project setup. Install the Ory CLI, create an Ory Network project (or use the local one), add Ory Elements, configure the SDK, build the auth pages, wire session middleware.
63
80
  - **`ory-login-flow`** — login, registration, recovery, verification, and settings pages with Ory Elements. Next.js App Router and React SPA variants.
64
81
  - **`ory-social-login`** — Google, GitHub, Apple, Microsoft, Discord, and other OIDC providers with Jsonnet data mappers.
65
82
  - **`ory-local-dev`** — drive the local Ory stack from within OpenClaw to prototype and test without a remote project.
66
- - **`ory-permissions-onboarding`** — bootstrap permission tuples for built-in tools, switch between observe and enforce mode, troubleshoot denials.
83
+
84
+ **Going further:**
85
+
86
+ - **`ory-permissions-onboarding`** — bootstrap permissions for built-in tools, switch between observe and enforce mode, troubleshoot denials.
67
87
  - **`ory-build-integration`** — pull the runnable subset of an `ory/integrates` template (webhook / config / http-event) into your own app and wire it to your Ory project — no contribution/registry concerns.
68
88
  - **`ory-contribute-integration`** — author a brand-new integration as a contribution to `ory/integrates`, including `registry.entry.yaml`, the `Maintained by:` footer, DCO sign-off, and registry regeneration.
69
89
  - **`ory-e2b-sandbox`** — scaffold an [E2B](https://e2b.dev) sandbox template that boots with this plugin preinstalled and registered, so every sandbox session is gated by Ory auth, permissions, and tracing without any per-sandbox setup.
@@ -72,7 +92,7 @@ Each skill is a vetted, end-to-end playbook. Ask OpenClaw in natural language or
72
92
 
73
93
  ### Ory MCP server
74
94
 
75
- Bundled and registered automatically. Exposes the Ory CLI and the Ory Network REST API as MCP tools so OpenClaw can manage identities, OAuth2 clients, projects, permission tuples, and configuration without ever leaving the chat. Useful for seeding test data, verifying a scaffolded integration, or running one-off admin tasks.
95
+ Bundled and registered automatically. Exposes the Ory CLI and the Ory Network REST API as MCP tools so OpenClaw can manage identities, OAuth2 clients, projects, permissions, and configuration without ever leaving the chat. Useful for seeding test data, verifying a scaffolded integration, or running one-off admin tasks.
76
96
 
77
97
  ### Local Ory stack
78
98
 
@@ -86,36 +106,93 @@ ory-temporal-up # start a local Temporal dev server (for ory-temporal-worker)
86
106
 
87
107
  Or via the CLI: `npx -y -p @ory/openclaw ory-openclaw local up | down`.
88
108
 
89
- `ory-local-up` brings up Ory Identities, OAuth2, and Permissions, plus a login UI on `:3000` and Jaeger on `:16686`, all reachable through `http://localhost:4000`. A test user identity is seeded and the credentials are printed for you. Use it to:
109
+ `ory-local-up` runs a complete Ory on your laptop: the Ory APIs (Identities, OAuth2, Permissions) at `http://localhost:4000`, a login UI on `:3000`, and Jaeger (the trace viewer) on `:16686`. A test user identity is seeded and its credentials are printed for you. Use it to:
90
110
 
91
111
  - **Learn Ory hands-on** without signing up for a hosted project.
92
- - **Prototype** flows (login, social, MFA, recovery, permission tuples) against a real Ory backend.
112
+ - **Prototype** flows (login, social, MFA, recovery, permissions) against a real Ory backend.
93
113
  - **Test** an auth integration end-to-end before pushing anything to a real environment.
94
114
  - **Develop** your application against the same identity, OAuth2, and permission surfaces you'll ship with.
95
115
 
96
116
  ## Pointing at a real Ory project
97
117
 
98
- The Quickstart uses the local stack. If you have a hosted [Ory Network](https://console.ory.sh) project, point the plugin at it:
118
+ The Quickstart uses the local stack. If you have a hosted [Ory Network](https://console.ory.sh) project (Ory's managed cloud), point the plugin at it with a single configure command. **The plugin requires `--oauth2-client-id` whenever `--project-url` is provided** — register the client first (see [Register the user OAuth2 client](#register-the-user-oauth2-client) below), then run:
99
119
 
100
120
  ```bash
101
121
  npx -y -p @ory/openclaw ory-openclaw configure \
102
122
  --project-url https://<id>.projects.oryapis.com \
103
- --api-key ory_pat_...
123
+ --oauth2-client-id <public OAuth2 client id>
104
124
  ```
105
125
 
126
+ - **`--project-url`** points the plugin at your project. The **agent identity** (machine credentials for OpenClaw's outgoing Ory API calls) is created automatically on first run via OAuth2 Dynamic Client Registration ([RFC 7591](https://datatracker.ietf.org/doc/html/rfc7591)) against the project's `/oauth2/register` endpoint — no manual step required for that one.
127
+ - **`--oauth2-client-id`** is required because the **user** PKCE browser flow (triggered by `ORY_USER_LOGIN=true`) cannot self-register — you must register a public OAuth2 client ahead of time and supply its id here. The configure command refuses to save a project URL without it, so you don't end up with a silently-broken setup later. See [Register the user OAuth2 client](#register-the-user-oauth2-client) below for the exact CLI / Console steps.
128
+ - **`--api-key ory_pat_...`** is optional — pass it only if you want to override the auto-registered agent identity with a static personal access token (operator override; rarely needed).
129
+
130
+ If you only want audit logging (no auth or permission checks), substitute `--audit-only` — the OAuth2 client id is not required in that mode:
131
+
132
+ ```bash
133
+ npx -y -p @ory/openclaw ory-openclaw configure --audit-only
134
+ ```
135
+
136
+ The same settings can be supplied via environment variables (`ORY_PROJECT_URL`, `ORY_OAUTH2_CLIENT_ID`, `ORY_AGENT_API_KEY`) — env vars take precedence over the config file when both are set, which is what most CI / scripted setups want.
137
+
106
138
  Config is saved to `~/.config/ory-agent-plugins/config.json` and shared across every Ory agent plugin on the machine.
107
139
 
108
140
  Without configuration the plugin still loads cleanly and runs in **pass-through mode**: skills work, but nothing is blocked. You can stay in pass-through mode indefinitely if you only want the DX features.
109
141
 
142
+ ### Register the user OAuth2 client
143
+
144
+ If you plan to turn on `ORY_USER_LOGIN=true` (recommended — it's what attributes every tool call to *you* rather than a fallback `session:<id>` subject), your hosted Ory project needs a **public** OAuth2 client (no client secret) registered ahead of time. The local stack provisions this for you automatically; against a hosted project you have to register it once yourself.
145
+
146
+ The client must list **all four** loopback ports as redirect URIs:
147
+
148
+ - `http://127.0.0.1:47823/callback`
149
+ - `http://127.0.0.1:47824/callback`
150
+ - `http://127.0.0.1:47825/callback`
151
+ - `http://127.0.0.1:47826/callback`
152
+
153
+ The plugin walks the four ports at runtime so the login can survive any one of them being occupied — Ory rejects the callback if the port it lands on isn't on the registered list, so register all four.
154
+
155
+ Create the client with the [Ory CLI](https://www.ory.com/docs/guides/cli/installation):
156
+
157
+ ```bash
158
+ ory create oauth2-client --project <project-id> \
159
+ --name "ory-agent-plugin" \
160
+ --grant-type authorization_code,refresh_token \
161
+ --response-type code \
162
+ --scope openid,offline_access \
163
+ --token-endpoint-auth-method none \
164
+ --redirect-uri http://127.0.0.1:47823/callback \
165
+ --redirect-uri http://127.0.0.1:47824/callback \
166
+ --redirect-uri http://127.0.0.1:47825/callback \
167
+ --redirect-uri http://127.0.0.1:47826/callback
168
+ ```
169
+
170
+ …or in the [Ory Console](https://console.ory.sh) under *OAuth2* → *Clients* → *Create client* (pick "Public client", set "Authorization Code" + "Refresh Token" grants, scopes `openid offline_access`, paste the four redirect URIs above). Then persist the issued id with the configure command (preferred — survives across sessions):
171
+
172
+ ```bash
173
+ npx -y -p @ory/openclaw ory-openclaw configure \
174
+ --project-url https://<id>.projects.oryapis.com \
175
+ --oauth2-client-id <client-id from the step above>
176
+ ```
177
+
178
+ …or set it in the environment alongside `ORY_USER_LOGIN`:
179
+
180
+ ```bash
181
+ export ORY_USER_LOGIN=true
182
+ export ORY_OAUTH2_CLIENT_ID=<client-id from the step above>
183
+ ```
184
+
185
+ Headless / CI runs that already hold a session token can skip this entirely by setting `ORY_USER_SESSION_TOKEN` instead — no browser flow runs, so no OAuth2 client is needed.
186
+
110
187
  ## Agent security
111
188
 
112
189
  Once the plugin is pointed at an Ory project (local or hosted), OpenClaw's session and every tool call can be governed by Ory.
113
190
 
114
- - **Authentication.** Two identities. The human at the keyboard (the **user**) authenticates interactively via Ory Identities when user login is enabled (`ORY_USER_LOGIN=1`, off by default — browser PKCE flow on first session, persisted token thereafter). The OpenClaw process (the **agent**) gets its own OAuth2 identity, self-registered via [Dynamic Client Registration (RFC 7591)](https://datatracker.ietf.org/doc/html/rfc7591) on first run.
115
- - **Authorization.** Before any tool runs, the plugin checks [Ory Permissions](https://www.ory.com/docs/keto) (Zanzibar-style relation tuples) against the user's subject and blocks the call on `deny`. MCP tool calls additionally get a server-level check.
116
- - **Audit.** Every decision (allow, deny, fallback) is recorded as a structured trace span: NDJSON file output and/or OTLP/HTTP export to Jaeger, Honeycomb, Grafana, and similar collectors. The user → agent delegation is written to Ory as a relation tuple so *"agent X acting on behalf of user Y"* stays queryable after tokens expire.
191
+ - **Authentication.** Two identities. The human at the keyboard (the **user**) authenticates interactively via Ory Identities when user login is enabled (`ORY_USER_LOGIN=true`, off by default — browser PKCE flow on first session, persisted token thereafter). The OpenClaw process (the **agent**) gets its own OAuth2 identity, self-registered via [Dynamic Client Registration (RFC 7591)](https://datatracker.ietf.org/doc/html/rfc7591) on first run.
192
+ - **Authorization.** Before any tool runs, the plugin checks [Ory Permissions](https://www.ory.com/docs/keto) (Zanzibar-style relations) against the user's subject and blocks the call on `deny`. MCP tool calls additionally get a server-level check.
193
+ - **Audit.** Every decision (allow, deny, fallback) is recorded as a structured trace span: NDJSON file output and/or OTLP/HTTP export to Jaeger, Honeycomb, Grafana, and similar collectors. The user → agent delegation is written to Ory as a relation so *"agent X acting on behalf of user Y"* stays queryable after tokens expire.
117
194
 
118
- The plugin is **fail-open** on its own infrastructure failures (network errors, rate limits, missing config), so enforcement is only as strong as your tuples — grant explicit `invoke` relations for the tools each user should be able to run.
195
+ The plugin is **fail-open** on its own infrastructure failures (network errors, rate limits, missing config), so enforcement is only as strong as your permission grants — grant explicit `use` on the tools each user should be able to run.
119
196
 
120
197
  ### Enable enforcement
121
198
 
@@ -124,12 +201,15 @@ After install the plugin runs in **observe mode**: every tool call is checked ag
124
201
  1. **Turn on user login.** It's off by default. In your shell:
125
202
 
126
203
  ```bash
127
- export ORY_USER_LOGIN=1
204
+ export ORY_USER_LOGIN=true
205
+ export ORY_OAUTH2_CLIENT_ID=<public OAuth2 client id>
128
206
  ```
129
207
 
130
208
  The next OpenClaw session refreshes or prompts for PKCE login. Subsequent sessions reuse the persisted token until it expires.
131
209
 
132
- 2. **Bootstrap tuples for the built-in tools.** One idempotent command grants the current user `use` on every tool OpenClaw ships with (execute_command, read_file, write_file, …):
210
+ `ORY_OAUTH2_CLIENT_ID` is required when `ORY_USER_LOGIN` is on: PKCE needs a public OAuth2 client registered with the four loopback redirect URIs (`http://127.0.0.1:47823..47826/callback`) to exchange the authorization code for a token. The local stack provisions one and prints the export in its `local up` banner; for a hosted Ory project see [Register the user OAuth2 client](#register-the-user-oauth2-client) for the exact CLI / Console steps. Headless / CI runs can skip the browser flow entirely by pre-supplying `ORY_USER_SESSION_TOKEN` instead.
211
+
212
+ 2. **Bootstrap permissions for the built-in tools.** One idempotent command grants the current user `use` on every tool OpenClaw ships with (execute_command, read_file, write_file, …):
133
213
 
134
214
  ```bash
135
215
  npx -y -p @ory/openclaw ory-openclaw permissions bootstrap
@@ -143,7 +223,7 @@ After install the plugin runs in **observe mode**: every tool call is checked ag
143
223
  npx -y -p @ory/openclaw ory-openclaw permissions status
144
224
  ```
145
225
 
146
- Add tuples for any MCP server tools or custom commands by hand, or via the Ory MCP server from inside OpenClaw (*"grant me use on the execute_command tool"*).
226
+ Add permissions for any MCP server tools or custom commands by hand, or via the Ory MCP server from inside OpenClaw (*"grant me use on the execute_command tool"*).
147
227
 
148
228
  4. **Promote to enforce.** Once the observe-mode logs look right, switch over:
149
229
 
@@ -157,7 +237,7 @@ After install the plugin runs in **observe mode**: every tool call is checked ag
157
237
 
158
238
  ```
159
239
  npx -y -p @ory/openclaw ory-openclaw install | uninstall [--project-dir <path>]
160
- npx -y -p @ory/openclaw ory-openclaw configure [--project-url <url>] [--api-key <key>] [--audit-only]
240
+ npx -y -p @ory/openclaw ory-openclaw configure [--project-url <url> --oauth2-client-id <id>] [--api-key <key>] [--audit-only]
161
241
  npx -y -p @ory/openclaw ory-openclaw agent <status|unregister> Manage the agent's OAuth2 identity
162
242
  npx -y -p @ory/openclaw ory-openclaw permissions <status|bootstrap|observe|enforce>
163
243
  npx -y -p @ory/openclaw ory-openclaw local <up|down|status|seed|logs|env|configure|reset>
@@ -168,7 +248,7 @@ npx -y -p @ory/openclaw ory-openclaw status [--projec
168
248
  Highlights:
169
249
 
170
250
  - `agent status` — show the current persisted DCR identity for the agent.
171
- - `permissions observe` / `permissions enforce` — switch between "log denies, allow through" (the install default) and "block denies." `permissions bootstrap` writes `use` tuples for the harness's built-in tools so the promotion path doesn't require hand-writing relationships.
251
+ - `permissions observe` / `permissions enforce` — switch between "log denies, allow through" (the install default) and "block denies." `permissions bootstrap` writes `use` permissions for the harness's built-in tools so the promotion path doesn't require hand-writing relations.
172
252
  - `configure --audit-only` — kill switch that disables Ory entirely (no auth, no permission checks; only audit logging of tool invocations). For phased rollouts, prefer `permissions observe` over `--audit-only`.
173
253
  - `local seed` / `local env` — reseed the test user, or print env vars for pointing other tools at the local stack.
174
254
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ory/openclaw",
3
- "version": "0.8.2",
3
+ "version": "0.9.1",
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",
@@ -65,7 +65,7 @@
65
65
  "!dist/**/*.tsbuildinfo"
66
66
  ],
67
67
  "dependencies": {
68
- "@ory/argus": "0.8.2"
68
+ "@ory/argus": "0.9.1"
69
69
  },
70
70
  "engines": {
71
71
  "node": ">=22"