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 CHANGED
@@ -1,5 +1,7 @@
1
1
  # claude-search
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/claude-search.svg)](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
- npm test # run the unit test suite (Node.js 18+ built-in test runner)
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). No extra dependencies required.
49
+ Tests cover `parseSince`, `extractCodeBlocks`, `projectName`, and `loadMessages` (including corrupt-line handling).
45
50
 
46
51
  ---
47
52
 
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-search",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Search across all your Claude Code session history",
5
5
  "type": "module",
6
6
  "bin": {