specleap-framework 2.0.12 → 2.0.13
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/CLAUDE.md +11 -11
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -85,8 +85,8 @@ When the user says **"Hola"** (case-insensitive), execute `.commands/inicio.md`:
|
|
|
85
85
|
|
|
86
86
|
| Command | Description | Agente |
|
|
87
87
|
|---------|-------------|--------|
|
|
88
|
-
| `refinar
|
|
89
|
-
| `planificar
|
|
88
|
+
| `refinar PROJ-XXX` | Refine Asana user story | producto.md |
|
|
89
|
+
| `planificar PROJ-XXX` | Generate implementation plan | backend.md / frontend.md |
|
|
90
90
|
| `implementar @plan.md` | Execute plan: branch + code + tests + PR | backend.md / frontend.md |
|
|
91
91
|
| `explicar [concepto]` | Explain code/architecture/decisions | neutral |
|
|
92
92
|
| `documentar` | Update technical documentation | neutral |
|
|
@@ -259,16 +259,16 @@ User: "app-tienda y desarrollo"
|
|
|
259
259
|
AI: [Load proyectos/app-tienda/CONTRATO.md + context/]
|
|
260
260
|
"✅ Proyecto app-tienda cargado. ¿Qué ticket trabajarás?"
|
|
261
261
|
|
|
262
|
-
User: "
|
|
262
|
+
User: "PROJ-123"
|
|
263
263
|
AI: "¿Refinar o planificar directamente?"
|
|
264
264
|
|
|
265
|
-
User: "planificar
|
|
265
|
+
User: "planificar PROJ-123"
|
|
266
266
|
AI: [Adopt .agents/backend.md]
|
|
267
267
|
[Read CONTRATO + context + ticket]
|
|
268
|
-
[Generate plan in specs/
|
|
268
|
+
[Generate plan in specs/PROJ-123_backend.md]
|
|
269
269
|
"📋 Plan creado. Revisar antes de implementar."
|
|
270
270
|
|
|
271
|
-
User: "implementar @
|
|
271
|
+
User: "implementar @PROJ-123_backend.md"
|
|
272
272
|
AI: [Adopt .agents/backend.md]
|
|
273
273
|
[Execute plan step by step]
|
|
274
274
|
[Tests, commit, push, PR]
|
|
@@ -294,18 +294,18 @@ See: `openspec/cli/README.md`
|
|
|
294
294
|
|
|
295
295
|
## MCP Integrations
|
|
296
296
|
|
|
297
|
-
### ⚠️
|
|
297
|
+
### ⚠️ Asana MCP (MANDATORY)
|
|
298
298
|
|
|
299
|
-
**
|
|
299
|
+
**Asana is MANDATORY for SpecLeap workflow.**
|
|
300
300
|
|
|
301
301
|
MUST use for:
|
|
302
302
|
- `crear-tickets` — Generate all tickets from CONTRATO.md
|
|
303
|
-
- `refinar
|
|
304
|
-
- `planificar
|
|
303
|
+
- `refinar PROJ-XXX` — Read and enrich ticket
|
|
304
|
+
- `planificar PROJ-XXX` — Read ticket for plan generation
|
|
305
305
|
- `implementar` — Update ticket status during implementation
|
|
306
306
|
- Automatic updates: "To Do" → "In Progress" → "In Review" → "Done"
|
|
307
307
|
|
|
308
|
-
**Without
|
|
308
|
+
**Without Asana MCP, the workflow DOES NOT WORK.**
|
|
309
309
|
|
|
310
310
|
### CodeRabbit (Recommended)
|
|
311
311
|
|
package/package.json
CHANGED