@qubiit/lmagent 2.5.11 → 2.6.2
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.md +1 -1
- package/CLAUDE.md +3 -3
- package/README.md +20 -14
- package/install.js +377 -379
- package/package.json +1 -1
- package/rules/_bootstrap.md +2 -2
- package/scripts/create_skill.js +2 -2
- package/scripts/validate_skills.js +3 -3
- package/skills/ai-agent-engineer/SKILL.md +1 -1
- package/skills/api-designer/SKILL.md +1 -1
- package/skills/architect/SKILL.md +1 -1
- package/skills/automation-engineer/SKILL.md +1 -1
- package/skills/backend-engineer/SKILL.md +1 -1
- package/skills/bmad-methodology/SKILL.md +1 -1
- package/skills/browser-agent/SKILL.md +1 -1
- package/skills/code-reviewer/SKILL.md +1 -1
- package/skills/data-engineer/SKILL.md +1 -1
- package/skills/devops-engineer/SKILL.md +1 -1
- package/skills/document-generator/SKILL.md +1 -1
- package/skills/frontend-engineer/SKILL.md +1 -1
- package/skills/git-workflow/SKILL.md +1 -1
- package/skills/mcp-builder/SKILL.md +1 -1
- package/skills/mobile-engineer/SKILL.md +1 -1
- package/skills/orchestrator/SKILL.md +1 -1
- package/skills/performance-engineer/SKILL.md +1 -1
- package/skills/product-manager/SKILL.md +1 -1
- package/skills/prompt-engineer/SKILL.md +1 -1
- package/skills/qa-engineer/SKILL.md +1 -1
- package/skills/scrum-master/SKILL.md +1 -1
- package/skills/security-analyst/SKILL.md +1 -1
- package/skills/seo-auditor/SKILL.md +1 -1
- package/skills/spec-driven-dev/SKILL.md +1 -1
- package/skills/supabase-expert/SKILL.md +1 -1
- package/skills/swe-agent/SKILL.md +1 -1
- package/skills/systematic-debugger/SKILL.md +1 -1
- package/skills/tech-lead/SKILL.md +1 -1
- package/skills/technical-writer/SKILL.md +1 -1
- package/skills/testing-strategist/SKILL.md +1 -1
- package/skills/ux-ui-designer/SKILL.md +1 -1
package/AGENTS.md
CHANGED
package/CLAUDE.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# LMAgent Framework v2.
|
|
1
|
+
# LMAgent Framework v2.6.2 - Claude Code Instructions
|
|
2
2
|
|
|
3
3
|
> [!IMPORTANT]
|
|
4
|
-
> **ANTES DE HACER CUALQUIER COSA**: Este proyecto usa el framework **LMAgent v2.
|
|
4
|
+
> **ANTES DE HACER CUALQUIER COSA**: Este proyecto usa el framework **LMAgent v2.6.2**.
|
|
5
5
|
> **DEBES** leer `AGENTS.md` y `rules/_bootstrap.md` antes de implementar cualquier cambio.
|
|
6
6
|
|
|
7
7
|
## Framework
|
|
8
8
|
|
|
9
|
-
Estás trabajando con **LMAgent v2.
|
|
9
|
+
Estás trabajando con **LMAgent v2.6.2**, un framework para desarrollo de automatizaciones y agentes de IA. Organiza las capacidades del agente en tres pilares: **Skills**, **Rules** y **Workflows**.
|
|
10
10
|
|
|
11
11
|
## ⚡ Inicio Rápido
|
|
12
12
|
|
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).
|
|
@@ -63,6 +63,20 @@ lmagent doctor
|
|
|
63
63
|
|
|
64
64
|
---
|
|
65
65
|
|
|
66
|
+
## 🛠️ Creating New Skills
|
|
67
|
+
Need a custom agent? Use the interactive generator:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
# Verify structure of existing skills
|
|
71
|
+
npx lmagent validate
|
|
72
|
+
|
|
73
|
+
# Create a new skill interactively
|
|
74
|
+
npx lmagent create-skill
|
|
75
|
+
```
|
|
76
|
+
This will generate the standard directory structure and `SKILL.md` template for you.
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
66
80
|
## 🛠️ CLI Reference
|
|
67
81
|
|
|
68
82
|
LMAgent includes a powerful CLI to manage your AI context.
|
|
@@ -187,15 +201,17 @@ LMAgent creates a **Single Source of Truth** in your home directory.
|
|
|
187
201
|
### 🧩 Multi-IDE Support
|
|
188
202
|
|
|
189
203
|
|
|
204
|
+
| IDE | Status | Config Path |
|
|
205
|
+
| :--- | :--- | :--- |
|
|
190
206
|
| **Cursor** | ✅ Full | `.cursor/` |
|
|
191
207
|
| **Windsurf** | ✅ Full | `.windsurf/` |
|
|
192
208
|
| **VSCode / Copilot** | ✅ Full | `.github/` |
|
|
193
209
|
| **Zed** | ✅ Full | `.rules/` |
|
|
194
|
-
| **Continue** | ✅ Full | `.continue/` |
|
|
195
|
-
| **Trae** | ✅ Full | `.trae/` |
|
|
196
210
|
| **Antigravity** | ✅ Full | `.agent/` |
|
|
197
|
-
| **Cline / Roo Code** | ✅ Full | `.clinerules/` / `.roo/` |
|
|
198
211
|
| **Claude Code** | ✅ Full | `.claude/` |
|
|
212
|
+
| **Cline / Roo Code** | ✅ Full | `.clinerules/` / `.roo/` |
|
|
213
|
+
| **Continue** | ✅ Full | `.continue/` |
|
|
214
|
+
| **Trae** | ✅ Full | `.trae/` |
|
|
199
215
|
| **Qodo** | ✅ Full | `agents/` |
|
|
200
216
|
| **Amp / Kimi / Replit** | ✅ Full | `.agents/` |
|
|
201
217
|
| **Augment** | ✅ Full | `.augment/` |
|
|
@@ -230,17 +246,7 @@ LMAgent creates a **Single Source of Truth** in your home directory.
|
|
|
230
246
|
We welcome contributions to expand the **Universal Agent Brain**.
|
|
231
247
|
Check out `CONTRIBUTING.md` to add new Skills, Rules, or IDE support.
|
|
232
248
|
|
|
233
|
-
### 🛠️ Creating New Skills
|
|
234
|
-
Need a custom agent? Use the interactive generator:
|
|
235
|
-
|
|
236
|
-
```bash
|
|
237
|
-
# Verify structure of existing skills
|
|
238
|
-
npx lmagent validate
|
|
239
249
|
|
|
240
|
-
# Create a new skill interactively
|
|
241
|
-
npx lmagent create-skill
|
|
242
|
-
```
|
|
243
|
-
This will generate the standard directory structure and `SKILL.md` template for you.
|
|
244
250
|
|
|
245
251
|
|
|
246
252
|
---
|