You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This tool takes a different approach to documentation access:
35
+
36
+
1.**Local Mirror** - Instead of fetching docs from the web each time, we keep a local copy that's always ready
37
+
2.**AI as the Interface** - You ask questions in plain English, Claude figures out which docs to read
38
+
3.**Smart Routing** - The `/docs` command understands context ("hooks in agent sdk" vs "cli hooks")
39
+
4.**Works Offline** - Once installed, docs are available even without internet
40
+
41
+
The magic is in combining a simple local file system with Claude's language understanding. No complex search engines or databases - just markdown files and AI smarts.
Copy file name to clipboardExpand all lines: UNINSTALL.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Navigate to your installation directory and run:
26
26
The uninstaller will remove:
27
27
28
28
1.**The /docs command** from `~/.claude/commands/docs.md`
29
-
2.**The auto-update hook** from `~/.claude/settings.json`
29
+
2.**Any legacy hooks** from `~/.claude/settings.json` (if present from older versions)
30
30
3.**The installation directory**:
31
31
- v0.3+: `~/.claude-code-docs`
32
32
- v0.2 or older: wherever you installed it
@@ -40,8 +40,8 @@ If you prefer to uninstall manually:
40
40
rm -f ~/.claude/commands/docs.md
41
41
```
42
42
43
-
### 2. Remove the hook from Claude settings:
44
-
Use /hooks in Claude Code CLI or Edit `~/.claude/settings.json`direction to remove the PreToolUse hook that references claude-code-docs.
43
+
### 2. Remove any legacy hooks from Claude settings (if present):
44
+
If you installed an older version (v0.4.1 or earlier), check `~/.claude/settings.json`and remove any PreToolUse hooks that reference claude-code-docs. Current versions (v0.4.2+) do not install hooks.
0 commit comments