@qubiit/lmagent 3.0.10 → 3.0.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* LMAgent Skills Validator — v3.0.
|
|
4
|
+
* LMAgent Skills Validator — v3.0.11
|
|
5
5
|
*
|
|
6
6
|
* Valida la integridad de todos los skills del framework.
|
|
7
7
|
* Verifica: frontmatter YAML, campos obligatorios, estructura de directorio.
|
|
@@ -29,7 +29,7 @@ const SKILLS_DIR = join(ROOT, 'skills');
|
|
|
29
29
|
// ─── Configuración ────────────────────────────────────────────
|
|
30
30
|
const REQUIRED_FIELDS = ['name', 'description', 'role', 'type', 'version', 'icon', 'expertise', 'activates_on', 'triggers'];
|
|
31
31
|
const VALID_TYPES = ['agent_persona', 'methodology'];
|
|
32
|
-
const CURRENT_VERSION = '3.0.
|
|
32
|
+
const CURRENT_VERSION = '3.0.11';
|
|
33
33
|
const OPTIONAL_DIRS = ['scripts', 'references', 'assets'];
|
|
34
34
|
|
|
35
35
|
// ─── Colores (sin dependencias) ───────────────────────────────
|