claudia-mentor 0.9.0 → 0.9.1
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.
|
@@ -283,7 +283,7 @@ def check(input_data, proactivity, experience):
|
|
|
283
283
|
tips.append(
|
|
284
284
|
f"I noticed we're talking about {keyword} ({description}). "
|
|
285
285
|
f"Want me to explain more? Just say `/claudia:explain {keyword.lower()}`\n"
|
|
286
|
-
f"(
|
|
286
|
+
f"(Say \"stop tips about {keyword}\" to silence this)"
|
|
287
287
|
)
|
|
288
288
|
break
|
|
289
289
|
if tips:
|
|
@@ -322,7 +322,11 @@ def check(input_data, proactivity, experience):
|
|
|
322
322
|
save_state(session_id, state)
|
|
323
323
|
tip_text = "\n".join(f"Claudia: {tip}" for tip in tips)
|
|
324
324
|
system_text = tip_text
|
|
325
|
-
context = tip_text
|
|
325
|
+
context = tip_text + (
|
|
326
|
+
"\nIf the user asks to stop tips about a keyword or category, "
|
|
327
|
+
"add it to the \"suppress_topics\" list in ~/.claude/claudia.json "
|
|
328
|
+
"(create the file/key if missing)."
|
|
329
|
+
)
|
|
326
330
|
if len(shown_keywords) % 3 == 0:
|
|
327
331
|
user_hint, claude_hint = dismiss_hint("teach")
|
|
328
332
|
system_text += "\n" + user_hint
|
package/package.json
CHANGED