ostacky 0.6.0 → 0.6.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 +9 -9
- package/assets/commands/install-stack.md +1 -1
- package/assets/mcp/openspec/index.js +1 -1
- package/assets/mcp/openspec/package.json +1 -1
- package/assets/mcp/ostacky-controller/index.js +1 -1
- package/assets/mcp/ostacky-controller/package.json +1 -1
- package/dist/cli.js +88 -28
- package/manifest.json +26 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -219,33 +219,33 @@ Tras instalar, el proyecto queda así:
|
|
|
219
219
|
|
|
220
220
|
```json
|
|
221
221
|
{
|
|
222
|
-
"version": "0.6.
|
|
222
|
+
"version": "0.6.1",
|
|
223
223
|
"lockedAt": "2025-01-01T00:00:00.000Z",
|
|
224
224
|
"repo": "JaimeHoracio/Ostacky",
|
|
225
|
-
"tag": "v0.6.
|
|
225
|
+
"tag": "v0.6.1",
|
|
226
226
|
"agents": {
|
|
227
227
|
"ostacky": {
|
|
228
|
-
"version": "0.6.
|
|
228
|
+
"version": "0.6.1",
|
|
229
229
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
230
230
|
"sha256": "abc123..."
|
|
231
231
|
}
|
|
232
232
|
},
|
|
233
233
|
"commands": {
|
|
234
234
|
"install-stack": {
|
|
235
|
-
"version": "0.6.
|
|
235
|
+
"version": "0.6.1",
|
|
236
236
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
237
237
|
"sha256": "def456..."
|
|
238
238
|
},
|
|
239
239
|
"opsx-sync": {
|
|
240
|
-
"version": "0.6.
|
|
240
|
+
"version": "0.6.1",
|
|
241
241
|
"installedAt": "2025-01-01T00:00:00.000Z",
|
|
242
242
|
"sha256": "ghi789..."
|
|
243
243
|
}
|
|
244
244
|
},
|
|
245
245
|
"skills": {
|
|
246
|
-
"brainstorming": { "version": "0.6.
|
|
247
|
-
"execution-mode-evaluation": { "version": "0.6.
|
|
248
|
-
"openspec-propose": { "version": "0.6.
|
|
246
|
+
"brainstorming": { "version": "0.6.1", ... },
|
|
247
|
+
"execution-mode-evaluation": { "version": "0.6.1", ... },
|
|
248
|
+
"openspec-propose": { "version": "0.6.1", ... }
|
|
249
249
|
}
|
|
250
250
|
}
|
|
251
251
|
```
|
|
@@ -275,7 +275,7 @@ Es opcional y solo necesario si algo falló durante la instalación o si querés
|
|
|
275
275
|
## Seguridad
|
|
276
276
|
|
|
277
277
|
- `opencode.jsonc` se versiona en el repo para compartir permisos y MCP de forma reproducible.
|
|
278
|
-
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.6.
|
|
278
|
+
- Las URLs de descarga usan **tags de GitHub** (ej. `v0.6.1`), nunca `main` — instalaciones reproducibles
|
|
279
279
|
- Cada path de archivo descargado es validado para prevenir **path traversal**
|
|
280
280
|
- Los archivos incluyen **checksum SHA-256** opcional; si el manifest lo define, el contenido se verifica antes de escribir
|
|
281
281
|
- 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.6.
|
|
8
|
+
**Nota:** A partir de v0.6.1, `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
|
@@ -1220,6 +1220,52 @@ function isCommandAvailable(cmd) {
|
|
|
1220
1220
|
return false;
|
|
1221
1221
|
}
|
|
1222
1222
|
}
|
|
1223
|
+
function findExecutablePath(cmd) {
|
|
1224
|
+
try {
|
|
1225
|
+
const result = execSync(process.platform === "win32" ? `where ${cmd}` : `which ${cmd}`, { encoding: "utf-8", stdio: ["pipe", "pipe", "pipe"] }).trim();
|
|
1226
|
+
return result || null;
|
|
1227
|
+
} catch {
|
|
1228
|
+
return null;
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
1231
|
+
function getBunInstallCommand() {
|
|
1232
|
+
const platform = process.platform;
|
|
1233
|
+
if (platform === "darwin" || platform === "linux") {
|
|
1234
|
+
return {
|
|
1235
|
+
command: "curl -fsSL https://bun.com/install | bash",
|
|
1236
|
+
note: platform === "linux" ? "Requires 'unzip' package (sudo apt install unzip)" : undefined
|
|
1237
|
+
};
|
|
1238
|
+
}
|
|
1239
|
+
if (platform === "win32") {
|
|
1240
|
+
return {
|
|
1241
|
+
command: 'powershell -c "irm bun.sh/install.ps1|iex"',
|
|
1242
|
+
note: "Requires Windows 10 v1809 or later"
|
|
1243
|
+
};
|
|
1244
|
+
}
|
|
1245
|
+
return {
|
|
1246
|
+
command: "npm install -g bun",
|
|
1247
|
+
note: "Cross-platform fallback"
|
|
1248
|
+
};
|
|
1249
|
+
}
|
|
1250
|
+
function checkBunAvailability() {
|
|
1251
|
+
const bunPath = findExecutablePath("bun");
|
|
1252
|
+
if (bunPath) {
|
|
1253
|
+
let version;
|
|
1254
|
+
try {
|
|
1255
|
+
version = execSync("bun --version", {
|
|
1256
|
+
encoding: "utf-8",
|
|
1257
|
+
stdio: ["pipe", "pipe", "pipe"]
|
|
1258
|
+
}).trim();
|
|
1259
|
+
} catch {}
|
|
1260
|
+
return { available: true, path: bunPath, version };
|
|
1261
|
+
}
|
|
1262
|
+
const { command, note } = getBunInstallCommand();
|
|
1263
|
+
return {
|
|
1264
|
+
available: false,
|
|
1265
|
+
installCommand: command,
|
|
1266
|
+
installNote: note
|
|
1267
|
+
};
|
|
1268
|
+
}
|
|
1223
1269
|
function detectPlatformTarget() {
|
|
1224
1270
|
const platform = process.platform;
|
|
1225
1271
|
const arch = process.arch;
|
|
@@ -1339,15 +1385,15 @@ var init_fs = __esm(() => {
|
|
|
1339
1385
|
var manifest_default;
|
|
1340
1386
|
var init_manifest = __esm(() => {
|
|
1341
1387
|
manifest_default = {
|
|
1342
|
-
version: "0.6.
|
|
1388
|
+
version: "0.6.1",
|
|
1343
1389
|
repo: "JaimeHoracio/Ostacky",
|
|
1344
|
-
tag: "v0.6.
|
|
1390
|
+
tag: "v0.6.1",
|
|
1345
1391
|
agents: [
|
|
1346
1392
|
{
|
|
1347
1393
|
name: "ostacky",
|
|
1348
1394
|
file: "assets/agents/ostacky.md",
|
|
1349
1395
|
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",
|
|
1350
|
-
version: "0.6.
|
|
1396
|
+
version: "0.6.1",
|
|
1351
1397
|
sha256: "206963fd98b0af4580338407d1df11c30ecd0c18b984f73eb4b624555c263f55"
|
|
1352
1398
|
}
|
|
1353
1399
|
],
|
|
@@ -1356,14 +1402,14 @@ var init_manifest = __esm(() => {
|
|
|
1356
1402
|
name: "install-stack",
|
|
1357
1403
|
file: "assets/commands/install-stack.md",
|
|
1358
1404
|
description: "Instala el stack tecnológico del proyecto (CodeGraph, skills, OpenSpec, Engram, Context7, controller MCP con SDK oficial)",
|
|
1359
|
-
version: "0.6.
|
|
1360
|
-
sha256: "
|
|
1405
|
+
version: "0.6.1",
|
|
1406
|
+
sha256: "6741c7e08a04a56b1857b76eabf0b3207911a255639ffc3ef329fb18229d8984"
|
|
1361
1407
|
},
|
|
1362
1408
|
{
|
|
1363
1409
|
name: "opsx-sync",
|
|
1364
1410
|
file: "assets/commands/opsx-sync.md",
|
|
1365
1411
|
description: "Sincroniza delta specs del change activo sin inicializar CodeGraph si ya existe índice",
|
|
1366
|
-
version: "0.6.
|
|
1412
|
+
version: "0.6.1",
|
|
1367
1413
|
sha256: "ed9948f1910743b672e1dfad496bc96972a224a98b063232be39290d43068c50"
|
|
1368
1414
|
}
|
|
1369
1415
|
],
|
|
@@ -1372,15 +1418,15 @@ var init_manifest = __esm(() => {
|
|
|
1372
1418
|
name: "ostacky-controller",
|
|
1373
1419
|
file: "assets/mcp/ostacky-controller/",
|
|
1374
1420
|
description: "Máquina de estados persistida con @modelcontextprotocol/server SDK. 20 tools: start_request → discovery → route → execution → sync → done + validate_edit + complete_task + ping + proceed_to_route + abandon integrado",
|
|
1375
|
-
version: "0.6.
|
|
1376
|
-
sha256: "
|
|
1421
|
+
version: "0.6.1",
|
|
1422
|
+
sha256: "63c9dfe7af992dc21e097a6c9902c539827cbe563165731bc997f6b776cc9aaf"
|
|
1377
1423
|
},
|
|
1378
1424
|
{
|
|
1379
1425
|
name: "openspec",
|
|
1380
1426
|
file: "assets/mcp/openspec/",
|
|
1381
1427
|
description: "MCP server local para OpenSpec - proposal, apply, archive, sync de cambios",
|
|
1382
|
-
version: "0.6.
|
|
1383
|
-
sha256: "
|
|
1428
|
+
version: "0.6.1",
|
|
1429
|
+
sha256: "fa4be28bfc1e75db8f1a037e2580f04a60066c80e8e5934e90e1041020d04609"
|
|
1384
1430
|
}
|
|
1385
1431
|
],
|
|
1386
1432
|
skills: [
|
|
@@ -1388,112 +1434,112 @@ var init_manifest = __esm(() => {
|
|
|
1388
1434
|
name: "brainstorming",
|
|
1389
1435
|
file: "assets/skills/brainstorming/SKILL.md",
|
|
1390
1436
|
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)",
|
|
1391
|
-
version: "0.6.
|
|
1437
|
+
version: "0.6.1",
|
|
1392
1438
|
sha256: "d1051ded927d57dcf72c33fa0d6116c7d0103ef36f5a7f9e22f7b3da78f9c74e"
|
|
1393
1439
|
},
|
|
1394
1440
|
{
|
|
1395
1441
|
name: "execution-mode-evaluation",
|
|
1396
1442
|
file: "assets/skills/execution-mode-evaluation/SKILL.md",
|
|
1397
1443
|
description: "Skill de análisis de modo de ejecución — output reconciliado con controller snapshot contract (recommendation field)",
|
|
1398
|
-
version: "0.6.
|
|
1444
|
+
version: "0.6.1",
|
|
1399
1445
|
sha256: "5c37f6f4132378f863c99102bbde8bab478160ced82a2ea1025f958275d8e881"
|
|
1400
1446
|
},
|
|
1401
1447
|
{
|
|
1402
1448
|
name: "writing-plans",
|
|
1403
1449
|
file: "assets/skills/writing-plans/SKILL.md",
|
|
1404
1450
|
description: "Skill de planificación de implementación (Superpowers) — execution handoff removido, Ostacky decide modo de ejecución",
|
|
1405
|
-
version: "0.6.
|
|
1451
|
+
version: "0.6.1",
|
|
1406
1452
|
sha256: "e681af5e607e7ae4b6a1c0760a4f1d1d292a028d2b6989df3afb9be8dcc81c61"
|
|
1407
1453
|
},
|
|
1408
1454
|
{
|
|
1409
1455
|
name: "tdd",
|
|
1410
1456
|
file: "assets/skills/tdd/SKILL.md",
|
|
1411
1457
|
description: "Skill de test-driven development (Superpowers)",
|
|
1412
|
-
version: "0.6.
|
|
1458
|
+
version: "0.6.1",
|
|
1413
1459
|
sha256: "9f5a25e61e049d473a854a5401cec947329e830aa902db7c31f91a160ac19890"
|
|
1414
1460
|
},
|
|
1415
1461
|
{
|
|
1416
1462
|
name: "subagent-driven-development",
|
|
1417
1463
|
file: "assets/skills/subagent-driven-development/SKILL.md",
|
|
1418
1464
|
description: "Skill de ejecución con subagentes (Superpowers) — ejecuta solo después de confirmación del coordinador Ostacky",
|
|
1419
|
-
version: "0.6.
|
|
1465
|
+
version: "0.6.1",
|
|
1420
1466
|
sha256: "65d87f2b3ae1da5d08b6760938ab7009e0e226182ec1d88d322a230754ac9d8e"
|
|
1421
1467
|
},
|
|
1422
1468
|
{
|
|
1423
1469
|
name: "dispatching-parallel-agents",
|
|
1424
1470
|
file: "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
1425
1471
|
description: "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
1426
|
-
version: "0.6.
|
|
1472
|
+
version: "0.6.1",
|
|
1427
1473
|
sha256: "2d93480e4b9c0f516861a765977ae08b6e02dc113dc456068ef8026bcb950fcb"
|
|
1428
1474
|
},
|
|
1429
1475
|
{
|
|
1430
1476
|
name: "review",
|
|
1431
1477
|
file: "assets/skills/review/SKILL.md",
|
|
1432
1478
|
description: "Skill de revisión de código (Superpowers)",
|
|
1433
|
-
version: "0.6.
|
|
1479
|
+
version: "0.6.1",
|
|
1434
1480
|
sha256: "14831d9ef3746ef6e2e6047c868fe7aa296d01f0644227ce776fe99436357b1a"
|
|
1435
1481
|
},
|
|
1436
1482
|
{
|
|
1437
1483
|
name: "receiving-code-review",
|
|
1438
1484
|
file: "assets/skills/receiving-code-review/SKILL.md",
|
|
1439
1485
|
description: "Skill de recibir y procesar feedback de code review",
|
|
1440
|
-
version: "0.6.
|
|
1486
|
+
version: "0.6.1",
|
|
1441
1487
|
sha256: "0a5780e8a41539d15428114b7c46f36670acc16aba0db3348d36be1175433872"
|
|
1442
1488
|
},
|
|
1443
1489
|
{
|
|
1444
1490
|
name: "openspec-propose",
|
|
1445
1491
|
file: "assets/skills/openspec-propose/SKILL.md",
|
|
1446
1492
|
description: "Skill de generación de proposal (OpenSpec)",
|
|
1447
|
-
version: "0.6.
|
|
1493
|
+
version: "0.6.1",
|
|
1448
1494
|
sha256: "c50d478fd96ec5a60080012d5d87a09b54787884b4b0fa7d8631e7bee6c8c80d"
|
|
1449
1495
|
},
|
|
1450
1496
|
{
|
|
1451
1497
|
name: "openspec-apply-change",
|
|
1452
1498
|
file: "assets/skills/openspec-apply-change/SKILL.md",
|
|
1453
1499
|
description: "Skill de aplicación de change (OpenSpec)",
|
|
1454
|
-
version: "0.6.
|
|
1500
|
+
version: "0.6.1",
|
|
1455
1501
|
sha256: "723a492f2ef2df3337e8e841ae84f4f5d0f8621e534c8ea76540ee3a796ff527"
|
|
1456
1502
|
},
|
|
1457
1503
|
{
|
|
1458
1504
|
name: "openspec-archive-change",
|
|
1459
1505
|
file: "assets/skills/openspec-archive-change/SKILL.md",
|
|
1460
1506
|
description: "Skill de archivo de change (OpenSpec)",
|
|
1461
|
-
version: "0.6.
|
|
1507
|
+
version: "0.6.1",
|
|
1462
1508
|
sha256: "dc2422d0ff9a54e3ed9b016df2bad0dfa6cca9adaee02bb4563ce7525cc56f40"
|
|
1463
1509
|
},
|
|
1464
1510
|
{
|
|
1465
1511
|
name: "openspec-explore",
|
|
1466
1512
|
file: "assets/skills/openspec-explore/SKILL.md",
|
|
1467
1513
|
description: "Modo explore para OpenSpec — thinking partner para explorar ideas, investigar problemas y clarificar requisitos antes/durante un cambio",
|
|
1468
|
-
version: "0.6.
|
|
1514
|
+
version: "0.6.1",
|
|
1469
1515
|
sha256: "6e162c0b38dedd2ee70d0be9179af1a9716e78ac786511d5b49ebeb0fffc14a0"
|
|
1470
1516
|
},
|
|
1471
1517
|
{
|
|
1472
1518
|
name: "using-git-worktrees",
|
|
1473
1519
|
file: "assets/skills/using-git-worktrees/SKILL.md",
|
|
1474
1520
|
description: "Skill de uso de git worktrees para aislamiento de trabajo",
|
|
1475
|
-
version: "0.6.
|
|
1521
|
+
version: "0.6.1",
|
|
1476
1522
|
sha256: "3829b79c1d36b1bc9d148153b07f66265599a19494f648731273e3e6d1a0d65c"
|
|
1477
1523
|
},
|
|
1478
1524
|
{
|
|
1479
1525
|
name: "using-superpowers",
|
|
1480
1526
|
file: "assets/skills/using-superpowers/SKILL.md",
|
|
1481
1527
|
description: "Skill de orquestación de Superpowers skills",
|
|
1482
|
-
version: "0.6.
|
|
1528
|
+
version: "0.6.1",
|
|
1483
1529
|
sha256: "d0153c2bdac88c5a409d439d137b8f04fecda005cc7722f1ca83b2211bfda115"
|
|
1484
1530
|
},
|
|
1485
1531
|
{
|
|
1486
1532
|
name: "writing-skills",
|
|
1487
1533
|
file: "assets/skills/writing-skills/SKILL.md",
|
|
1488
1534
|
description: "Skill de creación y edición de skills",
|
|
1489
|
-
version: "0.6.
|
|
1535
|
+
version: "0.6.1",
|
|
1490
1536
|
sha256: "371da06aad8a546389785140248698b6401730f34c2ab00b4b9304e5a51e1eb4"
|
|
1491
1537
|
},
|
|
1492
1538
|
{
|
|
1493
1539
|
name: "graceful-degradation",
|
|
1494
1540
|
file: "assets/skills/graceful-degradation/SKILL.md",
|
|
1495
1541
|
description: "Skill de degradación graceful cuando múltiples tools están indisponibles",
|
|
1496
|
-
version: "0.6.
|
|
1542
|
+
version: "0.6.1",
|
|
1497
1543
|
sha256: "92ea3381b5610d9041797868a5887fb358d185d80ebb753bdae3f9f9abb4d790"
|
|
1498
1544
|
}
|
|
1499
1545
|
]
|
|
@@ -1957,7 +2003,21 @@ function setupOpenSpec() {
|
|
|
1957
2003
|
}
|
|
1958
2004
|
async function installEngram(toolsDir) {
|
|
1959
2005
|
const projectRoot = findProjectRoot();
|
|
1960
|
-
const
|
|
2006
|
+
const bunStatus = checkBunAvailability();
|
|
2007
|
+
if (!bunStatus.available) {
|
|
2008
|
+
console.log(`
|
|
2009
|
+
⚠️ Bun no detectado en el sistema.`);
|
|
2010
|
+
console.log(` Para instalar Bun, ejecutá:
|
|
2011
|
+
`);
|
|
2012
|
+
console.log(` ${bunStatus.installCommand}`);
|
|
2013
|
+
if (bunStatus.installNote) {
|
|
2014
|
+
console.log(` Nota: ${bunStatus.installNote}`);
|
|
2015
|
+
}
|
|
2016
|
+
console.log(`
|
|
2017
|
+
Documentación: https://bun.com/docs/installation
|
|
2018
|
+
`);
|
|
2019
|
+
}
|
|
2020
|
+
const globalBin = findExecutablePath("engram");
|
|
1961
2021
|
if (globalBin) {
|
|
1962
2022
|
const engramToolDir2 = join7(toolsDir ?? join7(projectRoot, ".opencode", "tools"), "engram");
|
|
1963
2023
|
const engramBinDir2 = join7(engramToolDir2, "bin");
|
|
@@ -2214,7 +2274,7 @@ var init_stack = __esm(() => {
|
|
|
2214
2274
|
// package.json
|
|
2215
2275
|
var package_default = {
|
|
2216
2276
|
name: "ostacky",
|
|
2217
|
-
version: "0.6.
|
|
2277
|
+
version: "0.6.1",
|
|
2218
2278
|
description: "Instalador interactivo de agentes y comandos para OpenCode",
|
|
2219
2279
|
type: "module",
|
|
2220
2280
|
bin: {
|
package/manifest.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.6.
|
|
2
|
+
"version": "0.6.1",
|
|
3
3
|
"repo": "JaimeHoracio/Ostacky",
|
|
4
|
-
"tag": "v0.6.
|
|
4
|
+
"tag": "v0.6.1",
|
|
5
5
|
"agents": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ostacky",
|
|
8
8
|
"file": "assets/agents/ostacky.md",
|
|
9
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",
|
|
10
|
-
"version": "0.6.
|
|
10
|
+
"version": "0.6.1",
|
|
11
11
|
"sha256": "206963fd98b0af4580338407d1df11c30ecd0c18b984f73eb4b624555c263f55"
|
|
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 con SDK oficial)",
|
|
19
|
-
"version": "0.6.
|
|
20
|
-
"sha256": "
|
|
19
|
+
"version": "0.6.1",
|
|
20
|
+
"sha256": "6741c7e08a04a56b1857b76eabf0b3207911a255639ffc3ef329fb18229d8984"
|
|
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.6.
|
|
26
|
+
"version": "0.6.1",
|
|
27
27
|
"sha256": "ed9948f1910743b672e1dfad496bc96972a224a98b063232be39290d43068c50"
|
|
28
28
|
}
|
|
29
29
|
],
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"name": "ostacky-controller",
|
|
33
33
|
"file": "assets/mcp/ostacky-controller/",
|
|
34
34
|
"description": "Máquina de estados persistida con @modelcontextprotocol/server SDK. 20 tools: start_request → discovery → route → execution → sync → done + validate_edit + complete_task + ping + proceed_to_route + abandon integrado",
|
|
35
|
-
"version": "0.6.
|
|
36
|
-
"sha256": "
|
|
35
|
+
"version": "0.6.1",
|
|
36
|
+
"sha256": "63c9dfe7af992dc21e097a6c9902c539827cbe563165731bc997f6b776cc9aaf"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
"name": "openspec",
|
|
40
40
|
"file": "assets/mcp/openspec/",
|
|
41
41
|
"description": "MCP server local para OpenSpec - proposal, apply, archive, sync de cambios",
|
|
42
|
-
"version": "0.6.
|
|
43
|
-
"sha256": "
|
|
42
|
+
"version": "0.6.1",
|
|
43
|
+
"sha256": "fa4be28bfc1e75db8f1a037e2580f04a60066c80e8e5934e90e1041020d04609"
|
|
44
44
|
}
|
|
45
45
|
],
|
|
46
46
|
"skills": [
|
|
@@ -48,112 +48,112 @@
|
|
|
48
48
|
"name": "brainstorming",
|
|
49
49
|
"file": "assets/skills/brainstorming/SKILL.md",
|
|
50
50
|
"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)",
|
|
51
|
-
"version": "0.6.
|
|
51
|
+
"version": "0.6.1",
|
|
52
52
|
"sha256": "d1051ded927d57dcf72c33fa0d6116c7d0103ef36f5a7f9e22f7b3da78f9c74e"
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
"name": "execution-mode-evaluation",
|
|
56
56
|
"file": "assets/skills/execution-mode-evaluation/SKILL.md",
|
|
57
57
|
"description": "Skill de análisis de modo de ejecución — output reconciliado con controller snapshot contract (recommendation field)",
|
|
58
|
-
"version": "0.6.
|
|
58
|
+
"version": "0.6.1",
|
|
59
59
|
"sha256": "5c37f6f4132378f863c99102bbde8bab478160ced82a2ea1025f958275d8e881"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"name": "writing-plans",
|
|
63
63
|
"file": "assets/skills/writing-plans/SKILL.md",
|
|
64
64
|
"description": "Skill de planificación de implementación (Superpowers) — execution handoff removido, Ostacky decide modo de ejecución",
|
|
65
|
-
"version": "0.6.
|
|
65
|
+
"version": "0.6.1",
|
|
66
66
|
"sha256": "e681af5e607e7ae4b6a1c0760a4f1d1d292a028d2b6989df3afb9be8dcc81c61"
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"name": "tdd",
|
|
70
70
|
"file": "assets/skills/tdd/SKILL.md",
|
|
71
71
|
"description": "Skill de test-driven development (Superpowers)",
|
|
72
|
-
"version": "0.6.
|
|
72
|
+
"version": "0.6.1",
|
|
73
73
|
"sha256": "9f5a25e61e049d473a854a5401cec947329e830aa902db7c31f91a160ac19890"
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"name": "subagent-driven-development",
|
|
77
77
|
"file": "assets/skills/subagent-driven-development/SKILL.md",
|
|
78
78
|
"description": "Skill de ejecución con subagentes (Superpowers) — ejecuta solo después de confirmación del coordinador Ostacky",
|
|
79
|
-
"version": "0.6.
|
|
79
|
+
"version": "0.6.1",
|
|
80
80
|
"sha256": "65d87f2b3ae1da5d08b6760938ab7009e0e226182ec1d88d322a230754ac9d8e"
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
83
|
"name": "dispatching-parallel-agents",
|
|
84
84
|
"file": "assets/skills/dispatching-parallel-agents/SKILL.md",
|
|
85
85
|
"description": "Skill de dispatch paralelo de agentes (Superpowers)",
|
|
86
|
-
"version": "0.6.
|
|
86
|
+
"version": "0.6.1",
|
|
87
87
|
"sha256": "2d93480e4b9c0f516861a765977ae08b6e02dc113dc456068ef8026bcb950fcb"
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
90
|
"name": "review",
|
|
91
91
|
"file": "assets/skills/review/SKILL.md",
|
|
92
92
|
"description": "Skill de revisión de código (Superpowers)",
|
|
93
|
-
"version": "0.6.
|
|
93
|
+
"version": "0.6.1",
|
|
94
94
|
"sha256": "14831d9ef3746ef6e2e6047c868fe7aa296d01f0644227ce776fe99436357b1a"
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
"name": "receiving-code-review",
|
|
98
98
|
"file": "assets/skills/receiving-code-review/SKILL.md",
|
|
99
99
|
"description": "Skill de recibir y procesar feedback de code review",
|
|
100
|
-
"version": "0.6.
|
|
100
|
+
"version": "0.6.1",
|
|
101
101
|
"sha256": "0a5780e8a41539d15428114b7c46f36670acc16aba0db3348d36be1175433872"
|
|
102
102
|
},
|
|
103
103
|
{
|
|
104
104
|
"name": "openspec-propose",
|
|
105
105
|
"file": "assets/skills/openspec-propose/SKILL.md",
|
|
106
106
|
"description": "Skill de generación de proposal (OpenSpec)",
|
|
107
|
-
"version": "0.6.
|
|
107
|
+
"version": "0.6.1",
|
|
108
108
|
"sha256": "c50d478fd96ec5a60080012d5d87a09b54787884b4b0fa7d8631e7bee6c8c80d"
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
"name": "openspec-apply-change",
|
|
112
112
|
"file": "assets/skills/openspec-apply-change/SKILL.md",
|
|
113
113
|
"description": "Skill de aplicación de change (OpenSpec)",
|
|
114
|
-
"version": "0.6.
|
|
114
|
+
"version": "0.6.1",
|
|
115
115
|
"sha256": "723a492f2ef2df3337e8e841ae84f4f5d0f8621e534c8ea76540ee3a796ff527"
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
118
|
"name": "openspec-archive-change",
|
|
119
119
|
"file": "assets/skills/openspec-archive-change/SKILL.md",
|
|
120
120
|
"description": "Skill de archivo de change (OpenSpec)",
|
|
121
|
-
"version": "0.6.
|
|
121
|
+
"version": "0.6.1",
|
|
122
122
|
"sha256": "dc2422d0ff9a54e3ed9b016df2bad0dfa6cca9adaee02bb4563ce7525cc56f40"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"name": "openspec-explore",
|
|
126
126
|
"file": "assets/skills/openspec-explore/SKILL.md",
|
|
127
127
|
"description": "Modo explore para OpenSpec — thinking partner para explorar ideas, investigar problemas y clarificar requisitos antes/durante un cambio",
|
|
128
|
-
"version": "0.6.
|
|
128
|
+
"version": "0.6.1",
|
|
129
129
|
"sha256": "6e162c0b38dedd2ee70d0be9179af1a9716e78ac786511d5b49ebeb0fffc14a0"
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
132
|
"name": "using-git-worktrees",
|
|
133
133
|
"file": "assets/skills/using-git-worktrees/SKILL.md",
|
|
134
134
|
"description": "Skill de uso de git worktrees para aislamiento de trabajo",
|
|
135
|
-
"version": "0.6.
|
|
135
|
+
"version": "0.6.1",
|
|
136
136
|
"sha256": "3829b79c1d36b1bc9d148153b07f66265599a19494f648731273e3e6d1a0d65c"
|
|
137
137
|
},
|
|
138
138
|
{
|
|
139
139
|
"name": "using-superpowers",
|
|
140
140
|
"file": "assets/skills/using-superpowers/SKILL.md",
|
|
141
141
|
"description": "Skill de orquestación de Superpowers skills",
|
|
142
|
-
"version": "0.6.
|
|
142
|
+
"version": "0.6.1",
|
|
143
143
|
"sha256": "d0153c2bdac88c5a409d439d137b8f04fecda005cc7722f1ca83b2211bfda115"
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
"name": "writing-skills",
|
|
147
147
|
"file": "assets/skills/writing-skills/SKILL.md",
|
|
148
148
|
"description": "Skill de creación y edición de skills",
|
|
149
|
-
"version": "0.6.
|
|
149
|
+
"version": "0.6.1",
|
|
150
150
|
"sha256": "371da06aad8a546389785140248698b6401730f34c2ab00b4b9304e5a51e1eb4"
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
"name": "graceful-degradation",
|
|
154
154
|
"file": "assets/skills/graceful-degradation/SKILL.md",
|
|
155
155
|
"description": "Skill de degradación graceful cuando múltiples tools están indisponibles",
|
|
156
|
-
"version": "0.6.
|
|
156
|
+
"version": "0.6.1",
|
|
157
157
|
"sha256": "92ea3381b5610d9041797868a5887fb358d185d80ebb753bdae3f9f9abb4d790"
|
|
158
158
|
}
|
|
159
159
|
]
|