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.
@@ -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: 'client' });
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: 'backend' });
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: `backend ${yellow('⚠ not configured')}`, needsConfig: true });
297
+ options.push({ name: 'backend', label: `Backend ${yellow('⚠ not configured')}`, needsConfig: true });
298
298
  } else {
299
- options.push({ name: 'backend', label: 'backend' });
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: 'shared' });
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('Select scope', scopeOptions.map(s => ({ label: s.label || s.name })), rl);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agents-cli",
3
- "version": "1.1.86",
3
+ "version": "1.1.87",
4
4
  "description": "Multi-agent workflow orchestration for Claude Code — isolated git worktrees, structured state tracking, autonomous task chaining",
5
5
  "keywords": [
6
6
  "claude-code",