zugzbot-sdd 1.5.7 → 1.5.8
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/package.json +1 -1
- package/plugins/plugin_tui.tsx +7 -6
package/package.json
CHANGED
package/plugins/plugin_tui.tsx
CHANGED
|
@@ -254,15 +254,16 @@ const PluginTuiSidebar: TuiPlugin = async (api) => {
|
|
|
254
254
|
{sddProgress() && sddProgress()?.changeName !== "nuevo-cambio" && sddProgress()?.changeName !== "Ninguno" && (
|
|
255
255
|
<box gap={0} paddingLeft={1} paddingTop={1} paddingBottom={0}>
|
|
256
256
|
<text fg="#FF7300">
|
|
257
|
-
{
|
|
257
|
+
{`SDD: ${sddProgress()?.changeName ?? ""}`}
|
|
258
258
|
</text>
|
|
259
259
|
<box gap={0} paddingTop={1}>
|
|
260
260
|
{[
|
|
261
|
-
{ id: 0, name: "
|
|
262
|
-
{ id: 1, name: "Planificación", agent: "@sdd-planner" },
|
|
263
|
-
{ id: 2, name: "Construcción", agent: "@sdd-builder" },
|
|
264
|
-
{ id: 3, name: "Pruebas
|
|
265
|
-
{ id: 4, name: "
|
|
261
|
+
{ id: 0, name: "F0 Exploración", agent: "@sdd-explorer" },
|
|
262
|
+
{ id: 1, name: "F1 Planificación", agent: "@sdd-planner" },
|
|
263
|
+
{ id: 2, name: "F2 Construcción", agent: "@sdd-builder" },
|
|
264
|
+
{ id: 3, name: "F3 Pruebas", agent: "@sdd-tester" },
|
|
265
|
+
{ id: 4, name: "F4 Deploy", agent: "@sdd-deployer" },
|
|
266
|
+
{ id: 5, name: "F5 Cierre", agent: "@sdd-archiver" }
|
|
266
267
|
].map((ph) => {
|
|
267
268
|
const isActive = sddProgress()?.activePhase === ph.id
|
|
268
269
|
const isCompleted = (sddProgress()?.activePhase ?? 0) > ph.id
|