@qubiit/lmagent 2.7.0 → 2.7.1
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/README.md +1 -1
- package/install.js +2 -1
- package/package.json +1 -1
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
|
@@ -369,7 +369,7 @@ const IDE_CONFIGS = [
|
|
|
369
369
|
program
|
|
370
370
|
.name('lmagent')
|
|
371
371
|
.description('CLI para instalar skills y reglas de LMAgent')
|
|
372
|
-
.version('2.7.
|
|
372
|
+
.version('2.7.1'); // Hotfix bump
|
|
373
373
|
|
|
374
374
|
program.command('install')
|
|
375
375
|
.description('Instalar skills, rules y workflows en el IDE del proyecto')
|
|
@@ -865,6 +865,7 @@ async function runInit(options) {
|
|
|
865
865
|
console.log(gradient.cristal(' by QuBit\n'));
|
|
866
866
|
|
|
867
867
|
const projectRoot = process.cwd();
|
|
868
|
+
const targetRoot = projectRoot; // Fix for ReferenceError in runInit
|
|
868
869
|
console.log(chalk.cyan(`📦 Inicializando proyecto LMAgent en: ${chalk.bold(projectRoot)}\n`));
|
|
869
870
|
|
|
870
871
|
// Verificar si ya está inicializado
|