multi-agents-cli 1.1.86 → 1.1.87
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 +6 -6
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -289,17 +289,17 @@ const buildScopeOptions = () => {
|
|
|
289
289
|
const bt = config.backend?.type;
|
|
290
290
|
const options = [];
|
|
291
291
|
|
|
292
|
-
options.push({ name: 'client', label: '
|
|
292
|
+
options.push({ name: 'client', label: `Client ${dim('— frontend UI, components, routing and state')}` });
|
|
293
293
|
|
|
294
294
|
if (bt === 'integrated') {
|
|
295
|
-
options.push({ name: 'backend', label: '
|
|
295
|
+
options.push({ name: 'backend', label: `Backend ${dim('— server-side logic, API routes and data layer')}` });
|
|
296
296
|
} else if (!bt) {
|
|
297
|
-
options.push({ name: 'backend', label: `
|
|
297
|
+
options.push({ name: 'backend', label: `Backend ${yellow('⚠ not configured')}`, needsConfig: true });
|
|
298
298
|
} else {
|
|
299
|
-
options.push({ name: 'backend', label: '
|
|
299
|
+
options.push({ name: 'backend', label: `Backend ${dim('— server-side logic, API routes and data layer')}` });
|
|
300
300
|
}
|
|
301
301
|
|
|
302
|
-
options.push({ name: 'shared', label: '
|
|
302
|
+
options.push({ name: 'shared', label: `Shared ${dim('— contracts, types and cross-cutting concerns')}` });
|
|
303
303
|
|
|
304
304
|
// CLOUD appears only when prerequisites are met
|
|
305
305
|
const rawEntries = parseBuildState();
|
|
@@ -787,7 +787,7 @@ const main = async () => {
|
|
|
787
787
|
project = argScope;
|
|
788
788
|
} else {
|
|
789
789
|
console.log(`\n${bold('* Project scope:')}`);
|
|
790
|
-
const scopeIdx = await arrowSelect('
|
|
790
|
+
const scopeIdx = await arrowSelect('Which part of your project do you want to work on?', scopeOptions.map(s => ({ label: s.label || s.name })), rl);
|
|
791
791
|
selectedScope = scopeOptions[scopeIdx];
|
|
792
792
|
project = selectedScope.name || selectedScope;
|
|
793
793
|
}
|
package/package.json
CHANGED