jfl 0.8.0 → 0.8.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/package.json
CHANGED
|
@@ -342,10 +342,10 @@ export async function setupOnboarding(ctx: PiContext, config: JflConfig): Promis
|
|
|
342
342
|
lines.push(`${margin}${theme.fg("dim", typeLabel(info.type))}`)
|
|
343
343
|
lines.push("")
|
|
344
344
|
|
|
345
|
-
lines.push(`${margin}${theme.fg("dim", "branch")} ${theme.fg("
|
|
345
|
+
lines.push(`${margin}${theme.fg("dim", "branch")} ${theme.fg("accent", info.branch)}`)
|
|
346
346
|
|
|
347
347
|
if (info.agentCount > 0) {
|
|
348
|
-
lines.push(`${margin}${theme.fg("dim", "agents")} ${theme.fg("
|
|
348
|
+
lines.push(`${margin}${theme.fg("dim", "agents")} ${theme.fg("accent", String(info.agentCount))} active`)
|
|
349
349
|
}
|
|
350
350
|
|
|
351
351
|
if (info.journalEntries > 0) {
|
|
@@ -366,10 +366,10 @@ export async function setupOnboarding(ctx: PiContext, config: JflConfig): Promis
|
|
|
366
366
|
|
|
367
367
|
const dots = ".".repeat(dotCount)
|
|
368
368
|
const hubStatus = hubDone
|
|
369
|
-
? `${margin} ${theme.fg("
|
|
369
|
+
? `${margin} ${theme.fg("accent", "+")} hub`
|
|
370
370
|
: `${margin} ${theme.fg("dim", "-")} hub${dots}`
|
|
371
371
|
const ctxStatus = contextLoaded
|
|
372
|
-
? `${margin} ${theme.fg("
|
|
372
|
+
? `${margin} ${theme.fg("accent", "+")} context`
|
|
373
373
|
: hubDone
|
|
374
374
|
? `${margin} ${theme.fg("dim", "-")} context${dots}`
|
|
375
375
|
: `${margin} ${theme.fg("dim", "-")} context`
|
|
@@ -400,13 +400,13 @@ export async function setupOnboarding(ctx: PiContext, config: JflConfig): Promis
|
|
|
400
400
|
// ─── Ready ──────────────────────────────────────────────────
|
|
401
401
|
lines.push("")
|
|
402
402
|
lines.push(`${margin}${theme.bold(info.name)}`)
|
|
403
|
-
lines.push(`${margin}${theme.fg("dim", typeLabel(info.type))} ${theme.fg("dim", "on")} ${theme.fg("
|
|
403
|
+
lines.push(`${margin}${theme.fg("dim", typeLabel(info.type))} ${theme.fg("dim", "on")} ${theme.fg("accent", info.branch)}`)
|
|
404
404
|
lines.push("")
|
|
405
405
|
|
|
406
406
|
const parts: string[] = []
|
|
407
|
-
if (hubReady) parts.push(theme.fg("
|
|
407
|
+
if (hubReady) parts.push(theme.fg("accent", "hub"))
|
|
408
408
|
if (info.journalEntries > 0) parts.push(theme.fg("dim", `${info.journalEntries}j`))
|
|
409
|
-
if (info.agentCount > 0) parts.push(theme.fg("
|
|
409
|
+
if (info.agentCount > 0) parts.push(theme.fg("accent", `${info.agentCount} agent${info.agentCount !== 1 ? "s" : ""}`))
|
|
410
410
|
if (info.hasSubway) parts.push(theme.fg("dim", "subway"))
|
|
411
411
|
|
|
412
412
|
if (parts.length > 0) {
|
|
@@ -414,7 +414,7 @@ export async function setupOnboarding(ctx: PiContext, config: JflConfig): Promis
|
|
|
414
414
|
}
|
|
415
415
|
|
|
416
416
|
lines.push("")
|
|
417
|
-
lines.push(`${margin}${theme.fg("
|
|
417
|
+
lines.push(`${margin}${theme.fg("accent", "ready")}`)
|
|
418
418
|
lines.push("")
|
|
419
419
|
}
|
|
420
420
|
|
|
@@ -13,12 +13,12 @@ import { join } from "path"
|
|
|
13
13
|
import { execSync } from "child_process"
|
|
14
14
|
import type { PiContext, PiTheme, JflConfig } from "./types.js"
|
|
15
15
|
|
|
16
|
-
const GOLD = "
|
|
17
|
-
const GOLD_DIM = "
|
|
18
|
-
const DARK_GOLD = "
|
|
19
|
-
const WARM_WHITE = "
|
|
16
|
+
const GOLD = "warning"
|
|
17
|
+
const GOLD_DIM = "muted"
|
|
18
|
+
const DARK_GOLD = "dim"
|
|
19
|
+
const WARM_WHITE = "text"
|
|
20
20
|
const CHARCOAL = "#1a1a1a"
|
|
21
|
-
const EMBER = "
|
|
21
|
+
const EMBER = "error"
|
|
22
22
|
|
|
23
23
|
const SATOR_SQUARE = [
|
|
24
24
|
["S", "A", "T", "O", "R"],
|