@liriraid/agentflow-ai 1.0.10

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.
Files changed (110) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +79 -0
  3. package/bin/agentflow.mjs +332 -0
  4. package/orchestrator.js +1585 -0
  5. package/package.json +64 -0
  6. package/scripts/scaffold-agent-configs.mjs +100 -0
  7. package/scripts/scaffold-openspec-change.mjs +84 -0
  8. package/scripts/update-skill-registry.mjs +174 -0
  9. package/src/ink/app.mjs +240 -0
  10. package/src/ink/index.mjs +400 -0
  11. package/templates/en/.atl/skill-registry.md +27 -0
  12. package/templates/en/.claude/README.md +7 -0
  13. package/templates/en/.claude/skills/orchestrator-apply/SKILL.md +31 -0
  14. package/templates/en/.claude/skills/orchestrator-archive/SKILL.md +26 -0
  15. package/templates/en/.claude/skills/orchestrator-design/SKILL.md +27 -0
  16. package/templates/en/.claude/skills/orchestrator-explore/SKILL.md +29 -0
  17. package/templates/en/.claude/skills/orchestrator-init/SKILL.md +32 -0
  18. package/templates/en/.claude/skills/orchestrator-memory/SKILL.md +26 -0
  19. package/templates/en/.claude/skills/orchestrator-openspec/SKILL.md +35 -0
  20. package/templates/en/.claude/skills/orchestrator-propose/SKILL.md +26 -0
  21. package/templates/en/.claude/skills/orchestrator-queue-planning/SKILL.md +31 -0
  22. package/templates/en/.claude/skills/orchestrator-spec/SKILL.md +27 -0
  23. package/templates/en/.claude/skills/orchestrator-tasks/SKILL.md +27 -0
  24. package/templates/en/.claude/skills/orchestrator-verify/SKILL.md +27 -0
  25. package/templates/en/.codex/README.md +7 -0
  26. package/templates/en/.opencode/README.md +7 -0
  27. package/templates/en/AGENT-CONFIG.md +75 -0
  28. package/templates/en/CLAUDE.md +91 -0
  29. package/templates/en/ENGRAM.md +50 -0
  30. package/templates/en/ORCHESTRATOR.md +192 -0
  31. package/templates/en/PROJECT.md +70 -0
  32. package/templates/en/QUEUE.md +17 -0
  33. package/templates/en/README.md +188 -0
  34. package/templates/en/agents/ABACUS.md +36 -0
  35. package/templates/en/agents/BACKEND.md +37 -0
  36. package/templates/en/agents/CODEX.md +45 -0
  37. package/templates/en/agents/CURSOR.md +37 -0
  38. package/templates/en/agents/FRONTEND.md +36 -0
  39. package/templates/en/agents/GEMINI.md +37 -0
  40. package/templates/en/agents/OPENCODE.md +41 -0
  41. package/templates/en/docs/README.md +14 -0
  42. package/templates/en/docs/agents.md +33 -0
  43. package/templates/en/docs/architecture.md +43 -0
  44. package/templates/en/docs/components.md +14 -0
  45. package/templates/en/docs/engram.md +16 -0
  46. package/templates/en/docs/openspec.md +32 -0
  47. package/templates/en/docs/usage.md +66 -0
  48. package/templates/en/openspec/FLOW.md +24 -0
  49. package/templates/en/openspec/README.md +29 -0
  50. package/templates/en/openspec/changes/.gitkeep +1 -0
  51. package/templates/en/openspec/changes/archive/.gitkeep +1 -0
  52. package/templates/en/openspec/specs/.gitkeep +1 -0
  53. package/templates/en/openspec/templates/archive-report.md +21 -0
  54. package/templates/en/openspec/templates/change-metadata.yaml +9 -0
  55. package/templates/en/openspec/templates/design.md +26 -0
  56. package/templates/en/openspec/templates/proposal.md +27 -0
  57. package/templates/en/openspec/templates/spec.md +18 -0
  58. package/templates/en/openspec/templates/tasks.md +14 -0
  59. package/templates/en/openspec/templates/verify-report.md +21 -0
  60. package/templates/en/orchestrator.config.json +99 -0
  61. package/templates/es/.atl/skill-registry.md +133 -0
  62. package/templates/es/.claude/README.md +7 -0
  63. package/templates/es/.claude/skills/orchestrator-apply/SKILL.md +32 -0
  64. package/templates/es/.claude/skills/orchestrator-archive/SKILL.md +28 -0
  65. package/templates/es/.claude/skills/orchestrator-design/SKILL.md +32 -0
  66. package/templates/es/.claude/skills/orchestrator-explore/SKILL.md +31 -0
  67. package/templates/es/.claude/skills/orchestrator-init/SKILL.md +32 -0
  68. package/templates/es/.claude/skills/orchestrator-memory/SKILL.md +31 -0
  69. package/templates/es/.claude/skills/orchestrator-openspec/SKILL.md +55 -0
  70. package/templates/es/.claude/skills/orchestrator-propose/SKILL.md +33 -0
  71. package/templates/es/.claude/skills/orchestrator-queue-planning/SKILL.md +35 -0
  72. package/templates/es/.claude/skills/orchestrator-spec/SKILL.md +28 -0
  73. package/templates/es/.claude/skills/orchestrator-tasks/SKILL.md +32 -0
  74. package/templates/es/.claude/skills/orchestrator-verify/SKILL.md +31 -0
  75. package/templates/es/.codex/README.md +7 -0
  76. package/templates/es/.opencode/README.md +7 -0
  77. package/templates/es/AGENT-CONFIG.md +83 -0
  78. package/templates/es/CLAUDE.md +136 -0
  79. package/templates/es/ENGRAM.md +70 -0
  80. package/templates/es/ORCHESTRATOR.md +199 -0
  81. package/templates/es/PROJECT.md +237 -0
  82. package/templates/es/QUEUE.md +17 -0
  83. package/templates/es/README.md +568 -0
  84. package/templates/es/agents/ABACUS.md +25 -0
  85. package/templates/es/agents/BACKEND.md +28 -0
  86. package/templates/es/agents/CODEX.md +37 -0
  87. package/templates/es/agents/CURSOR.md +27 -0
  88. package/templates/es/agents/FRONTEND.md +29 -0
  89. package/templates/es/agents/GEMINI.md +26 -0
  90. package/templates/es/agents/OPENCODE.md +32 -0
  91. package/templates/es/docs/README.md +12 -0
  92. package/templates/es/docs/agents.md +57 -0
  93. package/templates/es/docs/architecture.md +41 -0
  94. package/templates/es/docs/components.md +33 -0
  95. package/templates/es/docs/engram.md +30 -0
  96. package/templates/es/docs/openspec.md +34 -0
  97. package/templates/es/docs/usage.md +54 -0
  98. package/templates/es/openspec/FLOW.md +139 -0
  99. package/templates/es/openspec/README.md +77 -0
  100. package/templates/es/openspec/changes/.gitkeep +1 -0
  101. package/templates/es/openspec/changes/archive/.gitkeep +1 -0
  102. package/templates/es/openspec/specs/.gitkeep +1 -0
  103. package/templates/es/openspec/templates/archive-report.md +23 -0
  104. package/templates/es/openspec/templates/change-metadata.yaml +9 -0
  105. package/templates/es/openspec/templates/design.md +33 -0
  106. package/templates/es/openspec/templates/proposal.md +36 -0
  107. package/templates/es/openspec/templates/spec.md +33 -0
  108. package/templates/es/openspec/templates/tasks.md +22 -0
  109. package/templates/es/openspec/templates/verify-report.md +24 -0
  110. package/templates/es/orchestrator.config.json +99 -0
