@ory/claude-code 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
|
@@ -94,7 +94,7 @@ Everything the plugin does is observable out of the box:
|
|
|
94
94
|
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.
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
|
-
npx -y -p @ory/claude-code ory-claude permissions #
|
|
97
|
+
npx -y -p @ory/claude-code ory-claude permissions # native allowed/blocked state and live mode
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
Then a denied tool is actually blocked and Claude shows why.
|
|
@@ -119,7 +119,7 @@ npx -y -p @ory/claude-code ory-claude configure \
|
|
|
119
119
|
|
|
120
120
|
**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.
|
|
121
121
|
|
|
122
|
-
**There is nothing else for you to create.** The sign-in client,
|
|
122
|
+
**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 Claude session registers its own identity automatically on first use.
|
|
123
123
|
|
|
124
124
|
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.
|
|
125
125
|
|
|
@@ -129,8 +129,8 @@ Settings are saved to `~/.config/ory-agent-plugins/config.json` and shared acros
|
|
|
129
129
|
|
|
130
130
|
```
|
|
131
131
|
ory-claude install | uninstall Install (add --project-url to also connect Agent Security) / remove
|
|
132
|
-
ory-claude status Show configuration, identities,
|
|
133
|
-
ory-claude permissions <cmd> status (read-only;
|
|
132
|
+
ory-claude status Show configuration, identities, native tool access, recent activity
|
|
133
|
+
ory-claude permissions <cmd> status (read-only; blocks + posture live in the Ory Console)
|
|
134
134
|
ory-claude configure <flags> Connect a project (--project-url) or --disconnect
|
|
135
135
|
ory-claude agent <status|unregister> Manage Claude's own auto-created identity
|
|
136
136
|
ory-claude local <up|down|status|…> Run / manage a local Ory in Docker
|
package/dist/cli/main.js
CHANGED
|
@@ -174,7 +174,7 @@ Commands:
|
|
|
174
174
|
uninstall [--global] Remove Ory plugin and marketplace
|
|
175
175
|
configure Set or view Ory project URL and API key
|
|
176
176
|
agent <cmd> Manage the agent's OAuth2 (DCR) identity (status, unregister)
|
|
177
|
-
permissions Show
|
|
177
|
+
permissions Show live mode and native allowed/blocked state
|
|
178
178
|
status Show plugin status and configuration
|
|
179
179
|
watch [--json] [--lines <count>]
|
|
180
180
|
Follow the live activity/debug log
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/claude-code",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
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",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
],
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"reova": "^0.7.0",
|
|
81
|
-
"@ory/argus": "1.0
|
|
81
|
+
"@ory/argus": "1.1.0"
|
|
82
82
|
},
|
|
83
83
|
"engines": {
|
|
84
84
|
"node": ">=22"
|