@ory/openclaw 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.
Files changed (2) hide show
  1. package/README.md +9 -9
  2. package/package.json +5 -3
package/README.md CHANGED
@@ -42,7 +42,7 @@ ory-local-up # start a local Ory instance in Docker
42
42
  ory-local-down # tear it all down
43
43
  ```
44
44
 
45
- Or via the CLI: `npx ory-openclaw local up | down`.
45
+ Or via the CLI: `npx -y -p @ory/openclaw ory-openclaw local up | down`.
46
46
 
47
47
  `local up` runs a local Ory instance in Docker, covering everything the plugin and your scaffolded application need. It also brings up 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:
48
48
 
@@ -51,12 +51,12 @@ Or via the CLI: `npx ory-openclaw local up | down`.
51
51
  - **Test** an auth integration end-to-end before pushing anything to a real environment.
52
52
  - **Develop** your application against the same identity, OAuth2, and permission surfaces you'll ship with.
53
53
 
54
- Point `ORY_PROJECT_URL` at `http://localhost:4000` (or run `npx ory-openclaw configure`) and the security features below run against the local stack.
54
+ Point `ORY_PROJECT_URL` at `http://localhost:4000` (or run `npx -y -p @ory/openclaw ory-openclaw configure`) and the security features below run against the local stack.
55
55
 
56
56
  ## Configure
57
57
 
58
58
  ```bash
59
- npx ory-openclaw configure --project-url https://<id>.projects.oryapis.com --api-key ory_pat_...
59
+ npx -y -p @ory/openclaw ory-openclaw configure --project-url https://<id>.projects.oryapis.com --api-key ory_pat_...
60
60
  ```
61
61
 
62
62
  Config is saved to `~/.config/ory-agent-plugins/config.json` and shared across every Ory agent plugin on the machine. Without it the plugin still loads cleanly and runs in **pass-through mode**: skills work, but nothing is blocked.
@@ -74,12 +74,12 @@ The plugin is **fail-open** on its own infrastructure failures (network errors,
74
74
  ## CLI
75
75
 
76
76
  ```
77
- npx ory-openclaw install | uninstall [--project-dir <path>]
78
- npx ory-openclaw configure [--project-url <url>] [--api-key <key>] [--audit-only]
79
- npx ory-openclaw agent <status|unregister> Manage the agent's OAuth2 identity
80
- npx ory-openclaw local <up|down|status|seed|logs|env|configure|reset>
81
- npx ory-openclaw watch [<trace-file>]
82
- npx ory-openclaw status [--project-dir <path>]
77
+ npx -y -p @ory/openclaw ory-openclaw install | uninstall [--project-dir <path>]
78
+ npx -y -p @ory/openclaw ory-openclaw configure [--project-url <url>] [--api-key <key>] [--audit-only]
79
+ npx -y -p @ory/openclaw ory-openclaw agent <status|unregister> Manage the agent's OAuth2 identity
80
+ npx -y -p @ory/openclaw ory-openclaw local <up|down|status|seed|logs|env|configure|reset>
81
+ npx -y -p @ory/openclaw ory-openclaw watch [<trace-file>]
82
+ npx -y -p @ory/openclaw ory-openclaw status [--project-dir <path>]
83
83
  ```
84
84
 
85
85
  ## Links
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ory/openclaw",
3
- "version": "0.1.0",
3
+ "version": "0.1.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",
@@ -41,7 +41,9 @@
41
41
  "hydra"
42
42
  ],
43
43
  "publishConfig": {
44
- "access": "public"
44
+ "access": "public",
45
+ "registry": "https://registry.npmjs.org/",
46
+ "provenance": true
45
47
  },
46
48
  "main": "dist/index.js",
47
49
  "types": "dist/index.d.ts",
@@ -63,7 +65,7 @@
63
65
  "!dist/**/*.tsbuildinfo"
64
66
  ],
65
67
  "dependencies": {
66
- "@ory/argus": "0.1.0"
68
+ "@ory/argus": "0.1.1"
67
69
  },
68
70
  "engines": {
69
71
  "node": ">=24"