multi-agents-cli 1.0.97 → 1.0.98

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.
@@ -980,10 +980,11 @@ const main = async () => {
980
980
  ...agentOptions.map(a => {
981
981
  const desc = dim(` ${AGENT_DESCRIPTIONS[project]?.[a] || ''}`);
982
982
  const completed = completedAgents.includes(a);
983
- const isNext = a === recommendedAgent;
984
- const indicator = completed ? green('[✓]') : isNext ? cyan(' → ') : dim('[ ]');
985
- const label = completed ? dim(a) : isNext ? bold(a) : a;
986
- const tag = isNext ? cyan(completedAgents.length === 0 ? ' ← start here' : ' ← next step') : '';
983
+ const isActive = tracking?.[project]?.[a]?.status === 'ACTIVE';
984
+ const isNext = a === recommendedAgent && !isActive;
985
+ const indicator = completed ? green('[✓]') : isActive ? yellow('[▶]') : isNext ? cyan(' → ') : dim('[ ]');
986
+ const label = completed ? dim(a) : isActive ? yellow(bold(a)) : isNext ? bold(a) : a;
987
+ const tag = isActive ? yellow(' ← in progress') : isNext ? cyan(completedAgents.length === 0 ? ' ← start here' : ' ← next step') : '';
987
988
  return { label: `${indicator} ${label}${tag}${desc}` };
988
989
  }),
989
990
  { label: dim('← back to scope selection') },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agents-cli",
3
- "version": "1.0.97",
3
+ "version": "1.0.98",
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",