ostacky 0.1.2 → 0.1.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/README.md +5 -5
- package/dist/cli.js +18 -19
- package/manifest.json +15 -15
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -156,20 +156,20 @@ Tras instalar, el proyecto queda así:
|
|
|
156
156
|
|
|
157
157
|
```json
|
|
158
158
|
{
|
|
159
|
-
"version": "0.1.
|
|
159
|
+
"version": "0.1.3",
|
|
160
160
|
"lockedAt": "2025-01-01T00:00:00.000Z",
|
|
161
161
|
"repo": "JaimeHoracio/Ostacky",
|
|
162
|
-
"tag": "v0.1.
|
|
162
|
+
"tag": "v0.1.3",
|
|
163
163
|
"agents": {
|
|
164
164
|
"ostacky": {
|
|
165
|
-
"version": "0.1.
|
|
165
|
+
"version": "0.1.3",
|
|
166
166
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
167
167
|
"sha256": "abc123..."
|
|
168
168
|
}
|
|
169
169
|
},
|
|
170
170
|
"commands": {
|
|
171
171
|
"install-stack": {
|
|
172
|
-
"version": "0.1.
|
|
172
|
+
"version": "0.1.3",
|
|
173
173
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
174
174
|
"sha256": "def456..."
|
|
175
175
|
}
|
|
@@ -201,7 +201,7 @@ Ese paso es opcional. Si no aparece en la terminal, recargá OpenCode y volvé a
|
|
|
201
201
|
## Seguridad
|
|
202
202
|
|
|
203
203
|
- `opencode.jsonc` se versiona en el repo para compartir permisos y MCP de forma reproducible.
|
|
204
|
-
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.1.
|
|
204
|
+
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.1.3`), nunca `main` — instalaciones reproducibles
|
|
205
205
|
- Cada path de archivo descargado es validado para prevenir **path traversal**
|
|
206
206
|
- Los archivos incluyen **checksum SHA-256** opcional; si el manifest lo define, el contenido se verifica antes de escribir
|
|
207
207
|
- 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.1.
|
|
164
|
+
version: "0.1.3",
|
|
165
165
|
description: "Instalador interactivo de agentes y comandos para OpenCode",
|
|
166
166
|
type: "module",
|
|
167
167
|
bin: {
|
|
@@ -188,8 +188,7 @@ var package_default = {
|
|
|
188
188
|
],
|
|
189
189
|
license: "MIT",
|
|
190
190
|
dependencies: {
|
|
191
|
-
"@clack/prompts": "^0.9.0"
|
|
192
|
-
settings: "^0.1.2"
|
|
191
|
+
"@clack/prompts": "^0.9.0"
|
|
193
192
|
},
|
|
194
193
|
devDependencies: {
|
|
195
194
|
"@types/bun": "latest",
|
|
@@ -877,15 +876,15 @@ var L2 = () => {
|
|
|
877
876
|
import { join as join5 } from "path";
|
|
878
877
|
// manifest.json
|
|
879
878
|
var manifest_default = {
|
|
880
|
-
version: "0.1.
|
|
879
|
+
version: "0.1.3",
|
|
881
880
|
repo: "JaimeHoracio/Ostacky",
|
|
882
|
-
tag: "v0.1.
|
|
881
|
+
tag: "v0.1.3",
|
|
883
882
|
agents: [
|
|
884
883
|
{
|
|
885
884
|
name: "ostacky",
|
|
886
885
|
file: "assets/agents/ostacky.md",
|
|
887
886
|
description: "Agente principal de desarrollo con ejecución inline-first y local-first",
|
|
888
|
-
version: "0.1.
|
|
887
|
+
version: "0.1.3",
|
|
889
888
|
sha256: null
|
|
890
889
|
}
|
|
891
890
|
],
|
|
@@ -894,14 +893,14 @@ var manifest_default = {
|
|
|
894
893
|
name: "install-stack",
|
|
895
894
|
file: "assets/commands/install-stack.md",
|
|
896
895
|
description: "Instala el stack tecnológico del proyecto",
|
|
897
|
-
version: "0.1.
|
|
896
|
+
version: "0.1.3",
|
|
898
897
|
sha256: null
|
|
899
898
|
},
|
|
900
899
|
{
|
|
901
900
|
name: "opsx-sync",
|
|
902
901
|
file: "assets/commands/opsx-sync.md",
|
|
903
902
|
description: "Sincroniza delta specs del change activo (wrapper de openspec update)",
|
|
904
|
-
version: "0.1.
|
|
903
|
+
version: "0.1.3",
|
|
905
904
|
sha256: null
|
|
906
905
|
}
|
|
907
906
|
],
|
|
@@ -910,70 +909,70 @@ var manifest_default = {
|
|
|
910
909
|
name: "brainstorming",
|
|
911
910
|
file: "assets/skills/brainstorming/SKILL.md",
|
|
912
911
|
description: "Skill de descubrimiento y exploración (Superpowers)",
|
|
913
|
-
version: "0.1.
|
|
912
|
+
version: "0.1.3",
|
|
914
913
|
sha256: "ad15458c54912007ae3f708c698a11f0a4a58e2a7c7860a1ae8874db573c9e98"
|
|
915
914
|
},
|
|
916
915
|
{
|
|
917
916
|
name: "writing-plans",
|
|
918
917
|
file: "assets/skills/writing-plans/SKILL.md",
|
|
919
918
|
description: "Skill de planificación de implementación (Superpowers)",
|
|
920
|
-
version: "0.1.
|
|
919
|
+
version: "0.1.3",
|
|
921
920
|
sha256: "4d675df944b9c846e9066ff971861ad1c9673cd2c88375081b00a75872ad621a"
|
|
922
921
|
},
|
|
923
922
|
{
|
|
924
923
|
name: "tdd",
|
|
925
924
|
file: "assets/skills/tdd/SKILL.md",
|
|
926
925
|
description: "Skill de test-driven development (Superpowers)",
|
|
927
|
-
version: "0.1.
|
|
926
|
+
version: "0.1.3",
|
|
928
927
|
sha256: "7eacd8ee81dc5c0b85065c0392e37ee10314661f7edb59dd8e70a9e0dae8f371"
|
|
929
928
|
},
|
|
930
929
|
{
|
|
931
930
|
name: "subagent-driven-development",
|
|
932
931
|
file: "assets/skills/subagent-driven-development/SKILL.md",
|
|
933
932
|
description: "Skill de ejecución con subagentes (Superpowers)",
|
|
934
|
-
version: "0.1.
|
|
933
|
+
version: "0.1.3",
|
|
935
934
|
sha256: "14e0f685b1dc1d7e02b7226d18f037fe4b6cba49b512a1fadf67cfad2a9dcc96"
|
|
936
935
|
},
|
|
937
936
|
{
|
|
938
937
|
name: "dispatching-parallel-agents",
|
|
939
938
|
file: "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
940
939
|
description: "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
941
|
-
version: "0.1.
|
|
940
|
+
version: "0.1.3",
|
|
942
941
|
sha256: "281edf0c38f358497c7e2066fa8217a2ba3e2a39b4205c4af0c41d328fc035a1"
|
|
943
942
|
},
|
|
944
943
|
{
|
|
945
944
|
name: "review",
|
|
946
945
|
file: "assets/skills/review/SKILL.md",
|
|
947
946
|
description: "Skill de revisión de código (Superpowers)",
|
|
948
|
-
version: "0.1.
|
|
947
|
+
version: "0.1.3",
|
|
949
948
|
sha256: "c78d3beff45e9bb6b5e9e1d7155910f379e082d7aaf3c61b90d651d09e0d2e2a"
|
|
950
949
|
},
|
|
951
950
|
{
|
|
952
951
|
name: "openspec-explore",
|
|
953
952
|
file: "assets/skills/openspec-explore/SKILL.md",
|
|
954
953
|
description: "Skill de exploración pre-spec (OpenSpec)",
|
|
955
|
-
version: "0.1.
|
|
954
|
+
version: "0.1.3",
|
|
956
955
|
sha256: "1c75cab8672c2eb8b12f27a0b31f0b7fdb73c21c72583c1e8a566e09fe4108a6"
|
|
957
956
|
},
|
|
958
957
|
{
|
|
959
958
|
name: "openspec-propose",
|
|
960
959
|
file: "assets/skills/openspec-propose/SKILL.md",
|
|
961
960
|
description: "Skill de generación de proposal (OpenSpec)",
|
|
962
|
-
version: "0.1.
|
|
961
|
+
version: "0.1.3",
|
|
963
962
|
sha256: "ab88e9aa22db09559ccf7987d08adc0469b7c6fbe46498e63a3b64926f19e66b"
|
|
964
963
|
},
|
|
965
964
|
{
|
|
966
965
|
name: "openspec-apply-change",
|
|
967
966
|
file: "assets/skills/openspec-apply-change/SKILL.md",
|
|
968
967
|
description: "Skill de aplicación de change (OpenSpec)",
|
|
969
|
-
version: "0.1.
|
|
968
|
+
version: "0.1.3",
|
|
970
969
|
sha256: "847c2f88a66e8d5946c1fec422a5367c89eca5340839b659bbaaeb6f0bdac487"
|
|
971
970
|
},
|
|
972
971
|
{
|
|
973
972
|
name: "openspec-archive-change",
|
|
974
973
|
file: "assets/skills/openspec-archive-change/SKILL.md",
|
|
975
974
|
description: "Skill de archivo de change (OpenSpec)",
|
|
976
|
-
version: "0.1.
|
|
975
|
+
version: "0.1.3",
|
|
977
976
|
sha256: "3d35905ec40a081b8fd77b144426e540c67b1f50cc5801b655313a4fdfaa087a"
|
|
978
977
|
}
|
|
979
978
|
]
|
|
@@ -1159,7 +1158,7 @@ function clearLockfile(opencodeRoot) {
|
|
|
1159
1158
|
const lockfile = readLockfile(opencodeRoot);
|
|
1160
1159
|
if (!lockfile) {
|
|
1161
1160
|
writeLockfile(opencodeRoot, {
|
|
1162
|
-
version: "0.1.
|
|
1161
|
+
version: "0.1.3",
|
|
1163
1162
|
lockedAt: new Date().toISOString(),
|
|
1164
1163
|
repo: "",
|
|
1165
1164
|
tag: "",
|
package/manifest.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.1.
|
|
2
|
+
"version": "0.1.3",
|
|
3
3
|
"repo": "JaimeHoracio/Ostacky",
|
|
4
|
-
"tag": "v0.1.
|
|
4
|
+
"tag": "v0.1.3",
|
|
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.1.
|
|
10
|
+
"version": "0.1.3",
|
|
11
11
|
"sha256": null
|
|
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",
|
|
19
|
-
"version": "0.1.
|
|
19
|
+
"version": "0.1.3",
|
|
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.1.
|
|
26
|
+
"version": "0.1.3",
|
|
27
27
|
"sha256": null
|
|
28
28
|
}
|
|
29
29
|
],
|
|
@@ -32,70 +32,70 @@
|
|
|
32
32
|
"name": "brainstorming",
|
|
33
33
|
"file": "assets/skills/brainstorming/SKILL.md",
|
|
34
34
|
"description": "Skill de descubrimiento y exploración (Superpowers)",
|
|
35
|
-
"version": "0.1.
|
|
35
|
+
"version": "0.1.3",
|
|
36
36
|
"sha256": "ad15458c54912007ae3f708c698a11f0a4a58e2a7c7860a1ae8874db573c9e98"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
"name": "writing-plans",
|
|
40
40
|
"file": "assets/skills/writing-plans/SKILL.md",
|
|
41
41
|
"description": "Skill de planificación de implementación (Superpowers)",
|
|
42
|
-
"version": "0.1.
|
|
42
|
+
"version": "0.1.3",
|
|
43
43
|
"sha256": "4d675df944b9c846e9066ff971861ad1c9673cd2c88375081b00a75872ad621a"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"name": "tdd",
|
|
47
47
|
"file": "assets/skills/tdd/SKILL.md",
|
|
48
48
|
"description": "Skill de test-driven development (Superpowers)",
|
|
49
|
-
"version": "0.1.
|
|
49
|
+
"version": "0.1.3",
|
|
50
50
|
"sha256": "7eacd8ee81dc5c0b85065c0392e37ee10314661f7edb59dd8e70a9e0dae8f371"
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"name": "subagent-driven-development",
|
|
54
54
|
"file": "assets/skills/subagent-driven-development/SKILL.md",
|
|
55
55
|
"description": "Skill de ejecución con subagentes (Superpowers)",
|
|
56
|
-
"version": "0.1.
|
|
56
|
+
"version": "0.1.3",
|
|
57
57
|
"sha256": "14e0f685b1dc1d7e02b7226d18f037fe4b6cba49b512a1fadf67cfad2a9dcc96"
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"name": "dispatching-parallel-agents",
|
|
61
61
|
"file": "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
62
62
|
"description": "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
63
|
-
"version": "0.1.
|
|
63
|
+
"version": "0.1.3",
|
|
64
64
|
"sha256": "281edf0c38f358497c7e2066fa8217a2ba3e2a39b4205c4af0c41d328fc035a1"
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
67
|
"name": "review",
|
|
68
68
|
"file": "assets/skills/review/SKILL.md",
|
|
69
69
|
"description": "Skill de revisión de código (Superpowers)",
|
|
70
|
-
"version": "0.1.
|
|
70
|
+
"version": "0.1.3",
|
|
71
71
|
"sha256": "c78d3beff45e9bb6b5e9e1d7155910f379e082d7aaf3c61b90d651d09e0d2e2a"
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
"name": "openspec-explore",
|
|
75
75
|
"file": "assets/skills/openspec-explore/SKILL.md",
|
|
76
76
|
"description": "Skill de exploración pre-spec (OpenSpec)",
|
|
77
|
-
"version": "0.1.
|
|
77
|
+
"version": "0.1.3",
|
|
78
78
|
"sha256": "1c75cab8672c2eb8b12f27a0b31f0b7fdb73c21c72583c1e8a566e09fe4108a6"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"name": "openspec-propose",
|
|
82
82
|
"file": "assets/skills/openspec-propose/SKILL.md",
|
|
83
83
|
"description": "Skill de generación de proposal (OpenSpec)",
|
|
84
|
-
"version": "0.1.
|
|
84
|
+
"version": "0.1.3",
|
|
85
85
|
"sha256": "ab88e9aa22db09559ccf7987d08adc0469b7c6fbe46498e63a3b64926f19e66b"
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
"name": "openspec-apply-change",
|
|
89
89
|
"file": "assets/skills/openspec-apply-change/SKILL.md",
|
|
90
90
|
"description": "Skill de aplicación de change (OpenSpec)",
|
|
91
|
-
"version": "0.1.
|
|
91
|
+
"version": "0.1.3",
|
|
92
92
|
"sha256": "847c2f88a66e8d5946c1fec422a5367c89eca5340839b659bbaaeb6f0bdac487"
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
95
|
"name": "openspec-archive-change",
|
|
96
96
|
"file": "assets/skills/openspec-archive-change/SKILL.md",
|
|
97
97
|
"description": "Skill de archivo de change (OpenSpec)",
|
|
98
|
-
"version": "0.1.
|
|
98
|
+
"version": "0.1.3",
|
|
99
99
|
"sha256": "3d35905ec40a081b8fd77b144426e540c67b1f50cc5801b655313a4fdfaa087a"
|
|
100
100
|
}
|
|
101
101
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ostacky",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Instalador interactivo de agentes y comandos para OpenCode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -27,8 +27,7 @@
|
|
|
27
27
|
],
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@clack/prompts": "^0.9.0"
|
|
31
|
-
"settings": "^0.1.2"
|
|
30
|
+
"@clack/prompts": "^0.9.0"
|
|
32
31
|
},
|
|
33
32
|
"devDependencies": {
|
|
34
33
|
"@types/bun": "latest",
|