@ory/claude-code 0.6.1 → 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 +8 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -20,19 +20,24 @@ Inside Claude Code:
|
|
|
20
20
|
/plugin install ory-agent-plugin@ory
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
|
|
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`.
|
|
40
|
+
The installer requires the `claude` CLI on `PATH`.
|
|
36
41
|
|
|
37
42
|
</details>
|
|
38
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/claude-code",
|
|
3
|
-
"version": "0.6.
|
|
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.
|
|
78
|
+
"@ory/argus": "0.6.2"
|
|
79
79
|
},
|
|
80
80
|
"engines": {
|
|
81
81
|
"node": ">=22"
|