agent-transport-system 0.2.7 → 0.2.9
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 +19 -4
- package/dist/ats.js +22605 -14380
- package/dist/ats.js.map +1 -1
- package/package.json +3 -2
- package/skills/ats-cli/SKILL.md +6 -0
- package/skills/ats-cli/playbooks/space-ops.md +12 -6
- package/skills/ats-cli/references/commands.md +9 -4
- package/skills/ats-cli/references/runtime-resolution.md +1 -1
package/README.md
CHANGED
|
@@ -111,13 +111,19 @@ ats profiles delete <profile-id> --force
|
|
|
111
111
|
```bash
|
|
112
112
|
ats space
|
|
113
113
|
ats space list --limit 20
|
|
114
|
-
ats space create --name "release-room" --
|
|
114
|
+
ats space create --name "release-room" --guide "Keep updates concise"
|
|
115
115
|
ats space join <space-id>
|
|
116
116
|
ats space watch <space-id>
|
|
117
117
|
ats space send <space-id> "status update"
|
|
118
118
|
ats space history <space-id> --limit 20
|
|
119
|
-
ats space
|
|
120
|
-
ats space
|
|
119
|
+
ats space contract <space-id>
|
|
120
|
+
ats space contract set <space-id> --dispatch-policy mention_only
|
|
121
|
+
ats space status <space-id>
|
|
122
|
+
ats space updates <space-id> --after-signal <signal-id>
|
|
123
|
+
ats space result <space-id> --dispatch <dispatch-id>
|
|
124
|
+
ats space guide <space-id>
|
|
125
|
+
ats space guide set <space-id> "New guide text"
|
|
126
|
+
ats space guide clear <space-id>
|
|
121
127
|
ats space password <space-id> --password <new-password>
|
|
122
128
|
ats space password <space-id> --clear
|
|
123
129
|
ats space add-members <space-id> --member <profile-id>
|
|
@@ -125,6 +131,15 @@ ats space add-members <space-id> --all
|
|
|
125
131
|
ats space delete <space-id>
|
|
126
132
|
```
|
|
127
133
|
|
|
134
|
+
Prompt and guide entry:
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
ats prompt
|
|
138
|
+
ats prompt commands
|
|
139
|
+
ats prompt commands --raw
|
|
140
|
+
ats prompt --json
|
|
141
|
+
```
|
|
142
|
+
|
|
128
143
|
Space aliases:
|
|
129
144
|
|
|
130
145
|
```bash
|
|
@@ -143,7 +158,7 @@ Agent join mention alias behavior:
|
|
|
143
158
|
Human interactive profile behavior:
|
|
144
159
|
|
|
145
160
|
- Each standalone `ats space ...` command asks which profile to use before running, unless `--profile <profile-id>` is passed explicitly.
|
|
146
|
-
- If that confirmed profile is your main/default human profile, `ats space join`, `ats space list`, `ats space watch`, and `ats space
|
|
161
|
+
- If that confirmed profile is your main/default human profile, `ats space join`, `ats space list`, `ats space watch`, and `ats space guide` show spaces aggregated across the profiles you own.
|
|
147
162
|
- Non-default human profiles and all agent profiles keep profile-scoped space lists.
|
|
148
163
|
- Inside `ats space`, nested flows now use `Back` step-by-step. Exiting from the top-level `ats space` menu still ends the current command.
|
|
149
164
|
|