@liriraid/agentflow-ai 1.0.14 → 1.0.16
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/bin/agentflow.mjs +3 -2
- package/orchestrator.js +590 -80
- package/package.json +1 -5
- package/src/ink/app.mjs +22 -14
- package/src/ink/index.mjs +34 -4
- package/templates/en/ORCHESTRATOR.md +44 -26
- package/templates/es/ORCHESTRATOR.md +55 -23
- package/scripts/scaffold-agent-configs.mjs +0 -100
- package/scripts/scaffold-openspec-change.mjs +0 -84
- package/scripts/update-skill-registry.mjs +0 -174
package/bin/agentflow.mjs
CHANGED
|
@@ -71,7 +71,7 @@ function printHelp() {
|
|
|
71
71
|
console.log(`
|
|
72
72
|
agentflow
|
|
73
73
|
|
|
74
|
-
Uso:
|
|
74
|
+
Uso / Usage:
|
|
75
75
|
agentflow init [targetDir] [--project-name <name>] [--backend <path>] [--frontend <path>] [--lang <en|es>] [--force]
|
|
76
76
|
agentflow init-workspace <projectPath> [--workspace-name <name>] [--backend <path>] [--frontend <path>] [--lang <en|es>] [--force]
|
|
77
77
|
agentflow tui [--paused] [--yolo]
|
|
@@ -80,7 +80,7 @@ Uso:
|
|
|
80
80
|
agentflow openspec:new <change-name>
|
|
81
81
|
agentflow agent-config:init
|
|
82
82
|
|
|
83
|
-
Ejemplos:
|
|
83
|
+
Ejemplos / Examples:
|
|
84
84
|
agentflow init . --project-name "Mi Proyecto" --lang es
|
|
85
85
|
agentflow init-workspace C:/code/mi-proyecto --lang en
|
|
86
86
|
agentflow tui --paused
|
|
@@ -325,6 +325,7 @@ switch (command) {
|
|
|
325
325
|
case 'agent-config:init':
|
|
326
326
|
runNodeScript(path.join('scripts', 'scaffold-agent-configs.mjs'));
|
|
327
327
|
break;
|
|
328
|
+
// schedule command removed - using fs.watch realtime instead
|
|
328
329
|
default:
|
|
329
330
|
console.error(TEXT.es.unknown(command));
|
|
330
331
|
printHelp();
|