Disable Learning Mode

VerifiedSafe

Deactivates learning mode, clearing the session reminder flag. After use, /knowledge will no longer show reminders, but manual /learn commands still work. Helpful when you want to stop automatic knowledge capture without deleting existing insights.

Sby Skills Guide Bot
ProductivityBeginner
606/2/2026
Claude Code
#learning-mode#disable#knowledge#state-management

Recommended for

Our review

Disables the agent's learning mode, stopping automatic extractions without deleting previously captured insights.

Strengths

  • Simple and immediate stop of automatic learning
  • Preserves all previously extracted knowledge
  • Provides clear confirmation and state summary

Limitations

  • Manual /learn commands still work
  • Does not delete existing knowledge
  • May be confusing if user expects full disable of all learning
When to use it

Use this skill when you want to pause or stop automatic learning while keeping the accumulated knowledge base intact.

When not to use it

Do not use it if you want to erase the knowledge base; use a dedicated deletion command instead.

Security analysis

Safe
Quality score85/100

The skill performs local file read/write operations on a known state file to toggle a learning mode flag. It does not involve network access, destructive commands, or exfiltration of sensitive data.

No concerns found

Examples

Disable Learning Mode
/learn-off
Turn off automatic learning
Disable learning mode

name: learn-off description: Disable learning mode user_invokable: true

Learn Off

Disable learning mode. The reminder flag will be cleared.

What This Does

Deactivates learning mode:

  • Clears the learning mode flag
  • /knowledge will no longer show the session reminder
  • Manual /learn commands still work

Instructions

  1. Read knowledge/state.json
  2. Update the state:
    {
      "learning_mode": false,
      "learning_mode_since": null
    }
    
  3. Write updated state back to knowledge/state.json
  4. Confirm to user with summary

Output Format

Learning Mode: DISABLED
-------------------------
Learning mode is now inactive.

Session summary:
  - Extractions performed: X

Manual extraction is still available via /learn.
Use /knowledge to view accumulated insights.

Notes

  • Disabling learning mode does not delete any captured insights
  • The knowledge base remains available for reference
  • You can re-enable with /learn-on at any time
Related skills