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.
- package/dist/index.js +5 -4
- 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
|
-
-
|
|
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:
|
|
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")
|