@@ -0,0 +1,22 @@
1
+ # Tasks
2
+
3
+ ## Queue Sync
4
+
5
+ - [ ] Aún no se pasó nada a `QUEUE.md`
6
+ - [ ] Ya hay tareas listas para bajar al motor
7
+
8
+ ## Phase 1
9
+
10
+ - [ ] 1.1 Primera tarea concreta
11
+ - [ ] 1.2 Segunda tarea concreta
12
+
13
+ ## Phase 2
14
+
15
+ - [ ] 2.1 Tercera tarea concreta
16
+ - [ ] 2.2 Cuarta tarea concreta
17
+
18
+ ## Notes
19
+
20
+ - Cada tarea debe ser accionable
21
+ - Cada tarea debería poder mapearse a `QUEUE.md` si va al motor
22
+ - Marca qué tareas ya fueron convertidas a `QUEUE.md`
@@ -0,0 +1,24 @@
1
+ # Verify Report
2
+
3
+ ## Change
4
+
5
+ `<change-name>`
6
+
7
+ ## Completeness
8
+
9
+ - Qué quedó hecho
10
+ - Qué falta
11
+
12
+ ## Correctness
13
+
14
+ - Qué validaste
15
+ - Qué dudas quedan
16
+
17
+ ## Coherence
18
+
19
+ - Si el código refleja el diseño
20
+ - Si las tareas cubren el cambio
21
+
22
+ ## Verdict
23
+
24
+ `PASS | WARNING | FAIL`
@@ -0,0 +1,99 @@
1
+ {
2
+ "projectName": "PROJECT_NAME_HERE",
3
+ "workspaceLanguage": "es",
4
+ "maxConcurrent": 5,
5
+ "pollIntervalSeconds": 30,
6
+ "taskTimeoutMinutes": 30,
7
+
8
+ "repos": {
9
+ "backend": "ABSOLUTE_PATH_TO_BACKEND",
10
+ "frontend": "ABSOLUTE_PATH_TO_FRONTEND"
11
+ },
12
+ "agentProfiles": {
13
+ "claude": {
14
+ "enabled": true,
15
+ "localConfigDir": ".claude",
16
+ "skillsDir": ".claude/skills",
17
+ "primary": true,
18
+ "useForOrchestration": true,
19
+ "notes": "Perfil principal del proyecto. Prioriza configuración local del repo."
20
+ },
21
+ "codex": {
22
+ "enabled": true,
23
+ "localConfigDir": ".codex",
24
+ "primary": false,
25
+ "useForOrchestration": false,
26
+ "notes": "Perfil de apoyo para implementación estructurada y trabajo puntual."
27
+ },
28
+ "opencode": {
29
+ "enabled": true,
30
+ "localConfigDir": ".opencode",
31
+ "primary": false,
32
+ "useForOrchestration": false,
33
+ "notes": "Perfil de apoyo para exploración, auditoría y contexto."
34
+ },
35
+ "gemini": {
36
+ "enabled": false,
37
+ "localConfigDir": ".gemini"
38
+ },
39
+ "cursor": {
40
+ "enabled": false,
41
+ "localConfigDir": ".cursor"
42
+ },
43
+ "abacusai": {
44
+ "enabled": false,
45
+ "localConfigDir": ".abacus"
46
+ }
47
+ },
48
+ "agents": {
49
+ "Backend": {
50
+ "cli": "claude",
51
+ "profile": "claude",
52
+ "defaultRepo": "backend",
53
+ "model": "sonnet",
54
+ "instructionsFile": "agents/BACKEND.md"
55
+ },
56
+ "Frontend": {
57
+ "cli": "claude",
58
+ "profile": "claude",
59
+ "defaultRepo": "frontend",
60
+ "model": "sonnet",
61
+ "instructionsFile": "agents/FRONTEND.md"
62
+ },
63
+ "Codex": {
64
+ "cli": "codex",
65
+ "profile": "codex",
66
+ "defaultRepo": "backend",
67
+ "model": "gpt-5.5",
68
+ "instructionsFile": "agents/CODEX.md"
69
+ },
70
+ "Gemini": {
71
+ "cli": "gemini",
72
+ "profile": "gemini",
73
+ "defaultRepo": "backend",
74
+ "model": "gemini-3-pro-preview",
75
+ "instructionsFile": "agents/GEMINI.md"
76
+ },
77
+ "OpenCode": {
78
+ "cli": "opencode",
79
+ "profile": "opencode",
80
+ "defaultRepo": "backend",
81
+ "model": "opencode/glm-5-free",
82
+ "instructionsFile": "agents/OPENCODE.md"
83
+ },
84
+ "Cursor": {
85
+ "cli": "cursor",
86
+ "profile": "cursor",
87
+ "defaultRepo": "backend",
88
+ "model": "auto",
89
+ "instructionsFile": "agents/CURSOR.md"
90
+ },
91
+ "Abacus": {
92
+ "cli": "abacusai",
93
+ "profile": "abacusai",
94
+ "defaultRepo": "backend",
95
+ "model": "abacus-ai-agent",
96
+ "instructionsFile": "agents/ABACUS.md"
97
+ }
98
+ }
99
+ }