@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 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();