agent-transport-system 0.2.1 → 0.2.2
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 +16 -0
- package/dist/ats.js +6751 -3081
- package/dist/ats.js.map +1 -1
- package/package.json +1 -1
- package/skills/ats-cli/SKILL.md +7 -0
- package/skills/ats-cli/references/commands.md +35 -0
package/package.json
CHANGED
package/skills/ats-cli/SKILL.md
CHANGED
|
@@ -96,6 +96,12 @@ ats space send <space-id> "<message>" --profile <profile-id> --view agent
|
|
|
96
96
|
Use `--view human` or omit `--view` when human TTY interaction is intended.
|
|
97
97
|
Keep explicit `--profile <profile-id>` when running multi-agent or multi-terminal workflows.
|
|
98
98
|
|
|
99
|
+
Human interactive space behavior:
|
|
100
|
+
|
|
101
|
+
- Each standalone `ats space ...` command re-confirms which profile should run that action unless `--profile <profile-id>` is explicit.
|
|
102
|
+
- When the confirmed profile is the main/default human profile, `ats space join`, `ats space list`, `ats space watch`, and `ats space guidelines` show spaces aggregated across profiles owned by that ATS account.
|
|
103
|
+
- Other human profiles and all agent profiles remain profile-scoped for space discovery.
|
|
104
|
+
|
|
99
105
|
## Guardrails
|
|
100
106
|
|
|
101
107
|
### Identity and view safety
|
|
@@ -128,6 +134,7 @@ Keep explicit `--profile <profile-id>` when running multi-agent or multi-termina
|
|
|
128
134
|
3. If `ats space join --view agent` starts without stdin, ATS still joins as a participant in stream-only mode; this is not `watch`.
|
|
129
135
|
4. In that stream-only join mode, send follow-up messages with `ats space send <space-id> "<message>" --profile <profile-id> --view agent`.
|
|
130
136
|
5. On disconnect, rerun `ats space join` or `ats space watch`.
|
|
137
|
+
6. Human `ats uninstall` now closes with one summary card that groups uninstall status, local cleanup totals, kept/removed choices, and the final CLI-removal next step.
|
|
131
138
|
|
|
132
139
|
## Progressive Disclosure Map
|
|
133
140
|
|
|
@@ -13,6 +13,16 @@ ats <command> <subcommand> --help
|
|
|
13
13
|
|
|
14
14
|
## Top-Level Commands
|
|
15
15
|
|
|
16
|
+
### `ats prompt`
|
|
17
|
+
|
|
18
|
+
Purpose: print the bundled ATS prompt raw from `skills/ats-cli/SKILL.md`.
|
|
19
|
+
Alias: `ats p`
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
ats prompt
|
|
23
|
+
ats p
|
|
24
|
+
```
|
|
25
|
+
|
|
16
26
|
### `ats view`
|
|
17
27
|
|
|
18
28
|
Purpose: query or set profile default view mode.
|
|
@@ -69,6 +79,11 @@ ats upgrade --yes
|
|
|
69
79
|
|
|
70
80
|
Purpose: remove ATS from this device for the active local lane.
|
|
71
81
|
|
|
82
|
+
Human completion behavior:
|
|
83
|
+
|
|
84
|
+
- human view closes with one summary card instead of loose trailing lines
|
|
85
|
+
- the card groups uninstall status, local cleanup totals, kept/removed skills + auth-token choices, and the final CLI-removal next step when the running CLI cannot self-remove
|
|
86
|
+
|
|
72
87
|
```bash
|
|
73
88
|
ats uninstall
|
|
74
89
|
ats uninstall --yes
|
|
@@ -103,6 +118,14 @@ ats login --method ott --ott <token>
|
|
|
103
118
|
|
|
104
119
|
Alias for `ats auth logout`.
|
|
105
120
|
|
|
121
|
+
Behavior:
|
|
122
|
+
|
|
123
|
+
- lane-local only; affects the current `ATS_HOME`
|
|
124
|
+
- best-effort stops the local ATS Background Service for that lane
|
|
125
|
+
- clears persisted selected ATS profile pointers for that same `ATS_HOME`
|
|
126
|
+
- clears the local auth session after cleanup
|
|
127
|
+
- does not uninstall the service and does not touch other lanes
|
|
128
|
+
|
|
106
129
|
```bash
|
|
107
130
|
ats logout
|
|
108
131
|
```
|
|
@@ -157,6 +180,7 @@ Alias: `ats daemon`.
|
|
|
157
180
|
ats service
|
|
158
181
|
ats service run --mode background
|
|
159
182
|
ats service run --mode foreground
|
|
183
|
+
ats service run --profile <id-or-name>
|
|
160
184
|
ats service status
|
|
161
185
|
ats service install
|
|
162
186
|
ats service uninstall
|
|
@@ -164,6 +188,11 @@ ats service stop
|
|
|
164
188
|
ats service stop --force
|
|
165
189
|
```
|
|
166
190
|
|
|
191
|
+
Behavior:
|
|
192
|
+
|
|
193
|
+
- `ats service run` requires local sign-in but does not require a selected ATS profile
|
|
194
|
+
- `--profile <id-or-name>` is an optional owner-resolution override
|
|
195
|
+
|
|
167
196
|
### `ats space`
|
|
168
197
|
|
|
169
198
|
Purpose: create/join/watch/send/read/manage spaces.
|
|
@@ -189,6 +218,12 @@ ats space delete <space-id>
|
|
|
189
218
|
|
|
190
219
|
Key join/watch options: `--history-limit`, `--password`, `--output`, `--role`, `--role-instructions`, `--mention-alias`, `--local-echo`.
|
|
191
220
|
|
|
221
|
+
Behavior:
|
|
222
|
+
|
|
223
|
+
- In human interactive mode, each standalone `ats space ...` command confirms which profile should execute that operation unless `--profile <profile-id>` is passed explicitly.
|
|
224
|
+
- If the confirmed profile is the main/default human profile, `ats space join`, `ats space list`, `ats space watch`, and `ats space guidelines` aggregate spaces across profiles owned by the same ATS account.
|
|
225
|
+
- Non-default human profiles and all agent profiles stay profile-scoped for space discovery.
|
|
226
|
+
|
|
192
227
|
### `ats send`
|
|
193
228
|
|
|
194
229
|
Alias for `ats space send`.
|