vibe-learning-opencode 0.2.14 → 0.2.16
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 +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -250,26 +250,26 @@ var VibeLearningPlugin = async (ctx) => {
|
|
|
250
250
|
const status = getLearningStatus();
|
|
251
251
|
const parts = [];
|
|
252
252
|
if (status.unknownCount > 0) {
|
|
253
|
-
const unknownInfo = status.unknownFirst ? `${status.unknownCount}
|
|
253
|
+
const unknownInfo = status.unknownFirst ? `${status.unknownCount} new concepts to explore (e.g. ${status.unknownFirst})` : `${status.unknownCount} new concepts to explore`;
|
|
254
254
|
parts.push(unknownInfo);
|
|
255
255
|
}
|
|
256
256
|
if (status.dueCount > 0) {
|
|
257
|
-
const dueInfo = status.dueFirst ? `${status.dueCount}
|
|
257
|
+
const dueInfo = status.dueFirst ? `${status.dueCount} ready for review (e.g. ${status.dueFirst})` : `${status.dueCount} ready for review`;
|
|
258
258
|
parts.push(dueInfo);
|
|
259
259
|
}
|
|
260
260
|
let message;
|
|
261
261
|
if (parts.length > 0) {
|
|
262
|
-
message = parts.join("
|
|
262
|
+
message = parts.join(" | ") + "\n/learn unknowns or /learn review";
|
|
263
263
|
} else {
|
|
264
264
|
const modeInfo = seniorEnabled && afterEnabled ? "Full mode" : seniorEnabled ? "Senior mode" : afterEnabled ? "After mode" : "Off";
|
|
265
|
-
message = `Active (${modeInfo}). /learn for
|
|
265
|
+
message = `Active (${modeInfo}). /learn for commands.`;
|
|
266
266
|
}
|
|
267
267
|
client.tui.showToast({
|
|
268
268
|
body: {
|
|
269
269
|
title: "\u{1F393} VibeLearning",
|
|
270
270
|
message,
|
|
271
271
|
variant: "info",
|
|
272
|
-
duration:
|
|
272
|
+
duration: 8e3
|
|
273
273
|
}
|
|
274
274
|
}).catch(() => {
|
|
275
275
|
});
|