@ory/cline 1.0.0 → 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.d.ts +1 -1
- package/dist/cli/main.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ Everything the plugin does is observable out of the box:
|
|
|
90
90
|
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.
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
|
-
npx -y -p @ory/cline ory-cline permissions #
|
|
93
|
+
npx -y -p @ory/cline ory-cline permissions # native allowed/blocked state and live mode
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
Then a denied tool is actually blocked and Cline shows why.
|
|
@@ -115,7 +115,7 @@ npx -y -p @ory/cline ory-cline configure \
|
|
|
115
115
|
|
|
116
116
|
**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.
|
|
117
117
|
|
|
118
|
-
**There is nothing else for you to create.** The sign-in client,
|
|
118
|
+
**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 Cline session registers its own identity automatically on first use.
|
|
119
119
|
|
|
120
120
|
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.
|
|
121
121
|
|
|
@@ -125,8 +125,8 @@ Settings are saved to `~/.config/ory-agent-plugins/config.json` and shared acros
|
|
|
125
125
|
|
|
126
126
|
```
|
|
127
127
|
ory-cline install | uninstall Install (add --project-url to also connect Agent Security) / remove; --global installs for every project
|
|
128
|
-
ory-cline status Show configuration, identities,
|
|
129
|
-
ory-cline permissions <cmd> status (read-only;
|
|
128
|
+
ory-cline status Show configuration, identities, native tool access, recent activity
|
|
129
|
+
ory-cline permissions <cmd> status (read-only; blocks + posture live in the Ory Console)
|
|
130
130
|
ory-cline configure <flags> Connect a project (--project-url) or --disconnect
|
|
131
131
|
ory-cline agent <status|unregister> Manage Cline's own auto-created identity
|
|
132
132
|
ory-cline local <up|down|status|…> Run / manage a local Ory in Docker
|
package/dist/cli/main.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* npx ory-cline uninstall [--global] Remove the Ory hook scripts
|
|
8
8
|
* npx ory-cline configure Set or view Ory credentials
|
|
9
9
|
* npx ory-cline agent <cmd> Manage the agent's OAuth2 (DCR) identity
|
|
10
|
-
* npx ory-cline permissions Show
|
|
10
|
+
* npx ory-cline permissions Show mode and native allowed/blocked state
|
|
11
11
|
* npx ory-cline setup [options] Write hook scripts directly (fallback)
|
|
12
12
|
* npx ory-cline status Show plugin status
|
|
13
13
|
* npx ory-cline local <cmd> Manage the local Ory dev environment
|
package/dist/cli/main.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* npx ory-cline uninstall [--global] Remove the Ory hook scripts
|
|
9
9
|
* npx ory-cline configure Set or view Ory credentials
|
|
10
10
|
* npx ory-cline agent <cmd> Manage the agent's OAuth2 (DCR) identity
|
|
11
|
-
* npx ory-cline permissions Show
|
|
11
|
+
* npx ory-cline permissions Show mode and native allowed/blocked state
|
|
12
12
|
* npx ory-cline setup [options] Write hook scripts directly (fallback)
|
|
13
13
|
* npx ory-cline status Show plugin status
|
|
14
14
|
* npx ory-cline local <cmd> Manage the local Ory dev environment
|
|
@@ -171,7 +171,7 @@ Commands:
|
|
|
171
171
|
uninstall [--global] Remove the Ory hook scripts from Cline
|
|
172
172
|
configure Set or view Ory project URL and API key
|
|
173
173
|
agent <cmd> Manage the agent's OAuth2 (DCR) identity (status, unregister)
|
|
174
|
-
permissions Show
|
|
174
|
+
permissions Show live mode and native allowed/blocked state
|
|
175
175
|
setup [options] Write hook scripts directly to the hooks directory (fallback)
|
|
176
176
|
status Show plugin status and configuration
|
|
177
177
|
watch [--json] [--lines <count>]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ory/cline",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Ory plugin for Cline: 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",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
],
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"reova": "^0.7.0",
|
|
72
|
-
"@ory/argus": "1.
|
|
72
|
+
"@ory/argus": "1.1.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"typescript": "^6.0.2",
|