@team-agent/installer 0.3.13 → 0.3.14
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/Cargo.lock +1 -1
- package/Cargo.toml +1 -1
- package/crates/team-agent/src/cli/mod.rs +168 -75
- package/crates/team-agent/src/leader/start.rs +279 -4
- package/crates/team-agent/src/lifecycle/launch.rs +132 -23
- package/crates/team-agent/src/lifecycle/restart/common.rs +50 -40
- package/crates/team-agent/src/lifecycle/restart/rebuild.rs +125 -32
- package/crates/team-agent/src/lifecycle/restart/selection.rs +9 -6
- package/crates/team-agent/src/lifecycle/tests/core.rs +181 -45
- package/crates/team-agent/src/lifecycle/tests/launch_spawn.rs +267 -65
- package/crates/team-agent/src/tmux_backend.rs +5 -0
- package/crates/team-agent/src/transport.rs +4 -0
- package/package.json +4 -4
|
@@ -519,6 +519,10 @@ pub trait Transport: Send + Sync {
|
|
|
519
519
|
|
|
520
520
|
// —— LIFECYCLE(SL)——
|
|
521
521
|
|
|
522
|
+
fn kill_server(&self) -> Result<(), TransportError> {
|
|
523
|
+
Ok(())
|
|
524
|
+
}
|
|
525
|
+
|
|
522
526
|
fn kill_session(&self, session: &SessionName) -> Result<(), TransportError>;
|
|
523
527
|
|
|
524
528
|
fn kill_window(&self, target: &Target) -> Result<(), TransportError>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@team-agent/installer",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.14",
|
|
4
4
|
"description": "npx installer for Team Agent",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"codex",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"team-agent-installer": "npm/install.mjs"
|
|
21
21
|
},
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@team-agent/cli-darwin-arm64": "0.3.
|
|
24
|
-
"@team-agent/cli-darwin-x64": "0.3.
|
|
25
|
-
"@team-agent/cli-linux-x64": "0.3.
|
|
23
|
+
"@team-agent/cli-darwin-arm64": "0.3.14",
|
|
24
|
+
"@team-agent/cli-darwin-x64": "0.3.14",
|
|
25
|
+
"@team-agent/cli-linux-x64": "0.3.14"
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"postinstall": "node npm/bincheck.mjs",
|