coding-friend-cli 1.24.0 → 1.25.0
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
CHANGED
|
@@ -61,7 +61,7 @@ program.command("update").description("Update coding-friend plugin, CLI, and sta
|
|
|
61
61
|
await updateCommand(opts);
|
|
62
62
|
});
|
|
63
63
|
program.command("status").description("Show comprehensive Coding Friend status").action(async () => {
|
|
64
|
-
const { statusCommand } = await import("./status-
|
|
64
|
+
const { statusCommand } = await import("./status-FRIGREUV.js");
|
|
65
65
|
await statusCommand();
|
|
66
66
|
});
|
|
67
67
|
var session = program.command("session").description("Save and load Claude Code sessions across machines");
|
|
@@ -90,7 +90,7 @@ function printConfig(obj, otherConfig) {
|
|
|
90
90
|
const names = subVal.map(
|
|
91
91
|
(c) => typeof c === "object" && c !== null && "name" in c ? c.name : String(c)
|
|
92
92
|
).join(", ");
|
|
93
|
-
subLine(subKey, names, subOverrides, chalk.
|
|
93
|
+
subLine(subKey, names, subOverrides, chalk.blueBright);
|
|
94
94
|
continue;
|
|
95
95
|
}
|
|
96
96
|
if (typeof subVal === "object" && subVal !== null && !Array.isArray(subVal)) {
|
|
@@ -98,7 +98,7 @@ function printConfig(obj, otherConfig) {
|
|
|
98
98
|
subVal
|
|
99
99
|
);
|
|
100
100
|
const inline = innerEntries.map(([k, v]) => `${k}: ${formatScalar(v)}`).join(", ");
|
|
101
|
-
subLine(subKey, inline, subOverrides, chalk.
|
|
101
|
+
subLine(subKey, inline, subOverrides, chalk.blueBright);
|
|
102
102
|
continue;
|
|
103
103
|
}
|
|
104
104
|
if (Array.isArray(subVal)) {
|
|
@@ -106,11 +106,11 @@ function printConfig(obj, otherConfig) {
|
|
|
106
106
|
subKey,
|
|
107
107
|
subVal.map((v) => formatScalar(v)).join(", "),
|
|
108
108
|
subOverrides,
|
|
109
|
-
chalk.
|
|
109
|
+
chalk.blueBright
|
|
110
110
|
);
|
|
111
111
|
continue;
|
|
112
112
|
}
|
|
113
|
-
subLine(subKey, formatScalar(subVal), subOverrides, chalk.
|
|
113
|
+
subLine(subKey, formatScalar(subVal), subOverrides, chalk.blueBright);
|
|
114
114
|
}
|
|
115
115
|
continue;
|
|
116
116
|
}
|
|
@@ -135,6 +135,7 @@ function versionLine(label, current, latest) {
|
|
|
135
135
|
return `${padded}${current} \u2192 ${latest} ${indicator}`;
|
|
136
136
|
}
|
|
137
137
|
async function statusCommand() {
|
|
138
|
+
console.log(chalk.dim("Loading status information\u2026"));
|
|
138
139
|
const pluginVersion = getInstalledVersion();
|
|
139
140
|
const latestPlugin = getLatestVersion();
|
|
140
141
|
const cliVersion = getCliVersion();
|