vibe-learning-opencode 0.1.7 → 0.1.8

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 +5 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -178,11 +178,12 @@ Call mcp__vibe-learning__get_concept_level for the main concept to register it i
178
178
  **STEP 4: Ask Learning Question (CONDITIONAL)**
179
179
  Call mcp__vibe-learning__should_ask_question to check.
180
180
  - If shouldAsk is true AND mode is not "off":
181
- - Ask a level-appropriate question (L1-L5)
181
+ - Format:
182
+ **[VibeLearning]**
183
+ _Learning Question (Level X)_
184
+ [Your question here]?
182
185
  - After user answers, call mcp__vibe-learning__record_learning
183
- - If shouldAsk is false: briefly mention cooldown status
184
-
185
- Ask naturally, like conversation. Keep it brief.`;
186
+ - If shouldAsk is false: skip silently (no cooldown message needed)`;
186
187
  function parseLearnCommand(text) {
187
188
  const lower = text.toLowerCase().trim();
188
189
  if (lower === "/learn" || lower === "/learn status")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-learning-opencode",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "VibeLearning plugin for OpenCode - spaced repetition learning while coding",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",