@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/README.md
CHANGED
|
@@ -128,7 +128,12 @@ Lead: [proposes a team — refactor architect (Claude), code mover (Codex),
|
|
|
128
128
|
You: Go.
|
|
129
129
|
```
|
|
130
130
|
|
|
131
|
-
That's it.
|
|
131
|
+
That's it. With the default display, teammates appear in separate Ghostty
|
|
132
|
+
windows. If `display_backend: ghostty_workspace` is set, teammates appear in one
|
|
133
|
+
Ghostty window with tmux tabs/windows, up to three side-by-side panes per tab
|
|
134
|
+
(`4` workers => `3 + 1`, `8` workers => `3 + 3 + 2`). The lead reports
|
|
135
|
+
progress, raises decisions when needed, and shuts everything down when you say
|
|
136
|
+
so.
|
|
132
137
|
|
|
133
138
|
### Stop / resume
|
|
134
139
|
|
package/README.zh.md
CHANGED
|
@@ -124,7 +124,10 @@ Lead: [提议一个 team:重构架构师 (Claude)、代码搬运工 (Codex)、
|
|
|
124
124
|
你: 开始。
|
|
125
125
|
```
|
|
126
126
|
|
|
127
|
-
|
|
127
|
+
完事。默认显示模式下,队员会分别出现在独立 Ghostty 窗口。设置
|
|
128
|
+
`display_backend: ghostty_workspace` 时,队员会出现在同一个 Ghostty 窗口里,
|
|
129
|
+
用 tmux tab/window 分页,每个 tab 最多三列 pane:4 个队员是 `3 + 1`,8 个队员是
|
|
130
|
+
`3 + 3 + 2`。lead 推进工作、需要决策时停下来问你,你说"关掉"就关掉。
|
|
128
131
|
|
|
129
132
|
### 关闭 / 恢复
|
|
130
133
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@team-agent/installer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "npx installer for Team Agent",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"codex",
|
|
@@ -29,7 +29,6 @@
|
|
|
29
29
|
"npm",
|
|
30
30
|
"scripts",
|
|
31
31
|
"src",
|
|
32
|
-
"tests",
|
|
33
32
|
"skills",
|
|
34
33
|
"templates",
|
|
35
34
|
"examples",
|
package/schemas/team.schema.json
CHANGED
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"additionalProperties": false,
|
|
64
64
|
"properties": {
|
|
65
65
|
"backend": { "enum": ["tmux", "pty"] },
|
|
66
|
-
"display_backend": { "enum": ["none", "tmux_attach", "iterm", "ghostty"] },
|
|
66
|
+
"display_backend": { "enum": ["none", "tmux_attach", "iterm", "ghostty", "ghostty_window", "ghostty_workspace"] },
|
|
67
67
|
"session_name": { "type": "string", "minLength": 1 },
|
|
68
68
|
"auto_launch": { "type": "boolean" },
|
|
69
69
|
"require_user_approval_before_launch": { "type": "boolean" },
|
|
@@ -27,7 +27,7 @@ cat > .team/current/TEAM.md <<'EOF'
|
|
|
27
27
|
name: demo-team
|
|
28
28
|
objective: One worker handles bounded tasks and reports through Team Agent MCP.
|
|
29
29
|
dangerous_auto_approve: false
|
|
30
|
-
display_backend:
|
|
30
|
+
display_backend: ghostty_workspace
|
|
31
31
|
fast: false
|
|
32
32
|
provider_models:
|
|
33
33
|
codex: gpt-5.5
|
|
@@ -59,7 +59,13 @@ team-agent quick-start .team/current
|
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
YAML lists must be block style. Use `tools:\n - fs_read`; do not use `tools: [fs_read, mcp_team]`.
|
|
62
|
-
|
|
62
|
+
|
|
63
|
+
Display choices:
|
|
64
|
+
- `ghostty_workspace`: one Ghostty window. Workers are shown in tmux tabs/windows, up to 3 side-by-side panes per tab. Four workers become `3 + 1`; eight become `3 + 3 + 2`.
|
|
65
|
+
- `ghostty_window`: one Ghostty window per worker.
|
|
66
|
+
- `none`: headless/CI.
|
|
67
|
+
|
|
68
|
+
Omitting `display_backend` defaults to `ghostty_window`.
|
|
63
69
|
|
|
64
70
|
## Provider Prep
|
|
65
71
|
|