multiAI Summary Pending

learn-off

Disable continuous learning mode

231 stars

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/learn-off/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/0xrdan/learn-off/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/learn-off/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How learn-off Compares

Feature / Agentlearn-offStandard Approach
Platform SupportmultiLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Disable continuous learning mode

Which AI agents support this skill?

This skill is compatible with multi.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Learn Off

Disable continuous learning mode. Automatic insight extraction will stop.

## What This Does

Deactivates continuous learning mode:
- Automatic extraction stops
- Query counting stops
- Manual `/learn` commands still work

## Instructions

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

## Output Format

```
Continuous Learning: DISABLED
─────────────────────────────
Learning mode is now inactive.

Session summary:
  - Extractions performed: X
  - Queries analyzed: Y
  - Insights captured: Z

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