install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/0xrdan/learn-off" ~/.claude/skills/aiskillstore-marketplace-learn-off && rm -rf "$T"
manifest:
skills/0xrdan/learn-off/SKILL.mdsource content
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
commands still work/learn
Instructions
- Read
knowledge/state.json - Update the state:
{ "learning_mode": false, "learning_mode_since": null } - Write updated state back to
knowledge/state.json - 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
at any time/learn-on