ostacky 0.0.5 → 0.0.6
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 +10 -7
- package/assets/agents/ostacky.md +6 -4
- package/assets/skills/brainstorming/SKILL.md +11 -22
- package/dist/cli.js +18 -18
- package/manifest.json +16 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Ostacky
|
|
2
2
|
|
|
3
|
-
Ostacky es el agente de [OpenCode](https://opencode.ai) que instalás en tu proyecto. Usa skills para ser más eficiente con tokens y evitar recorrer todo el proyecto cuando no hace falta. Los cambios se registran normalmente en specs con los skills de OpenSpec; si el cambio es de bajo impacto, podés saltearte esa generación.
|
|
3
|
+
Ostacky es el agente de [OpenCode](https://opencode.ai) que instalás en tu proyecto. Usa skills para ser más eficiente con tokens y evitar recorrer todo el proyecto cuando no hace falta. En cambios de bajo impacto prioriza ejecución inline; los subagentes quedan para slices realmente independientes. Los cambios se registran normalmente en specs con los skills de OpenSpec; si el cambio es de bajo impacto, podés saltearte esa generación.
|
|
4
4
|
|
|
5
5
|
## ¿Qué es?
|
|
6
6
|
|
|
@@ -12,6 +12,7 @@ Ostacky es el agente de [OpenCode](https://opencode.ai) que instalás en tu proy
|
|
|
12
12
|
- Mantener un registro de qué versión está instalada (`ostacky-lock.json`)
|
|
13
13
|
- Detectar y aplicar actualizaciones mostrando el diff de versiones antes de confirmar
|
|
14
14
|
- Evitar descargas repetidas gracias al cache local en `~/.opencode/cache/`
|
|
15
|
+
- Resolver tareas chicas sin overhead extra de coordinación.
|
|
15
16
|
|
|
16
17
|
## Requisitos
|
|
17
18
|
|
|
@@ -134,20 +135,20 @@ Tras instalar, el proyecto queda así:
|
|
|
134
135
|
|
|
135
136
|
```json
|
|
136
137
|
{
|
|
137
|
-
"version": "0.0.
|
|
138
|
+
"version": "0.0.6",
|
|
138
139
|
"lockedAt": "2025-01-01T00:00:00.000Z",
|
|
139
140
|
"repo": "JaimeHoracio/Ostacky",
|
|
140
|
-
"tag": "v0.0.
|
|
141
|
+
"tag": "v0.0.6",
|
|
141
142
|
"agents": {
|
|
142
143
|
"ostacky": {
|
|
143
|
-
"version": "0.0.
|
|
144
|
+
"version": "0.0.6",
|
|
144
145
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
145
146
|
"sha256": "abc123..."
|
|
146
147
|
}
|
|
147
148
|
},
|
|
148
149
|
"commands": {
|
|
149
150
|
"install-stack": {
|
|
150
|
-
"version": "0.0.
|
|
151
|
+
"version": "0.0.6",
|
|
151
152
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
152
153
|
"sha256": "def456..."
|
|
153
154
|
}
|
|
@@ -178,15 +179,17 @@ Ese paso es opcional. Si no aparece en la terminal, recargá OpenCode y volvé a
|
|
|
178
179
|
|
|
179
180
|
## Seguridad
|
|
180
181
|
|
|
181
|
-
-
|
|
182
|
+
- `opencode.jsonc` se versiona en el repo para compartir permisos y MCP de forma reproducible.
|
|
183
|
+
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.0.6`), nunca `main` — instalaciones reproducibles
|
|
182
184
|
- Cada path de archivo descargado es validado para prevenir **path traversal**
|
|
183
185
|
- Los archivos incluyen **checksum SHA-256** opcional; si el manifest lo define, el contenido se verifica antes de escribir
|
|
184
186
|
- El cache local (`~/.opencode/cache/`) también valida integridad al servir archivos cacheados
|
|
185
187
|
|
|
186
188
|
#### Restricciones de acceso a credenciales
|
|
187
189
|
|
|
188
|
-
- La configuración local de OpenCode (`opencode.jsonc
|
|
190
|
+
- La configuración local de OpenCode (`opencode.jsonc`) bloquea lectura y escritura de `*.env` y `.secret/**` con `deny`.
|
|
189
191
|
- La sesión sigue ejecutándose después del bloqueo porque `experimental.continue_loop_on_deny` está activado.
|
|
192
|
+
- Para worktrees, el repo prefiere `.worktrees/`; `~/.config/superpowers/worktrees` solo se usa con confirmación explícita.
|
|
190
193
|
|
|
191
194
|
## Cache
|
|
192
195
|
|
package/assets/agents/ostacky.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Agente unico que orquesta OpenSpec + Superpowers + CodeGraph con ruteo por nivel de impacto y
|
|
2
|
+
description: Agente unico que orquesta OpenSpec + Superpowers + CodeGraph con ruteo inline-first por nivel de impacto y subagentes solo para trabajo realmente independiente.
|
|
3
3
|
mode: primary
|
|
4
4
|
tools:
|
|
5
5
|
write: false
|
|
@@ -20,7 +20,7 @@ Eres **Ostacky**, el orquestador de desarrollo del proyecto.
|
|
|
20
20
|
- **Ruteo interno:** decide si el cambio es Nivel 0, Nivel 0+1 o Nivel 1+.
|
|
21
21
|
- **OpenSpec:** define requisitos y contratos cuando el cambio lo requiere.
|
|
22
22
|
- **Superpowers:** ejecuta, prueba, revisa y delega.
|
|
23
|
-
- **Subagentes:** workers de ejecucion para
|
|
23
|
+
- **Subagentes:** workers de ejecucion para slices realmente independientes; no se usan en tareas livianas porque duplican contexto y tokens.
|
|
24
24
|
|
|
25
25
|
## Principios
|
|
26
26
|
|
|
@@ -75,10 +75,11 @@ Eres **Ostacky**, el orquestador de desarrollo del proyecto.
|
|
|
75
75
|
|
|
76
76
|
1. Elegir el modo antes de ejecutar:
|
|
77
77
|
- **Inline** para Nivel 0, la ruta `directo` de Nivel 0+1 y cambios contenidos de Nivel 1+.
|
|
78
|
-
- **Subagent-driven** solo si
|
|
78
|
+
- **Subagent-driven** solo si la tarea se puede partir en slices autonomos con briefs mucho mas chicos que el contexto del coordinador y sin estado compartido.
|
|
79
79
|
2. **Superpowers** es el unico orquestador de ejecucion, TDD, review y delegacion.
|
|
80
80
|
3. Los subagentes son **execution-only**.
|
|
81
|
-
4. Los subagentes no
|
|
81
|
+
4. Los subagentes no se usan para "hacerlo mas rapido" por defecto: se usan para aislar complejidad cuando eso reduce contexto total.
|
|
82
|
+
5. Los subagentes no crean proposals, no planifican, no inician nueva delegacion y no repiten retrieval ya resuelto por el coordinador.
|
|
82
83
|
|
|
83
84
|
### 5. Sync y cierre
|
|
84
85
|
|
|
@@ -94,6 +95,7 @@ Eres **Ostacky**, el orquestador de desarrollo del proyecto.
|
|
|
94
95
|
|
|
95
96
|
- Si una decision ya esta en OpenSpec o en CodeGraph, no volver a resolverla.
|
|
96
97
|
- Si hay conflicto entre intuicion y CodeGraph, gana CodeGraph.
|
|
98
|
+
- Si una tarea cabe en un brief corto y un solo contexto, no lanzar subagentes.
|
|
97
99
|
- No usar glob/grep para descubrir el repositorio entero.
|
|
98
100
|
- No navegar el proyecto siguiendo imports uno por uno para descubrir alcance.
|
|
99
101
|
- No repetir la misma consulta si ya fue suficiente para resolver el scope.
|
|
@@ -22,7 +22,7 @@ Every project goes through this process. A todo list, a single-function utility,
|
|
|
22
22
|
You MUST create a task for each of these items and complete them in order:
|
|
23
23
|
|
|
24
24
|
1. **Explore project context** — check files, docs, recent commits
|
|
25
|
-
2. **
|
|
25
|
+
2. **Use visual companion only when the user explicitly asks for browser/visual help** — read the Visual Companion section below before doing so.
|
|
26
26
|
3. **Ask clarifying questions** — one at a time, understand purpose/constraints/success criteria
|
|
27
27
|
4. **Propose 2-3 approaches** — with trade-offs and your recommendation
|
|
28
28
|
5. **Present design** — in sections scaled to their complexity, get user approval after each section
|
|
@@ -36,8 +36,8 @@ You MUST create a task for each of these items and complete them in order:
|
|
|
36
36
|
```dot
|
|
37
37
|
digraph brainstorming {
|
|
38
38
|
"Explore project context" [shape=box];
|
|
39
|
-
"
|
|
40
|
-
"
|
|
39
|
+
"User explicitly asks for browser/visual help?" [shape=diamond];
|
|
40
|
+
"Read Visual Companion guide" [shape=box];
|
|
41
41
|
"Ask clarifying questions" [shape=box];
|
|
42
42
|
"Propose 2-3 approaches" [shape=box];
|
|
43
43
|
"Present design sections" [shape=box];
|
|
@@ -47,10 +47,10 @@ digraph brainstorming {
|
|
|
47
47
|
"User reviews spec?" [shape=diamond];
|
|
48
48
|
"Invoke writing-plans skill" [shape=doublecircle];
|
|
49
49
|
|
|
50
|
-
"Explore project context" -> "
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
50
|
+
"Explore project context" -> "User explicitly asks for browser/visual help?";
|
|
51
|
+
"User explicitly asks for browser/visual help?" -> "Read Visual Companion guide" [label="yes"];
|
|
52
|
+
"User explicitly asks for browser/visual help?" -> "Ask clarifying questions" [label="no"];
|
|
53
|
+
"Read Visual Companion guide" -> "Ask clarifying questions";
|
|
54
54
|
"Ask clarifying questions" -> "Propose 2-3 approaches";
|
|
55
55
|
"Propose 2-3 approaches" -> "Present design sections";
|
|
56
56
|
"Present design sections" -> "User approves design?";
|
|
@@ -146,19 +146,8 @@ Wait for the user's response. If they request changes, make them and re-run the
|
|
|
146
146
|
|
|
147
147
|
## Visual Companion
|
|
148
148
|
|
|
149
|
-
|
|
149
|
+
Browser use is text-only by default.
|
|
150
150
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
**This offer MUST be its own message.** Do not combine it with clarifying questions, context summaries, or any other content. The message should contain ONLY the offer above and nothing else. Wait for the user's response before continuing. If they decline, proceed with text-only brainstorming.
|
|
155
|
-
|
|
156
|
-
**Per-question decision:** Even after the user accepts, decide FOR EACH QUESTION whether to use the browser or the terminal. The test: **would the user understand this better by seeing it than reading it?**
|
|
157
|
-
|
|
158
|
-
- **Use the browser** for content that IS visual — mockups, wireframes, layout comparisons, architecture diagrams, side-by-side visual designs
|
|
159
|
-
- **Use the terminal** for content that is text — requirements questions, conceptual choices, tradeoff lists, A/B/C/D text options, scope decisions
|
|
160
|
-
|
|
161
|
-
A question about a UI topic is not automatically a visual question. "What does personality mean in this context?" is a conceptual question — use the terminal. "Which wizard layout works better?" is a visual question — use the browser.
|
|
162
|
-
|
|
163
|
-
If they agree to the companion, read the detailed guide before proceeding:
|
|
164
|
-
`skills/brainstorming/visual-companion.md`
|
|
151
|
+
- Only use the browser when the user explicitly asks for browser/visual help.
|
|
152
|
+
- Do not suggest the browser just because it might explain something more clearly.
|
|
153
|
+
- If the user asks for browser/visual help, read `skills/brainstorming/visual-companion.md` before proceeding.
|
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.0.
|
|
164
|
+
version: "0.0.6",
|
|
165
165
|
description: "Instalador interactivo de agentes y comandos para OpenCode",
|
|
166
166
|
type: "module",
|
|
167
167
|
bin: {
|
|
@@ -877,15 +877,15 @@ var L2 = () => {
|
|
|
877
877
|
import { join as join5 } from "path";
|
|
878
878
|
// manifest.json
|
|
879
879
|
var manifest_default = {
|
|
880
|
-
version: "0.0.
|
|
880
|
+
version: "0.0.6",
|
|
881
881
|
repo: "JaimeHoracio/Ostacky",
|
|
882
|
-
tag: "v0.0.
|
|
882
|
+
tag: "v0.0.6",
|
|
883
883
|
agents: [
|
|
884
884
|
{
|
|
885
885
|
name: "ostacky",
|
|
886
886
|
file: "assets/agents/ostacky.md",
|
|
887
|
-
description: "Agente principal de desarrollo con
|
|
888
|
-
version: "0.0.
|
|
887
|
+
description: "Agente principal de desarrollo con ejecución inline-first y local-first",
|
|
888
|
+
version: "0.0.6",
|
|
889
889
|
sha256: null
|
|
890
890
|
}
|
|
891
891
|
],
|
|
@@ -894,14 +894,14 @@ var manifest_default = {
|
|
|
894
894
|
name: "install-stack",
|
|
895
895
|
file: "assets/commands/install-stack.md",
|
|
896
896
|
description: "Instala el stack tecnológico del proyecto",
|
|
897
|
-
version: "0.0.
|
|
897
|
+
version: "0.0.6",
|
|
898
898
|
sha256: null
|
|
899
899
|
},
|
|
900
900
|
{
|
|
901
901
|
name: "opsx-sync",
|
|
902
902
|
file: "assets/commands/opsx-sync.md",
|
|
903
903
|
description: "Sincroniza delta specs del change activo (wrapper de openspec update)",
|
|
904
|
-
version: "0.0.
|
|
904
|
+
version: "0.0.6",
|
|
905
905
|
sha256: null
|
|
906
906
|
}
|
|
907
907
|
],
|
|
@@ -910,70 +910,70 @@ var manifest_default = {
|
|
|
910
910
|
name: "brainstorming",
|
|
911
911
|
file: "assets/skills/brainstorming/SKILL.md",
|
|
912
912
|
description: "Skill de descubrimiento y exploración (Superpowers)",
|
|
913
|
-
version: "0.0.
|
|
913
|
+
version: "0.0.6",
|
|
914
914
|
sha256: "22be76380b086c4ac6d38b8b124f6f7df47c32a67237a6ceaf8c7fd19aa524b0"
|
|
915
915
|
},
|
|
916
916
|
{
|
|
917
917
|
name: "writing-plans",
|
|
918
918
|
file: "assets/skills/writing-plans/SKILL.md",
|
|
919
919
|
description: "Skill de planificación de implementación (Superpowers)",
|
|
920
|
-
version: "0.0.
|
|
920
|
+
version: "0.0.6",
|
|
921
921
|
sha256: "4d56ce833af79c628e72cd95b06d13597131a09f9d98aae0a42c6a98a8ee1b95"
|
|
922
922
|
},
|
|
923
923
|
{
|
|
924
924
|
name: "tdd",
|
|
925
925
|
file: "assets/skills/tdd/SKILL.md",
|
|
926
926
|
description: "Skill de test-driven development (Superpowers)",
|
|
927
|
-
version: "0.0.
|
|
927
|
+
version: "0.0.6",
|
|
928
928
|
sha256: "b5cd98b3c122162b5a5eac3c78858a64ba165bf4e8c251d8a804a593c0c72312"
|
|
929
929
|
},
|
|
930
930
|
{
|
|
931
931
|
name: "subagent-driven-development",
|
|
932
932
|
file: "assets/skills/subagent-driven-development/SKILL.md",
|
|
933
933
|
description: "Skill de ejecución con subagentes (Superpowers)",
|
|
934
|
-
version: "0.0.
|
|
934
|
+
version: "0.0.6",
|
|
935
935
|
sha256: "7534b60788e05644831347194b1f99bcb41e2eda130994cfddafee3146ba63bd"
|
|
936
936
|
},
|
|
937
937
|
{
|
|
938
938
|
name: "dispatching-parallel-agents",
|
|
939
939
|
file: "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
940
940
|
description: "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
941
|
-
version: "0.0.
|
|
941
|
+
version: "0.0.6",
|
|
942
942
|
sha256: "b7e99d62c5d2ade21a3b6cdc94a7f90772e23fe3294ca600386f192f6181f6b2"
|
|
943
943
|
},
|
|
944
944
|
{
|
|
945
945
|
name: "review",
|
|
946
946
|
file: "assets/skills/review/SKILL.md",
|
|
947
947
|
description: "Skill de revisión de código (Superpowers)",
|
|
948
|
-
version: "0.0.
|
|
948
|
+
version: "0.0.6",
|
|
949
949
|
sha256: "af8fd392835967111e865f170d90d3dd9b8266b517ffb7d551dffda704500a90"
|
|
950
950
|
},
|
|
951
951
|
{
|
|
952
952
|
name: "openspec-explore",
|
|
953
953
|
file: "assets/skills/openspec-explore/SKILL.md",
|
|
954
954
|
description: "Skill de exploración pre-spec (OpenSpec)",
|
|
955
|
-
version: "0.0.
|
|
955
|
+
version: "0.0.6",
|
|
956
956
|
sha256: "c3eaff7d64b7e5e757b120dd231d2e6b56e9f440055dc9ab5431b466d6244bd7"
|
|
957
957
|
},
|
|
958
958
|
{
|
|
959
959
|
name: "openspec-propose",
|
|
960
960
|
file: "assets/skills/openspec-propose/SKILL.md",
|
|
961
961
|
description: "Skill de generación de proposal (OpenSpec)",
|
|
962
|
-
version: "0.0.
|
|
962
|
+
version: "0.0.6",
|
|
963
963
|
sha256: "28c59bdce6e9af0ab07102b2e6d0b47a0f0dc2f1bfb8321576d47f6c240e778b"
|
|
964
964
|
},
|
|
965
965
|
{
|
|
966
966
|
name: "openspec-apply-change",
|
|
967
967
|
file: "assets/skills/openspec-apply-change/SKILL.md",
|
|
968
968
|
description: "Skill de aplicación de change (OpenSpec)",
|
|
969
|
-
version: "0.0.
|
|
969
|
+
version: "0.0.6",
|
|
970
970
|
sha256: "8fa8182e40fd92cefbbcc1e303d9aa9c02e2b7f3f2c0625cb61fb916e4fc5760"
|
|
971
971
|
},
|
|
972
972
|
{
|
|
973
973
|
name: "openspec-archive-change",
|
|
974
974
|
file: "assets/skills/openspec-archive-change/SKILL.md",
|
|
975
975
|
description: "Skill de archivo de change (OpenSpec)",
|
|
976
|
-
version: "0.0.
|
|
976
|
+
version: "0.0.6",
|
|
977
977
|
sha256: "564b8dca28084c75ca192137113e9186c4fb31d2de0e26c081fd67c37f7d4a56"
|
|
978
978
|
}
|
|
979
979
|
]
|
|
@@ -1159,7 +1159,7 @@ function clearLockfile(opencodeRoot) {
|
|
|
1159
1159
|
const lockfile = readLockfile(opencodeRoot);
|
|
1160
1160
|
if (!lockfile) {
|
|
1161
1161
|
writeLockfile(opencodeRoot, {
|
|
1162
|
-
version: "0.0.
|
|
1162
|
+
version: "0.0.6",
|
|
1163
1163
|
lockedAt: new Date().toISOString(),
|
|
1164
1164
|
repo: "",
|
|
1165
1165
|
tag: "",
|
package/manifest.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.6",
|
|
3
3
|
"repo": "JaimeHoracio/Ostacky",
|
|
4
|
-
"tag": "v0.0.
|
|
4
|
+
"tag": "v0.0.6",
|
|
5
5
|
"agents": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ostacky",
|
|
8
8
|
"file": "assets/agents/ostacky.md",
|
|
9
|
-
"description": "Agente principal de desarrollo con
|
|
10
|
-
"version": "0.0.
|
|
9
|
+
"description": "Agente principal de desarrollo con ejecución inline-first y local-first",
|
|
10
|
+
"version": "0.0.6",
|
|
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.0.
|
|
19
|
+
"version": "0.0.6",
|
|
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.0.
|
|
26
|
+
"version": "0.0.6",
|
|
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.0.
|
|
35
|
+
"version": "0.0.6",
|
|
36
36
|
"sha256": "22be76380b086c4ac6d38b8b124f6f7df47c32a67237a6ceaf8c7fd19aa524b0"
|
|
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.0.
|
|
42
|
+
"version": "0.0.6",
|
|
43
43
|
"sha256": "4d56ce833af79c628e72cd95b06d13597131a09f9d98aae0a42c6a98a8ee1b95"
|
|
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.0.
|
|
49
|
+
"version": "0.0.6",
|
|
50
50
|
"sha256": "b5cd98b3c122162b5a5eac3c78858a64ba165bf4e8c251d8a804a593c0c72312"
|
|
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.0.
|
|
56
|
+
"version": "0.0.6",
|
|
57
57
|
"sha256": "7534b60788e05644831347194b1f99bcb41e2eda130994cfddafee3146ba63bd"
|
|
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.0.
|
|
63
|
+
"version": "0.0.6",
|
|
64
64
|
"sha256": "b7e99d62c5d2ade21a3b6cdc94a7f90772e23fe3294ca600386f192f6181f6b2"
|
|
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.0.
|
|
70
|
+
"version": "0.0.6",
|
|
71
71
|
"sha256": "af8fd392835967111e865f170d90d3dd9b8266b517ffb7d551dffda704500a90"
|
|
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.0.
|
|
77
|
+
"version": "0.0.6",
|
|
78
78
|
"sha256": "c3eaff7d64b7e5e757b120dd231d2e6b56e9f440055dc9ab5431b466d6244bd7"
|
|
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.0.
|
|
84
|
+
"version": "0.0.6",
|
|
85
85
|
"sha256": "28c59bdce6e9af0ab07102b2e6d0b47a0f0dc2f1bfb8321576d47f6c240e778b"
|
|
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.0.
|
|
91
|
+
"version": "0.0.6",
|
|
92
92
|
"sha256": "8fa8182e40fd92cefbbcc1e303d9aa9c02e2b7f3f2c0625cb61fb916e4fc5760"
|
|
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.0.
|
|
98
|
+
"version": "0.0.6",
|
|
99
99
|
"sha256": "564b8dca28084c75ca192137113e9186c4fb31d2de0e26c081fd67c37f7d4a56"
|
|
100
100
|
}
|
|
101
101
|
]
|