@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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/install.js +2 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
  by QuBit
11
11
  ```
12
12
 
13
- ![Version](https://img.shields.io/badge/version-2.7.0-blue.svg) ![License](https://img.shields.io/badge/License-MIT-green?style=for-the-badge) ![Agentic](https://img.shields.io/badge/AI-Agentic_Workflow-cyan?style=for-the-badge)
13
+ ![Version](https://img.shields.io/badge/version-2.7.1-blue.svg) ![License](https://img.shields.io/badge/License-MIT-green?style=for-the-badge) ![Agentic](https://img.shields.io/badge/AI-Agentic_Workflow-cyan?style=for-the-badge)
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.0'); // Version bump
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
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "2.7.0",
6
+ "version": "2.7.1",
7
7
  "files": [
8
8
  "install.js",
9
9
  "README.md",