ostacky 0.8.3 → 0.8.4
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 +12 -12
- package/assets/agents/ostacky.md +3 -3
- package/assets/commands/install-stack.md +2 -2
- package/assets/mcp/ostacky-controller/index.js +2 -2
- package/assets/mcp/ostacky-controller/package.json +1 -1
- package/dist/cli.js +46 -46
- package/manifest.json +151 -151
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -246,37 +246,37 @@ Tras instalar (`--scope local`), el proyecto queda así:
|
|
|
246
246
|
|
|
247
247
|
```json
|
|
248
248
|
{
|
|
249
|
-
"version": "0.8.
|
|
249
|
+
"version": "0.8.4",
|
|
250
250
|
"lockedAt": "2025-01-01T00:00:00.000Z",
|
|
251
251
|
"repo": "JaimeHoracio/Ostacky",
|
|
252
|
-
"tag": "v0.8.
|
|
252
|
+
"tag": "v0.8.4",
|
|
253
253
|
"agents": {
|
|
254
254
|
"ostacky": {
|
|
255
|
-
"version": "0.8.
|
|
255
|
+
"version": "0.8.4",
|
|
256
256
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
257
257
|
"sha256": "abc123..."
|
|
258
258
|
}
|
|
259
259
|
},
|
|
260
260
|
"commands": {
|
|
261
261
|
"install-stack": {
|
|
262
|
-
"version": "0.8.
|
|
262
|
+
"version": "0.8.4",
|
|
263
263
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
264
264
|
"sha256": "def456..."
|
|
265
265
|
},
|
|
266
266
|
"opsx-sync": {
|
|
267
|
-
"version": "0.8.
|
|
267
|
+
"version": "0.8.4",
|
|
268
268
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
269
269
|
"sha256": "ghi789..."
|
|
270
270
|
}
|
|
271
271
|
},
|
|
272
272
|
"skills": {
|
|
273
|
-
"brainstorming": { "version": "0.8.
|
|
274
|
-
"execution-mode-evaluation": { "version": "0.8.
|
|
275
|
-
"openspec-propose": { "version": "0.8.
|
|
273
|
+
"brainstorming": { "version": "0.8.4", ... },
|
|
274
|
+
"execution-mode-evaluation": { "version": "0.8.4", ... },
|
|
275
|
+
"openspec-propose": { "version": "0.8.4", ... }
|
|
276
276
|
},
|
|
277
277
|
"mcpServers": {
|
|
278
|
-
"ostacky-controller": { "version": "0.8.
|
|
279
|
-
"openspec": { "version": "0.8.
|
|
278
|
+
"ostacky-controller": { "version": "0.8.4", ... },
|
|
279
|
+
"openspec": { "version": "0.8.4", ... }
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
```
|
|
@@ -308,7 +308,7 @@ Es opcional y solo necesario si algo falló durante la instalación o si querés
|
|
|
308
308
|
## Seguridad
|
|
309
309
|
|
|
310
310
|
- `opencode.jsonc` se versiona en el repo para compartir permisos y MCP de forma reproducible.
|
|
311
|
-
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.8.
|
|
311
|
+
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.8.4`), nunca `main` — instalaciones reproducibles
|
|
312
312
|
- Cada path de archivo descargado es validado para prevenir **path traversal**
|
|
313
313
|
- Los archivos incluyen **checksum SHA-256** opcional; si el manifest lo define, el contenido se verifica antes de escribir
|
|
314
314
|
- El cache local (`.opencode/cache/`) también valida integridad al servir archivos cacheados
|
|
@@ -365,7 +365,7 @@ CodeGraph está instalado en `.opencode/tools/codegraph/bin/codegraph` y se conf
|
|
|
365
365
|
| `.opencode/tools/codegraph/bin/codegraph status` | Muestra estado del index y archivos pendientes |
|
|
366
366
|
| `.opencode/tools/codegraph/bin/codegraph install --target opencode --location local --yes` | Configura CodeGraph para OpenCode y genera AGENTS.md |
|
|
367
367
|
|
|
368
|
-
> **Windows:** si ves `Command failed: cmd.exe /d /c call ... codegraph.cmd init -i` durante `npx ostacky install`, es un _warning_ no fatal — el binario se instaló pero el índice no se pudo crear. Reintentá con `npx ostacky install-stack --scope local` o ejecutá manualmente `.opencode\tools\codegraph\bin\codegraph.exe init -i` (o `codegraph.cmd` si no hay `.exe`) dentro del proyecto. Desde v0.8.
|
|
368
|
+
> **Windows:** si ves `Command failed: cmd.exe /d /c call ... codegraph.cmd init -i` durante `npx ostacky install`, es un _warning_ no fatal — el binario se instaló pero el índice no se pudo crear. Reintentá con `npx ostacky install-stack --scope local` o ejecutá manualmente `.opencode\tools\codegraph\bin\codegraph.exe init -i` (o `codegraph.cmd` si no hay `.exe`) dentro del proyecto. Desde v0.8.4 el instalador usa el patrón resiliente de Engram (strip 0 + búsqueda recursiva) y loguea `projectRoot|toolsDir` para diagnosticar scope.
|
|
369
369
|
|
|
370
370
|
## Licencia
|
|
371
371
|
|
package/assets/agents/ostacky.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Orquestador principal — rutea por nivel, orquesta CodeGraph + OpenSpec + Superpowers.
|
|
3
3
|
mode: primary
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.4
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
Sos **Ostacky v0.8.
|
|
7
|
+
Sos **Ostacky v0.8.4**, orquestás, no implementás. Interpretás, clasificás (0/0+1/1+), ruteás y coordinás.
|
|
8
8
|
|
|
9
|
-
> **Versión:** `0.8.
|
|
9
|
+
> **Versión:** `0.8.4` (sincronizada desde `package.json` vía `scripts/sync-version.ts`). Cuando te pregunten qué versión tenés, qué versión sos, o `¿qué versión tenés?` / `version` / `¿en qué versión estás?`, respondé exactamente: **"Ostacky v0.8.4"** (o `v0.8.4` si te piden solo el número). No inventes otra versión.
|
|
10
10
|
|
|
11
11
|
## Reglas innegociables
|
|
12
12
|
|
|
@@ -5,13 +5,13 @@ 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.8.
|
|
8
|
+
**Nota:** A partir de v0.8.4, `npx ostacky install` ya instala automáticamente el stack completo (CodeGraph, OpenSpec, Engram, 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
|
|
|
12
12
|
**Origen del set curado:** el set de 15 skills referenciado en `assets/agents/ostacky.md` está bundleado en `assets/skills/` dentro del paquete npm. La definición del set y su trazabilidad viven en `manifest.json` y `.opencode/ostacky-lock.json`.
|
|
13
13
|
|
|
14
|
-
## Scope de instalación — local vs global (desde v0.8.
|
|
14
|
+
## Scope de instalación — local vs global (desde v0.8.4)
|
|
15
15
|
|
|
16
16
|
`npx ostacky install` soporta `--scope local|global|auto` (también `--scope=...`):
|
|
17
17
|
|
|
@@ -2373,7 +2373,7 @@ function safeHandler(fn, options = {}) {
|
|
|
2373
2373
|
|
|
2374
2374
|
const server = new McpServer({
|
|
2375
2375
|
name: 'ostacky-controller',
|
|
2376
|
-
version: '0.8.
|
|
2376
|
+
version: '0.8.4',
|
|
2377
2377
|
});
|
|
2378
2378
|
|
|
2379
2379
|
server.registerTool(
|
|
@@ -2973,7 +2973,7 @@ function setupGracefulShutdown(ctrl) {
|
|
|
2973
2973
|
}
|
|
2974
2974
|
|
|
2975
2975
|
async function main() {
|
|
2976
|
-
log('Starting ostacky-controller MCP v0.8.
|
|
2976
|
+
log('Starting ostacky-controller MCP v0.8.4...');
|
|
2977
2977
|
log('State path:', { path: statePath });
|
|
2978
2978
|
// Clean up stale tmp/lock files from previous runs
|
|
2979
2979
|
cleanupTmpFiles(statePath);
|
package/dist/cli.js
CHANGED
|
@@ -621,31 +621,31 @@ var init_fs = __esm(() => {
|
|
|
621
621
|
var manifest_default;
|
|
622
622
|
var init_manifest = __esm(() => {
|
|
623
623
|
manifest_default = {
|
|
624
|
-
version: "0.8.
|
|
624
|
+
version: "0.8.4",
|
|
625
625
|
repo: "JaimeHoracio/Ostacky",
|
|
626
|
-
tag: "v0.8.
|
|
626
|
+
tag: "v0.8.4",
|
|
627
627
|
agents: [
|
|
628
628
|
{
|
|
629
629
|
name: "ostacky",
|
|
630
630
|
file: "assets/agents/ostacky.md",
|
|
631
|
-
description: "Orquestador con recuperación automática (nunca se congela), ruteo por nivel de impacto, controller MCP con SDK oficial, edición segura con fallback inline, y delegación en OpenSpec + Superpowers. v0.8.
|
|
632
|
-
version: "0.8.
|
|
633
|
-
sha256: "
|
|
631
|
+
description: "Orquestador con recuperación automática (nunca se congela), ruteo por nivel de impacto, controller MCP con SDK oficial, edición segura con fallback inline, y delegación en OpenSpec + Superpowers. v0.8.4: prune de skills obsoletas, lastHandoff, getAvailableTransitions, consecutiveFailures real, mem_session_summary automático al cierre.",
|
|
632
|
+
version: "0.8.4",
|
|
633
|
+
sha256: "3e08cce52941622ff7897ee71020b26d165e473597a4f85723cf92447b17faaa"
|
|
634
634
|
}
|
|
635
635
|
],
|
|
636
636
|
commands: [
|
|
637
637
|
{
|
|
638
638
|
name: "install-stack",
|
|
639
639
|
file: "assets/commands/install-stack.md",
|
|
640
|
-
description: "Instala el stack tecnológico del proyecto (CodeGraph, skills, OpenSpec, Engram, controller plugin). v0.8.
|
|
641
|
-
version: "0.8.
|
|
642
|
-
sha256: "
|
|
640
|
+
description: "Instala el stack tecnológico del proyecto (CodeGraph, skills, OpenSpec, Engram, controller plugin). v0.8.4: controller plugin como alma hard-gate, Context7 removido del stack.",
|
|
641
|
+
version: "0.8.4",
|
|
642
|
+
sha256: "2527559c18ac21187af6333d8bf9f6899812a5268604a8cfb76e2586aacc8367"
|
|
643
643
|
},
|
|
644
644
|
{
|
|
645
645
|
name: "opsx-sync",
|
|
646
646
|
file: "assets/commands/opsx-sync.md",
|
|
647
647
|
description: "Sincroniza delta specs del change activo sin inicializar CodeGraph si ya existe índice",
|
|
648
|
-
version: "0.8.
|
|
648
|
+
version: "0.8.4",
|
|
649
649
|
sha256: "fe0158478f2ca63b315037a85fc1632b77868532e319af6c7384285441767d64"
|
|
650
650
|
}
|
|
651
651
|
],
|
|
@@ -653,15 +653,15 @@ var init_manifest = __esm(() => {
|
|
|
653
653
|
{
|
|
654
654
|
name: "ostacky-controller",
|
|
655
655
|
file: "assets/mcp/ostacky-controller/",
|
|
656
|
-
description: "Máquina de estados persistida con @modelcontextprotocol/server SDK. v0.8.
|
|
657
|
-
version: "0.8.
|
|
658
|
-
sha256: "
|
|
656
|
+
description: "Máquina de estados persistida con @modelcontextprotocol/server SDK. v0.8.4: 22 tools (incluye set_handoff, get_handoff, clear_handoff, get_available_transitions funcional). Bugfixes: consecutiveFailures real, lastHandoff state, defaultChoice persistido. Robustez: degraded mode automático tras 3 fallos, persistence condicional para Nivel 0, prune de skills obsoletas.",
|
|
657
|
+
version: "0.8.4",
|
|
658
|
+
sha256: "c242f7e4cdad43269134868364b3a1544d192d6362030c7000e7eee589d7e26d"
|
|
659
659
|
},
|
|
660
660
|
{
|
|
661
661
|
name: "openspec",
|
|
662
662
|
file: "assets/mcp/openspec/",
|
|
663
663
|
description: "MCP server local para OpenSpec - proposal, apply, archive, sync de cambios",
|
|
664
|
-
version: "0.8.
|
|
664
|
+
version: "0.8.4",
|
|
665
665
|
sha256: "fa4be28bfc1e75db8f1a037e2580f04a60066c80e8e5934e90e1041020d04609"
|
|
666
666
|
}
|
|
667
667
|
],
|
|
@@ -670,106 +670,106 @@ var init_manifest = __esm(() => {
|
|
|
670
670
|
name: "brainstorming",
|
|
671
671
|
file: "assets/skills/brainstorming/SKILL.md",
|
|
672
672
|
description: "Skill unificado de pensamiento con dos modos: creative-design (producción de diseño → transición a implementación directa o openspec-propose) y open-exploration (exploración libre)",
|
|
673
|
-
version: "0.8.
|
|
674
|
-
sha256: "
|
|
673
|
+
version: "0.8.4",
|
|
674
|
+
sha256: "1e8ad4dc54ae4da0fc581b3968e9e255d43a07d2911f974f953c438a8244b728"
|
|
675
675
|
},
|
|
676
676
|
{
|
|
677
677
|
name: "execution-mode-evaluation",
|
|
678
678
|
file: "assets/skills/execution-mode-evaluation/SKILL.md",
|
|
679
679
|
description: "Skill de análisis de modo de ejecución — output reconciliado con controller snapshot contract (recommendation field)",
|
|
680
|
-
version: "0.8.
|
|
681
|
-
sha256: "
|
|
680
|
+
version: "0.8.4",
|
|
681
|
+
sha256: "b121879987c34185285754b56c2ad0a74b4f31c5fe9e2849f7f99130b8f7f20f"
|
|
682
682
|
},
|
|
683
683
|
{
|
|
684
684
|
name: "tdd",
|
|
685
685
|
file: "assets/skills/tdd/SKILL.md",
|
|
686
686
|
description: "Skill de test-driven development (Superpowers)",
|
|
687
|
-
version: "0.8.
|
|
688
|
-
sha256: "
|
|
687
|
+
version: "0.8.4",
|
|
688
|
+
sha256: "2932bb3c38b2e41305ec8aa375a7800259eda1bba6bbecfa5b6c4de850b2be43"
|
|
689
689
|
},
|
|
690
690
|
{
|
|
691
691
|
name: "subagent-driven-development",
|
|
692
692
|
file: "assets/skills/subagent-driven-development/SKILL.md",
|
|
693
693
|
description: "Skill de ejecución con subagentes (Superpowers) — ejecuta solo después de confirmación del coordinador Ostacky",
|
|
694
|
-
version: "0.8.
|
|
695
|
-
sha256: "
|
|
694
|
+
version: "0.8.4",
|
|
695
|
+
sha256: "bea7788e897cfae9aeb457eab6cda2ec8822f253b23fd868dc481ddec45cd627"
|
|
696
696
|
},
|
|
697
697
|
{
|
|
698
698
|
name: "dispatching-parallel-agents",
|
|
699
699
|
file: "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
700
700
|
description: "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
701
|
-
version: "0.8.
|
|
702
|
-
sha256: "
|
|
701
|
+
version: "0.8.4",
|
|
702
|
+
sha256: "57e3829cc1217e46e693049eaf910f8fad58c27f6d1ec3e37ab7534993123ab6"
|
|
703
703
|
},
|
|
704
704
|
{
|
|
705
705
|
name: "review",
|
|
706
706
|
file: "assets/skills/review/SKILL.md",
|
|
707
707
|
description: "Skill de revisión de código (Superpowers)",
|
|
708
|
-
version: "0.8.
|
|
709
|
-
sha256: "
|
|
708
|
+
version: "0.8.4",
|
|
709
|
+
sha256: "e6928f7e5fe2dc7db98f16531d47aa739bb282c4d8ef05ca867d27ab6a8cdb95"
|
|
710
710
|
},
|
|
711
711
|
{
|
|
712
712
|
name: "receiving-code-review",
|
|
713
713
|
file: "assets/skills/receiving-code-review/SKILL.md",
|
|
714
714
|
description: "Skill de recibir y procesar feedback de code review",
|
|
715
|
-
version: "0.8.
|
|
716
|
-
sha256: "
|
|
715
|
+
version: "0.8.4",
|
|
716
|
+
sha256: "8cccf2b6234be4dfbfd426d0ba4b3e26d3ed8f416adaf1d78e8e3b8ef39067df"
|
|
717
717
|
},
|
|
718
718
|
{
|
|
719
719
|
name: "openspec-propose",
|
|
720
720
|
file: "assets/skills/openspec-propose/SKILL.md",
|
|
721
721
|
description: "Skill de generación de proposal (OpenSpec)",
|
|
722
|
-
version: "0.8.
|
|
723
|
-
sha256: "
|
|
722
|
+
version: "0.8.4",
|
|
723
|
+
sha256: "36f5d39ad42360259516dfd6ba60673fd62a5ce54b69ae4d159816b73b4543f6"
|
|
724
724
|
},
|
|
725
725
|
{
|
|
726
726
|
name: "openspec-apply-change",
|
|
727
727
|
file: "assets/skills/openspec-apply-change/SKILL.md",
|
|
728
728
|
description: "Skill de aplicación de change (OpenSpec)",
|
|
729
|
-
version: "0.8.
|
|
730
|
-
sha256: "
|
|
729
|
+
version: "0.8.4",
|
|
730
|
+
sha256: "936c66a3e13a78375eab0d979e8d7d813b9fb070f337034128ce40f9c3f10766"
|
|
731
731
|
},
|
|
732
732
|
{
|
|
733
733
|
name: "openspec-archive-change",
|
|
734
734
|
file: "assets/skills/openspec-archive-change/SKILL.md",
|
|
735
735
|
description: "Skill de archivo de change (OpenSpec)",
|
|
736
|
-
version: "0.8.
|
|
737
|
-
sha256: "
|
|
736
|
+
version: "0.8.4",
|
|
737
|
+
sha256: "0e566b7cd752784a58ef96bec28b0a85c933d72a8c93a5601ca1cd01669a5620"
|
|
738
738
|
},
|
|
739
739
|
{
|
|
740
740
|
name: "openspec-explore",
|
|
741
741
|
file: "assets/skills/openspec-explore/SKILL.md",
|
|
742
742
|
description: "Modo explore para OpenSpec — thinking partner para explorar ideas, investigar problemas y clarificar requisitos antes/durante un cambio",
|
|
743
|
-
version: "0.8.
|
|
744
|
-
sha256: "
|
|
743
|
+
version: "0.8.4",
|
|
744
|
+
sha256: "52746b6c51d5ed5026774391d55edac6558f488d68a5b84f9c7064a10e2333bb"
|
|
745
745
|
},
|
|
746
746
|
{
|
|
747
747
|
name: "using-git-worktrees",
|
|
748
748
|
file: "assets/skills/using-git-worktrees/SKILL.md",
|
|
749
749
|
description: "Skill de uso de git worktrees para aislamiento de trabajo",
|
|
750
|
-
version: "0.8.
|
|
751
|
-
sha256: "
|
|
750
|
+
version: "0.8.4",
|
|
751
|
+
sha256: "00cec01d6b58cd394abff74ed7fb554adb72c34c4d041e85aa703e72932175f4"
|
|
752
752
|
},
|
|
753
753
|
{
|
|
754
754
|
name: "using-superpowers",
|
|
755
755
|
file: "assets/skills/using-superpowers/SKILL.md",
|
|
756
756
|
description: "Skill de orquestación de Superpowers skills",
|
|
757
|
-
version: "0.8.
|
|
758
|
-
sha256: "
|
|
757
|
+
version: "0.8.4",
|
|
758
|
+
sha256: "f66cb61561a7fa23df40d9450459f4109ffc2f7a6f07efa74a8c1fcb96f105bd"
|
|
759
759
|
},
|
|
760
760
|
{
|
|
761
761
|
name: "writing-skills",
|
|
762
762
|
file: "assets/skills/writing-skills/SKILL.md",
|
|
763
763
|
description: "Skill de creación y edición de skills",
|
|
764
|
-
version: "0.8.
|
|
765
|
-
sha256: "
|
|
764
|
+
version: "0.8.4",
|
|
765
|
+
sha256: "397725e389ce4a80ef6864ec793d1b6f1ae158d1e33db56b8f5ff5167b3938fa"
|
|
766
766
|
},
|
|
767
767
|
{
|
|
768
768
|
name: "graceful-degradation",
|
|
769
769
|
file: "assets/skills/graceful-degradation/SKILL.md",
|
|
770
770
|
description: "Skill de degradación graceful cuando múltiples tools están indisponibles",
|
|
771
|
-
version: "0.8.
|
|
772
|
-
sha256: "
|
|
771
|
+
version: "0.8.4",
|
|
772
|
+
sha256: "6631253dd6a99208df1884d1609ba13c65702e5c7da327df3cd16c2be9357d91"
|
|
773
773
|
}
|
|
774
774
|
]
|
|
775
775
|
};
|
|
@@ -1213,7 +1213,7 @@ async function installCodeGraph(toolsDir) {
|
|
|
1213
1213
|
const ext = process.platform === "win32" ? "zip" : "tar.gz";
|
|
1214
1214
|
const url = `https://github.com/colbymchenry/codegraph/releases/download/${tag}/codegraph-${target}.${ext}`;
|
|
1215
1215
|
try {
|
|
1216
|
-
archivePromotion = await downloadAndExtractWithRetry(url, cgToolDir,
|
|
1216
|
+
archivePromotion = await downloadAndExtractWithRetry(url, cgToolDir, 1, 180000, 2);
|
|
1217
1217
|
} catch (e) {
|
|
1218
1218
|
return {
|
|
1219
1219
|
success: false,
|
|
@@ -1492,7 +1492,7 @@ var init_stack = __esm(() => {
|
|
|
1492
1492
|
// package.json
|
|
1493
1493
|
var package_default = {
|
|
1494
1494
|
name: "ostacky",
|
|
1495
|
-
version: "0.8.
|
|
1495
|
+
version: "0.8.4",
|
|
1496
1496
|
description: "Instalador interactivo de agentes y comandos para OpenCode",
|
|
1497
1497
|
type: "module",
|
|
1498
1498
|
bin: {
|
|
@@ -2667,7 +2667,7 @@ async function probeMcpServer(nodeExecutable, serverPath, cwd, statePath, option
|
|
|
2667
2667
|
params: {
|
|
2668
2668
|
protocolVersion: "2025-03-26",
|
|
2669
2669
|
capabilities: {},
|
|
2670
|
-
clientInfo: { name: "ostacky-installer", version: "0.8.
|
|
2670
|
+
clientInfo: { name: "ostacky-installer", version: "0.8.4" }
|
|
2671
2671
|
}
|
|
2672
2672
|
});
|
|
2673
2673
|
});
|
package/manifest.json
CHANGED
|
@@ -1,153 +1,153 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
2
|
+
"version": "0.8.4",
|
|
3
|
+
"repo": "JaimeHoracio/Ostacky",
|
|
4
|
+
"tag": "v0.8.4",
|
|
5
|
+
"agents": [
|
|
6
|
+
{
|
|
7
|
+
"name": "ostacky",
|
|
8
|
+
"file": "assets/agents/ostacky.md",
|
|
9
|
+
"description": "Orquestador con recuperación automática (nunca se congela), ruteo por nivel de impacto, controller MCP con SDK oficial, edición segura con fallback inline, y delegación en OpenSpec + Superpowers. v0.8.4: prune de skills obsoletas, lastHandoff, getAvailableTransitions, consecutiveFailures real, mem_session_summary automático al cierre.",
|
|
10
|
+
"version": "0.8.4",
|
|
11
|
+
"sha256": "3e08cce52941622ff7897ee71020b26d165e473597a4f85723cf92447b17faaa"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"commands": [
|
|
15
|
+
{
|
|
16
|
+
"name": "install-stack",
|
|
17
|
+
"file": "assets/commands/install-stack.md",
|
|
18
|
+
"description": "Instala el stack tecnológico del proyecto (CodeGraph, skills, OpenSpec, Engram, controller plugin). v0.8.4: controller plugin como alma hard-gate, Context7 removido del stack.",
|
|
19
|
+
"version": "0.8.4",
|
|
20
|
+
"sha256": "2527559c18ac21187af6333d8bf9f6899812a5268604a8cfb76e2586aacc8367"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "opsx-sync",
|
|
24
|
+
"file": "assets/commands/opsx-sync.md",
|
|
25
|
+
"description": "Sincroniza delta specs del change activo sin inicializar CodeGraph si ya existe índice",
|
|
26
|
+
"version": "0.8.4",
|
|
27
|
+
"sha256": "fe0158478f2ca63b315037a85fc1632b77868532e319af6c7384285441767d64"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"mcpServers": [
|
|
31
|
+
{
|
|
32
|
+
"name": "ostacky-controller",
|
|
33
|
+
"file": "assets/mcp/ostacky-controller/",
|
|
34
|
+
"description": "Máquina de estados persistida con @modelcontextprotocol/server SDK. v0.8.4: 22 tools (incluye set_handoff, get_handoff, clear_handoff, get_available_transitions funcional). Bugfixes: consecutiveFailures real, lastHandoff state, defaultChoice persistido. Robustez: degraded mode automático tras 3 fallos, persistence condicional para Nivel 0, prune de skills obsoletas.",
|
|
35
|
+
"version": "0.8.4",
|
|
36
|
+
"sha256": "c242f7e4cdad43269134868364b3a1544d192d6362030c7000e7eee589d7e26d"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "openspec",
|
|
40
|
+
"file": "assets/mcp/openspec/",
|
|
41
|
+
"description": "MCP server local para OpenSpec - proposal, apply, archive, sync de cambios",
|
|
42
|
+
"version": "0.8.4",
|
|
43
|
+
"sha256": "fa4be28bfc1e75db8f1a037e2580f04a60066c80e8e5934e90e1041020d04609"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"skills": [
|
|
47
|
+
{
|
|
48
|
+
"name": "brainstorming",
|
|
49
|
+
"file": "assets/skills/brainstorming/SKILL.md",
|
|
50
|
+
"description": "Skill unificado de pensamiento con dos modos: creative-design (producción de diseño → transición a implementación directa o openspec-propose) y open-exploration (exploración libre)",
|
|
51
|
+
"version": "0.8.4",
|
|
52
|
+
"sha256": "1e8ad4dc54ae4da0fc581b3968e9e255d43a07d2911f974f953c438a8244b728"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "execution-mode-evaluation",
|
|
56
|
+
"file": "assets/skills/execution-mode-evaluation/SKILL.md",
|
|
57
|
+
"description": "Skill de análisis de modo de ejecución — output reconciliado con controller snapshot contract (recommendation field)",
|
|
58
|
+
"version": "0.8.4",
|
|
59
|
+
"sha256": "b121879987c34185285754b56c2ad0a74b4f31c5fe9e2849f7f99130b8f7f20f"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "tdd",
|
|
63
|
+
"file": "assets/skills/tdd/SKILL.md",
|
|
64
|
+
"description": "Skill de test-driven development (Superpowers)",
|
|
65
|
+
"version": "0.8.4",
|
|
66
|
+
"sha256": "2932bb3c38b2e41305ec8aa375a7800259eda1bba6bbecfa5b6c4de850b2be43"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "subagent-driven-development",
|
|
70
|
+
"file": "assets/skills/subagent-driven-development/SKILL.md",
|
|
71
|
+
"description": "Skill de ejecución con subagentes (Superpowers) — ejecuta solo después de confirmación del coordinador Ostacky",
|
|
72
|
+
"version": "0.8.4",
|
|
73
|
+
"sha256": "bea7788e897cfae9aeb457eab6cda2ec8822f253b23fd868dc481ddec45cd627"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "dispatching-parallel-agents",
|
|
77
|
+
"file": "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
78
|
+
"description": "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
79
|
+
"version": "0.8.4",
|
|
80
|
+
"sha256": "57e3829cc1217e46e693049eaf910f8fad58c27f6d1ec3e37ab7534993123ab6"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "review",
|
|
84
|
+
"file": "assets/skills/review/SKILL.md",
|
|
85
|
+
"description": "Skill de revisión de código (Superpowers)",
|
|
86
|
+
"version": "0.8.4",
|
|
87
|
+
"sha256": "e6928f7e5fe2dc7db98f16531d47aa739bb282c4d8ef05ca867d27ab6a8cdb95"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "receiving-code-review",
|
|
91
|
+
"file": "assets/skills/receiving-code-review/SKILL.md",
|
|
92
|
+
"description": "Skill de recibir y procesar feedback de code review",
|
|
93
|
+
"version": "0.8.4",
|
|
94
|
+
"sha256": "8cccf2b6234be4dfbfd426d0ba4b3e26d3ed8f416adaf1d78e8e3b8ef39067df"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "openspec-propose",
|
|
98
|
+
"file": "assets/skills/openspec-propose/SKILL.md",
|
|
99
|
+
"description": "Skill de generación de proposal (OpenSpec)",
|
|
100
|
+
"version": "0.8.4",
|
|
101
|
+
"sha256": "36f5d39ad42360259516dfd6ba60673fd62a5ce54b69ae4d159816b73b4543f6"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "openspec-apply-change",
|
|
105
|
+
"file": "assets/skills/openspec-apply-change/SKILL.md",
|
|
106
|
+
"description": "Skill de aplicación de change (OpenSpec)",
|
|
107
|
+
"version": "0.8.4",
|
|
108
|
+
"sha256": "936c66a3e13a78375eab0d979e8d7d813b9fb070f337034128ce40f9c3f10766"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "openspec-archive-change",
|
|
112
|
+
"file": "assets/skills/openspec-archive-change/SKILL.md",
|
|
113
|
+
"description": "Skill de archivo de change (OpenSpec)",
|
|
114
|
+
"version": "0.8.4",
|
|
115
|
+
"sha256": "0e566b7cd752784a58ef96bec28b0a85c933d72a8c93a5601ca1cd01669a5620"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "openspec-explore",
|
|
119
|
+
"file": "assets/skills/openspec-explore/SKILL.md",
|
|
120
|
+
"description": "Modo explore para OpenSpec — thinking partner para explorar ideas, investigar problemas y clarificar requisitos antes/durante un cambio",
|
|
121
|
+
"version": "0.8.4",
|
|
122
|
+
"sha256": "52746b6c51d5ed5026774391d55edac6558f488d68a5b84f9c7064a10e2333bb"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "using-git-worktrees",
|
|
126
|
+
"file": "assets/skills/using-git-worktrees/SKILL.md",
|
|
127
|
+
"description": "Skill de uso de git worktrees para aislamiento de trabajo",
|
|
128
|
+
"version": "0.8.4",
|
|
129
|
+
"sha256": "00cec01d6b58cd394abff74ed7fb554adb72c34c4d041e85aa703e72932175f4"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "using-superpowers",
|
|
133
|
+
"file": "assets/skills/using-superpowers/SKILL.md",
|
|
134
|
+
"description": "Skill de orquestación de Superpowers skills",
|
|
135
|
+
"version": "0.8.4",
|
|
136
|
+
"sha256": "f66cb61561a7fa23df40d9450459f4109ffc2f7a6f07efa74a8c1fcb96f105bd"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "writing-skills",
|
|
140
|
+
"file": "assets/skills/writing-skills/SKILL.md",
|
|
141
|
+
"description": "Skill de creación y edición de skills",
|
|
142
|
+
"version": "0.8.4",
|
|
143
|
+
"sha256": "397725e389ce4a80ef6864ec793d1b6f1ae158d1e33db56b8f5ff5167b3938fa"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "graceful-degradation",
|
|
147
|
+
"file": "assets/skills/graceful-degradation/SKILL.md",
|
|
148
|
+
"description": "Skill de degradación graceful cuando múltiples tools están indisponibles",
|
|
149
|
+
"version": "0.8.4",
|
|
150
|
+
"sha256": "6631253dd6a99208df1884d1609ba13c65702e5c7da327df3cd16c2be9357d91"
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
153
|
}
|