ostacky 0.3.0 → 0.3.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.
- package/README.md +5 -5
- package/dist/cli.js +24 -17
- package/manifest.json +22 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -193,20 +193,20 @@ Tras instalar, el proyecto queda así:
|
|
|
193
193
|
|
|
194
194
|
```json
|
|
195
195
|
{
|
|
196
|
-
"version": "0.3.
|
|
196
|
+
"version": "0.3.1",
|
|
197
197
|
"lockedAt": "2025-01-01T00:00:00.000Z",
|
|
198
198
|
"repo": "JaimeHoracio/Ostacky",
|
|
199
|
-
"tag": "v0.3.
|
|
199
|
+
"tag": "v0.3.1",
|
|
200
200
|
"agents": {
|
|
201
201
|
"ostacky": {
|
|
202
|
-
"version": "0.3.
|
|
202
|
+
"version": "0.3.1",
|
|
203
203
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
204
204
|
"sha256": "abc123..."
|
|
205
205
|
}
|
|
206
206
|
},
|
|
207
207
|
"commands": {
|
|
208
208
|
"install-stack": {
|
|
209
|
-
"version": "0.3.
|
|
209
|
+
"version": "0.3.1",
|
|
210
210
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
211
211
|
"sha256": "def456..."
|
|
212
212
|
}
|
|
@@ -239,7 +239,7 @@ Es opcional y solo necesario si algo falló durante la instalación o si querés
|
|
|
239
239
|
## Seguridad
|
|
240
240
|
|
|
241
241
|
- `opencode.jsonc` se versiona en el repo para compartir permisos y MCP de forma reproducible.
|
|
242
|
-
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.3.
|
|
242
|
+
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.3.1`), nunca `main` — instalaciones reproducibles
|
|
243
243
|
- Cada path de archivo descargado es validado para prevenir **path traversal**
|
|
244
244
|
- Los archivos incluyen **checksum SHA-256** opcional; si el manifest lo define, el contenido se verifica antes de escribir
|
|
245
245
|
- El cache local (`~/.opencode/cache/`) también valida integridad al servir archivos cacheados
|
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.3.
|
|
164
|
+
version: "0.3.1",
|
|
165
165
|
description: "Instalador interactivo de agentes y comandos para OpenCode",
|
|
166
166
|
type: "module",
|
|
167
167
|
bin: {
|
|
@@ -876,15 +876,15 @@ var L2 = () => {
|
|
|
876
876
|
import { join as join5 } from "path";
|
|
877
877
|
// manifest.json
|
|
878
878
|
var manifest_default = {
|
|
879
|
-
version: "0.3.
|
|
879
|
+
version: "0.3.1",
|
|
880
880
|
repo: "JaimeHoracio/Ostacky",
|
|
881
|
-
tag: "v0.3.
|
|
881
|
+
tag: "v0.3.1",
|
|
882
882
|
agents: [
|
|
883
883
|
{
|
|
884
884
|
name: "ostacky",
|
|
885
885
|
file: "assets/agents/ostacky.md",
|
|
886
886
|
description: "Agente principal de desarrollo con ejecución inline-first y local-first",
|
|
887
|
-
version: "0.3.
|
|
887
|
+
version: "0.3.1",
|
|
888
888
|
sha256: null
|
|
889
889
|
}
|
|
890
890
|
],
|
|
@@ -893,86 +893,93 @@ var manifest_default = {
|
|
|
893
893
|
name: "install-stack",
|
|
894
894
|
file: "assets/commands/install-stack.md",
|
|
895
895
|
description: "Instala el stack tecnológico del proyecto",
|
|
896
|
-
version: "0.3.
|
|
896
|
+
version: "0.3.1",
|
|
897
897
|
sha256: null
|
|
898
898
|
},
|
|
899
899
|
{
|
|
900
900
|
name: "opsx-sync",
|
|
901
901
|
file: "assets/commands/opsx-sync.md",
|
|
902
902
|
description: "Sincroniza delta specs del change activo (wrapper de openspec update)",
|
|
903
|
-
version: "0.3.
|
|
903
|
+
version: "0.3.1",
|
|
904
904
|
sha256: null
|
|
905
905
|
}
|
|
906
906
|
],
|
|
907
907
|
skills: [
|
|
908
|
+
{
|
|
909
|
+
name: "execution-mode-evaluation",
|
|
910
|
+
file: "assets/skills/execution-mode-evaluation/SKILL.md",
|
|
911
|
+
description: "Skill de decision de modo de ejecucion inline vs subagent-driven con CodeGraph",
|
|
912
|
+
version: "0.3.1",
|
|
913
|
+
sha256: "eaa7cd3205b22c6db79a5d5f542ea554d5f1ca2d57127490011ba3abe4cb912b"
|
|
914
|
+
},
|
|
908
915
|
{
|
|
909
916
|
name: "brainstorming",
|
|
910
917
|
file: "assets/skills/brainstorming/SKILL.md",
|
|
911
918
|
description: "Skill de descubrimiento y exploración (Superpowers)",
|
|
912
|
-
version: "0.3.
|
|
919
|
+
version: "0.3.1",
|
|
913
920
|
sha256: "ad15458c54912007ae3f708c698a11f0a4a58e2a7c7860a1ae8874db573c9e98"
|
|
914
921
|
},
|
|
915
922
|
{
|
|
916
923
|
name: "writing-plans",
|
|
917
924
|
file: "assets/skills/writing-plans/SKILL.md",
|
|
918
925
|
description: "Skill de planificación de implementación (Superpowers)",
|
|
919
|
-
version: "0.3.
|
|
926
|
+
version: "0.3.1",
|
|
920
927
|
sha256: "4d675df944b9c846e9066ff971861ad1c9673cd2c88375081b00a75872ad621a"
|
|
921
928
|
},
|
|
922
929
|
{
|
|
923
930
|
name: "tdd",
|
|
924
931
|
file: "assets/skills/tdd/SKILL.md",
|
|
925
932
|
description: "Skill de test-driven development (Superpowers)",
|
|
926
|
-
version: "0.3.
|
|
933
|
+
version: "0.3.1",
|
|
927
934
|
sha256: "7eacd8ee81dc5c0b85065c0392e37ee10314661f7edb59dd8e70a9e0dae8f371"
|
|
928
935
|
},
|
|
929
936
|
{
|
|
930
937
|
name: "subagent-driven-development",
|
|
931
938
|
file: "assets/skills/subagent-driven-development/SKILL.md",
|
|
932
939
|
description: "Skill de ejecución con subagentes (Superpowers)",
|
|
933
|
-
version: "0.3.
|
|
940
|
+
version: "0.3.1",
|
|
934
941
|
sha256: "14e0f685b1dc1d7e02b7226d18f037fe4b6cba49b512a1fadf67cfad2a9dcc96"
|
|
935
942
|
},
|
|
936
943
|
{
|
|
937
944
|
name: "dispatching-parallel-agents",
|
|
938
945
|
file: "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
939
946
|
description: "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
940
|
-
version: "0.3.
|
|
947
|
+
version: "0.3.1",
|
|
941
948
|
sha256: "281edf0c38f358497c7e2066fa8217a2ba3e2a39b4205c4af0c41d328fc035a1"
|
|
942
949
|
},
|
|
943
950
|
{
|
|
944
951
|
name: "review",
|
|
945
952
|
file: "assets/skills/review/SKILL.md",
|
|
946
953
|
description: "Skill de revisión de código (Superpowers)",
|
|
947
|
-
version: "0.3.
|
|
954
|
+
version: "0.3.1",
|
|
948
955
|
sha256: "c78d3beff45e9bb6b5e9e1d7155910f379e082d7aaf3c61b90d651d09e0d2e2a"
|
|
949
956
|
},
|
|
950
957
|
{
|
|
951
958
|
name: "openspec-explore",
|
|
952
959
|
file: "assets/skills/openspec-explore/SKILL.md",
|
|
953
960
|
description: "Skill de exploración pre-spec (OpenSpec)",
|
|
954
|
-
version: "0.3.
|
|
961
|
+
version: "0.3.1",
|
|
955
962
|
sha256: "1c75cab8672c2eb8b12f27a0b31f0b7fdb73c21c72583c1e8a566e09fe4108a6"
|
|
956
963
|
},
|
|
957
964
|
{
|
|
958
965
|
name: "openspec-propose",
|
|
959
966
|
file: "assets/skills/openspec-propose/SKILL.md",
|
|
960
967
|
description: "Skill de generación de proposal (OpenSpec)",
|
|
961
|
-
version: "0.3.
|
|
968
|
+
version: "0.3.1",
|
|
962
969
|
sha256: "ab88e9aa22db09559ccf7987d08adc0469b7c6fbe46498e63a3b64926f19e66b"
|
|
963
970
|
},
|
|
964
971
|
{
|
|
965
972
|
name: "openspec-apply-change",
|
|
966
973
|
file: "assets/skills/openspec-apply-change/SKILL.md",
|
|
967
974
|
description: "Skill de aplicación de change (OpenSpec)",
|
|
968
|
-
version: "0.3.
|
|
975
|
+
version: "0.3.1",
|
|
969
976
|
sha256: "847c2f88a66e8d5946c1fec422a5367c89eca5340839b659bbaaeb6f0bdac487"
|
|
970
977
|
},
|
|
971
978
|
{
|
|
972
979
|
name: "openspec-archive-change",
|
|
973
980
|
file: "assets/skills/openspec-archive-change/SKILL.md",
|
|
974
981
|
description: "Skill de archivo de change (OpenSpec)",
|
|
975
|
-
version: "0.3.
|
|
982
|
+
version: "0.3.1",
|
|
976
983
|
sha256: "3d35905ec40a081b8fd77b144426e540c67b1f50cc5801b655313a4fdfaa087a"
|
|
977
984
|
}
|
|
978
985
|
]
|
|
@@ -1158,7 +1165,7 @@ function clearLockfile(opencodeRoot) {
|
|
|
1158
1165
|
const lockfile = readLockfile(opencodeRoot);
|
|
1159
1166
|
if (!lockfile) {
|
|
1160
1167
|
writeLockfile(opencodeRoot, {
|
|
1161
|
-
version: "0.3.
|
|
1168
|
+
version: "0.3.1",
|
|
1162
1169
|
lockedAt: new Date().toISOString(),
|
|
1163
1170
|
repo: "",
|
|
1164
1171
|
tag: "",
|
package/manifest.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.3.
|
|
2
|
+
"version": "0.3.1",
|
|
3
3
|
"repo": "JaimeHoracio/Ostacky",
|
|
4
|
-
"tag": "v0.3.
|
|
4
|
+
"tag": "v0.3.1",
|
|
5
5
|
"agents": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ostacky",
|
|
8
8
|
"file": "assets/agents/ostacky.md",
|
|
9
9
|
"description": "Agente principal de desarrollo con ejecución inline-first y local-first",
|
|
10
|
-
"version": "0.3.
|
|
10
|
+
"version": "0.3.1",
|
|
11
11
|
"sha256": null
|
|
12
12
|
}
|
|
13
13
|
],
|
|
@@ -16,86 +16,93 @@
|
|
|
16
16
|
"name": "install-stack",
|
|
17
17
|
"file": "assets/commands/install-stack.md",
|
|
18
18
|
"description": "Instala el stack tecnológico del proyecto",
|
|
19
|
-
"version": "0.3.
|
|
19
|
+
"version": "0.3.1",
|
|
20
20
|
"sha256": null
|
|
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 (wrapper de openspec update)",
|
|
26
|
-
"version": "0.3.
|
|
26
|
+
"version": "0.3.1",
|
|
27
27
|
"sha256": null
|
|
28
28
|
}
|
|
29
29
|
],
|
|
30
30
|
"skills": [
|
|
31
|
+
{
|
|
32
|
+
"name": "execution-mode-evaluation",
|
|
33
|
+
"file": "assets/skills/execution-mode-evaluation/SKILL.md",
|
|
34
|
+
"description": "Skill de decision de modo de ejecucion inline vs subagent-driven con CodeGraph",
|
|
35
|
+
"version": "0.3.1",
|
|
36
|
+
"sha256": "eaa7cd3205b22c6db79a5d5f542ea554d5f1ca2d57127490011ba3abe4cb912b"
|
|
37
|
+
},
|
|
31
38
|
{
|
|
32
39
|
"name": "brainstorming",
|
|
33
40
|
"file": "assets/skills/brainstorming/SKILL.md",
|
|
34
41
|
"description": "Skill de descubrimiento y exploración (Superpowers)",
|
|
35
|
-
"version": "0.3.
|
|
42
|
+
"version": "0.3.1",
|
|
36
43
|
"sha256": "ad15458c54912007ae3f708c698a11f0a4a58e2a7c7860a1ae8874db573c9e98"
|
|
37
44
|
},
|
|
38
45
|
{
|
|
39
46
|
"name": "writing-plans",
|
|
40
47
|
"file": "assets/skills/writing-plans/SKILL.md",
|
|
41
48
|
"description": "Skill de planificación de implementación (Superpowers)",
|
|
42
|
-
"version": "0.3.
|
|
49
|
+
"version": "0.3.1",
|
|
43
50
|
"sha256": "4d675df944b9c846e9066ff971861ad1c9673cd2c88375081b00a75872ad621a"
|
|
44
51
|
},
|
|
45
52
|
{
|
|
46
53
|
"name": "tdd",
|
|
47
54
|
"file": "assets/skills/tdd/SKILL.md",
|
|
48
55
|
"description": "Skill de test-driven development (Superpowers)",
|
|
49
|
-
"version": "0.3.
|
|
56
|
+
"version": "0.3.1",
|
|
50
57
|
"sha256": "7eacd8ee81dc5c0b85065c0392e37ee10314661f7edb59dd8e70a9e0dae8f371"
|
|
51
58
|
},
|
|
52
59
|
{
|
|
53
60
|
"name": "subagent-driven-development",
|
|
54
61
|
"file": "assets/skills/subagent-driven-development/SKILL.md",
|
|
55
62
|
"description": "Skill de ejecución con subagentes (Superpowers)",
|
|
56
|
-
"version": "0.3.
|
|
63
|
+
"version": "0.3.1",
|
|
57
64
|
"sha256": "14e0f685b1dc1d7e02b7226d18f037fe4b6cba49b512a1fadf67cfad2a9dcc96"
|
|
58
65
|
},
|
|
59
66
|
{
|
|
60
67
|
"name": "dispatching-parallel-agents",
|
|
61
68
|
"file": "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
62
69
|
"description": "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
63
|
-
"version": "0.3.
|
|
70
|
+
"version": "0.3.1",
|
|
64
71
|
"sha256": "281edf0c38f358497c7e2066fa8217a2ba3e2a39b4205c4af0c41d328fc035a1"
|
|
65
72
|
},
|
|
66
73
|
{
|
|
67
74
|
"name": "review",
|
|
68
75
|
"file": "assets/skills/review/SKILL.md",
|
|
69
76
|
"description": "Skill de revisión de código (Superpowers)",
|
|
70
|
-
"version": "0.3.
|
|
77
|
+
"version": "0.3.1",
|
|
71
78
|
"sha256": "c78d3beff45e9bb6b5e9e1d7155910f379e082d7aaf3c61b90d651d09e0d2e2a"
|
|
72
79
|
},
|
|
73
80
|
{
|
|
74
81
|
"name": "openspec-explore",
|
|
75
82
|
"file": "assets/skills/openspec-explore/SKILL.md",
|
|
76
83
|
"description": "Skill de exploración pre-spec (OpenSpec)",
|
|
77
|
-
"version": "0.3.
|
|
84
|
+
"version": "0.3.1",
|
|
78
85
|
"sha256": "1c75cab8672c2eb8b12f27a0b31f0b7fdb73c21c72583c1e8a566e09fe4108a6"
|
|
79
86
|
},
|
|
80
87
|
{
|
|
81
88
|
"name": "openspec-propose",
|
|
82
89
|
"file": "assets/skills/openspec-propose/SKILL.md",
|
|
83
90
|
"description": "Skill de generación de proposal (OpenSpec)",
|
|
84
|
-
"version": "0.3.
|
|
91
|
+
"version": "0.3.1",
|
|
85
92
|
"sha256": "ab88e9aa22db09559ccf7987d08adc0469b7c6fbe46498e63a3b64926f19e66b"
|
|
86
93
|
},
|
|
87
94
|
{
|
|
88
95
|
"name": "openspec-apply-change",
|
|
89
96
|
"file": "assets/skills/openspec-apply-change/SKILL.md",
|
|
90
97
|
"description": "Skill de aplicación de change (OpenSpec)",
|
|
91
|
-
"version": "0.3.
|
|
98
|
+
"version": "0.3.1",
|
|
92
99
|
"sha256": "847c2f88a66e8d5946c1fec422a5367c89eca5340839b659bbaaeb6f0bdac487"
|
|
93
100
|
},
|
|
94
101
|
{
|
|
95
102
|
"name": "openspec-archive-change",
|
|
96
103
|
"file": "assets/skills/openspec-archive-change/SKILL.md",
|
|
97
104
|
"description": "Skill de archivo de change (OpenSpec)",
|
|
98
|
-
"version": "0.3.
|
|
105
|
+
"version": "0.3.1",
|
|
99
106
|
"sha256": "3d35905ec40a081b8fd77b144426e540c67b1f50cc5801b655313a4fdfaa087a"
|
|
100
107
|
}
|
|
101
108
|
]
|