specleap-framework 2.1.10 → 2.1.11

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/CHANGELOG.md CHANGED
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.1.11] - 2026-04-30
11
+
12
+ ### Fixed
13
+
14
+ - **`setup.sh` was lying about how many Agent Skills get installed.** The "Paso 4/6" header correctly read "34 skills" but the description right below said "SpecLeap incluye 20 Agent Skills profesionales" with a four-bullet breakdown that summed to exactly 20 — leftover text from before the 14 TIER 2 skills were added in v2.1.0. Reported by Styng during v2.1.10 testing.
15
+
16
+ #### What the user sees now
17
+
18
+ - The full count (34) is stated up front.
19
+ - TIER 1 (20) is broken down into its 6 actual categories: Consistency (3), Backend/Dev (7), Design (4), DevOps (3), Testing (2), Frontend (1).
20
+ - TIER 2 (14) is broken down into its 8 actual categories: Design/Frontend advanced (3), Mobile (2), Security audits/GDPR (2), Testing advanced (2), Infrastructure (2), Brainstorming (1), PDF (1), Documentation (1).
21
+ - Both blocks are localised (ES + EN) and visually grouped with bold tier headers so the user can scan them quickly before deciding whether to install.
22
+
23
+ The numbers now match exactly what `scripts/install-skills.sh` actually downloads from upstream repos (obra/superpowers, jeffallan/claude-skills, anthropics/skills, vercel-labs/agent-*, alirezarezvani/claude-skills).
24
+
10
25
  ## [2.1.10] - 2026-04-30
11
26
 
12
27
  ### Added
package/README.md CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  SpecLeap convierte cualquier IDE con asistente de IA en un entorno de desarrollo spec-first. Combina un contrato de proyecto inmutable, agentes conversacionales especializados, 34 Agent Skills profesionales y un pipeline de validación en tres capas para entregar código consistente y probado sin improvisación.
22
22
 
23
- **Versión actual:** 2.1.10 · **Licencia:** MIT · **Autor:** Styng Arias ([ConceptualCreative](https://conceptualcreative.com))
23
+ **Versión actual:** 2.1.11 · **Licencia:** MIT · **Autor:** Styng Arias ([ConceptualCreative](https://conceptualcreative.com))
24
24
 
25
25
  ---
26
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specleap-framework",
3
- "version": "2.1.10",
3
+ "version": "2.1.11",
4
4
  "description": "Spec-Driven Development Framework — Transform VSCode, Cursor, JetBrains into spec-first development machines",
5
5
  "keywords": [
6
6
  "spec-driven-development",
package/setup.sh CHANGED
@@ -395,20 +395,48 @@ echo -e "${CYAN}${LINE}${NC}"
395
395
  echo ""
396
396
 
397
397
  if [ "$LANG" = "es" ]; then
398
- echo "SpecLeap incluye 20 Agent Skills profesionales:"
399
- echo " • 5 Seguridad (OWASP, STRIDE)"
400
- echo " 3 Consistencia (verification-before-completion)"
401
- echo " 6 Diseño (Vercel-style, UI/UX)"
402
- echo " 6 Backend/Dev (Laravel, React, TDD)"
398
+ echo "SpecLeap incluye 34 Agent Skills profesionales:"
399
+ echo ""
400
+ echo " ${BOLD}TIER 1 (20 skills):${NC}"
401
+ echo " 3 Consistencia (verification-before-completion, code review)"
402
+ echo " 7 Backend/Dev (Laravel, React, Python, API, DB)"
403
+ echo " • 4 Diseño (Vercel-style, UI/UX, Canvas)"
404
+ echo " • 3 DevOps (Cloud, Architecture)"
405
+ echo " • 2 Testing (TDD, Code Review)"
406
+ echo " • 1 Frontend (TypeScript)"
407
+ echo ""
408
+ echo " ${BOLD}TIER 2 (14 skills):${NC}"
409
+ echo " • 3 Design/Frontend avanzado (Vercel agent-browser)"
410
+ echo " • 2 Mobile (React Native, Flutter)"
411
+ echo " • 2 Security (audits, GDPR/DSGVO)"
412
+ echo " • 2 Testing avanzado (Playwright, Test Master)"
413
+ echo " • 2 Infrastructure (Terraform, Monitoring)"
414
+ echo " • 1 Brainstorming"
415
+ echo " • 1 PDF"
416
+ echo " • 1 Documentation"
403
417
  echo ""
404
418
  echo "⏱️ Tiempo: 2-3 minutos"
405
419
  echo ""
406
420
  else
407
- echo "SpecLeap includes 20 professional Agent Skills:"
408
- echo " • 5 Security (OWASP, STRIDE)"
409
- echo " 3 Consistency (verification-before-completion)"
410
- echo " 6 Design (Vercel-style, UI/UX)"
411
- echo " 6 Backend/Dev (Laravel, React, TDD)"
421
+ echo "SpecLeap includes 34 professional Agent Skills:"
422
+ echo ""
423
+ echo " ${BOLD}TIER 1 (20 skills):${NC}"
424
+ echo " 3 Consistency (verification-before-completion, code review)"
425
+ echo " 7 Backend/Dev (Laravel, React, Python, API, DB)"
426
+ echo " • 4 Design (Vercel-style, UI/UX, Canvas)"
427
+ echo " • 3 DevOps (Cloud, Architecture)"
428
+ echo " • 2 Testing (TDD, Code Review)"
429
+ echo " • 1 Frontend (TypeScript)"
430
+ echo ""
431
+ echo " ${BOLD}TIER 2 (14 skills):${NC}"
432
+ echo " • 3 Design/Frontend advanced (Vercel agent-browser)"
433
+ echo " • 2 Mobile (React Native, Flutter)"
434
+ echo " • 2 Security (audits, GDPR/DSGVO)"
435
+ echo " • 2 Testing advanced (Playwright, Test Master)"
436
+ echo " • 2 Infrastructure (Terraform, Monitoring)"
437
+ echo " • 1 Brainstorming"
438
+ echo " • 1 PDF"
439
+ echo " • 1 Documentation"
412
440
  echo ""
413
441
  echo "⏱️ Time: 2-3 minutes"
414
442
  echo ""