cmp-standards 2.7.0 → 2.8.0-alpha
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 +633 -633
- package/dist/cache/EmbeddingCache.d.ts +109 -0
- package/dist/cache/EmbeddingCache.d.ts.map +1 -0
- package/dist/cache/EmbeddingCache.js +239 -0
- package/dist/cache/EmbeddingCache.js.map +1 -0
- package/dist/cache/index.d.ts +6 -0
- package/dist/cache/index.d.ts.map +1 -0
- package/dist/cache/index.js +6 -0
- package/dist/cache/index.js.map +1 -0
- package/dist/cli/index.js +0 -0
- package/dist/db/turso-client.js +11 -11
- package/dist/eslint/rules/no-async-useeffect.js +6 -6
- package/dist/events/EventBus.d.ts +87 -0
- package/dist/events/EventBus.d.ts.map +1 -0
- package/dist/events/EventBus.js +200 -0
- package/dist/events/EventBus.js.map +1 -0
- package/dist/events/index.d.ts +7 -0
- package/dist/events/index.d.ts.map +1 -0
- package/dist/events/index.js +9 -0
- package/dist/events/index.js.map +1 -0
- package/dist/events/types.d.ts +989 -0
- package/dist/events/types.d.ts.map +1 -0
- package/dist/events/types.js +136 -0
- package/dist/events/types.js.map +1 -0
- package/dist/experts/ConsensusEngine.d.ts +57 -0
- package/dist/experts/ConsensusEngine.d.ts.map +1 -0
- package/dist/experts/ConsensusEngine.js +146 -0
- package/dist/experts/ConsensusEngine.js.map +1 -0
- package/dist/experts/ExpertPanelService.d.ts +84 -0
- package/dist/experts/ExpertPanelService.d.ts.map +1 -0
- package/dist/experts/ExpertPanelService.js +204 -0
- package/dist/experts/ExpertPanelService.js.map +1 -0
- package/dist/experts/ExpertRouter.d.ts +68 -0
- package/dist/experts/ExpertRouter.d.ts.map +1 -0
- package/dist/experts/ExpertRouter.js +374 -0
- package/dist/experts/ExpertRouter.js.map +1 -0
- package/dist/experts/VoteCollector.d.ts +58 -0
- package/dist/experts/VoteCollector.d.ts.map +1 -0
- package/dist/experts/VoteCollector.js +146 -0
- package/dist/experts/VoteCollector.js.map +1 -0
- package/dist/experts/index.d.ts +9 -0
- package/dist/experts/index.d.ts.map +1 -0
- package/dist/experts/index.js +13 -0
- package/dist/experts/index.js.map +1 -0
- package/dist/hooks/cloud-pre-tool-use.js +20 -20
- package/dist/hooks/expert-review.d.ts +74 -0
- package/dist/hooks/expert-review.d.ts.map +1 -0
- package/dist/hooks/expert-review.js +220 -0
- package/dist/hooks/expert-review.js.map +1 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +2 -0
- package/dist/hooks/index.js.map +1 -1
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +22 -0
- package/dist/index.js.map +1 -1
- package/dist/performance/Debouncer.d.ts +91 -0
- package/dist/performance/Debouncer.d.ts.map +1 -0
- package/dist/performance/Debouncer.js +198 -0
- package/dist/performance/Debouncer.js.map +1 -0
- package/dist/performance/MemoryDecay.d.ts +82 -0
- package/dist/performance/MemoryDecay.d.ts.map +1 -0
- package/dist/performance/MemoryDecay.js +153 -0
- package/dist/performance/MemoryDecay.js.map +1 -0
- package/dist/performance/index.d.ts +7 -0
- package/dist/performance/index.d.ts.map +1 -0
- package/dist/performance/index.js +9 -0
- package/dist/performance/index.js.map +1 -0
- package/dist/schema/expert-types.d.ts +395 -0
- package/dist/schema/expert-types.d.ts.map +1 -0
- package/dist/schema/expert-types.js +250 -0
- package/dist/schema/expert-types.js.map +1 -0
- package/dist/services/ContextGenerator.js +7 -7
- package/dist/services/ProjectScaffold.js +76 -76
- package/dist/services/memory-router.js +35 -35
- package/dist/services/pattern-tracker.js +90 -90
- package/dist/services/semantic-search.js +2 -2
- package/package.json +105 -104
- package/standards/README.md +50 -50
- package/standards/experts/expert-routing.md +215 -215
- package/standards/general/code-quality.md +86 -86
- package/standards/general/memory-usage.md +205 -205
- package/standards/general/sync-workflow.md +235 -235
- package/standards/general/workflow.md +82 -82
- package/standards/hooks/mandatory-tracking.md +446 -446
- package/standards/infrastructure/cloud-database.md +287 -287
- package/standards/mcp/server-design.md +243 -243
- package/standards/mcp/tool-patterns.md +354 -354
- package/standards/skills/skill-structure.md +286 -286
- package/standards/skills/workflow-design.md +323 -323
- package/standards/tools/tool-design.md +297 -297
- package/templates/agents/architecture-expert.md +61 -61
- package/templates/agents/database-expert.md +62 -62
- package/templates/agents/documentation-expert.md +57 -57
- package/templates/agents/memory-expert.md +88 -88
- package/templates/agents/performance-expert.md +61 -61
- package/templates/agents/security-expert.md +59 -59
- package/templates/agents/ux-expert.md +63 -63
- package/templates/agents/worker.md +75 -75
- package/templates/ai-skills/SKILL_TEMPLATE.md +55 -55
- package/templates/claude-settings.json +72 -72
- package/templates/commands/experts.md +138 -138
- package/templates/hooks/README.md +158 -158
- package/templates/hooks/project.config.json.template +77 -77
- package/templates/hooks/settings.local.json.template +57 -57
- package/templates/memory-config.json +56 -56
- package/templates/memory-config.schema.json +212 -212
- package/templates/settings.json +58 -58
- package/templates/skills/continue.md +205 -205
- package/templates/workflows/business-improvement.md +264 -264
- package/templates/workflows/expert-review.md +153 -153
- package/templates/workflows/internal-app.md +245 -245
- package/templates/workflows/sync-docs.md +187 -187
|
@@ -1,205 +1,205 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: continue
|
|
3
|
-
description: Continuar con una tarea en progreso
|
|
4
|
-
arguments:
|
|
5
|
-
- name: taskId
|
|
6
|
-
description: ID de la tarea específica (opcional)
|
|
7
|
-
required: false
|
|
8
|
-
- name: list
|
|
9
|
-
description: Mostrar lista de tareas activas
|
|
10
|
-
required: false
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
# /continue - Retomar Tarea
|
|
14
|
-
|
|
15
|
-
## Objetivo
|
|
16
|
-
|
|
17
|
-
Cargar el contexto de una tarea en progreso y continuar desde donde se dejó.
|
|
18
|
-
|
|
19
|
-
## Flujo
|
|
20
|
-
|
|
21
|
-
### 1. Buscar Tareas Activas
|
|
22
|
-
|
|
23
|
-
```typescript
|
|
24
|
-
// Consultar base de datos
|
|
25
|
-
const activeTasks = await db.query({
|
|
26
|
-
type: 'task',
|
|
27
|
-
status: 'in_progress',
|
|
28
|
-
system: currentSystem,
|
|
29
|
-
orderBy: 'lastActivityAt DESC'
|
|
30
|
-
})
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
### 2. Si hay múltiples tareas
|
|
34
|
-
|
|
35
|
-
Mostrar lista al usuario:
|
|
36
|
-
|
|
37
|
-
```
|
|
38
|
-
📋 Tareas en Progreso:
|
|
39
|
-
|
|
40
|
-
1. [task_01J...] Implementar cache para Veo API
|
|
41
|
-
└─ Paso 3/5 • Hace 2 horas • video-studio
|
|
42
|
-
|
|
43
|
-
2. [task_01K...] Refactorizar AuthService
|
|
44
|
-
└─ Paso 1/3 • Hace 1 día • auth
|
|
45
|
-
|
|
46
|
-
3. [task_01L...] Agregar tests a PaymentService
|
|
47
|
-
└─ Paso 2/4 • Hace 3 días • payments
|
|
48
|
-
|
|
49
|
-
¿Cuál quieres continuar? (número o ID)
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
### 3. Cargar Contexto de la Tarea
|
|
53
|
-
|
|
54
|
-
```typescript
|
|
55
|
-
const task = await db.get(taskId)
|
|
56
|
-
const content = task.content as TaskContent
|
|
57
|
-
|
|
58
|
-
// Mostrar contexto completo
|
|
59
|
-
console.log(`
|
|
60
|
-
📋 ${content.title}
|
|
61
|
-
|
|
62
|
-
📝 Plan:
|
|
63
|
-
${content.plan.map((step, i) =>
|
|
64
|
-
`${i < content.currentStep ? '✅' : i === content.currentStep ? '→' : ' '} ${i + 1}. ${step}`
|
|
65
|
-
).join('\n')}
|
|
66
|
-
|
|
67
|
-
📁 Archivos modificados:
|
|
68
|
-
${content.files.map(f => ` - ${f}`).join('\n')}
|
|
69
|
-
|
|
70
|
-
⏱️ Tiempo: ${formatDuration(content.startedAt)}
|
|
71
|
-
📅 Iniciada: ${formatDate(content.startedAt)}
|
|
72
|
-
🔄 Última actividad: ${formatDate(content.lastActivityAt)}
|
|
73
|
-
|
|
74
|
-
💡 Mejoras detectadas: ${content.improvements?.length || 0}
|
|
75
|
-
`)
|
|
76
|
-
```
|
|
77
|
-
|
|
78
|
-
### 4. Cargar Mejoras Pendientes del Área
|
|
79
|
-
|
|
80
|
-
```typescript
|
|
81
|
-
const improvements = await db.query({
|
|
82
|
-
type: 'improvement',
|
|
83
|
-
status: 'pending',
|
|
84
|
-
'content.area': content.domain,
|
|
85
|
-
limit: 3
|
|
86
|
-
})
|
|
87
|
-
|
|
88
|
-
if (improvements.length > 0) {
|
|
89
|
-
console.log(`
|
|
90
|
-
💡 Mejoras pendientes en ${content.domain}:
|
|
91
|
-
${improvements.map(i => ` - ${i.content.title} (${i.content.priority})`).join('\n')}
|
|
92
|
-
`)
|
|
93
|
-
}
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
### 5. Retomar Trabajo
|
|
97
|
-
|
|
98
|
-
```
|
|
99
|
-
Continuando con paso ${content.currentStep + 1}:
|
|
100
|
-
"${content.plan[content.currentStep]}"
|
|
101
|
-
|
|
102
|
-
Contexto cargado. Puedes continuar trabajando.
|
|
103
|
-
```
|
|
104
|
-
|
|
105
|
-
## Ejemplo de Uso
|
|
106
|
-
|
|
107
|
-
### Caso 1: Una sola tarea activa
|
|
108
|
-
|
|
109
|
-
```
|
|
110
|
-
Usuario: /continue
|
|
111
|
-
|
|
112
|
-
Claude:
|
|
113
|
-
📋 Continuando: "Implementar cache para Veo API"
|
|
114
|
-
|
|
115
|
-
📝 Plan:
|
|
116
|
-
✅ 1. Crear servicio de cache
|
|
117
|
-
✅ 2. Integrar con VeoService
|
|
118
|
-
→ 3. Agregar invalidación por TTL ← AQUÍ
|
|
119
|
-
4. Escribir tests
|
|
120
|
-
5. Documentar
|
|
121
|
-
|
|
122
|
-
📁 Archivos modificados:
|
|
123
|
-
- src/services/cache/VeoCache.ts
|
|
124
|
-
- src/services/ai/VeoService.ts
|
|
125
|
-
|
|
126
|
-
⏱️ Tiempo: 45 min (iniciada hace 2h)
|
|
127
|
-
|
|
128
|
-
💡 Mejoras pendientes en video-studio:
|
|
129
|
-
- Optimizar thumbnails (medium)
|
|
130
|
-
- Cachear prompts frecuentes (low)
|
|
131
|
-
|
|
132
|
-
Continuando con paso 3: "Agregar invalidación por TTL"...
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
### Caso 2: Múltiples tareas
|
|
136
|
-
|
|
137
|
-
```
|
|
138
|
-
Usuario: /continue
|
|
139
|
-
|
|
140
|
-
Claude:
|
|
141
|
-
📋 Tareas en Progreso (3):
|
|
142
|
-
|
|
143
|
-
1. Implementar cache para Veo API
|
|
144
|
-
└─ Paso 3/5 • video-studio • Hace 2h
|
|
145
|
-
|
|
146
|
-
2. Refactorizar AuthService
|
|
147
|
-
└─ Paso 1/3 • auth • Hace 1d
|
|
148
|
-
|
|
149
|
-
3. Agregar tests a PaymentService
|
|
150
|
-
└─ Paso 2/4 • payments • Hace 3d
|
|
151
|
-
|
|
152
|
-
¿Cuál continúo? (1-3 o "nueva" para empezar otra)
|
|
153
|
-
|
|
154
|
-
Usuario: 1
|
|
155
|
-
|
|
156
|
-
Claude: [carga contexto de tarea 1]
|
|
157
|
-
```
|
|
158
|
-
|
|
159
|
-
### Caso 3: Sin tareas activas
|
|
160
|
-
|
|
161
|
-
```
|
|
162
|
-
Usuario: /continue
|
|
163
|
-
|
|
164
|
-
Claude:
|
|
165
|
-
✅ No hay tareas en progreso.
|
|
166
|
-
|
|
167
|
-
Últimas 3 tareas completadas:
|
|
168
|
-
- Implementar feature X (hace 1d) - 2 mejoras detectadas
|
|
169
|
-
- Corregir bug Y (hace 2d) - 1 mejora detectada
|
|
170
|
-
- Refactorizar Z (hace 3d) - 3 mejoras detectadas
|
|
171
|
-
|
|
172
|
-
¿Quieres empezar una nueva tarea o revisar las mejoras pendientes?
|
|
173
|
-
```
|
|
174
|
-
|
|
175
|
-
## Integración con Hooks
|
|
176
|
-
|
|
177
|
-
El skill `/continue` trabaja junto con los hooks:
|
|
178
|
-
|
|
179
|
-
1. **SessionStart**: Muestra resumen automático de tareas activas
|
|
180
|
-
2. **PreToolUse**: Valida que hay tarea activa antes de trabajar
|
|
181
|
-
3. **PostToolUse**: Actualiza progreso automáticamente
|
|
182
|
-
|
|
183
|
-
## Datos Requeridos
|
|
184
|
-
|
|
185
|
-
```typescript
|
|
186
|
-
interface TaskForContinue {
|
|
187
|
-
id: string
|
|
188
|
-
content: {
|
|
189
|
-
title: string
|
|
190
|
-
plan: string[]
|
|
191
|
-
currentStep: number
|
|
192
|
-
domain: string
|
|
193
|
-
files: string[]
|
|
194
|
-
startedAt: string
|
|
195
|
-
lastActivityAt: string
|
|
196
|
-
improvements: Improvement[]
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
```
|
|
200
|
-
|
|
201
|
-
## Comandos Relacionados
|
|
202
|
-
|
|
203
|
-
- `/tasks` - Ver todas las tareas (activas y completadas)
|
|
204
|
-
- `/improvements` - Ver mejoras pendientes por área
|
|
205
|
-
- `/plan` - Crear nuevo plan de trabajo
|
|
1
|
+
---
|
|
2
|
+
name: continue
|
|
3
|
+
description: Continuar con una tarea en progreso
|
|
4
|
+
arguments:
|
|
5
|
+
- name: taskId
|
|
6
|
+
description: ID de la tarea específica (opcional)
|
|
7
|
+
required: false
|
|
8
|
+
- name: list
|
|
9
|
+
description: Mostrar lista de tareas activas
|
|
10
|
+
required: false
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# /continue - Retomar Tarea
|
|
14
|
+
|
|
15
|
+
## Objetivo
|
|
16
|
+
|
|
17
|
+
Cargar el contexto de una tarea en progreso y continuar desde donde se dejó.
|
|
18
|
+
|
|
19
|
+
## Flujo
|
|
20
|
+
|
|
21
|
+
### 1. Buscar Tareas Activas
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
// Consultar base de datos
|
|
25
|
+
const activeTasks = await db.query({
|
|
26
|
+
type: 'task',
|
|
27
|
+
status: 'in_progress',
|
|
28
|
+
system: currentSystem,
|
|
29
|
+
orderBy: 'lastActivityAt DESC'
|
|
30
|
+
})
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### 2. Si hay múltiples tareas
|
|
34
|
+
|
|
35
|
+
Mostrar lista al usuario:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
📋 Tareas en Progreso:
|
|
39
|
+
|
|
40
|
+
1. [task_01J...] Implementar cache para Veo API
|
|
41
|
+
└─ Paso 3/5 • Hace 2 horas • video-studio
|
|
42
|
+
|
|
43
|
+
2. [task_01K...] Refactorizar AuthService
|
|
44
|
+
└─ Paso 1/3 • Hace 1 día • auth
|
|
45
|
+
|
|
46
|
+
3. [task_01L...] Agregar tests a PaymentService
|
|
47
|
+
└─ Paso 2/4 • Hace 3 días • payments
|
|
48
|
+
|
|
49
|
+
¿Cuál quieres continuar? (número o ID)
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### 3. Cargar Contexto de la Tarea
|
|
53
|
+
|
|
54
|
+
```typescript
|
|
55
|
+
const task = await db.get(taskId)
|
|
56
|
+
const content = task.content as TaskContent
|
|
57
|
+
|
|
58
|
+
// Mostrar contexto completo
|
|
59
|
+
console.log(`
|
|
60
|
+
📋 ${content.title}
|
|
61
|
+
|
|
62
|
+
📝 Plan:
|
|
63
|
+
${content.plan.map((step, i) =>
|
|
64
|
+
`${i < content.currentStep ? '✅' : i === content.currentStep ? '→' : ' '} ${i + 1}. ${step}`
|
|
65
|
+
).join('\n')}
|
|
66
|
+
|
|
67
|
+
📁 Archivos modificados:
|
|
68
|
+
${content.files.map(f => ` - ${f}`).join('\n')}
|
|
69
|
+
|
|
70
|
+
⏱️ Tiempo: ${formatDuration(content.startedAt)}
|
|
71
|
+
📅 Iniciada: ${formatDate(content.startedAt)}
|
|
72
|
+
🔄 Última actividad: ${formatDate(content.lastActivityAt)}
|
|
73
|
+
|
|
74
|
+
💡 Mejoras detectadas: ${content.improvements?.length || 0}
|
|
75
|
+
`)
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### 4. Cargar Mejoras Pendientes del Área
|
|
79
|
+
|
|
80
|
+
```typescript
|
|
81
|
+
const improvements = await db.query({
|
|
82
|
+
type: 'improvement',
|
|
83
|
+
status: 'pending',
|
|
84
|
+
'content.area': content.domain,
|
|
85
|
+
limit: 3
|
|
86
|
+
})
|
|
87
|
+
|
|
88
|
+
if (improvements.length > 0) {
|
|
89
|
+
console.log(`
|
|
90
|
+
💡 Mejoras pendientes en ${content.domain}:
|
|
91
|
+
${improvements.map(i => ` - ${i.content.title} (${i.content.priority})`).join('\n')}
|
|
92
|
+
`)
|
|
93
|
+
}
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### 5. Retomar Trabajo
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
Continuando con paso ${content.currentStep + 1}:
|
|
100
|
+
"${content.plan[content.currentStep]}"
|
|
101
|
+
|
|
102
|
+
Contexto cargado. Puedes continuar trabajando.
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## Ejemplo de Uso
|
|
106
|
+
|
|
107
|
+
### Caso 1: Una sola tarea activa
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
Usuario: /continue
|
|
111
|
+
|
|
112
|
+
Claude:
|
|
113
|
+
📋 Continuando: "Implementar cache para Veo API"
|
|
114
|
+
|
|
115
|
+
📝 Plan:
|
|
116
|
+
✅ 1. Crear servicio de cache
|
|
117
|
+
✅ 2. Integrar con VeoService
|
|
118
|
+
→ 3. Agregar invalidación por TTL ← AQUÍ
|
|
119
|
+
4. Escribir tests
|
|
120
|
+
5. Documentar
|
|
121
|
+
|
|
122
|
+
📁 Archivos modificados:
|
|
123
|
+
- src/services/cache/VeoCache.ts
|
|
124
|
+
- src/services/ai/VeoService.ts
|
|
125
|
+
|
|
126
|
+
⏱️ Tiempo: 45 min (iniciada hace 2h)
|
|
127
|
+
|
|
128
|
+
💡 Mejoras pendientes en video-studio:
|
|
129
|
+
- Optimizar thumbnails (medium)
|
|
130
|
+
- Cachear prompts frecuentes (low)
|
|
131
|
+
|
|
132
|
+
Continuando con paso 3: "Agregar invalidación por TTL"...
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
### Caso 2: Múltiples tareas
|
|
136
|
+
|
|
137
|
+
```
|
|
138
|
+
Usuario: /continue
|
|
139
|
+
|
|
140
|
+
Claude:
|
|
141
|
+
📋 Tareas en Progreso (3):
|
|
142
|
+
|
|
143
|
+
1. Implementar cache para Veo API
|
|
144
|
+
└─ Paso 3/5 • video-studio • Hace 2h
|
|
145
|
+
|
|
146
|
+
2. Refactorizar AuthService
|
|
147
|
+
└─ Paso 1/3 • auth • Hace 1d
|
|
148
|
+
|
|
149
|
+
3. Agregar tests a PaymentService
|
|
150
|
+
└─ Paso 2/4 • payments • Hace 3d
|
|
151
|
+
|
|
152
|
+
¿Cuál continúo? (1-3 o "nueva" para empezar otra)
|
|
153
|
+
|
|
154
|
+
Usuario: 1
|
|
155
|
+
|
|
156
|
+
Claude: [carga contexto de tarea 1]
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
### Caso 3: Sin tareas activas
|
|
160
|
+
|
|
161
|
+
```
|
|
162
|
+
Usuario: /continue
|
|
163
|
+
|
|
164
|
+
Claude:
|
|
165
|
+
✅ No hay tareas en progreso.
|
|
166
|
+
|
|
167
|
+
Últimas 3 tareas completadas:
|
|
168
|
+
- Implementar feature X (hace 1d) - 2 mejoras detectadas
|
|
169
|
+
- Corregir bug Y (hace 2d) - 1 mejora detectada
|
|
170
|
+
- Refactorizar Z (hace 3d) - 3 mejoras detectadas
|
|
171
|
+
|
|
172
|
+
¿Quieres empezar una nueva tarea o revisar las mejoras pendientes?
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
## Integración con Hooks
|
|
176
|
+
|
|
177
|
+
El skill `/continue` trabaja junto con los hooks:
|
|
178
|
+
|
|
179
|
+
1. **SessionStart**: Muestra resumen automático de tareas activas
|
|
180
|
+
2. **PreToolUse**: Valida que hay tarea activa antes de trabajar
|
|
181
|
+
3. **PostToolUse**: Actualiza progreso automáticamente
|
|
182
|
+
|
|
183
|
+
## Datos Requeridos
|
|
184
|
+
|
|
185
|
+
```typescript
|
|
186
|
+
interface TaskForContinue {
|
|
187
|
+
id: string
|
|
188
|
+
content: {
|
|
189
|
+
title: string
|
|
190
|
+
plan: string[]
|
|
191
|
+
currentStep: number
|
|
192
|
+
domain: string
|
|
193
|
+
files: string[]
|
|
194
|
+
startedAt: string
|
|
195
|
+
lastActivityAt: string
|
|
196
|
+
improvements: Improvement[]
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
## Comandos Relacionados
|
|
202
|
+
|
|
203
|
+
- `/tasks` - Ver todas las tareas (activas y completadas)
|
|
204
|
+
- `/improvements` - Ver mejoras pendientes por área
|
|
205
|
+
- `/plan` - Crear nuevo plan de trabajo
|