@izkac/forgekit 0.3.9 → 0.3.10

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/fleet.mjs +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@izkac/forgekit",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "description": "Forgekit CLIs — forgekit (install), forge (workflow), review (code review)",
5
5
  "type": "module",
6
6
  "bin": {
package/src/fleet.mjs CHANGED
@@ -72,7 +72,7 @@ function pad(str, len) {
72
72
 
73
73
  function renderTable(entries) {
74
74
  if (entries.length === 0) return 'No fleet sessions. Start one with `forge new <slug>`.\n';
75
- const header = `${pad('PROJECT', 18)} ${pad('SESSION', 26)} ${pad('ENGINE', 7)} ${pad('PHASE', 18)} ${pad('TASKS', 13)} ${pad('PACE', 9)} ${pad('AGE', 4)} MSGS`;
75
+ const header = `${pad('PROJECT', 18)} ${pad('SESSION', 26)} ${pad('ENGINE', 7)} ${pad('PHASE', 18)} ${pad('TASKS', 16)} ${pad('PACE', 9)} ${pad('AGE', 4)} MSGS`;
76
76
  const lines = [header, '-'.repeat(header.length)];
77
77
  for (const e of entries) {
78
78
  const pending = e.missing ? 0 : peekInbox(sessionDirFor(e)).length;
@@ -80,7 +80,7 @@ function renderTable(entries) {
80
80
  `${pad(e.projectName, 18)} ${pad(e.slug, 26)} ${pad(e.engine ?? '—', 7)} ${pad(
81
81
  e.missing ? 'missing' : phaseBar(e.phase),
82
82
  18,
83
- )} ${pad(tasksCell(e), 13)} ${pad(e.pace ?? '—', 9)} ${pad(relTime(e.lastSeen ?? e.updatedAt), 4)} ${
83
+ )} ${pad(tasksCell(e), 16)} ${pad(e.pace ?? '—', 9)} ${pad(relTime(e.lastSeen ?? e.updatedAt), 4)} ${
84
84
  pending > 0 ? `✉ ${pending}` : ''
85
85
  }`,
86
86
  );