claude-search 0.1.0 → 0.1.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.
- package/README.md +7 -2
- package/bin/claude-search.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# claude-search
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/claude-search)
|
|
4
|
+
|
|
3
5
|
Full-text search across all your [Claude Code](https://claude.ai/code) session history — find past conversations, extract code snippets, inspect session metadata, and jump straight back into any session.
|
|
4
6
|
|
|
5
7
|
```
|
|
@@ -38,10 +40,13 @@ claude-search --help
|
|
|
38
40
|
## Development
|
|
39
41
|
|
|
40
42
|
```bash
|
|
41
|
-
|
|
43
|
+
git clone https://github.com/pi-netizen/claude-search.git
|
|
44
|
+
cd claude-search
|
|
45
|
+
npm install
|
|
46
|
+
npm test # Node.js 18+ built-in test runner, no extra deps
|
|
42
47
|
```
|
|
43
48
|
|
|
44
|
-
Tests cover `parseSince`, `extractCodeBlocks`, `projectName`, and `loadMessages` (including corrupt-line handling).
|
|
49
|
+
Tests cover `parseSince`, `extractCodeBlocks`, `projectName`, and `loadMessages` (including corrupt-line handling).
|
|
45
50
|
|
|
46
51
|
---
|
|
47
52
|
|
package/bin/claude-search.js
CHANGED
|
File without changes
|