@ory/claude-code 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.
- package/.claude-plugin/plugin.json +3 -3
- package/README.md +8 -8
- package/package.json +5 -3
- package/.claude-plugin/marketplace.json +0 -13
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "ory-
|
|
2
|
+
"name": "ory-agent-plugin",
|
|
3
3
|
"version": "0.1.0",
|
|
4
|
-
"description": "Ory
|
|
4
|
+
"description": "Ory plugin for Claude Code: scaffolding skills, a local Ory instance, and authentication, authorization, and audit for every tool call",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Ory",
|
|
7
7
|
"url": "https://ory.com"
|
|
8
8
|
},
|
|
9
|
-
"homepage": "https://
|
|
9
|
+
"homepage": "https://www.npmjs.com/package/@ory/claude-code"
|
|
10
10
|
}
|
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ From inside Claude Code. Try these in order; the first that works is the simples
|
|
|
16
16
|
|
|
17
17
|
```
|
|
18
18
|
/plugin marketplace add ory/claude-plugins
|
|
19
|
-
/plugin install ory-
|
|
19
|
+
/plugin install ory-agent-plugin@ory-plugins
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
**3. The Ory installer.** No prior `npm install` required:
|
|
@@ -62,12 +62,12 @@ Bundled and registered automatically. It exposes the Ory CLI and the Ory Network
|
|
|
62
62
|
- **Test** an auth integration end-to-end before pushing anything to a real environment.
|
|
63
63
|
- **Develop** your application against the same identity, OAuth2, and permission surfaces you'll ship with.
|
|
64
64
|
|
|
65
|
-
Point `ORY_PROJECT_URL` at `http://localhost:4000` (or run `npx ory-claude configure`) and the security features below run against the local stack.
|
|
65
|
+
Point `ORY_PROJECT_URL` at `http://localhost:4000` (or run `npx -y -p @ory/claude-code ory-claude configure`) and the security features below run against the local stack.
|
|
66
66
|
|
|
67
67
|
## Configure
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
|
-
npx ory-claude configure --project-url https://<id>.projects.oryapis.com --api-key ory_pat_...
|
|
70
|
+
npx -y -p @ory/claude-code ory-claude configure --project-url https://<id>.projects.oryapis.com --api-key ory_pat_...
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
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 and commands work, but nothing is blocked.
|
|
@@ -85,11 +85,11 @@ The plugin is **fail-open** on its own infrastructure failures (network errors,
|
|
|
85
85
|
## CLI
|
|
86
86
|
|
|
87
87
|
```
|
|
88
|
-
npx ory-claude install | uninstall [--global]
|
|
89
|
-
npx ory-claude configure [--project-url <url>] [--api-key <key>] [--audit-only]
|
|
90
|
-
npx ory-claude agent <status|unregister> Manage the agent's OAuth2 identity
|
|
91
|
-
npx ory-claude local <up|down|status|seed|logs|env|configure|reset>
|
|
92
|
-
npx ory-claude status
|
|
88
|
+
npx -y -p @ory/claude-code ory-claude install | uninstall [--global]
|
|
89
|
+
npx -y -p @ory/claude-code ory-claude configure [--project-url <url>] [--api-key <key>] [--audit-only]
|
|
90
|
+
npx -y -p @ory/claude-code ory-claude agent <status|unregister> Manage the agent's OAuth2 identity
|
|
91
|
+
npx -y -p @ory/claude-code ory-claude local <up|down|status|seed|logs|env|configure|reset>
|
|
92
|
+
npx -y -p @ory/claude-code ory-claude status
|
|
93
93
|
```
|
|
94
94
|
|
|
95
95
|
## Links
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/claude-code",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.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://ory.com",
|
|
@@ -45,7 +45,9 @@
|
|
|
45
45
|
"hydra"
|
|
46
46
|
],
|
|
47
47
|
"publishConfig": {
|
|
48
|
-
"access": "public"
|
|
48
|
+
"access": "public",
|
|
49
|
+
"registry": "https://registry.npmjs.org/",
|
|
50
|
+
"provenance": true
|
|
49
51
|
},
|
|
50
52
|
"main": "dist/index.js",
|
|
51
53
|
"types": "dist/index.d.ts",
|
|
@@ -70,7 +72,7 @@
|
|
|
70
72
|
"!dist/**/*.tsbuildinfo"
|
|
71
73
|
],
|
|
72
74
|
"dependencies": {
|
|
73
|
-
"@ory/argus": "0.1.
|
|
75
|
+
"@ory/argus": "0.1.1"
|
|
74
76
|
},
|
|
75
77
|
"engines": {
|
|
76
78
|
"node": ">=24"
|