forgegit 1.5.1 → 1.5.3
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/MANUAL.md +11 -9
- package/README.md +5 -0
- package/WORKFLOW.md +3 -0
- package/package.json +1 -1
package/MANUAL.md
CHANGED
|
@@ -35,15 +35,17 @@ tag v1.0.0 y 7 helpers en .forge/commands/.
|
|
|
35
35
|
## Estructura del proyecto
|
|
36
36
|
|
|
37
37
|
MiProyecto/
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
38
|
+
|-- forge.cmd Menu + CLI (unico .cmd visible)
|
|
39
|
+
|-- .forge/
|
|
40
|
+
| |-- init.cmd Bootstrap
|
|
41
|
+
| |-- config.cmd Configuracion
|
|
42
|
+
| |-- commands/ 7 helpers
|
|
43
|
+
| |-- lib/ Modulos internos
|
|
44
|
+
| |-- templates/ Fuentes .tpl
|
|
45
|
+
| +-- serve-static.js
|
|
46
|
+
|-- versiones/ Snapshots
|
|
47
|
+
|-- audits/ Reportes diff
|
|
48
|
+
+-- (tus archivos)
|
|
47
49
|
|
|
48
50
|
## Actualizar
|
|
49
51
|
|
package/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Universal Git bootstrap kit for Windows.
|
|
4
4
|
|
|
5
|
+
> **¿Vas a trabajar con IA (ChatGPT, DeepSeek, Claude, Gemini, Cursor)?**
|
|
6
|
+
> Lee primero [WORKFLOW.md](WORKFLOW.md) para entender las reglas de
|
|
7
|
+
> trabajo, el formato quirúrgico de instrucciones, y los comandos de
|
|
8
|
+
> rescate.
|
|
9
|
+
|
|
5
10
|
## What it is
|
|
6
11
|
|
|
7
12
|
forgeGit is a small toolkit that eliminates the repetitive setup work
|
package/WORKFLOW.md
CHANGED
|
@@ -94,6 +94,9 @@ Abre VS Code en el proyecto. Desde ahi:
|
|
|
94
94
|
4. Recomenda "forge snap" antes de cambios grandes.
|
|
95
95
|
5. Si un cambio falla, deci exactamente que comando de git usar.
|
|
96
96
|
6. No mezcles cambios buenos con malos en el mismo bloque.
|
|
97
|
+
7. Preserva comentarios del usuario por defecto. Solo actualiza
|
|
98
|
+
un comentario si describe codigo que cambio. No preguntes
|
|
99
|
+
por comentarios triviales ni redundantes.
|
|
97
100
|
|
|
98
101
|
---
|
|
99
102
|
|