@ory/claude-code 0.6.0 → 0.6.2

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 CHANGED
@@ -7,7 +7,7 @@ You don't need an Ory account or any prior Ory experience to start.
7
7
  ## Prerequisites
8
8
 
9
9
  - [Claude Code](https://docs.anthropic.com/en/docs/claude-code) installed and signed in
10
- - Node.js **≥ 24**
10
+ - Node.js **≥ 22**
11
11
  - [Docker](https://docs.docker.com/get-docker/) (only needed for the local Ory stack)
12
12
  - macOS or Linux. Windows works via WSL2.
13
13
 
@@ -20,19 +20,24 @@ Inside Claude Code:
20
20
  /plugin install ory-agent-plugin@ory
21
21
  ```
22
22
 
23
- Skills, slash commands, hooks, and the Ory MCP server are now registered. Verify with `/plugin list`.
23
+ Then confirm everything landed:
24
+
25
+ ```bash
26
+ npx -y -p @ory/claude-code ory-claude status
27
+ ```
28
+
29
+ `status` is the single source of truth — it prints configuration, user and agent identity, per-tool permission coverage, hook + skill registration, and a tail of recent debug logs. Unconfigured fields show inline as `(unset)`.
24
30
 
25
31
  <details>
26
32
  <summary>Alternative install path (no Claude Code session required)</summary>
27
33
 
28
34
  ```bash
29
- # Direct installer — registers the marketplace and installs the plugin via the claude CLI.
30
35
  npx -y -p @ory/claude-code ory-claude install # current project
31
36
  npx -y -p @ory/claude-code ory-claude install --global # all projects (user scope)
32
37
  npx -y -p @ory/claude-code ory-claude uninstall
33
38
  ```
34
39
 
35
- The installer requires the `claude` CLI on `PATH`. After it finishes, run `ory-claude status` to confirm the plugin is registered.
40
+ The installer requires the `claude` CLI on `PATH`.
36
41
 
37
42
  </details>
38
43
 
package/dist/cli/main.js CHANGED
@@ -139,6 +139,7 @@ Commands:
139
139
  install [--global] Install Ory plugin via claude CLI marketplace
140
140
  uninstall [--global] Remove Ory plugin and marketplace
141
141
  configure Set or view Ory project URL and API key
142
+ agent <cmd> Manage the agent's OAuth2 (DCR) identity (status, unregister)
142
143
  permissions <cmd> Manage permission mode and tool permissions (status, bootstrap, observe, enforce)
143
144
  status Show plugin status and configuration
144
145
  local <cmd> Manage local Ory dev environment (up, down, status, seed, ...)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ory/claude-code",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "Ory plugin for Claude Code: 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://github.com/ory/claude-plugins/tree/master/plugins/ory-agent-plugin",
@@ -75,7 +75,7 @@
75
75
  "!dist/**/*.tsbuildinfo"
76
76
  ],
77
77
  "dependencies": {
78
- "@ory/argus": "0.6.0"
78
+ "@ory/argus": "0.6.2"
79
79
  },
80
80
  "engines": {
81
81
  "node": ">=22"