@basou/core 0.42.1 → 0.42.2
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/dist/index.js +4 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5628,7 +5628,7 @@ function formatHandoffBody(args) {
|
|
|
5628
5628
|
lines.push("(no decisions recorded yet)");
|
|
5629
5629
|
} else {
|
|
5630
5630
|
const last = args.latestDecision;
|
|
5631
|
-
lines.push(`- ${last.title} [${
|
|
5631
|
+
lines.push(`- ${last.title} [${last.decisionId}]`);
|
|
5632
5632
|
if (args.latestActivityAt !== null && isTrailingStale(args.latestActivityAt, last.occurredAt)) {
|
|
5633
5633
|
lines.push(` - ${t.handoff.decisionStaleNote}`);
|
|
5634
5634
|
}
|
|
@@ -5646,7 +5646,7 @@ function formatHandoffBody(args) {
|
|
|
5646
5646
|
lines.push(t.handoff.headingOpenTracks);
|
|
5647
5647
|
lines.push("");
|
|
5648
5648
|
for (const track of shown) {
|
|
5649
|
-
lines.push(`- ${track.title} [${
|
|
5649
|
+
lines.push(`- ${track.title} [${track.decisionId}]`);
|
|
5650
5650
|
if (track.rationale !== null && track.rationale.trim() !== "") {
|
|
5651
5651
|
lines.push(` - ${t.common.trackWhyLabel}: ${handoffRationale(track.rationale)}`);
|
|
5652
5652
|
}
|
|
@@ -6246,7 +6246,7 @@ function formatOrientationBody(summary, opts) {
|
|
|
6246
6246
|
const dec = summary.latestDecision;
|
|
6247
6247
|
const decAge = t.relativeAge(dec.occurredAt, now);
|
|
6248
6248
|
lines.push(
|
|
6249
|
-
`- ${t.common.latestDecisionLabel}: ${dec.title} [${
|
|
6249
|
+
`- ${t.common.latestDecisionLabel}: ${dec.title} [${dec.decisionId}] (${decAge})${hostSuffix(dec.host)}`
|
|
6250
6250
|
);
|
|
6251
6251
|
const activityAt = summary.freshness.latestActivityAt;
|
|
6252
6252
|
if (activityAt !== null && isTrailingStale(activityAt, dec.occurredAt)) {
|
|
@@ -6353,9 +6353,7 @@ function formatOrientationBody(summary, opts) {
|
|
|
6353
6353
|
lines.push(t.orientation.openTracksHeading(summary.openTracks.length));
|
|
6354
6354
|
for (const track of shownTracks) {
|
|
6355
6355
|
const trackAge = t.relativeAge(track.occurredAt, now);
|
|
6356
|
-
lines.push(
|
|
6357
|
-
`- ${track.title} [${shortId(track.decisionId)}] (${trackAge})${hostSuffix(track.host)}`
|
|
6358
|
-
);
|
|
6356
|
+
lines.push(`- ${track.title} [${track.decisionId}] (${trackAge})${hostSuffix(track.host)}`);
|
|
6359
6357
|
if (track.rationale !== null && track.rationale.trim() !== "") {
|
|
6360
6358
|
lines.push(` - ${t.common.trackWhyLabel}: ${trackRationale(track.rationale)}`);
|
|
6361
6359
|
}
|