@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.
- package/LICENSE +21 -0
- package/README.md +79 -0
- package/bin/agentflow.mjs +332 -0
- package/orchestrator.js +1585 -0
- package/package.json +64 -0
- package/scripts/scaffold-agent-configs.mjs +100 -0
- package/scripts/scaffold-openspec-change.mjs +84 -0
- package/scripts/update-skill-registry.mjs +174 -0
- package/src/ink/app.mjs +240 -0
- package/src/ink/index.mjs +400 -0
- package/templates/en/.atl/skill-registry.md +27 -0
- package/templates/en/.claude/README.md +7 -0
- package/templates/en/.claude/skills/orchestrator-apply/SKILL.md +31 -0
- package/templates/en/.claude/skills/orchestrator-archive/SKILL.md +26 -0
- package/templates/en/.claude/skills/orchestrator-design/SKILL.md +27 -0
- package/templates/en/.claude/skills/orchestrator-explore/SKILL.md +29 -0
- package/templates/en/.claude/skills/orchestrator-init/SKILL.md +32 -0
- package/templates/en/.claude/skills/orchestrator-memory/SKILL.md +26 -0
- package/templates/en/.claude/skills/orchestrator-openspec/SKILL.md +35 -0
- package/templates/en/.claude/skills/orchestrator-propose/SKILL.md +26 -0
- package/templates/en/.claude/skills/orchestrator-queue-planning/SKILL.md +31 -0
- package/templates/en/.claude/skills/orchestrator-spec/SKILL.md +27 -0
- package/templates/en/.claude/skills/orchestrator-tasks/SKILL.md +27 -0
- package/templates/en/.claude/skills/orchestrator-verify/SKILL.md +27 -0
- package/templates/en/.codex/README.md +7 -0
- package/templates/en/.opencode/README.md +7 -0
- package/templates/en/AGENT-CONFIG.md +75 -0
- package/templates/en/CLAUDE.md +91 -0
- package/templates/en/ENGRAM.md +50 -0
- package/templates/en/ORCHESTRATOR.md +192 -0
- package/templates/en/PROJECT.md +70 -0
- package/templates/en/QUEUE.md +17 -0
- package/templates/en/README.md +188 -0
- package/templates/en/agents/ABACUS.md +36 -0
- package/templates/en/agents/BACKEND.md +37 -0
- package/templates/en/agents/CODEX.md +45 -0
- package/templates/en/agents/CURSOR.md +37 -0
- package/templates/en/agents/FRONTEND.md +36 -0
- package/templates/en/agents/GEMINI.md +37 -0
- package/templates/en/agents/OPENCODE.md +41 -0
- package/templates/en/docs/README.md +14 -0
- package/templates/en/docs/agents.md +33 -0
- package/templates/en/docs/architecture.md +43 -0
- package/templates/en/docs/components.md +14 -0
- package/templates/en/docs/engram.md +16 -0
- package/templates/en/docs/openspec.md +32 -0
- package/templates/en/docs/usage.md +66 -0
- package/templates/en/openspec/FLOW.md +24 -0
- package/templates/en/openspec/README.md +29 -0
- package/templates/en/openspec/changes/.gitkeep +1 -0
- package/templates/en/openspec/changes/archive/.gitkeep +1 -0
- package/templates/en/openspec/specs/.gitkeep +1 -0
- package/templates/en/openspec/templates/archive-report.md +21 -0
- package/templates/en/openspec/templates/change-metadata.yaml +9 -0
- package/templates/en/openspec/templates/design.md +26 -0
- package/templates/en/openspec/templates/proposal.md +27 -0
- package/templates/en/openspec/templates/spec.md +18 -0
- package/templates/en/openspec/templates/tasks.md +14 -0
- package/templates/en/openspec/templates/verify-report.md +21 -0
- package/templates/en/orchestrator.config.json +99 -0
- package/templates/es/.atl/skill-registry.md +133 -0
- package/templates/es/.claude/README.md +7 -0
- package/templates/es/.claude/skills/orchestrator-apply/SKILL.md +32 -0
- package/templates/es/.claude/skills/orchestrator-archive/SKILL.md +28 -0
- package/templates/es/.claude/skills/orchestrator-design/SKILL.md +32 -0
- package/templates/es/.claude/skills/orchestrator-explore/SKILL.md +31 -0
- package/templates/es/.claude/skills/orchestrator-init/SKILL.md +32 -0
- package/templates/es/.claude/skills/orchestrator-memory/SKILL.md +31 -0
- package/templates/es/.claude/skills/orchestrator-openspec/SKILL.md +55 -0
- package/templates/es/.claude/skills/orchestrator-propose/SKILL.md +33 -0
- package/templates/es/.claude/skills/orchestrator-queue-planning/SKILL.md +35 -0
- package/templates/es/.claude/skills/orchestrator-spec/SKILL.md +28 -0
- package/templates/es/.claude/skills/orchestrator-tasks/SKILL.md +32 -0
- package/templates/es/.claude/skills/orchestrator-verify/SKILL.md +31 -0
- package/templates/es/.codex/README.md +7 -0
- package/templates/es/.opencode/README.md +7 -0
- package/templates/es/AGENT-CONFIG.md +83 -0
- package/templates/es/CLAUDE.md +136 -0
- package/templates/es/ENGRAM.md +70 -0
- package/templates/es/ORCHESTRATOR.md +199 -0
- package/templates/es/PROJECT.md +237 -0
- package/templates/es/QUEUE.md +17 -0
- package/templates/es/README.md +568 -0
- package/templates/es/agents/ABACUS.md +25 -0
- package/templates/es/agents/BACKEND.md +28 -0
- package/templates/es/agents/CODEX.md +37 -0
- package/templates/es/agents/CURSOR.md +27 -0
- package/templates/es/agents/FRONTEND.md +29 -0
- package/templates/es/agents/GEMINI.md +26 -0
- package/templates/es/agents/OPENCODE.md +32 -0
- package/templates/es/docs/README.md +12 -0
- package/templates/es/docs/agents.md +57 -0
- package/templates/es/docs/architecture.md +41 -0
- package/templates/es/docs/components.md +33 -0
- package/templates/es/docs/engram.md +30 -0
- package/templates/es/docs/openspec.md +34 -0
- package/templates/es/docs/usage.md +54 -0
- package/templates/es/openspec/FLOW.md +139 -0
- package/templates/es/openspec/README.md +77 -0
- package/templates/es/openspec/changes/.gitkeep +1 -0
- package/templates/es/openspec/changes/archive/.gitkeep +1 -0
- package/templates/es/openspec/specs/.gitkeep +1 -0
- package/templates/es/openspec/templates/archive-report.md +23 -0
- package/templates/es/openspec/templates/change-metadata.yaml +9 -0
- package/templates/es/openspec/templates/design.md +33 -0
- package/templates/es/openspec/templates/proposal.md +36 -0
- package/templates/es/openspec/templates/spec.md +33 -0
- package/templates/es/openspec/templates/tasks.md +22 -0
- package/templates/es/openspec/templates/verify-report.md +24 -0
- 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
|
+
}
|