elsabro 2.2.0 → 3.7.0
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/README.md +668 -20
- package/agents/elsabro-orchestrator.md +113 -0
- package/bin/install.js +0 -0
- package/commands/elsabro/execute.md +223 -46
- package/commands/elsabro/start.md +34 -0
- package/commands/elsabro/verify-work.md +29 -0
- package/flows/development-flow.json +452 -0
- package/flows/quick-flow.json +118 -0
- package/hooks/confirm-destructive.sh +145 -0
- package/hooks/hooks-config.json +81 -0
- package/hooks/lint-check.sh +238 -0
- package/hooks/post-edit-test.sh +189 -0
- package/package.json +5 -3
- package/references/SYSTEM_INDEX.md +379 -5
- package/references/agent-marketplace.md +2274 -0
- package/references/agent-protocol.md +1126 -0
- package/references/ai-code-suggestions.md +2413 -0
- package/references/checkpointing.md +595 -0
- package/references/collaboration-patterns.md +851 -0
- package/references/collaborative-sessions.md +1081 -0
- package/references/configuration-management.md +1810 -0
- package/references/cost-tracking.md +1095 -0
- package/references/enterprise-sso.md +2001 -0
- package/references/error-contracts-tests.md +1171 -0
- package/references/error-contracts-v2.md +968 -0
- package/references/error-contracts.md +3102 -0
- package/references/event-driven.md +1031 -0
- package/references/flow-orchestration.md +940 -0
- package/references/flow-visualization.md +1557 -0
- package/references/ide-integrations.md +3513 -0
- package/references/interrupt-system.md +681 -0
- package/references/kubernetes-deployment.md +3099 -0
- package/references/memory-system.md +683 -0
- package/references/mobile-companion.md +3236 -0
- package/references/multi-llm-providers.md +2494 -0
- package/references/multi-project-memory.md +1182 -0
- package/references/observability.md +793 -0
- package/references/output-schemas.md +858 -0
- package/references/parallel-worktrees.md +293 -0
- package/references/performance-profiler.md +955 -0
- package/references/plugin-system.md +1526 -0
- package/references/prompt-management.md +292 -0
- package/references/sandbox-execution.md +303 -0
- package/references/security-system.md +1253 -0
- package/references/streaming.md +696 -0
- package/references/testing-framework.md +1151 -0
- package/references/time-travel.md +802 -0
- package/references/tool-registry.md +886 -0
- package/references/voice-commands.md +3296 -0
- package/scripts/setup-parallel-worktrees.sh +319 -0
- package/skills/memory-update.md +207 -0
- package/skills/review.md +331 -0
- package/skills/techdebt.md +289 -0
- package/skills/tutor.md +219 -0
- package/templates/.planning/notes/.gitkeep +0 -0
- package/templates/CLAUDE.md.template +48 -0
- package/templates/agent-marketplace-config.json +220 -0
- package/templates/agent-protocol-config.json +136 -0
- package/templates/ai-suggestions-config.json +100 -0
- package/templates/checkpoint-state.json +61 -0
- package/templates/collaboration-config.json +157 -0
- package/templates/collaborative-sessions-config.json +153 -0
- package/templates/configuration-config.json +245 -0
- package/templates/cost-tracking-config.json +148 -0
- package/templates/enterprise-sso-config.json +438 -0
- package/templates/error-handling-config.json +79 -2
- package/templates/events-config.json +148 -0
- package/templates/flow-visualization-config.json +196 -0
- package/templates/ide-integrations-config.json +442 -0
- package/templates/kubernetes-config.json +764 -0
- package/templates/memory-state.json +84 -0
- package/templates/mistakes.md.template +52 -0
- package/templates/mobile-companion-config.json +600 -0
- package/templates/multi-llm-config.json +544 -0
- package/templates/multi-project-memory-config.json +145 -0
- package/templates/observability-config.json +109 -0
- package/templates/patterns.md.template +114 -0
- package/templates/performance-profiler-config.json +125 -0
- package/templates/plugin-config.json +170 -0
- package/templates/prompt-management-config.json +86 -0
- package/templates/sandbox-config.json +185 -0
- package/templates/schemas-config.json +65 -0
- package/templates/security-config.json +120 -0
- package/templates/streaming-config.json +72 -0
- package/templates/testing-config.json +81 -0
- package/templates/timetravel-config.json +62 -0
- package/templates/tool-registry-config.json +109 -0
- package/templates/voice-commands-config.json +658 -0
package/skills/tutor.md
ADDED
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: tutor
|
|
3
|
+
description: Modo tutor socratico - aprendizaje guiado con tecnicas de Feynman y analisis de errores
|
|
4
|
+
trigger: /elsabro:tutor
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Grep
|
|
8
|
+
- Glob
|
|
9
|
+
- Bash
|
|
10
|
+
- Task
|
|
11
|
+
argument-hint: "[tema] - tema a aprender (ej: useEffect, async/await, React hooks)"
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# ELSABRO: Socratic Tutor
|
|
15
|
+
|
|
16
|
+
<objective>
|
|
17
|
+
Activar modo de aprendizaje socratico. En lugar de dar respuestas directamente,
|
|
18
|
+
guiar al usuario a descubrir las respuestas por si mismo mediante preguntas
|
|
19
|
+
estrategicas y tecnicas de refuerzo.
|
|
20
|
+
</objective>
|
|
21
|
+
|
|
22
|
+
<task_integration>
|
|
23
|
+
## Integracion con Tasks API
|
|
24
|
+
|
|
25
|
+
Al iniciar sesion de tutoria, crear tarea para tracking:
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
TaskCreate:
|
|
29
|
+
description: "Sesion de tutoria: [tema]"
|
|
30
|
+
status: in_progress
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Actualizar progreso con checkpoints de confianza del usuario.
|
|
34
|
+
Al finalizar sesion, marcar como completada con resumen de aprendizaje.
|
|
35
|
+
</task_integration>
|
|
36
|
+
|
|
37
|
+
<core_rules>
|
|
38
|
+
## Reglas Fundamentales (OBLIGATORIAS)
|
|
39
|
+
|
|
40
|
+
1. **NUNCA dar la respuesta inmediatamente** - Hacer que el usuario trabaje por ella
|
|
41
|
+
2. **Explicar paso a paso SOLO cuando lo pida** - No sobre-explicar
|
|
42
|
+
3. **Hacer preguntas estilo Socratico** - Para que piense y descubra
|
|
43
|
+
4. **Quiz frecuente** - Mezclar multiple choice, respuesta corta, y "explicame esto"
|
|
44
|
+
5. **Cuando se equivoque** - Mostrar el gap suavemente y pedir que intente de nuevo
|
|
45
|
+
6. **Rating de confianza** - Pedir que califique su confianza (1-10) despues de cada tema
|
|
46
|
+
</core_rules>
|
|
47
|
+
|
|
48
|
+
<techniques>
|
|
49
|
+
## Tecnicas Avanzadas
|
|
50
|
+
|
|
51
|
+
### Feynman Checks
|
|
52
|
+
Pedir que explique conceptos como si fuera principiante:
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
"Antes de continuar, explicame [concepto] como si yo nunca hubiera programado"
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Esto revela si realmente entiende vs. pattern matching superficial.
|
|
59
|
+
|
|
60
|
+
### Make Connections
|
|
61
|
+
Vincular conceptos nuevos con conocimiento previo:
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
"Como se relaciona esto con [X que vimos antes]?"
|
|
65
|
+
"En que se parece/diferencia de [concepto similar]?"
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### Predict Before Reveal
|
|
69
|
+
Antes de mostrar como funciona algo:
|
|
70
|
+
|
|
71
|
+
```
|
|
72
|
+
"Que crees que va a pasar cuando ejecutemos esto?"
|
|
73
|
+
"Por que crees que funciona de esa manera?"
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### Error Analysis
|
|
77
|
+
Cuando cometa un error, no solo corregir:
|
|
78
|
+
|
|
79
|
+
```
|
|
80
|
+
"Interesante respuesta. Por que pensaste eso?"
|
|
81
|
+
"Que te llevo a esa conclusion?"
|
|
82
|
+
"Puedes identificar donde se desvio tu razonamiento?"
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Summarization Checkpoints
|
|
86
|
+
Periodicamente pedir resumenes:
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
"Pausa. Resume lo que hemos aprendido hasta ahora en tus propias palabras."
|
|
90
|
+
"Si tuvieras que explicar esto en un tweet, que dirias?"
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Spaced Callbacks
|
|
94
|
+
Volver a conceptos anteriores inesperadamente:
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
"Por cierto, recuerdas lo que vimos sobre [tema anterior]? Como aplicaria aqui?"
|
|
98
|
+
```
|
|
99
|
+
</techniques>
|
|
100
|
+
|
|
101
|
+
<session_flow>
|
|
102
|
+
## Flujo de Sesion
|
|
103
|
+
|
|
104
|
+
### Inicio
|
|
105
|
+
```
|
|
106
|
+
Usuario: /elsabro:tutor useEffect
|
|
107
|
+
|
|
108
|
+
Claude: [Crea tarea de tutoria en Tasks]
|
|
109
|
+
|
|
110
|
+
"Vamos a explorar useEffect. Antes de profundizar, respondeme:
|
|
111
|
+
|
|
112
|
+
1. Que CREES que hace useEffect? No busques, dime lo que piensas.
|
|
113
|
+
2. En que situaciones lo has usado o visto usado?
|
|
114
|
+
|
|
115
|
+
Cuando tengas respuestas, continuamos."
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### Durante
|
|
119
|
+
```
|
|
120
|
+
- Preguntas guiadas (no respuestas)
|
|
121
|
+
- Checkpoints de confianza cada 2-3 conceptos
|
|
122
|
+
- Feynman checks cuando el usuario "cree entender"
|
|
123
|
+
- Error analysis sin juicio cuando falla
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
### Cierre
|
|
127
|
+
```
|
|
128
|
+
Claude: "Antes de terminar:
|
|
129
|
+
|
|
130
|
+
1. Resume en 2-3 oraciones que aprendiste hoy sobre [tema]
|
|
131
|
+
2. Como calificarias tu confianza ahora (1-10)?
|
|
132
|
+
3. Que pregunta te queda pendiente?
|
|
133
|
+
|
|
134
|
+
[Actualiza tarea con resumen de sesion]"
|
|
135
|
+
```
|
|
136
|
+
</session_flow>
|
|
137
|
+
|
|
138
|
+
<example_flow>
|
|
139
|
+
## Ejemplo de Flujo Completo
|
|
140
|
+
|
|
141
|
+
```
|
|
142
|
+
Usuario: /elsabro:tutor useEffect
|
|
143
|
+
|
|
144
|
+
Claude: "Vamos a explorar useEffect. Antes de profundizar, respondeme:
|
|
145
|
+
Que CREES que hace useEffect? No busques, dime lo que piensas."
|
|
146
|
+
|
|
147
|
+
Usuario: "Creo que ejecuta codigo cuando el componente se monta"
|
|
148
|
+
|
|
149
|
+
Claude: "Casi. Solo cuando se monta? Que pasa si cambio una variable de estado?"
|
|
150
|
+
|
|
151
|
+
Usuario: "Hmm... se vuelve a ejecutar?"
|
|
152
|
+
|
|
153
|
+
Claude: "Correcto. Ahora, CUANDO se vuelve a ejecutar exactamente?
|
|
154
|
+
Pista: tiene que ver con el segundo argumento."
|
|
155
|
+
|
|
156
|
+
[continua guiando con preguntas...]
|
|
157
|
+
|
|
158
|
+
Claude: "Checkpoint de confianza: Como calificarias tu entendimiento
|
|
159
|
+
sobre cuando se ejecuta useEffect? (1-10)"
|
|
160
|
+
|
|
161
|
+
Usuario: "Un 6"
|
|
162
|
+
|
|
163
|
+
Claude: "Ok, sigamos practicando hasta que llegues a 8+.
|
|
164
|
+
Ahora, explicame el array de dependencias como si yo fuera
|
|
165
|
+
alguien que nunca ha usado React..."
|
|
166
|
+
```
|
|
167
|
+
</example_flow>
|
|
168
|
+
|
|
169
|
+
<confidence_tracking>
|
|
170
|
+
## Tracking de Confianza
|
|
171
|
+
|
|
172
|
+
Mantener registro durante la sesion:
|
|
173
|
+
|
|
174
|
+
| Concepto | Confianza Inicial | Confianza Final |
|
|
175
|
+
|----------|-------------------|-----------------|
|
|
176
|
+
| useEffect basico | 4 | 7 |
|
|
177
|
+
| Dependencies array | 2 | 8 |
|
|
178
|
+
| Cleanup function | 1 | 6 |
|
|
179
|
+
|
|
180
|
+
**Meta**: Todos los conceptos en 7+ antes de cerrar sesion.
|
|
181
|
+
</confidence_tracking>
|
|
182
|
+
|
|
183
|
+
<exit_modes>
|
|
184
|
+
## Salir del Modo Tutor
|
|
185
|
+
|
|
186
|
+
El usuario puede salir diciendo:
|
|
187
|
+
- "Salir de modo tutor"
|
|
188
|
+
- "Ya entendi, continua normal"
|
|
189
|
+
- `/elsabro:tutor off`
|
|
190
|
+
- "Modo normal"
|
|
191
|
+
|
|
192
|
+
Al salir, guardar resumen en la tarea y marcar como completada.
|
|
193
|
+
</exit_modes>
|
|
194
|
+
|
|
195
|
+
<adaptation>
|
|
196
|
+
## Adaptacion Dinamica
|
|
197
|
+
|
|
198
|
+
- Si responde correctamente 3 veces seguidas: aumentar dificultad
|
|
199
|
+
- Si falla 2 veces seguidas: dar pistas mas directas
|
|
200
|
+
- Si confianza < 5: volver a lo basico
|
|
201
|
+
- Si confianza > 8: introducir edge cases y complejidad
|
|
202
|
+
- Si usuario frustrado: ofrecer explicacion directa como opcion
|
|
203
|
+
</adaptation>
|
|
204
|
+
|
|
205
|
+
<integration_memory>
|
|
206
|
+
## Integracion con Memoria ELSABRO
|
|
207
|
+
|
|
208
|
+
Al detectar gaps de conocimiento recurrentes:
|
|
209
|
+
|
|
210
|
+
```
|
|
211
|
+
"He notado que [concepto X] te cuesta. Quieres que agregue
|
|
212
|
+
ejercicios de repaso a tu proxima sesion?"
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
Guardar en `.planning/notes/learning.md`:
|
|
216
|
+
- Temas dominados
|
|
217
|
+
- Temas que necesitan refuerzo
|
|
218
|
+
- Progreso historico
|
|
219
|
+
</integration_memory>
|
|
File without changes
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# [NOMBRE_PROYECTO] - Memoria de Claude
|
|
2
|
+
|
|
3
|
+
## Stack Tecnologico
|
|
4
|
+
<!-- Descomenta y personaliza segun tu proyecto -->
|
|
5
|
+
<!-- - Frontend: React/Next.js/Vue -->
|
|
6
|
+
<!-- - Backend: Node/Python/Go -->
|
|
7
|
+
<!-- - Database: PostgreSQL/MongoDB -->
|
|
8
|
+
<!-- - Deploy: Vercel/AWS/Docker -->
|
|
9
|
+
|
|
10
|
+
## Reglas de Codigo (OBLIGATORIAS)
|
|
11
|
+
|
|
12
|
+
### Estilo
|
|
13
|
+
- Preferir TypeScript sobre JavaScript
|
|
14
|
+
- Componentes funcionales con hooks
|
|
15
|
+
- Imports especificos, no `import *`
|
|
16
|
+
- Async/await sobre .then()
|
|
17
|
+
|
|
18
|
+
### Patrones
|
|
19
|
+
- Composicion sobre herencia
|
|
20
|
+
- Funciones puras cuando sea posible
|
|
21
|
+
- Early returns para reducir anidamiento
|
|
22
|
+
- Error handling explicito
|
|
23
|
+
|
|
24
|
+
### Naming
|
|
25
|
+
- camelCase para variables y funciones
|
|
26
|
+
- PascalCase para componentes y clases
|
|
27
|
+
- SCREAMING_SNAKE para constantes
|
|
28
|
+
- Nombres descriptivos, no abreviados
|
|
29
|
+
|
|
30
|
+
## NO HACER (Errores Aprendidos)
|
|
31
|
+
|
|
32
|
+
**Ver archivo completo:** `.planning/mistakes.md`
|
|
33
|
+
|
|
34
|
+
<!-- Errores criticos se documentan aqui como resumen -->
|
|
35
|
+
|
|
36
|
+
## Contexto del Proyecto
|
|
37
|
+
|
|
38
|
+
### Arquitectura
|
|
39
|
+
<!-- Describir arquitectura de alto nivel -->
|
|
40
|
+
|
|
41
|
+
### Decisiones Importantes
|
|
42
|
+
<!-- Documentar decisiones arquitectonicas y por que -->
|
|
43
|
+
|
|
44
|
+
## Referencias
|
|
45
|
+
|
|
46
|
+
- Errores detallados: `.planning/mistakes.md`
|
|
47
|
+
- Patrones preferidos: `.planning/patterns.md`
|
|
48
|
+
- Notas por feature: `.planning/notes/`
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
{
|
|
2
|
+
"marketplace": {
|
|
3
|
+
"enabled": true,
|
|
4
|
+
"version": "3.6.0",
|
|
5
|
+
|
|
6
|
+
"registry": {
|
|
7
|
+
"url": "https://marketplace.elsabro.dev/api/v1",
|
|
8
|
+
"mirrorUrls": [
|
|
9
|
+
"https://marketplace-eu.elsabro.dev/api/v1",
|
|
10
|
+
"https://marketplace-asia.elsabro.dev/api/v1"
|
|
11
|
+
],
|
|
12
|
+
"timeout": 30000,
|
|
13
|
+
"retryAttempts": 3,
|
|
14
|
+
"cacheEnabled": true,
|
|
15
|
+
"cacheTTL": 3600000
|
|
16
|
+
},
|
|
17
|
+
|
|
18
|
+
"categories": [
|
|
19
|
+
{
|
|
20
|
+
"id": "exploration",
|
|
21
|
+
"name": "Exploration",
|
|
22
|
+
"description": "Agents for codebase analysis and discovery",
|
|
23
|
+
"icon": "search"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": "implementation",
|
|
27
|
+
"name": "Implementation",
|
|
28
|
+
"description": "Agents for code generation and development",
|
|
29
|
+
"icon": "code"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"id": "review",
|
|
33
|
+
"name": "Review",
|
|
34
|
+
"description": "Agents for code review and quality analysis",
|
|
35
|
+
"icon": "eye"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "testing",
|
|
39
|
+
"name": "Testing",
|
|
40
|
+
"description": "Agents for test generation and execution",
|
|
41
|
+
"icon": "check-circle"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": "specialized",
|
|
45
|
+
"name": "Specialized",
|
|
46
|
+
"description": "Domain-specific and custom agents",
|
|
47
|
+
"icon": "star"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
|
|
51
|
+
"search": {
|
|
52
|
+
"enabled": true,
|
|
53
|
+
"maxResults": 50,
|
|
54
|
+
"defaultSort": "relevance",
|
|
55
|
+
"sortOptions": ["relevance", "downloads", "rating", "updated", "name"],
|
|
56
|
+
"filters": {
|
|
57
|
+
"tags": true,
|
|
58
|
+
"rating": true,
|
|
59
|
+
"downloads": true,
|
|
60
|
+
"compatibility": true,
|
|
61
|
+
"verified": true,
|
|
62
|
+
"category": true
|
|
63
|
+
},
|
|
64
|
+
"fuzzyMatching": true,
|
|
65
|
+
"minSearchLength": 2
|
|
66
|
+
},
|
|
67
|
+
|
|
68
|
+
"packaging": {
|
|
69
|
+
"manifestFile": "agent.manifest.json",
|
|
70
|
+
"requiredFields": ["name", "version", "displayName", "description", "author", "main"],
|
|
71
|
+
"maxPackageSize": 52428800,
|
|
72
|
+
"allowedFileTypes": [".js", ".ts", ".json", ".md", ".txt", ".yaml", ".yml"],
|
|
73
|
+
"excludePatterns": ["node_modules/**", ".git/**", "*.log", ".env*"],
|
|
74
|
+
"compressionLevel": 9,
|
|
75
|
+
"checksumAlgorithm": "sha256"
|
|
76
|
+
},
|
|
77
|
+
|
|
78
|
+
"signing": {
|
|
79
|
+
"enabled": true,
|
|
80
|
+
"required": false,
|
|
81
|
+
"algorithm": "ed25519",
|
|
82
|
+
"trustedPublishers": [],
|
|
83
|
+
"keyServer": "https://keys.elsabro.dev",
|
|
84
|
+
"verifyOnInstall": true,
|
|
85
|
+
"allowUnsigned": true,
|
|
86
|
+
"warnUnsigned": true
|
|
87
|
+
},
|
|
88
|
+
|
|
89
|
+
"publishing": {
|
|
90
|
+
"requireAccount": true,
|
|
91
|
+
"requireVerifiedEmail": true,
|
|
92
|
+
"autoReview": true,
|
|
93
|
+
"manualReviewThreshold": 0.7,
|
|
94
|
+
"stages": ["submit", "validate", "review", "approve", "publish"],
|
|
95
|
+
"webhooks": {
|
|
96
|
+
"onSubmit": null,
|
|
97
|
+
"onApprove": null,
|
|
98
|
+
"onPublish": null,
|
|
99
|
+
"onReject": null
|
|
100
|
+
},
|
|
101
|
+
"retentionPolicy": {
|
|
102
|
+
"keepVersions": 10,
|
|
103
|
+
"keepDays": 365
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
|
|
107
|
+
"testing": {
|
|
108
|
+
"requiredBeforePublish": true,
|
|
109
|
+
"minCoverage": 60,
|
|
110
|
+
"runSandboxed": true,
|
|
111
|
+
"timeout": 300000,
|
|
112
|
+
"testTypes": ["unit", "integration", "compatibility"],
|
|
113
|
+
"compatibilityMatrix": {
|
|
114
|
+
"elsabroVersions": ["3.4.x", "3.5.x", "3.6.x"],
|
|
115
|
+
"nodeVersions": ["18.x", "20.x", "22.x"]
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
|
|
119
|
+
"reviews": {
|
|
120
|
+
"enabled": true,
|
|
121
|
+
"requireInstall": true,
|
|
122
|
+
"minRating": 1,
|
|
123
|
+
"maxRating": 5,
|
|
124
|
+
"allowAnonymous": false,
|
|
125
|
+
"moderationEnabled": true,
|
|
126
|
+
"editWindow": 604800000,
|
|
127
|
+
"responseEnabled": true
|
|
128
|
+
},
|
|
129
|
+
|
|
130
|
+
"metrics": {
|
|
131
|
+
"trackDownloads": true,
|
|
132
|
+
"trackActiveUsers": true,
|
|
133
|
+
"trackSuccessRate": true,
|
|
134
|
+
"trackErrors": true,
|
|
135
|
+
"retentionDays": 90,
|
|
136
|
+
"aggregationInterval": 86400000
|
|
137
|
+
},
|
|
138
|
+
|
|
139
|
+
"installation": {
|
|
140
|
+
"defaultPath": ".elsabro/marketplace-agents",
|
|
141
|
+
"globalPath": "~/.elsabro/global-agents",
|
|
142
|
+
"verifyChecksum": true,
|
|
143
|
+
"verifySignature": true,
|
|
144
|
+
"backupBeforeUpdate": true,
|
|
145
|
+
"rollbackOnFailure": true,
|
|
146
|
+
"maxConcurrentInstalls": 3,
|
|
147
|
+
"lockFile": ".elsabro/agent-lock.json"
|
|
148
|
+
},
|
|
149
|
+
|
|
150
|
+
"dependencies": {
|
|
151
|
+
"autoResolve": true,
|
|
152
|
+
"strategy": "highest-compatible",
|
|
153
|
+
"allowPeerDependencies": true,
|
|
154
|
+
"checkConflicts": true,
|
|
155
|
+
"hoistDependencies": true,
|
|
156
|
+
"lockfileVersion": 1
|
|
157
|
+
},
|
|
158
|
+
|
|
159
|
+
"sandbox": {
|
|
160
|
+
"enabled": true,
|
|
161
|
+
"isolationLevel": "strict",
|
|
162
|
+
"permissions": {
|
|
163
|
+
"filesystem": "restricted",
|
|
164
|
+
"network": "restricted",
|
|
165
|
+
"shell": "denied",
|
|
166
|
+
"env": "restricted"
|
|
167
|
+
},
|
|
168
|
+
"resourceLimits": {
|
|
169
|
+
"memory": 268435456,
|
|
170
|
+
"cpu": 0.75,
|
|
171
|
+
"timeout": 60000
|
|
172
|
+
},
|
|
173
|
+
"allowedHosts": [],
|
|
174
|
+
"blockedHosts": []
|
|
175
|
+
},
|
|
176
|
+
|
|
177
|
+
"updates": {
|
|
178
|
+
"checkOnStartup": true,
|
|
179
|
+
"checkInterval": 86400000,
|
|
180
|
+
"autoUpdate": false,
|
|
181
|
+
"autoUpdateMinor": false,
|
|
182
|
+
"autoUpdatePatch": true,
|
|
183
|
+
"notifyAvailable": true,
|
|
184
|
+
"prereleaseChannel": false
|
|
185
|
+
},
|
|
186
|
+
|
|
187
|
+
"reporting": {
|
|
188
|
+
"enabled": true,
|
|
189
|
+
"types": ["bug", "security", "inappropriate", "license"],
|
|
190
|
+
"requireDescription": true,
|
|
191
|
+
"minDescriptionLength": 50,
|
|
192
|
+
"notifyPublisher": true
|
|
193
|
+
},
|
|
194
|
+
|
|
195
|
+
"cache": {
|
|
196
|
+
"enabled": true,
|
|
197
|
+
"path": ".elsabro/marketplace-cache",
|
|
198
|
+
"maxSize": 524288000,
|
|
199
|
+
"cleanupInterval": 604800000,
|
|
200
|
+
"cachePackages": true,
|
|
201
|
+
"cacheMetadata": true
|
|
202
|
+
},
|
|
203
|
+
|
|
204
|
+
"offline": {
|
|
205
|
+
"enabled": true,
|
|
206
|
+
"useCachedMetadata": true,
|
|
207
|
+
"useCachedPackages": true,
|
|
208
|
+
"syncOnConnect": true
|
|
209
|
+
},
|
|
210
|
+
|
|
211
|
+
"ui": {
|
|
212
|
+
"showRatings": true,
|
|
213
|
+
"showDownloads": true,
|
|
214
|
+
"showLastUpdated": true,
|
|
215
|
+
"showVerifiedBadge": true,
|
|
216
|
+
"previewEnabled": true,
|
|
217
|
+
"defaultView": "grid"
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agentProtocol": {
|
|
3
|
+
"enabled": true,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
|
|
6
|
+
"server": {
|
|
7
|
+
"port": 8080,
|
|
8
|
+
"host": "localhost",
|
|
9
|
+
"basePath": "/api/v1",
|
|
10
|
+
"shutdownTimeout": 5000
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
"agent": {
|
|
14
|
+
"name": "ELSABRO",
|
|
15
|
+
"version": "3.2.0",
|
|
16
|
+
"description": "AI-powered development orchestration framework",
|
|
17
|
+
"capabilities": [
|
|
18
|
+
"checkpointing",
|
|
19
|
+
"multi-level-memory",
|
|
20
|
+
"flow-orchestration",
|
|
21
|
+
"error-contracts",
|
|
22
|
+
"interrupts",
|
|
23
|
+
"observability",
|
|
24
|
+
"streaming",
|
|
25
|
+
"output-schemas",
|
|
26
|
+
"time-travel",
|
|
27
|
+
"agent-protocol"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"artifacts": {
|
|
32
|
+
"directory": ".elsabro/artifacts",
|
|
33
|
+
"maxSizeBytes": 104857600,
|
|
34
|
+
"allowedTypes": [
|
|
35
|
+
"application/json",
|
|
36
|
+
"text/plain",
|
|
37
|
+
"text/markdown",
|
|
38
|
+
"text/typescript",
|
|
39
|
+
"text/javascript",
|
|
40
|
+
"application/pdf",
|
|
41
|
+
"image/png",
|
|
42
|
+
"image/jpeg",
|
|
43
|
+
"application/zip"
|
|
44
|
+
],
|
|
45
|
+
"retention": {
|
|
46
|
+
"enabled": true,
|
|
47
|
+
"maxAgeDays": 30,
|
|
48
|
+
"maxTotalSizeBytes": 1073741824
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
"cors": {
|
|
53
|
+
"enabled": true,
|
|
54
|
+
"origins": ["*"],
|
|
55
|
+
"methods": ["GET", "POST", "PUT", "DELETE", "OPTIONS"],
|
|
56
|
+
"allowedHeaders": ["Content-Type", "Authorization"],
|
|
57
|
+
"credentials": false
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
"auth": {
|
|
61
|
+
"enabled": false,
|
|
62
|
+
"type": "bearer",
|
|
63
|
+
"token": null,
|
|
64
|
+
"apiKeyHeader": "X-API-Key"
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
"websocket": {
|
|
68
|
+
"enabled": true,
|
|
69
|
+
"path": "/ws",
|
|
70
|
+
"pingInterval": 30000,
|
|
71
|
+
"maxConnections": 100
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
"rateLimit": {
|
|
75
|
+
"enabled": true,
|
|
76
|
+
"windowMs": 60000,
|
|
77
|
+
"maxRequests": 100,
|
|
78
|
+
"skipFailedRequests": false,
|
|
79
|
+
"keyGenerator": "ip"
|
|
80
|
+
},
|
|
81
|
+
|
|
82
|
+
"logging": {
|
|
83
|
+
"enabled": true,
|
|
84
|
+
"level": "info",
|
|
85
|
+
"includeBody": false,
|
|
86
|
+
"excludePaths": ["/health", "/metrics"]
|
|
87
|
+
},
|
|
88
|
+
|
|
89
|
+
"health": {
|
|
90
|
+
"enabled": true,
|
|
91
|
+
"path": "/health",
|
|
92
|
+
"checks": ["memory", "disk", "agents"]
|
|
93
|
+
},
|
|
94
|
+
|
|
95
|
+
"metrics": {
|
|
96
|
+
"enabled": true,
|
|
97
|
+
"path": "/metrics",
|
|
98
|
+
"format": "prometheus"
|
|
99
|
+
},
|
|
100
|
+
|
|
101
|
+
"tasks": {
|
|
102
|
+
"maxConcurrent": 10,
|
|
103
|
+
"defaultTimeout": 300000,
|
|
104
|
+
"cleanupAfterMs": 86400000
|
|
105
|
+
},
|
|
106
|
+
|
|
107
|
+
"steps": {
|
|
108
|
+
"maxPerTask": 1000,
|
|
109
|
+
"defaultTimeout": 60000,
|
|
110
|
+
"autoSaveCheckpoint": true
|
|
111
|
+
},
|
|
112
|
+
|
|
113
|
+
"integration": {
|
|
114
|
+
"flowEngine": {
|
|
115
|
+
"enabled": true,
|
|
116
|
+
"defaultFlow": "development-flow"
|
|
117
|
+
},
|
|
118
|
+
"checkpointManager": {
|
|
119
|
+
"enabled": true,
|
|
120
|
+
"autoCheckpoint": true
|
|
121
|
+
},
|
|
122
|
+
"memoryManager": {
|
|
123
|
+
"enabled": true,
|
|
124
|
+
"persistContext": true
|
|
125
|
+
},
|
|
126
|
+
"streamManager": {
|
|
127
|
+
"enabled": true,
|
|
128
|
+
"broadcastProgress": true
|
|
129
|
+
},
|
|
130
|
+
"telemetryManager": {
|
|
131
|
+
"enabled": true,
|
|
132
|
+
"traceRequests": true
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|