ostacky 0.5.7 → 0.5.8
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 +9 -9
- package/assets/commands/install-stack.md +1 -1
- package/assets/mcp/ostacky-controller/index.js +1 -1
- package/assets/mcp/ostacky-controller/package.json +1 -1
- package/dist/cli.js +38 -38
- package/dist/mcp/ostacky-controller/index.js +1 -1
- package/manifest.json +36 -36
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -215,33 +215,33 @@ Tras instalar, el proyecto queda así:
|
|
|
215
215
|
|
|
216
216
|
```json
|
|
217
217
|
{
|
|
218
|
-
"version": "0.5.
|
|
218
|
+
"version": "0.5.8",
|
|
219
219
|
"lockedAt": "2025-01-01T00:00:00.000Z",
|
|
220
220
|
"repo": "JaimeHoracio/Ostacky",
|
|
221
|
-
"tag": "v0.5.
|
|
221
|
+
"tag": "v0.5.8",
|
|
222
222
|
"agents": {
|
|
223
223
|
"ostacky": {
|
|
224
|
-
"version": "0.5.
|
|
224
|
+
"version": "0.5.8",
|
|
225
225
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
226
226
|
"sha256": "abc123..."
|
|
227
227
|
}
|
|
228
228
|
},
|
|
229
229
|
"commands": {
|
|
230
230
|
"install-stack": {
|
|
231
|
-
"version": "0.5.
|
|
231
|
+
"version": "0.5.8",
|
|
232
232
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
233
233
|
"sha256": "def456..."
|
|
234
234
|
},
|
|
235
235
|
"opsx-sync": {
|
|
236
|
-
"version": "0.5.
|
|
236
|
+
"version": "0.5.8",
|
|
237
237
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
238
238
|
"sha256": "ghi789..."
|
|
239
239
|
}
|
|
240
240
|
},
|
|
241
241
|
"skills": {
|
|
242
|
-
"brainstorming": { "version": "0.5.
|
|
243
|
-
"execution-mode-evaluation": { "version": "0.5.
|
|
244
|
-
"openspec-propose": { "version": "0.5.
|
|
242
|
+
"brainstorming": { "version": "0.5.8", ... },
|
|
243
|
+
"execution-mode-evaluation": { "version": "0.5.8", ... },
|
|
244
|
+
"openspec-propose": { "version": "0.5.8", ... }
|
|
245
245
|
}
|
|
246
246
|
}
|
|
247
247
|
```
|
|
@@ -271,7 +271,7 @@ Es opcional y solo necesario si algo falló durante la instalación o si querés
|
|
|
271
271
|
## Seguridad
|
|
272
272
|
|
|
273
273
|
- `opencode.jsonc` se versiona en el repo para compartir permisos y MCP de forma reproducible.
|
|
274
|
-
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.5.
|
|
274
|
+
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.5.8`), nunca `main` — instalaciones reproducibles
|
|
275
275
|
- Cada path de archivo descargado es validado para prevenir **path traversal**
|
|
276
276
|
- Los archivos incluyen **checksum SHA-256** opcional; si el manifest lo define, el contenido se verifica antes de escribir
|
|
277
277
|
- El cache local (`~/.opencode/cache/`) también valida integridad al servir archivos cacheados
|
|
@@ -5,7 +5,7 @@ agent: build
|
|
|
5
5
|
|
|
6
6
|
Instala el stack tecnológico de desarrollo para OpenCode. **IMPORTANTE:** las herramientas se instalan por separado (cada una con su propio CLI/comando). `npx ostacky install` solo instala el agente y commands de Ostacky en `.opencode/`. Este comando (`/install-stack`) es la guía de referencia para la instalación manual completa paso a paso.
|
|
7
7
|
|
|
8
|
-
**Nota:** A partir de v0.5.
|
|
8
|
+
**Nota:** A partir de v0.5.8, `npx ostacky install` ya instala automáticamente el stack completo (CodeGraph, OpenSpec, Engram, Context7, MCPs bundleados) además del agente y skills. Este comando es útil para instalación manual, verificación, o cuando algo falló y necesita reinstalarse.
|
|
9
9
|
|
|
10
10
|
**RESTRICCIÓN ABSOLUTA:** instalar ÚNICAMENTE para OpenCode. Está terminantemente prohibido crear o modificar archivos en `.claude/`, `.kiro/`, `.cursor/`, `.gemini/`, `.codex/`, `.antigravity/`, `.windsurf/` o cualquier otro directorio de plataformas externas.
|
|
11
11
|
|
package/dist/cli.js
CHANGED
|
@@ -161,7 +161,7 @@ var require_picocolors = __commonJS((exports, module) => {
|
|
|
161
161
|
// package.json
|
|
162
162
|
var package_default = {
|
|
163
163
|
name: "ostacky",
|
|
164
|
-
version: "0.5.
|
|
164
|
+
version: "0.5.8",
|
|
165
165
|
description: "Instalador interactivo de agentes y comandos para OpenCode",
|
|
166
166
|
type: "module",
|
|
167
167
|
bin: {
|
|
@@ -879,15 +879,15 @@ import { join as join5 } from "path";
|
|
|
879
879
|
import { existsSync as existsSync4 } from "fs";
|
|
880
880
|
// manifest.json
|
|
881
881
|
var manifest_default = {
|
|
882
|
-
version: "0.5.
|
|
882
|
+
version: "0.5.8",
|
|
883
883
|
repo: "JaimeHoracio/Ostacky",
|
|
884
|
-
tag: "v0.5.
|
|
884
|
+
tag: "v0.5.8",
|
|
885
885
|
agents: [
|
|
886
886
|
{
|
|
887
887
|
name: "ostacky",
|
|
888
888
|
file: "assets/agents/ostacky.md",
|
|
889
889
|
description: "Orquestador principal con ruteo por nivel de impacto, máquina de estados persistida (controller MCP), edición segura con 3 outcomes, y delegación en OpenSpec + Superpowers",
|
|
890
|
-
version: "0.5.
|
|
890
|
+
version: "0.5.8",
|
|
891
891
|
sha256: "eb3ab4cfcdedee63dd4aae05d748d34d9cfc3323bdc5f53f06848cfe3efd439f"
|
|
892
892
|
}
|
|
893
893
|
],
|
|
@@ -896,14 +896,14 @@ var manifest_default = {
|
|
|
896
896
|
name: "install-stack",
|
|
897
897
|
file: "assets/commands/install-stack.md",
|
|
898
898
|
description: "Instala el stack tecnológico del proyecto (CodeGraph, skills, OpenSpec, Engram, Context7, controller MCP)",
|
|
899
|
-
version: "0.5.
|
|
900
|
-
sha256: "
|
|
899
|
+
version: "0.5.8",
|
|
900
|
+
sha256: "16538e1ec81887738716dc8f97a3de4f26fc8d218489a6cd20029a8981bdbd95"
|
|
901
901
|
},
|
|
902
902
|
{
|
|
903
903
|
name: "opsx-sync",
|
|
904
904
|
file: "assets/commands/opsx-sync.md",
|
|
905
905
|
description: "Sincroniza delta specs del change activo sin inicializar CodeGraph si ya existe índice",
|
|
906
|
-
version: "0.5.
|
|
906
|
+
version: "0.5.8",
|
|
907
907
|
sha256: "ed9948f1910743b672e1dfad496bc96972a224a98b063232be39290d43068c50"
|
|
908
908
|
}
|
|
909
909
|
],
|
|
@@ -912,8 +912,8 @@ var manifest_default = {
|
|
|
912
912
|
name: "ostacky-controller",
|
|
913
913
|
file: "assets/mcp/ostacky-controller/",
|
|
914
914
|
description: "Máquina de estados persistida para Ostacky: 13 tools MCP para ciclo completo de request (start_request → discovery → route → execution → sync → done), edición segura con validación de transiciones y persistencia atómica",
|
|
915
|
-
version: "0.5.
|
|
916
|
-
sha256: "
|
|
915
|
+
version: "0.5.8",
|
|
916
|
+
sha256: "d78ceb0d761c40212a0fe39db8872f58c78de235e1b0833be4accb8adcc45462"
|
|
917
917
|
}
|
|
918
918
|
],
|
|
919
919
|
skills: [
|
|
@@ -921,99 +921,99 @@ var manifest_default = {
|
|
|
921
921
|
name: "thinking",
|
|
922
922
|
file: "assets/skills/thinking/SKILL.md",
|
|
923
923
|
description: "Skill unificado de pensamiento con dos modos: creative-design (producción de diseño → transición a writing-plans o openspec-propose) y open-exploration (exploración libre)",
|
|
924
|
-
version: "0.5.
|
|
925
|
-
sha256: "
|
|
924
|
+
version: "0.5.8",
|
|
925
|
+
sha256: "6a1fdac86357f89e132013e56cb84c1920880c1c035a8dcf53f69e01824724bb"
|
|
926
926
|
},
|
|
927
927
|
{
|
|
928
928
|
name: "execution-mode-evaluation",
|
|
929
929
|
file: "assets/skills/execution-mode-evaluation/SKILL.md",
|
|
930
930
|
description: "Skill de análisis de modo de ejecución — output reconciliado con controller snapshot contract (recommendation field)",
|
|
931
|
-
version: "0.5.
|
|
932
|
-
sha256: "
|
|
931
|
+
version: "0.5.8",
|
|
932
|
+
sha256: "048925aec576dff014eed0b44e2a553c635ae405f5a245773f480be9b84d18a7"
|
|
933
933
|
},
|
|
934
934
|
{
|
|
935
935
|
name: "writing-plans",
|
|
936
936
|
file: "assets/skills/writing-plans/SKILL.md",
|
|
937
937
|
description: "Skill de planificación de implementación (Superpowers) — execution handoff removido, Ostacky decide modo de ejecución",
|
|
938
|
-
version: "0.5.
|
|
939
|
-
sha256: "
|
|
938
|
+
version: "0.5.8",
|
|
939
|
+
sha256: "13f6e43522567505da90793934d414d290d56f4ea587ac696f66416af9e7633f"
|
|
940
940
|
},
|
|
941
941
|
{
|
|
942
942
|
name: "tdd",
|
|
943
943
|
file: "assets/skills/tdd/SKILL.md",
|
|
944
944
|
description: "Skill de test-driven development (Superpowers)",
|
|
945
|
-
version: "0.5.
|
|
946
|
-
sha256: "
|
|
945
|
+
version: "0.5.8",
|
|
946
|
+
sha256: "7eacd8ee81dc5c0b85065c0392e37ee10314661f7edb59dd8e70a9e0dae8f371"
|
|
947
947
|
},
|
|
948
948
|
{
|
|
949
949
|
name: "subagent-driven-development",
|
|
950
950
|
file: "assets/skills/subagent-driven-development/SKILL.md",
|
|
951
951
|
description: "Skill de ejecución con subagentes (Superpowers) — ejecuta solo después de confirmación del coordinador Ostacky",
|
|
952
|
-
version: "0.5.
|
|
953
|
-
sha256: "
|
|
952
|
+
version: "0.5.8",
|
|
953
|
+
sha256: "cdacae2e5b86f6a642ad0316172cee7dc8d19e909ef4f9ab7fcf7e84a248dda3"
|
|
954
954
|
},
|
|
955
955
|
{
|
|
956
956
|
name: "dispatching-parallel-agents",
|
|
957
957
|
file: "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
958
958
|
description: "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
959
|
-
version: "0.5.
|
|
960
|
-
sha256: "
|
|
959
|
+
version: "0.5.8",
|
|
960
|
+
sha256: "281edf0c38f358497c7e2066fa8217a2ba3e2a39b4205c4af0c41d328fc035a1"
|
|
961
961
|
},
|
|
962
962
|
{
|
|
963
963
|
name: "review",
|
|
964
964
|
file: "assets/skills/review/SKILL.md",
|
|
965
965
|
description: "Skill de revisión de código (Superpowers)",
|
|
966
|
-
version: "0.5.
|
|
967
|
-
sha256: "
|
|
966
|
+
version: "0.5.8",
|
|
967
|
+
sha256: "14831d9ef3746ef6e2e6047c868fe7aa296d01f0644227ce776fe99436357b1a"
|
|
968
968
|
},
|
|
969
969
|
{
|
|
970
970
|
name: "receiving-code-review",
|
|
971
971
|
file: "assets/skills/receiving-code-review/SKILL.md",
|
|
972
972
|
description: "Skill de recibir y procesar feedback de code review",
|
|
973
|
-
version: "0.5.
|
|
974
|
-
sha256: "
|
|
973
|
+
version: "0.5.8",
|
|
974
|
+
sha256: "0a5780e8a41539d15428114b7c46f36670acc16aba0db3348d36be1175433872"
|
|
975
975
|
},
|
|
976
976
|
{
|
|
977
977
|
name: "openspec-propose",
|
|
978
978
|
file: "assets/skills/openspec-propose/SKILL.md",
|
|
979
979
|
description: "Skill de generación de proposal (OpenSpec)",
|
|
980
|
-
version: "0.5.
|
|
981
|
-
sha256: "
|
|
980
|
+
version: "0.5.8",
|
|
981
|
+
sha256: "3306b21ba9cb8c1611e8ba335126982f3767f7d317b5ed506c57a14c5f88b263"
|
|
982
982
|
},
|
|
983
983
|
{
|
|
984
984
|
name: "openspec-apply-change",
|
|
985
985
|
file: "assets/skills/openspec-apply-change/SKILL.md",
|
|
986
986
|
description: "Skill de aplicación de change (OpenSpec)",
|
|
987
|
-
version: "0.5.
|
|
988
|
-
sha256: "
|
|
987
|
+
version: "0.5.8",
|
|
988
|
+
sha256: "31c1313c3de4616a07efd89306c4c058175d018f42d4381cc7da7030fd03ba30"
|
|
989
989
|
},
|
|
990
990
|
{
|
|
991
991
|
name: "openspec-archive-change",
|
|
992
992
|
file: "assets/skills/openspec-archive-change/SKILL.md",
|
|
993
993
|
description: "Skill de archivo de change (OpenSpec)",
|
|
994
|
-
version: "0.5.
|
|
995
|
-
sha256: "
|
|
994
|
+
version: "0.5.8",
|
|
995
|
+
sha256: "5bf65d1848457bd57be1d21707e55fe6746cdee33bce2f32f12d87661b6aa3a4"
|
|
996
996
|
},
|
|
997
997
|
{
|
|
998
998
|
name: "using-git-worktrees",
|
|
999
999
|
file: "assets/skills/using-git-worktrees/SKILL.md",
|
|
1000
1000
|
description: "Skill de uso de git worktrees para aislamiento de trabajo",
|
|
1001
|
-
version: "0.5.
|
|
1002
|
-
sha256: "
|
|
1001
|
+
version: "0.5.8",
|
|
1002
|
+
sha256: "33433c24f753d566cde16c0931f70d746b6b0cb4d1f3daaa619e928b009e4fc9"
|
|
1003
1003
|
},
|
|
1004
1004
|
{
|
|
1005
1005
|
name: "using-superpowers",
|
|
1006
1006
|
file: "assets/skills/using-superpowers/SKILL.md",
|
|
1007
1007
|
description: "Skill de orquestación de Superpowers skills",
|
|
1008
|
-
version: "0.5.
|
|
1009
|
-
sha256: "
|
|
1008
|
+
version: "0.5.8",
|
|
1009
|
+
sha256: "fba542003aa788b5edb4ae2d1135773a1dde8111d1dd60378e2f61b6695d46fc"
|
|
1010
1010
|
},
|
|
1011
1011
|
{
|
|
1012
1012
|
name: "writing-skills",
|
|
1013
1013
|
file: "assets/skills/writing-skills/SKILL.md",
|
|
1014
1014
|
description: "Skill de creación y edición de skills",
|
|
1015
|
-
version: "0.5.
|
|
1016
|
-
sha256: "
|
|
1015
|
+
version: "0.5.8",
|
|
1016
|
+
sha256: "7f74ffe049283803640d78f8c9ac1ea5f5e626dedb885ecff29a87c5b5d41598"
|
|
1017
1017
|
}
|
|
1018
1018
|
]
|
|
1019
1019
|
};
|
|
@@ -1204,7 +1204,7 @@ function clearLockfile(opencodeRoot) {
|
|
|
1204
1204
|
const lockfile = readLockfile(opencodeRoot);
|
|
1205
1205
|
if (!lockfile) {
|
|
1206
1206
|
writeLockfile(opencodeRoot, {
|
|
1207
|
-
version: "0.5.
|
|
1207
|
+
version: "0.5.8",
|
|
1208
1208
|
lockedAt: new Date().toISOString(),
|
|
1209
1209
|
repo: "",
|
|
1210
1210
|
tag: "",
|
|
@@ -19884,7 +19884,7 @@ var statePath = process.env.OSTACKY_STATE_PATH || ".opencode/ostacky-state.json"
|
|
|
19884
19884
|
var controller = new OstackyController({ statePath });
|
|
19885
19885
|
var server = new McpServer({
|
|
19886
19886
|
name: "ostacky-controller",
|
|
19887
|
-
version: "0.5.
|
|
19887
|
+
version: "0.5.8"
|
|
19888
19888
|
});
|
|
19889
19889
|
server.registerTool("start_request", {
|
|
19890
19890
|
description: "Start or resume a new request in the state machine. Call this first.",
|
package/manifest.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.5.
|
|
2
|
+
"version": "0.5.8",
|
|
3
3
|
"repo": "JaimeHoracio/Ostacky",
|
|
4
|
-
"tag": "v0.5.
|
|
4
|
+
"tag": "v0.5.8",
|
|
5
5
|
"agents": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ostacky",
|
|
8
8
|
"file": "assets/agents/ostacky.md",
|
|
9
9
|
"description": "Orquestador principal con ruteo por nivel de impacto, máquina de estados persistida (controller MCP), edición segura con 3 outcomes, y delegación en OpenSpec + Superpowers",
|
|
10
|
-
"version": "0.5.
|
|
10
|
+
"version": "0.5.8",
|
|
11
11
|
"sha256": "eb3ab4cfcdedee63dd4aae05d748d34d9cfc3323bdc5f53f06848cfe3efd439f"
|
|
12
12
|
}
|
|
13
13
|
],
|
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
"name": "install-stack",
|
|
17
17
|
"file": "assets/commands/install-stack.md",
|
|
18
18
|
"description": "Instala el stack tecnológico del proyecto (CodeGraph, skills, OpenSpec, Engram, Context7, controller MCP)",
|
|
19
|
-
"version": "0.5.
|
|
20
|
-
"sha256": "
|
|
19
|
+
"version": "0.5.8",
|
|
20
|
+
"sha256": "16538e1ec81887738716dc8f97a3de4f26fc8d218489a6cd20029a8981bdbd95"
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
23
|
"name": "opsx-sync",
|
|
24
24
|
"file": "assets/commands/opsx-sync.md",
|
|
25
25
|
"description": "Sincroniza delta specs del change activo sin inicializar CodeGraph si ya existe índice",
|
|
26
|
-
"version": "0.5.
|
|
26
|
+
"version": "0.5.8",
|
|
27
27
|
"sha256": "ed9948f1910743b672e1dfad496bc96972a224a98b063232be39290d43068c50"
|
|
28
28
|
}
|
|
29
29
|
],
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"name": "ostacky-controller",
|
|
33
33
|
"file": "assets/mcp/ostacky-controller/",
|
|
34
34
|
"description": "Máquina de estados persistida para Ostacky: 13 tools MCP para ciclo completo de request (start_request → discovery → route → execution → sync → done), edición segura con validación de transiciones y persistencia atómica",
|
|
35
|
-
"version": "0.5.
|
|
36
|
-
"sha256": "
|
|
35
|
+
"version": "0.5.8",
|
|
36
|
+
"sha256": "d78ceb0d761c40212a0fe39db8872f58c78de235e1b0833be4accb8adcc45462"
|
|
37
37
|
}
|
|
38
38
|
],
|
|
39
39
|
"skills": [
|
|
@@ -41,99 +41,99 @@
|
|
|
41
41
|
"name": "thinking",
|
|
42
42
|
"file": "assets/skills/thinking/SKILL.md",
|
|
43
43
|
"description": "Skill unificado de pensamiento con dos modos: creative-design (producción de diseño → transición a writing-plans o openspec-propose) y open-exploration (exploración libre)",
|
|
44
|
-
"version": "0.5.
|
|
45
|
-
"sha256": "
|
|
44
|
+
"version": "0.5.8",
|
|
45
|
+
"sha256": "6a1fdac86357f89e132013e56cb84c1920880c1c035a8dcf53f69e01824724bb"
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
"name": "execution-mode-evaluation",
|
|
49
49
|
"file": "assets/skills/execution-mode-evaluation/SKILL.md",
|
|
50
50
|
"description": "Skill de análisis de modo de ejecución — output reconciliado con controller snapshot contract (recommendation field)",
|
|
51
|
-
"version": "0.5.
|
|
52
|
-
"sha256": "
|
|
51
|
+
"version": "0.5.8",
|
|
52
|
+
"sha256": "048925aec576dff014eed0b44e2a553c635ae405f5a245773f480be9b84d18a7"
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
"name": "writing-plans",
|
|
56
56
|
"file": "assets/skills/writing-plans/SKILL.md",
|
|
57
57
|
"description": "Skill de planificación de implementación (Superpowers) — execution handoff removido, Ostacky decide modo de ejecución",
|
|
58
|
-
"version": "0.5.
|
|
59
|
-
"sha256": "
|
|
58
|
+
"version": "0.5.8",
|
|
59
|
+
"sha256": "13f6e43522567505da90793934d414d290d56f4ea587ac696f66416af9e7633f"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"name": "tdd",
|
|
63
63
|
"file": "assets/skills/tdd/SKILL.md",
|
|
64
64
|
"description": "Skill de test-driven development (Superpowers)",
|
|
65
|
-
"version": "0.5.
|
|
66
|
-
"sha256": "
|
|
65
|
+
"version": "0.5.8",
|
|
66
|
+
"sha256": "7eacd8ee81dc5c0b85065c0392e37ee10314661f7edb59dd8e70a9e0dae8f371"
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"name": "subagent-driven-development",
|
|
70
70
|
"file": "assets/skills/subagent-driven-development/SKILL.md",
|
|
71
71
|
"description": "Skill de ejecución con subagentes (Superpowers) — ejecuta solo después de confirmación del coordinador Ostacky",
|
|
72
|
-
"version": "0.5.
|
|
73
|
-
"sha256": "
|
|
72
|
+
"version": "0.5.8",
|
|
73
|
+
"sha256": "cdacae2e5b86f6a642ad0316172cee7dc8d19e909ef4f9ab7fcf7e84a248dda3"
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"name": "dispatching-parallel-agents",
|
|
77
77
|
"file": "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
78
78
|
"description": "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
79
|
-
"version": "0.5.
|
|
80
|
-
"sha256": "
|
|
79
|
+
"version": "0.5.8",
|
|
80
|
+
"sha256": "281edf0c38f358497c7e2066fa8217a2ba3e2a39b4205c4af0c41d328fc035a1"
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
83
|
"name": "review",
|
|
84
84
|
"file": "assets/skills/review/SKILL.md",
|
|
85
85
|
"description": "Skill de revisión de código (Superpowers)",
|
|
86
|
-
"version": "0.5.
|
|
87
|
-
"sha256": "
|
|
86
|
+
"version": "0.5.8",
|
|
87
|
+
"sha256": "14831d9ef3746ef6e2e6047c868fe7aa296d01f0644227ce776fe99436357b1a"
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
90
|
"name": "receiving-code-review",
|
|
91
91
|
"file": "assets/skills/receiving-code-review/SKILL.md",
|
|
92
92
|
"description": "Skill de recibir y procesar feedback de code review",
|
|
93
|
-
"version": "0.5.
|
|
94
|
-
"sha256": "
|
|
93
|
+
"version": "0.5.8",
|
|
94
|
+
"sha256": "0a5780e8a41539d15428114b7c46f36670acc16aba0db3348d36be1175433872"
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
"name": "openspec-propose",
|
|
98
98
|
"file": "assets/skills/openspec-propose/SKILL.md",
|
|
99
99
|
"description": "Skill de generación de proposal (OpenSpec)",
|
|
100
|
-
"version": "0.5.
|
|
101
|
-
"sha256": "
|
|
100
|
+
"version": "0.5.8",
|
|
101
|
+
"sha256": "3306b21ba9cb8c1611e8ba335126982f3767f7d317b5ed506c57a14c5f88b263"
|
|
102
102
|
},
|
|
103
103
|
{
|
|
104
104
|
"name": "openspec-apply-change",
|
|
105
105
|
"file": "assets/skills/openspec-apply-change/SKILL.md",
|
|
106
106
|
"description": "Skill de aplicación de change (OpenSpec)",
|
|
107
|
-
"version": "0.5.
|
|
108
|
-
"sha256": "
|
|
107
|
+
"version": "0.5.8",
|
|
108
|
+
"sha256": "31c1313c3de4616a07efd89306c4c058175d018f42d4381cc7da7030fd03ba30"
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
"name": "openspec-archive-change",
|
|
112
112
|
"file": "assets/skills/openspec-archive-change/SKILL.md",
|
|
113
113
|
"description": "Skill de archivo de change (OpenSpec)",
|
|
114
|
-
"version": "0.5.
|
|
115
|
-
"sha256": "
|
|
114
|
+
"version": "0.5.8",
|
|
115
|
+
"sha256": "5bf65d1848457bd57be1d21707e55fe6746cdee33bce2f32f12d87661b6aa3a4"
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
118
|
"name": "using-git-worktrees",
|
|
119
119
|
"file": "assets/skills/using-git-worktrees/SKILL.md",
|
|
120
120
|
"description": "Skill de uso de git worktrees para aislamiento de trabajo",
|
|
121
|
-
"version": "0.5.
|
|
122
|
-
"sha256": "
|
|
121
|
+
"version": "0.5.8",
|
|
122
|
+
"sha256": "33433c24f753d566cde16c0931f70d746b6b0cb4d1f3daaa619e928b009e4fc9"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"name": "using-superpowers",
|
|
126
126
|
"file": "assets/skills/using-superpowers/SKILL.md",
|
|
127
127
|
"description": "Skill de orquestación de Superpowers skills",
|
|
128
|
-
"version": "0.5.
|
|
129
|
-
"sha256": "
|
|
128
|
+
"version": "0.5.8",
|
|
129
|
+
"sha256": "fba542003aa788b5edb4ae2d1135773a1dde8111d1dd60378e2f61b6695d46fc"
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
132
|
"name": "writing-skills",
|
|
133
133
|
"file": "assets/skills/writing-skills/SKILL.md",
|
|
134
134
|
"description": "Skill de creación y edición de skills",
|
|
135
|
-
"version": "0.5.
|
|
136
|
-
"sha256": "
|
|
135
|
+
"version": "0.5.8",
|
|
136
|
+
"sha256": "7f74ffe049283803640d78f8c9ac1ea5f5e626dedb885ecff29a87c5b5d41598"
|
|
137
137
|
}
|
|
138
138
|
]
|
|
139
139
|
}
|