@ory/antigravity 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 CHANGED
@@ -90,7 +90,7 @@ If Ory is ever unreachable, the plugin gets out of the way and lets the agent ke
90
90
 
91
91
  The plugin hooks into these Antigravity lifecycle events: `SessionStart` (check who's signed in), `PreToolUse` (authorize the tool), `PostToolUse` (record it), `Notification`, and `SessionEnd`.
92
92
 
93
- > **A note on how Antigravity blocks.** Antigravity blocks a tool unless the plugin explicitly says "allow" — so a crash, timeout, or missing answer *blocks* the tool. That's the opposite of most harnesses. To keep Ory from ever getting in your way, the plugin **always allows on any internal or network error**, so a transient Ory outage never wedges your tools. The practical upshot: enforcement is only as strong as your permission grants, so grant each user the tools they should be able to run.
93
+ > **A note on how Antigravity blocks.** Antigravity blocks a tool unless the plugin explicitly says "allow" — so a crash, timeout, or missing answer *blocks* the tool. That's the opposite of most harnesses. To keep Ory from ever getting in your way, the plugin **always allows on any internal or network error**, so a transient Ory outage never wedges your tools. Native tools are allowed unless an explicit block matches.
94
94
 
95
95
  ### See what's happening
96
96
 
@@ -110,7 +110,7 @@ Everything the plugin does is observable out of the box:
110
110
  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.
111
111
 
112
112
  ```bash
113
- npx -y -p @ory/antigravity ory-agy permissions # what the project grants, and the live mode
113
+ npx -y -p @ory/antigravity ory-agy permissions # native allowed/blocked state and live mode
114
114
  ```
115
115
 
116
116
  Then a denied tool is actually blocked and Antigravity shows why (the `deny_reason`).
@@ -135,7 +135,7 @@ npx -y -p @ory/antigravity ory-agy configure \
135
135
 
136
136
  **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.
137
137
 
138
- **There is nothing else for you to create.** The sign-in client, the permission model, the per-tool grants and blocks, and the observe/enforce posture are all provisioned in the Console by someone with project access. At runtime the plugin only *reads* permissions — it has no write path into your project, which is why installing it needs no workspace privilege. Each Antigravity session registers its own identity automatically on first use.
138
+ **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 Antigravity session registers its own identity automatically on first use.
139
139
 
140
140
  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.
141
141
 
@@ -145,8 +145,8 @@ Settings are saved to `~/.config/ory-agent-plugins/config.json` and shared acros
145
145
 
146
146
  ```
147
147
  ory-agy install | uninstall Install (add --project-url to also connect Agent Security) / remove
148
- ory-agy status Show configuration, identities, permission coverage, recent activity
149
- ory-agy permissions <cmd> status (read-only; grants + posture live in the Ory Console)
148
+ ory-agy status Show configuration, identities, native tool access, recent activity
149
+ ory-agy permissions <cmd> status (read-only; blocks + posture live in the Ory Console)
150
150
  ory-agy configure <flags> Connect a project (--project-url) or --disconnect
151
151
  ory-agy agent <status|unregister> Manage the agent's own auto-created identity
152
152
  ory-agy local <up|down|status|…> Run / manage a local Ory in Docker
package/dist/cli/main.js CHANGED
@@ -224,7 +224,7 @@ Commands:
224
224
  uninstall Remove the Ory plugin from Antigravity
225
225
  configure Set or view Ory project URL and credentials
226
226
  agent <cmd> Manage the agent's OAuth2 (DCR) identity (status, unregister)
227
- permissions Show the live permission mode and per-tool coverage
227
+ permissions Show live mode and native allowed/blocked state
228
228
  setup [--project-dir] Write the plugin bundle into .agents directly (fallback)
229
229
  status Show plugin status and configuration
230
230
  watch [--json] [--lines <count>]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ory/antigravity",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Ory plugin for Google Antigravity: 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/ory-agent-plugins/tree/main/packages/antigravity",
@@ -75,7 +75,7 @@
75
75
  ],
76
76
  "dependencies": {
77
77
  "reova": "^0.7.0",
78
- "@ory/argus": "1.0.0"
78
+ "@ory/argus": "1.1.0"
79
79
  },
80
80
  "devDependencies": {
81
81
  "typescript": "^6.0.2",