@qubiit/lmagent 3.1.3 → 3.1.4
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/docs/commands.md +1 -1
- package/.agents/docs/getting-started.md +9 -9
- package/.agents/rules/00-master.md +2 -2
- package/AGENTS.md +1 -1
- package/CONTRIBUTING.md +3 -3
- package/README.md +19 -19
- package/package.json +1 -1
package/.agents/docs/commands.md
CHANGED
|
@@ -11,7 +11,7 @@ Bienvenido a **LMAgent v3.1.3** — el framework que transforma cualquier agente
|
|
|
11
11
|
## Instalación (One Command)
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npx lmagent@latest
|
|
14
|
+
npx @qubiit/lmagent@latest
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
Eso es todo. El instalador:
|
|
@@ -26,19 +26,19 @@ Eso es todo. El instalador:
|
|
|
26
26
|
|
|
27
27
|
### Paso 1 — Inicializar el proyecto
|
|
28
28
|
```bash
|
|
29
|
-
npx lmagent@latest init
|
|
29
|
+
npx @qubiit/lmagent@latest init
|
|
30
30
|
```
|
|
31
31
|
Copia `AGENTS.md`, `CLAUDE.md` y `GEMINI.md` a la raíz de tu proyecto. Estos son los archivos que los agentes leen automáticamente al arrancar.
|
|
32
32
|
|
|
33
33
|
### Paso 2 — Instalar el framework
|
|
34
34
|
```bash
|
|
35
|
-
npx lmagent@latest install
|
|
35
|
+
npx @qubiit/lmagent@latest install
|
|
36
36
|
```
|
|
37
37
|
Seleccioná los agentes que usás y el instalador configura todo.
|
|
38
38
|
|
|
39
39
|
### Paso 3 — Verificar
|
|
40
40
|
```bash
|
|
41
|
-
npx lmagent@latest doctor
|
|
41
|
+
npx @qubiit/lmagent@latest doctor
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
---
|
|
@@ -63,11 +63,11 @@ El agente detectará `/pm`, cargará el skill **product-manager** y actuará en
|
|
|
63
63
|
## Comandos Útiles
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
npx lmagent@latest doctor # Verificar configuración
|
|
67
|
-
npx lmagent@latest update # Actualizar a la última versión
|
|
68
|
-
npx lmagent@latest validate # Validar integridad de skills
|
|
69
|
-
npx lmagent@latest tokens # Ver consumo de tokens del framework
|
|
70
|
-
npx lmagent@latest uninstall # Limpiar archivos del framework
|
|
66
|
+
npx @qubiit/lmagent@latest doctor # Verificar configuración
|
|
67
|
+
npx @qubiit/lmagent@latest update # Actualizar a la última versión
|
|
68
|
+
npx @qubiit/lmagent@latest validate # Validar integridad de skills
|
|
69
|
+
npx @qubiit/lmagent@latest tokens # Ver consumo de tokens del framework
|
|
70
|
+
npx @qubiit/lmagent@latest uninstall # Limpiar archivos del framework
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 🚀 LMAgent Bootstrap — Instrucciones Iniciales
|
|
2
2
|
|
|
3
|
-
> **Tipo**: `rule` | **Versión**: 3.1.
|
|
3
|
+
> **Tipo**: `rule` | **Versión**: 3.1.4 | **Prioridad**: MÁXIMA
|
|
4
4
|
> Esta regla se aplica **SIEMPRE** como primer paso antes de cualquier tarea.
|
|
5
5
|
|
|
6
6
|
---
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
## 🧠 Framework
|
|
17
17
|
|
|
18
|
-
Estás trabajando con **LMAgent v3.1.
|
|
18
|
+
Estás trabajando con **LMAgent v3.1.4**. Antes de implementar cualquier cambio:
|
|
19
19
|
|
|
20
20
|
1. **Lee `AGENTS.md`** — Catálogo completo de skills, rules y workflows
|
|
21
21
|
2. **Clasifica la tarea** — Nivel 0-4 según complejidad (ver `.agents/rules/01-workflow.md`)
|
package/AGENTS.md
CHANGED
|
@@ -277,7 +277,7 @@ No marques una tarea como "Completada" hasta verificar:
|
|
|
277
277
|
## 🚀 9. CLI Reference (Comandos Disponibles)
|
|
278
278
|
|
|
279
279
|
```bash
|
|
280
|
-
npx lmagent@latest # Instalar framework (one-shot, sin instalación previa)
|
|
280
|
+
npx @qubiit/lmagent@latest # Instalar framework (one-shot, sin instalación previa)
|
|
281
281
|
npx lmagent install # Instalar/actualizar en el proyecto actual
|
|
282
282
|
npx lmagent update # Alias de install
|
|
283
283
|
npx lmagent init # Inicializar proyecto nuevo con LMAgent
|
package/CONTRIBUTING.md
CHANGED
|
@@ -36,7 +36,7 @@ Este proyecto se rige por un Código de Conducta estándar. Al participar, se es
|
|
|
36
36
|
- [ ] ¿Actualizaste la documentación relevante?
|
|
37
37
|
- [ ] ¿Actualizaste `AGENTS.md` si agregaste un nuevo agente o skill?
|
|
38
38
|
- [ ] ¿Cumple con las reglas en `.agents/rules/`?
|
|
39
|
-
- [ ] ¿Probaste los cambios con `npx lmagent doctor`?
|
|
39
|
+
- [ ] ¿Probaste los cambios con `npx @qubiit/lmagent doctor`?
|
|
40
40
|
|
|
41
41
|
---
|
|
42
42
|
|
|
@@ -101,7 +101,7 @@ lmagent/
|
|
|
101
101
|
## Agregar un Nuevo Skill
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
|
-
npx lmagent@latest create-skill
|
|
104
|
+
npx @qubiit/lmagent@latest create-skill
|
|
105
105
|
```
|
|
106
106
|
|
|
107
107
|
O manualmente:
|
|
@@ -115,7 +115,7 @@ description: Descripción del skill
|
|
|
115
115
|
version: 1.0.0
|
|
116
116
|
---
|
|
117
117
|
```
|
|
118
|
-
3. Validá con `npx lmagent@latest validate mi-skill`
|
|
118
|
+
3. Validá con `npx @qubiit/lmagent@latest validate mi-skill`
|
|
119
119
|
4. Actualizá el catálogo en `AGENTS.md` — Sección 5
|
|
120
120
|
|
|
121
121
|
---
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
## ⚡ One Command. Any Agent.
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npx lmagent@latest
|
|
23
|
+
npx @qubiit/lmagent@latest
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
That's it. No global install required. LMAgent will:
|
|
@@ -37,25 +37,25 @@ That's it. No global install required. LMAgent will:
|
|
|
37
37
|
|
|
38
38
|
### Step 1 — Initialize your project (first time only)
|
|
39
39
|
```bash
|
|
40
|
-
npx lmagent@latest init
|
|
40
|
+
npx @qubiit/lmagent@latest init
|
|
41
41
|
```
|
|
42
42
|
Copies `AGENTS.md`, `CLAUDE.md`, and `GEMINI.md` to your project root. These are the entry points that agents read automatically when they start.
|
|
43
43
|
|
|
44
44
|
### Step 2 — Install the framework
|
|
45
45
|
```bash
|
|
46
|
-
npx lmagent@latest install
|
|
46
|
+
npx @qubiit/lmagent@latest install
|
|
47
47
|
```
|
|
48
48
|
Deploys skills, rules, and workflows to all detected agents. Generates agent-specific config files.
|
|
49
49
|
|
|
50
50
|
### Step 3 — Verify
|
|
51
51
|
```bash
|
|
52
|
-
npx lmagent@latest doctor
|
|
52
|
+
npx @qubiit/lmagent@latest doctor
|
|
53
53
|
```
|
|
54
54
|
Checks that everything is correctly configured.
|
|
55
55
|
|
|
56
56
|
### Update (when new versions are released)
|
|
57
57
|
```bash
|
|
58
|
-
npx lmagent@latest update
|
|
58
|
+
npx @qubiit/lmagent@latest update
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
---
|
|
@@ -212,21 +212,21 @@ Activate any skill by typing its trigger in the chat:
|
|
|
212
212
|
|
|
213
213
|
```bash
|
|
214
214
|
# Core
|
|
215
|
-
npx lmagent@latest # Interactive install (auto-detects agents)
|
|
216
|
-
npx lmagent@latest init # Initialize project (copies AGENTS.md, CLAUDE.md, GEMINI.md)
|
|
217
|
-
npx lmagent@latest install # Install/update framework in current project
|
|
218
|
-
npx lmagent@latest update # Alias for install
|
|
219
|
-
npx lmagent@latest uninstall # Remove all LMAgent files from project
|
|
220
|
-
npx lmagent@latest uninstall --all # Also remove root entry points (CLAUDE.md, etc.)
|
|
215
|
+
npx @qubiit/lmagent@latest # Interactive install (auto-detects agents)
|
|
216
|
+
npx @qubiit/lmagent@latest init # Initialize project (copies AGENTS.md, CLAUDE.md, GEMINI.md)
|
|
217
|
+
npx @qubiit/lmagent@latest install # Install/update framework in current project
|
|
218
|
+
npx @qubiit/lmagent@latest update # Alias for install
|
|
219
|
+
npx @qubiit/lmagent@latest uninstall # Remove all LMAgent files from project
|
|
220
|
+
npx @qubiit/lmagent@latest uninstall --all # Also remove root entry points (CLAUDE.md, etc.)
|
|
221
221
|
|
|
222
222
|
# Diagnostics
|
|
223
|
-
npx lmagent@latest doctor # Verify project configuration
|
|
224
|
-
npx lmagent@latest validate # Validate integrity of all skills
|
|
225
|
-
npx lmagent@latest tokens # Analyze framework token consumption
|
|
223
|
+
npx @qubiit/lmagent@latest doctor # Verify project configuration
|
|
224
|
+
npx @qubiit/lmagent@latest validate # Validate integrity of all skills
|
|
225
|
+
npx @qubiit/lmagent@latest tokens # Analyze framework token consumption
|
|
226
226
|
|
|
227
227
|
# Skills Management
|
|
228
|
-
npx lmagent@latest create-skill # Create a new skill interactively
|
|
229
|
-
npx lmagent@latest skills add owner/repo # Install external skill from GitHub
|
|
228
|
+
npx @qubiit/lmagent@latest create-skill # Create a new skill interactively
|
|
229
|
+
npx @qubiit/lmagent@latest skills add owner/repo # Install external skill from GitHub
|
|
230
230
|
```
|
|
231
231
|
|
|
232
232
|
---
|
|
@@ -235,13 +235,13 @@ npx lmagent@latest skills add owner/repo # Install external skill from GitHub
|
|
|
235
235
|
|
|
236
236
|
```bash
|
|
237
237
|
# Create a new skill interactively
|
|
238
|
-
npx lmagent@latest create-skill
|
|
238
|
+
npx @qubiit/lmagent@latest create-skill
|
|
239
239
|
|
|
240
240
|
# Install an external skill from GitHub
|
|
241
|
-
npx lmagent@latest skills add owner/repo-name
|
|
241
|
+
npx @qubiit/lmagent@latest skills add owner/repo-name
|
|
242
242
|
|
|
243
243
|
# Validate all skills
|
|
244
|
-
npx lmagent@latest validate
|
|
244
|
+
npx @qubiit/lmagent@latest validate
|
|
245
245
|
```
|
|
246
246
|
|
|
247
247
|
Skills follow the standard structure:
|