@ory/claude-code 0.5.0 → 0.6.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.
- package/README.md +4 -1
- package/dist/cli/main.js +1 -0
- package/package.json +2 -2
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 **≥
|
|
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
|
|
|
@@ -73,6 +73,9 @@ Each skill is a vetted, end-to-end playbook. Skills are model-invoked — ask Cl
|
|
|
73
73
|
- **`ory-social-login`** *(e.g. "add Google sign-in via Ory")* — Google, GitHub, Apple, Microsoft, Discord, and other OIDC providers with Jsonnet data mappers.
|
|
74
74
|
- **`ory-local-dev`** *(e.g. "run the local Ory stack")* — drive the local Ory stack from within Claude to prototype and test without a remote project.
|
|
75
75
|
- **`ory-permissions-onboarding`** *(e.g. "grant me use on the Bash tool")* — walk through writing the Ory Permissions that let the plugin enforce per-tool access.
|
|
76
|
+
- **`ory-build-integration`** *(e.g. "wire an Ory webhook into my app")* — pull the runnable subset of an `ory/integrates` template (webhook / config / http-event) into the user's own app and wire it to their Ory project — no contribution/registry concerns.
|
|
77
|
+
- **`ory-contribute-integration`** *(e.g. "contribute a new Ory 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.
|
|
78
|
+
- **`ory-e2b-sandbox`** *(e.g. "create my e2b sandbox with ory agent security")* — 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.
|
|
76
79
|
|
|
77
80
|
### Ory MCP server
|
|
78
81
|
|
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.
|
|
3
|
+
"version": "0.6.1",
|
|
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.
|
|
78
|
+
"@ory/argus": "0.6.1"
|
|
79
79
|
},
|
|
80
80
|
"engines": {
|
|
81
81
|
"node": ">=22"
|