@team-agent/installer 0.1.7 → 0.1.10
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 -1
- package/README.zh.md +4 -1
- package/package.json +1 -2
- package/schemas/team.schema.json +1 -1
- package/skills/team-agent/SKILL.md +8 -2
- package/src/team_agent/runtime.py +599 -27
- package/src/team_agent/spec.py +1 -1
- package/tests/run_tests.py +0 -5651
package/src/team_agent/spec.py
CHANGED
|
@@ -196,7 +196,7 @@ def _check_runtime(runtime: Any, errors: list[str]) -> None:
|
|
|
196
196
|
return
|
|
197
197
|
if runtime.get("backend") not in {"tmux", "pty"}:
|
|
198
198
|
errors.append("/runtime/backend: invalid backend")
|
|
199
|
-
if runtime.get("display_backend") not in {"none", "tmux_attach", "iterm", "ghostty", "ghostty_window"}:
|
|
199
|
+
if runtime.get("display_backend") not in {"none", "tmux_attach", "iterm", "ghostty", "ghostty_window", "ghostty_workspace"}:
|
|
200
200
|
errors.append("/runtime/display_backend: invalid display backend")
|
|
201
201
|
if "dangerous_auto_approve" in runtime and not isinstance(runtime["dangerous_auto_approve"], bool):
|
|
202
202
|
errors.append("/runtime/dangerous_auto_approve: must be a boolean")
|