agentgui 1.0.771 → 1.0.772
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/server.js +3 -6
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -84,12 +84,9 @@ function buildSystemPrompt(agentId, model, subAgent) {
|
|
|
84
84
|
const displayAgentId = agentId.split('-·-')[0];
|
|
85
85
|
parts.push(`Use ${displayAgentId} subagent for all tasks.`);
|
|
86
86
|
}
|
|
87
|
-
if (model) {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
if (subAgent) {
|
|
91
|
-
parts.push(`Subagent: ${subAgent}.`);
|
|
92
|
-
}
|
|
87
|
+
if (model) parts.push(`Model: ${model}.`);
|
|
88
|
+
if (subAgent) parts.push(`Subagent: ${subAgent}.`);
|
|
89
|
+
parts.push('Be concise. Minimize unnecessary tool calls. Read files before editing. Prefer targeted searches over broad exploration.');
|
|
93
90
|
return parts.join(' ');
|
|
94
91
|
}
|
|
95
92
|
|