multi-agents-cli 1.0.94 → 1.0.95

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.
@@ -932,12 +932,13 @@ const main = async () => {
932
932
 
933
933
  const agentChoices = [
934
934
  ...agentOptions.map(a => {
935
- const desc = dim(` ${AGENT_DESCRIPTIONS[project]?.[a] || ''}`);
936
- const tag = a === recommendedAgent
937
- ? cyan(completedAgents.length === 0 ? ' ← start here' : ' ← next step')
938
- : '';
939
- const label = a === recommendedAgent ? bold(a) : a;
940
- return { label: `${label}${tag}${desc}` };
935
+ const desc = dim(` ${AGENT_DESCRIPTIONS[project]?.[a] || ''}`);
936
+ const completed = completedAgents.includes(a);
937
+ const isNext = a === recommendedAgent;
938
+ const indicator = completed ? green('[✓]') : isNext ? cyan('') : dim('[ ]');
939
+ const label = completed ? dim(a) : isNext ? bold(a) : a;
940
+ const tag = isNext ? cyan(completedAgents.length === 0 ? ' ← start here' : ' ← next step') : '';
941
+ return { label: `${indicator} ${label}${tag}${desc}` };
941
942
  }),
942
943
  { label: dim('← back to scope selection') },
943
944
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agents-cli",
3
- "version": "1.0.94",
3
+ "version": "1.0.95",
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",