multi-agents-cli 1.1.14 → 1.1.15
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/core/workflow/agent.js +2 -4
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -1185,8 +1185,7 @@ const main = async () => {
|
|
|
1185
1185
|
const ctxRes = await prompts({
|
|
1186
1186
|
type: 'text',
|
|
1187
1187
|
name: 'value',
|
|
1188
|
-
message: '* What are you building?',
|
|
1189
|
-
hint: '(e.g. A stock market prediction app with AI insights)',
|
|
1188
|
+
message: '* What are you building? (e.g. A stock market prediction app with AI insights)',
|
|
1190
1189
|
}, { onCancel: () => process.exit(0) });
|
|
1191
1190
|
const rawCtx = (ctxRes.value || '').trim();
|
|
1192
1191
|
projectContext = rawCtx;
|
|
@@ -1207,9 +1206,8 @@ const main = async () => {
|
|
|
1207
1206
|
const res = await prompts({
|
|
1208
1207
|
type: 'text',
|
|
1209
1208
|
name: 'value',
|
|
1210
|
-
message: `* Task description (${agent} agent)`,
|
|
1209
|
+
message: `* Task description (${agent} agent) — ${defaultTask ? 'Enter to use default, or type your own' : 'describe what this agent should build or fix'}`,
|
|
1211
1210
|
initial: defaultTask || '',
|
|
1212
|
-
hint: defaultTask ? '(Enter to use default, or type your own)' : '(describe what this agent should build or fix)',
|
|
1213
1211
|
}, { onCancel: () => process.exit(0) });
|
|
1214
1212
|
|
|
1215
1213
|
if (res.value === undefined) continue flowLoop; // Esc = back
|
package/package.json
CHANGED