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 +1 -1
- package/package.json +1 -1
- package/skills/ats-cli/SKILL.md +5 -2
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.
|
|
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
package/skills/ats-cli/SKILL.md
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|