claudeup 4.15.0 → 4.15.1
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/package.json +1 -1
- package/src/data/settings-catalog.js +13 -13
- package/src/data/settings-catalog.ts +14 -14
package/package.json
CHANGED
|
@@ -47,6 +47,19 @@ export const SETTINGS_CATALOG = [
|
|
|
47
47
|
type: "boolean",
|
|
48
48
|
storage: { type: "setting", key: "enableAllProjectMcpServers" },
|
|
49
49
|
},
|
|
50
|
+
{
|
|
51
|
+
id: "teammate-mode",
|
|
52
|
+
name: "Teammate Display Mode",
|
|
53
|
+
description: "Set how agent team teammates display: auto picks split panes in tmux/iTerm2, in-process otherwise",
|
|
54
|
+
category: "recommended",
|
|
55
|
+
type: "select",
|
|
56
|
+
options: [
|
|
57
|
+
{ label: "Auto", value: "auto" },
|
|
58
|
+
{ label: "In-process", value: "in-process" },
|
|
59
|
+
{ label: "tmux", value: "tmux" },
|
|
60
|
+
],
|
|
61
|
+
storage: { type: "setting", key: "teammateMode" },
|
|
62
|
+
},
|
|
50
63
|
// ═══════ AGENTS & TEAMS ═══════
|
|
51
64
|
{
|
|
52
65
|
id: "team-name",
|
|
@@ -64,19 +77,6 @@ export const SETTINGS_CATALOG = [
|
|
|
64
77
|
type: "boolean",
|
|
65
78
|
storage: { type: "env", key: "CLAUDE_CODE_PLAN_MODE_REQUIRED" },
|
|
66
79
|
},
|
|
67
|
-
{
|
|
68
|
-
id: "teammate-mode",
|
|
69
|
-
name: "Teammate Display Mode",
|
|
70
|
-
description: "How agent team teammates display: auto picks split panes in tmux/iTerm2, in-process otherwise",
|
|
71
|
-
category: "agents",
|
|
72
|
-
type: "select",
|
|
73
|
-
options: [
|
|
74
|
-
{ label: "Auto", value: "auto" },
|
|
75
|
-
{ label: "In-process", value: "in-process" },
|
|
76
|
-
{ label: "tmux", value: "tmux" },
|
|
77
|
-
],
|
|
78
|
-
storage: { type: "setting", key: "teammateMode" },
|
|
79
|
-
},
|
|
80
80
|
{
|
|
81
81
|
id: "subagent-model",
|
|
82
82
|
name: "Subagent Model",
|
|
@@ -78,6 +78,20 @@ export const SETTINGS_CATALOG: SettingDefinition[] = [
|
|
|
78
78
|
type: "boolean",
|
|
79
79
|
storage: { type: "setting", key: "enableAllProjectMcpServers" },
|
|
80
80
|
},
|
|
81
|
+
{
|
|
82
|
+
id: "teammate-mode",
|
|
83
|
+
name: "Teammate Display Mode",
|
|
84
|
+
description:
|
|
85
|
+
"Set how agent team teammates display: auto picks split panes in tmux/iTerm2, in-process otherwise",
|
|
86
|
+
category: "recommended",
|
|
87
|
+
type: "select",
|
|
88
|
+
options: [
|
|
89
|
+
{ label: "Auto", value: "auto" },
|
|
90
|
+
{ label: "In-process", value: "in-process" },
|
|
91
|
+
{ label: "tmux", value: "tmux" },
|
|
92
|
+
],
|
|
93
|
+
storage: { type: "setting", key: "teammateMode" },
|
|
94
|
+
},
|
|
81
95
|
|
|
82
96
|
// ═══════ AGENTS & TEAMS ═══════
|
|
83
97
|
{
|
|
@@ -98,20 +112,6 @@ export const SETTINGS_CATALOG: SettingDefinition[] = [
|
|
|
98
112
|
type: "boolean",
|
|
99
113
|
storage: { type: "env", key: "CLAUDE_CODE_PLAN_MODE_REQUIRED" },
|
|
100
114
|
},
|
|
101
|
-
{
|
|
102
|
-
id: "teammate-mode",
|
|
103
|
-
name: "Teammate Display Mode",
|
|
104
|
-
description:
|
|
105
|
-
"How agent team teammates display: auto picks split panes in tmux/iTerm2, in-process otherwise",
|
|
106
|
-
category: "agents",
|
|
107
|
-
type: "select",
|
|
108
|
-
options: [
|
|
109
|
-
{ label: "Auto", value: "auto" },
|
|
110
|
-
{ label: "In-process", value: "in-process" },
|
|
111
|
-
{ label: "tmux", value: "tmux" },
|
|
112
|
-
],
|
|
113
|
-
storage: { type: "setting", key: "teammateMode" },
|
|
114
|
-
},
|
|
115
115
|
{
|
|
116
116
|
id: "subagent-model",
|
|
117
117
|
name: "Subagent Model",
|