forgegit 1.5.9 → 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
@@ -1,230 +1,15 @@
1
- # GRIDLOOCK Visual Engine — v0 (Rescate de Ideas)
2
-
3
- Documento de rescate del 2026-09-17. Captura las ideas clave de la
4
- conversacion con Gemini sobre visuales para sets de musica electronica
5
- y el problema de la memoria humana al disenar sistemas complejos.
6
-
7
- ---
8
-
9
- ## 1. PROBLEMA ORIGINAL
10
-
11
- - Sets de 36 tracks ≈ 36 cortometrajes.
12
- - Visuales de VJ tradicionales no representan lo que la musica expresa.
13
- - Hacer un video unico por track con IA es inviable (costo, consistencia).
14
- - Marca: GRIDLOOCK.
15
- - Objetivo: una imagen o miniatura que represente cada estado emocional
16
- del set, NO cada track individual.
17
-
18
- ### Ejes emocionales del set
19
-
20
- - PASADO:
21
- - ancla_nostalgia: objeto especifico que ya no esta
22
- - ancla_melancolia: bruma, caminar sin rumbo
23
- - PRESENTE:
24
- - eje_nostalgia: el eco que aun flota pero no duele
25
- - eje_melancolia: memoria colectiva procesandose en el beat
26
- - eje_neutral: presencia pura, aqui y ahora sin carga
27
- - FUTURO:
28
- - proyeccion_tunel: euforia, velocidad frontal, liberacion
29
-
30
- ---
31
-
32
- ## 2. SISTEMA DE FACTORES VISUALES
33
-
34
- ### Factores iniciales
35
-
36
- | # | Factor | Opciones / Variables |
37
- |---|--------|----------------------|
38
- | 1 | Universalidad del Entorno | No-lugares (distritos financieros, tuneles, concreto, cristal) vs. entornos locales (Lima, bodegas, mototaxis) |
39
- | 2 | Fase Temporal | Sunrise, Sun, Sunset, Sundown, Night |
40
- | 3 | Perspectiva Psicologica | Seguimiento posterior / avatar, CCTV, silueta extrema, perfil introspectivo |
41
- | 4 | Direccion de Movimiento | Viaje (avanzando) vs. estatico (perfil/lateral) |
42
- | 5 | Lenguaje Corporal / Pose | Pose House, cruce de pies, brazos en suspension, caminata ritmica |
43
- | 6 | Dinamicas Humanas | Aislamiento absoluto, pareja, amigos, grupos dispersos, solo en multitud, osmosis social |
44
- | 7 | Vestimenta | Neutra/global (hoodie, beanie, jeans, mochila) vs. ajustes por subgenero |
45
- | 8 | Decoracion / Instalacion efimera | Parlantes, truss metalico, ground-stack, instalacion tactica |
46
- | 9 | Camara / Angulo | POV, seguimiento, picado, cenital, lateral |
47
- | 10 | Clima exterior | Lluvia, neblina, seco |
48
- | 11 | Cinematica de poses | Como se mueve el cuerpo segun el estado emocional |
49
- | 12 | Densidad humana | Solitario, grupos, masa, multitud |
50
-
51
- ### Regla de separacion de responsabilidades
52
-
53
- - Factor 1: lienzo espacial (donde estamos)
54
- - Factor 6: quienes estan ahi
55
- - Factor 7: como se instalo la rave
56
- - Factor 8: como se mira
57
-
58
- NO se mezclan. Cada factor es independiente.
59
-
60
- ---
61
-
62
- ## 3. ARQUITECTURA DEL GENERADOR
63
-
64
- ### Estructura JSON/YAML por factor
65
-
66
- Cada opcion dentro de un factor debe tener:
67
-
68
- - metadata
69
- - locked_core_prompt: prompt base inmutable
70
- - evolution_ideas[]: mejoras positivas
71
- - exclusions[]: errores que la IA no debe cometer
72
-
73
- ### Dos niveles
74
-
75
- - GLOBAL: ideas/exclusiones que aplican a todo el factor
76
- - LOCAL: ideas/exclusiones especificas de una opcion
77
-
78
- ### Conceptos clave
79
-
80
- - IDEAS ADITIVAS: mejoran sin romper la regla
81
- - EXCLUSIONES: prohiben errores tipicos de la IA
82
- - DESVIOS / OVERRIDES: excepciones explicitas a una regla global
83
- (ej. "quiero que se parezca a Lima" aunque el factor sea universalidad)
84
-
85
- ### Flujo
86
-
87
- 1. Seleccionas opciones de cada factor
88
- 2. El ensamblador compila un prompt maestro
89
- 3. Ese prompt se le entrega a la IA generadora de imagenes
90
-
91
- ---
92
-
93
- ## 4. PROBLEMA DE LA MEMORIA HUMANA
94
-
95
- ### El problema
96
-
97
- - La mente opera con ALTA ENTROPIA y SALTOS DE CONTEXTO
98
- - La memoria de trabajo se desborda (metafora del vaso con pelotitas)
99
- - Se pierde el hilo, se olvidan terminos tecnicos
100
- - Se depende de Ctrl+F para recuperar conceptos
101
- - La redundancia linguistica existe porque la memoria es limitada
102
- - Los terminos abstractos no tienen anclaje sensorial (no se huelen, no se ven, no se tocan), por eso se olvidan mas rapido
103
-
104
- ### Ecuacion de sobrecarga
105
-
106
- O = max(0, m - v - W)
107
-
108
- Donde:
109
- - O = sobrecarga
110
- - m = elementos mentales necesarios
111
- - v = elementos visibles en la interfaz
112
- - W = limite biologico de la memoria de trabajo
113
-
114
- Conclusion: necesitas externalizar memoria en una interfaz visual/persistente.
115
-
116
- ---
117
-
118
- ## 5. PROPUESTAS DE SOLUCION
119
-
120
- ### HCI / UI Cognitiva
121
-
122
- - State Rail: panel persistente con parametros activos
123
- - Semantic Zoom y Ghost Layers: capas que muestran dependencias sin saturar
124
- - Scaffolded Friction: obligar al usuario a clasificar sus ideas en tiempo real
125
- - Reactive DAG: grafo aciclico dirigido para evitar bucles y permitir time-travel
126
- - SQLite WAL + @ts-check: persistencia local y validacion tipada
127
- - Neuroergonomia: adaptar la UI segun fatiga (adenosina, HRV, TEPR)
128
-
129
- ### Mnemotecnia
130
-
131
- - Cubo-personaje: cubos 3x3 hasta 32x32 con patrones zigzag
132
- - Indexacion espaciotemporal 4D: ano, mes, dia, hora + colores y vectores
133
- - Sistemas narrativos: ano = personaje, mes = accion, dia = item, hora = ambiente
134
- - Simbolos ASCII, rotaciones, angulos, eliminacion de conectores gramaticales
135
- - Voice-to-node: dictado continuo, segmentacion semantica, nodos automaticos
136
-
137
- ### Prompt de investigacion avanzada
138
-
139
- Ver archivos:
140
- - Investigacion HCI Alta Entropia.docx
141
- - Investigacion Arquitectura UI Cognitiva.docx
142
-
143
- ---
144
-
145
- ## 6. INVESTIGACIONES REALIZADAS
146
-
147
- ### Investigacion 1: HCI Alta Entropia
148
-
149
- - Memoria de trabajo: 4-7 elementos simultaneos
150
- - State Rail, Semantic Zoom, Ghost Layers
151
- - Scaffolded Friction: NXS-SLICER de ideas
152
- - Grafos aciclicos dirigidos (DAG)
153
- - SQLite WAL, @ts-check, AST JSON
154
-
155
- ### Investigacion 2: Arquitectura UI Cognitiva
156
-
157
- - Ecuacion de sobrecarga
158
- - Efecto cerradura de UIs conversacionales
159
- - Externalizacion dinamica (Orality, StepWrite)
160
- - Decodificacion restringida por gramatica (AST, JSON)
161
- - Neuroergonomia (TEPR, HRV)
162
- - Modulos: Ingesta Restringida, Gestor de Estado Topologico,
163
- Bucle de Supervision Activa, Auditor Metacognitivo
164
-
165
- ---
166
-
167
- ## 7. PROYECTOS ANTIGUOS RELACIONADOS
168
-
169
- - Mnemotecnia Cubo-Personaje (motor grafico mental)
170
- - Diccionario de simbolos / compresion de lenguaje
171
- - Memoria virtual / mnemotecnia infinita
172
-
173
- ---
174
-
175
- ## 8. PROXIMOS PASOS (cuando se retome)
176
-
177
- ### Corto plazo
178
-
179
- - Definir el primer factor de forma completa (JSON con metadata,
180
- locked_core_prompt, evolution_ideas, exclusions)
181
- - Probar el ensamblaje manual en una IA generadora
182
- - Validar que la miniatura resultante represente el estado emocional
183
-
184
- ### Medio plazo
185
-
186
- - Definir los 12 factores en JSON
187
- - Implementar el ensamblador (script local, sin IA en tiempo real)
188
- - Probar el flujo completo con un set real
189
-
190
- ### Largo plazo
191
-
192
- - Resolver el primer pilar (memoria/externalizacion cognitiva)
193
- - Interfaz de captura de voz con segmentacion semantica
194
- - Integracion de mnemotecnia visual
195
-
196
- ---
197
-
198
- ## 9. FILOSOFIA DEL PROYECTO
199
-
200
- - La tecnica es el lenguaje, no el fin
201
- - La curaduria es narrativa temporal y emocional
202
- - El sistema debe permitir creatividad sin perderse en el caos
203
- - La redundancia es un sintoma de memoria limitada
204
- - La solucion no es "pensar menos", es "externalizar mejor"
205
-
206
- ---
207
-
208
- ## 10. LINKS Y REFERENCIAS
209
-
210
- - Investigacion HCI Alta Entropia.docx
211
- - Investigacion Arquitectura UI Cognitiva.docx
212
- - Mnemotecnia Cubo-Personaje (motor grafico mental)
213
- - ULTRA TOKEN JSON
214
- - Arquitectura De Ensamblaje De Prompts.docx
215
-
216
- ---
217
-
218
- ## NOTAS FINALES
219
-
220
- Este documento es un rescate de ideas del 2026-09-17.
221
- No es la version final. Es un snapshot para no olvidar.
222
-
223
- Cuando retomes el proyecto, empeza por el Factor 1 y el Factor 6.
224
- Son los pilares de todo el sistema.
225
-
226
- La investigacion cognitiva (primer pilar) queda pendiente.
227
- No es urgente. El motor visual se puede construir sin ella.
228
-
229
- Regla de oro: SIEMPRE separacion de responsabilidades.
230
- Cada factor hace una sola cosa. Nada mas.
1
+ REM ============================================================
2
+ REM forge-git / config.cmd
3
+ REM Configuration - edit these values to customize
4
+ REM Called from init.cmd via: call config.cmd
5
+ REM ============================================================
6
+
7
+ set "FG_VERSION=1.5.11"
8
+ set "TAG_INITIAL=v1.0.0"
9
+ set "TAG_MESSAGE=Primera version estable"
10
+ set "BRANCH_MAIN=main"
11
+ set "COMMIT_MESSAGE=chore: initial commit"
12
+
13
+ REM --- Exclusions for subir.cmd (robocopy) ---
14
+ set "EXCLUDE_DIRS=.git versiones old_versions backup backups node_modules __pycache__ venv .venv env dist build out cache .cache .parcel-cache .vite .vscode .idea"
15
+ set "EXCLUDE_FILES=*.log *.tmp *.bak *.orig Thumbs.db .DS_Store"
@@ -37,9 +37,11 @@ if not "%~1"=="" (
37
37
  if /i "%~1"=="audit" ( call "%CMD_DIR%\auditar.cmd" & exit /b 0 )
38
38
  if /i "%~1"=="open" ( call "%CMD_DIR%\abrir.cmd" & exit /b 0 )
39
39
  if /i "%~1"=="serve" ( call "%CMD_DIR%\serve.cmd" & exit /b 0 )
40
- if /i "%~1"=="help" goto :help
41
- if /i "%~1"=="-h" goto :help
42
- if /i "%~1"=="--help" goto :help
40
+ if /i "%~1"=="help" goto :help
41
+ if /i "%~1"=="-h" goto :help
42
+ if /i "%~1"=="--help" goto :help
43
+ if /i "%~1"=="version" goto :version
44
+ if /i "%~1"=="--version" goto :version
43
45
  echo !C_RE![X]!C_RS! Comando desconocido: %~1
44
46
  echo !C_GY!Usa: forge help!C_RS!
45
47
  exit /b 1
@@ -87,6 +89,13 @@ if /i "!OPT!"=="q" goto :end
87
89
 
88
90
  goto :menu
89
91
 
92
+ REM ============================================================
93
+ REM VERSION
94
+ REM ============================================================
95
+ :version
96
+ powershell -NoProfile -Command "$c = Get-Content -LiteralPath '%~dp0.forge\config.cmd' -Raw -ErrorAction SilentlyContinue; if ($c -match 'FG_VERSION=([\d\.]+)') { Write-Host $Matches[1] } else { Write-Host 'unknown' }"
97
+ goto :end
98
+
90
99
  REM ============================================================
91
100
  REM HELP
92
101
  REM ============================================================
@@ -105,6 +114,7 @@ echo !C_WH!forge log!C_RS! Historial
105
114
  echo !C_WH!forge audit!C_RS! Auditar cambios
106
115
  echo !C_WH!forge open!C_RS! Abrir en VS Code
107
116
  echo !C_WH!forge serve!C_RS! Servidor de desarrollo
117
+ echo !C_WH!forge version!C_RS! Muestra la version
108
118
  echo !C_WH!forge help!C_RS! Esta ayuda
109
119
  echo.
110
120
  goto :end
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/forge.cmd CHANGED
@@ -39,9 +39,11 @@ if not "%~1"=="" (
39
39
  if /i "%~1"=="audit" ( call "%CMD_DIR%\auditar.cmd" & exit /b 0 )
40
40
  if /i "%~1"=="open" ( call "%CMD_DIR%\abrir.cmd" & exit /b 0 )
41
41
  if /i "%~1"=="serve" ( call "%CMD_DIR%\serve.cmd" & exit /b 0 )
42
- if /i "%~1"=="help" goto :help
43
- if /i "%~1"=="-h" goto :help
44
- if /i "%~1"=="--help" goto :help
42
+ if /i "%~1"=="help" goto :help
43
+ if /i "%~1"=="-h" goto :help
44
+ if /i "%~1"=="--help" goto :help
45
+ if /i "%~1"=="version" goto :version
46
+ if /i "%~1"=="--version" goto :version
45
47
  echo !C_RE![X]!C_RS! Comando desconocido: %~1
46
48
  echo !C_GY!Usa: forge help!C_RS!
47
49
  exit /b 1
@@ -91,6 +93,13 @@ if /i "!OPT!"=="q" goto :end
91
93
 
92
94
  goto :menu
93
95
 
96
+ REM ============================================================
97
+ REM VERSION
98
+ REM ============================================================
99
+ :version
100
+ powershell -NoProfile -Command "$c = Get-Content -LiteralPath '%~dp0.forge\config.cmd' -Raw -ErrorAction SilentlyContinue; if ($c -match 'FG_VERSION=([\d\.]+)') { Write-Host $Matches[1] } else { Write-Host 'unknown' }"
101
+ goto :end
102
+
94
103
  REM ============================================================
95
104
  REM HELP
96
105
  REM ============================================================
@@ -111,6 +120,7 @@ echo !C_WH!forge log!C_RS! Historial
111
120
  echo !C_WH!forge audit!C_RS! Auditar cambios
112
121
  echo !C_WH!forge open!C_RS! Abrir en VS Code
113
122
  echo !C_WH!forge serve!C_RS! Servidor de desarrollo
123
+ echo !C_WH!forge version!C_RS! Muestra la version
114
124
  echo !C_WH!forge help!C_RS! Esta ayuda
115
125
  echo.
116
126
  goto :end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forgegit",
3
- "version": "1.5.9",
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