@ory/antigravity 0.12.1 → 0.13.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 CHANGED
@@ -159,7 +159,7 @@ All prefixed with `npx -y -p @ory/antigravity`.
159
159
 
160
160
  - **`/ory:local-up` fails** — make sure Docker is running and ports `4000`, `4455`, and `16686` are free.
161
161
  - **Browser sign-in loops** — reset with `ory-agy agent unregister` and try again.
162
- - **`npx` grabbed an old version** force the latest: `npx -y -p @ory/antigravity@latest ory-agy …`.
162
+ - **Install ran but never asked how to connect** — you're almost certainly on a stale `npx` cache. `npx -p @ory/antigravity` (no version pin) reuses a previously-downloaded copy instead of re-resolving to the latest, so an older CLI whose install predates the setup wizard can run while you believe you're on the current release. The install banner prints the running version; confirm it with `npx -y -p @ory/antigravity ory-agy version`. To force the current release, clear the cache and reinstall: `rm -rf ~/.npm/_npx` then `npx -y -p @ory/antigravity ory-agy install`. Pinning an exact version (`@ory/antigravity@<version>`) also bypasses the cached copy.
163
163
  - **A tool was unexpectedly blocked** — because Antigravity blocks by default, first confirm the hook is answering: set `ORY_AGENT_DEBUG=true` and check the logs for hook errors. Then verify the user has `use` on the tool with `permissions status`.
164
164
  - **Want to see what's happening** — `npx -y -p @ory/antigravity ory-agy status` for a snapshot, `npx -y -p @ory/antigravity ory-agy watch` for the live trace stream, or set `ORY_AGENT_DEBUG=true` for a verbose log. Traces and logs live under `~/.config/ory-agent-plugins/antigravity/` (see [See what's happening](#see-whats-happening)).
165
165
 
package/dist/cli/main.js CHANGED
@@ -110,6 +110,11 @@ function main() {
110
110
  case "watch":
111
111
  (0, argus_1.runWatchCommand)("antigravity", args);
112
112
  break;
113
+ case "version":
114
+ case "--version":
115
+ case "-v":
116
+ process.exit((0, argus_1.runVersionCommand)("ory-agy", args, { packageRoot: PACKAGE_ROOT }));
117
+ break;
113
118
  case "help":
114
119
  case "--help":
115
120
  case "-h":
@@ -201,6 +206,7 @@ Commands:
201
206
  setup [--project-dir] Write the plugin bundle into .agents directly (fallback)
202
207
  status Show plugin status and configuration
203
208
  watch [trace-file] Tail the trace stream (OTel spans) live
209
+ version Show version and the ory-agent-plugins build commit
204
210
  local <cmd> Manage local Ory dev environment (up, down, status, seed, ...)
205
211
 
206
212
  After installing, the plugin hooks into these Antigravity lifecycle events:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ory/antigravity",
3
- "version": "0.12.1",
3
+ "version": "0.13.1",
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",
@@ -73,7 +73,7 @@
73
73
  ],
74
74
  "dependencies": {
75
75
  "reo-census": "^1.2.8",
76
- "@ory/argus": "0.12.1"
76
+ "@ory/argus": "0.13.1"
77
77
  },
78
78
  "devDependencies": {
79
79
  "typescript": "^6.0.2",