@qubiit/lmagent 3.0.12 → 3.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.
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  /**
4
- * LMAgent Skill Generator — v3.0.12
4
+ * LMAgent Skill Generator — v3.0.13
5
5
  *
6
6
  * Genera la estructura completa de un nuevo skill interactivamente.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  /**
4
- * LMAgent Skills Validator — v3.0.12
4
+ * LMAgent Skills Validator — v3.0.13
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.12';
32
+ const CURRENT_VERSION = '3.0.13';
33
33
  const OPTIONAL_DIRS = ['scripts', 'references', 'assets'];
34
34
 
35
35
  // ─── Colores (sin dependencias) ───────────────────────────────
package/install.js CHANGED
@@ -889,7 +889,7 @@ Use estos comandos para activar su rol. Para detalles, consulte \`AGENTS.md\`.
889
889
  }
890
890
  }
891
891
 
892
- SOURCE_MEMORY = PACKAGE_MEMORY_DIR;
892
+
893
893
 
894
894
  if (SOURCE_MEMORY && ide.skillsDir) {
895
895
  // We use skillsDir parent or a specific memory dir if we had one in config.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.0.12",
6
+ "version": "3.0.13",
7
7
  "files": [
8
8
  "install.js",
9
9
  "README.md",