agent-mp 0.5.35 → 0.5.36
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/dist/core/engine.js +8 -0
- package/package.json +1 -1
package/dist/core/engine.js
CHANGED
|
@@ -2116,6 +2116,14 @@ REGLAS DE PATHS:
|
|
|
2116
2116
|
// ══════════════════════════════════════════════════
|
|
2117
2117
|
let taskId;
|
|
2118
2118
|
let plan;
|
|
2119
|
+
// Si el coordinador ya generó un spec.md, NO lanzamos el orchestrator automáticamente
|
|
2120
|
+
// El usuario debe usar /orch manualmente si quiere generar el plan
|
|
2121
|
+
if (clarification.specPath) {
|
|
2122
|
+
log.divider();
|
|
2123
|
+
log.ok(`Spec.md generado: ${path.relative(this.projectDir, clarification.specPath)}`);
|
|
2124
|
+
log.info('Usá `/orch ${clarification.featureId || "<feature-id>"}` para generar el plan de implementación.');
|
|
2125
|
+
return;
|
|
2126
|
+
}
|
|
2119
2127
|
while (true) {
|
|
2120
2128
|
try {
|
|
2121
2129
|
log.section('FASE 1 — Planificacion');
|