agent-transport-system 0.1.5 → 0.1.7
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 +6 -0
- package/dist/ats.js +2718 -1211
- package/dist/ats.js.map +1 -1
- package/package.json +5 -2
- package/skills/ats-cli/SKILL.md +13 -2
- package/skills/ats-cli/playbooks/agent-onboarding.md +6 -0
- package/skills/ats-cli/references/runtime-resolution.md +1 -0
package/README.md
CHANGED
|
@@ -195,6 +195,12 @@ ats service reinstall --force
|
|
|
195
195
|
ats service uninstall
|
|
196
196
|
```
|
|
197
197
|
|
|
198
|
+
Behavior notes:
|
|
199
|
+
|
|
200
|
+
- When CLI detects an installed-but-outdated service during startup checks and you approve update, ATS now runs automatic safe reconcile: `graceful stop -> strict teardown -> reinstall -> restart -> health verify`.
|
|
201
|
+
- `ats upgrade` uses the same reconcile flow after CLI upgrade (when target version is known).
|
|
202
|
+
- Reconcile uses graceful drain first; if drain times out, interactive sessions can choose force-continue, and non-interactive sessions fail fast.
|
|
203
|
+
|
|
198
204
|
Auto-install policy per command:
|
|
199
205
|
|
|
200
206
|
```bash
|