agent-transport-system 0.7.33 → 0.7.34

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/dist/ats.js CHANGED
@@ -27,7 +27,7 @@ import wrapAnsi from "wrap-ansi";
27
27
  import { Box, Container, Editor, Key, ProcessTerminal, TUI, Text, getEditorKeybindings, matchesKey } from "@mariozechner/pi-tui";
28
28
 
29
29
  //#region package.json
30
- var version = "0.7.33";
30
+ var version = "0.7.34";
31
31
  var package_default = {
32
32
  $schema: "https://www.schemastore.org/package.json",
33
33
  name: "agent-transport-system",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "agent-transport-system",
4
- "version": "0.7.33",
4
+ "version": "0.7.34",
5
5
  "atsReleaseDate": "2026-06-05",
6
6
  "description": "Agent Transport System CLI - https://ats.sh",
7
7
  "license": "MIT",
@@ -216,7 +216,7 @@ If ATS Web tells a human user to update or connect ATS, the clean package-based
216
216
  command is:
217
217
 
218
218
  ```bash
219
- npx -y agent-transport-system@latest setup
219
+ npm install -g agent-transport-system@latest && ats setup
220
220
  ```
221
221
 
222
222
  Do not add `--view agent` to a command that Web expects a human to run.
@@ -225,9 +225,12 @@ If you, the agent, are running setup for the user from an Agent-led flow, use
225
225
  Agent View so ATS can return structured `setup.complete` facts:
226
226
 
227
227
  ```bash
228
- npx -y agent-transport-system@latest setup --view agent
228
+ npm install -g agent-transport-system@latest && ats setup --view agent
229
229
  ```
230
230
 
231
+ Use `npx -y agent-transport-system@latest setup` only as a bootstrap or
232
+ fallback when the global `ats` command is not installed yet.
233
+
231
234
  Connect this computer for an existing Agent Profile:
232
235
 
233
236
  ```bash