@qubiit/lmagent 3.0.12 → 3.1.0
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/.agents/scripts/create_skill.js +1 -1
- package/.agents/scripts/validate_skills.js +2 -2
- package/AGENTS.md +1 -1
- package/CLAUDE.md +1 -1
- package/README.md +1 -1
- package/install.js +2 -2
- package/package.json +1 -1
|
@@ -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.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.
|
|
32
|
+
const CURRENT_VERSION = '3.0.13';
|
|
33
33
|
const OPTIONAL_DIRS = ['scripts', 'references', 'assets'];
|
|
34
34
|
|
|
35
35
|
// ─── Colores (sin dependencias) ───────────────────────────────
|
package/AGENTS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 🤖 LMAgent V3.0: The Engineering Constitution
|
|
2
2
|
> **SINGLE SOURCE OF TRUTH**: Este archivo es tu Ley Suprema. Define tu identidad, tus capacidades y tus límites.
|
|
3
|
-
> Framework: **LMAgent v3.0
|
|
3
|
+
> Framework: **LMAgent v3.1.0 (Total Awareness Standard)**
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
package/CLAUDE.md
CHANGED
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
by QuBit
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
  
|
|
14
14
|
|
|
15
15
|
> **"Separate the reasoning from the execution."**
|
|
16
16
|
> LMAgent is the foundational runtime that empowers your AI Agents with standardized **Skills**, **Rules**, and **Workflows** across any IDE (Cursor, Windsurf, VSCode, Zed, Qodo).
|
package/install.js
CHANGED
|
@@ -343,7 +343,7 @@ const IDE_CONFIGS = [
|
|
|
343
343
|
program
|
|
344
344
|
.name('lmagent')
|
|
345
345
|
.description('CLI para instalar skills y reglas de LMAgent')
|
|
346
|
-
.version('3.0
|
|
346
|
+
.version('3.1.0');
|
|
347
347
|
|
|
348
348
|
program.command('install')
|
|
349
349
|
.description('Instalar skills, rules y workflows en el IDE del proyecto')
|
|
@@ -889,7 +889,7 @@ Use estos comandos para activar su rol. Para detalles, consulte \`AGENTS.md\`.
|
|
|
889
889
|
}
|
|
890
890
|
}
|
|
891
891
|
|
|
892
|
-
|
|
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.
|