vibe-learning-opencode 0.2.15 → 0.2.17

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/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -250,19 +250,19 @@ 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} unexplored (${status.unknownFirst})` : `${status.unknownCount} unexplored`;
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} due (${status.dueFirst})` : `${status.dueCount} due`;
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(", ") + ". /learn unknowns or /learn review";
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 status.`;
265
+ message = `Active (${modeInfo}). /learn for commands.`;
266
266
  }
267
267
  client.tui.showToast({
268
268
  body: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-learning-opencode",
3
- "version": "0.2.15",
3
+ "version": "0.2.17",
4
4
  "description": "VibeLearning plugin for OpenCode - spaced repetition learning while coding",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",