forgegit 1.5.10 → 1.5.11

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/.forge/config.cmd CHANGED
@@ -4,7 +4,7 @@ REM Configuration - edit these values to customize
4
4
  REM Called from init.cmd via: call config.cmd
5
5
  REM ============================================================
6
6
 
7
- set "FG_VERSION=1.5.10"
7
+ set "FG_VERSION=1.5.11"
8
8
  set "TAG_INITIAL=v1.0.0"
9
9
  set "TAG_MESSAGE=Primera version estable"
10
10
  set "BRANCH_MAIN=main"
package/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  Universal Git bootstrap kit for Windows.
4
4
 
5
- > **¿Vas a trabajar con IA (ChatGPT, DeepSeek, Claude, Gemini, Cursor)?**
5
+ > **¿Vas a trabajar con IA (ChatGPT, DeepSeek, Claude, Gemini, Cursor)?**
6
6
  > Lee primero [WORKFLOW.md](WORKFLOW.md) para entender las reglas de
7
- > trabajo, el formato quirúrgico de instrucciones, y los comandos de
7
+ > trabajo, el formato quirúrgico de instrucciones, y los comandos de
8
8
  > rescate.
9
9
 
10
10
  ## What it is
@@ -87,25 +87,25 @@ forge help Show help
87
87
 
88
88
  ```
89
89
  forgeGit/
90
- ├── forge.cmd Menu + CLI (unico .cmd visible)
91
- ├── .forge/ Infraestructura oculta
92
- ├── init.cmd Bootstrap (17 pasos)
93
- ├── config.cmd Configuration values
94
- ├── lib/ Internal modules
95
- ├── templates/ Source templates (.tpl)
96
- ├── commands/ 8 helpers generados
97
- └── serve-static.js Servidor Node
98
- ├── MANUAL.md Full user manual
99
- ├── WORKFLOW.md AI workflow rules
100
- ├── README.md This file
101
- ├── tools/ Author tools
102
- ├── install.cmd Install forge globally
103
- ├── uninstall.cmd Uninstall forge
104
- ├── restore.cmd Restore PATH from backup
105
- ├── pack.cmd Build clean distribution
106
- ├── release.cmd Build ZIP + open GitHub
107
- └── bin/forge.cmd Global command
108
- └── tests/ Automated tests (16/16)
90
+ ├── forge.cmd Menu + CLI (unico .cmd visible)
91
+ ├── .forge/ Infraestructura oculta
92
+ │ ├── init.cmd Bootstrap (17 pasos)
93
+ │ ├── config.cmd Configuration values
94
+ │ ├── lib/ Internal modules
95
+ │ ├── templates/ Source templates (.tpl)
96
+ │ ├── commands/ 8 helpers generados
97
+ │ └── serve-static.js Servidor Node
98
+ ├── MANUAL.md Full user manual
99
+ ├── WORKFLOW.md AI workflow rules
100
+ ├── README.md This file
101
+ ├── tools/ Author tools
102
+ │ ├── install.cmd Install forge globally
103
+ │ ├── uninstall.cmd Uninstall forge
104
+ │ ├── restore.cmd Restore PATH from backup
105
+ │ ├── pack.cmd Build clean distribution
106
+ │ ├── release.cmd Build ZIP + open GitHub
107
+ │ └── bin/forge.cmd Global command
108
+ └── tests/ Automated tests (16/16)
109
109
  ```
110
110
 
111
111
  ## Requirements
@@ -117,7 +117,7 @@ forgeGit/
117
117
 
118
118
  ## Status
119
119
 
120
- - Version: 1.5.8
120
+ - Version: 1.5.11
121
121
  - Published: npm + GitHub Release
122
122
  - Tests: 16/16 passing
123
123
  - Platform: Windows only (Linux/Mac planned as Node.js CLI)
package/WORKFLOW.md CHANGED
@@ -435,7 +435,7 @@ Elegir v, escribir SI.
435
435
  |-- .forge/
436
436
  | |-- init.cmd Bootstrap
437
437
  | |-- config.cmd Configuracion
438
- | |-- commands/ 7 helpers
438
+ | |-- commands/ 8 helpers
439
439
  | |-- lib/ Modulos internos
440
440
  | |-- templates/ Fuentes .tpl
441
441
  | +-- serve-static.js Servidor Node.js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forgegit",
3
- "version": "1.5.10",
3
+ "version": "1.5.11",
4
4
  "description": "Universal Git bootstrap kit for Windows",
5
5
  "bin": {
6
6
  "forge": "./tools/bin/forge.cmd"
package/tests/test.cmd CHANGED
@@ -4,7 +4,7 @@ chcp 65001 >nul 2>nul
4
4
 
5
5
  echo.
6
6
  echo ============================================
7
- echo forgeGit - Tests v1.5.8
7
+ echo forgeGit - Tests v1.5.11
8
8
  echo ============================================
9
9
  echo.
10
10
 
package/tools/pack.cmd CHANGED
@@ -6,7 +6,7 @@ cd /d "%~dp0"
6
6
 
7
7
  echo.
8
8
  echo ============================================
9
- echo Pack - Distribucion limpia (v1.5.8)
9
+ echo Pack - Distribucion limpia (v1.5.11)
10
10
  echo ============================================
11
11
  echo.
12
12
 
package/tools/release.cmd CHANGED
@@ -6,7 +6,7 @@ cd /d "%~dp0"
6
6
 
7
7
  echo.
8
8
  echo ============================================
9
- echo Release - Empaquetar y comprimir (v1.5.8)
9
+ echo Release - Empaquetar y comprimir (v1.5.11)
10
10
  echo ============================================
11
11
  echo.
12
12