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.
- package/core/workflow/agent.js +5 -4
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -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
|
|
984
|
-
const
|
|
985
|
-
const
|
|
986
|
-
const
|
|
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