cc-dejavu 0.3.0 → 0.4.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 +18 -5
- package/dist/index.js +135 -2445
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="assets/hero.gif" alt="deja">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# deja
|
|
2
6
|
|
|
3
7
|
[](https://github.com/Michaelliv/cc-dejavu/actions/workflows/ci.yml)
|
|
@@ -43,18 +47,27 @@ Every bash command Claude Code runs is logged in session files. `deja` indexes t
|
|
|
43
47
|
|
|
44
48
|
## Install
|
|
45
49
|
|
|
46
|
-
|
|
50
|
+
```bash
|
|
51
|
+
curl -fsSL https://raw.githubusercontent.com/Michaelliv/cc-dejavu/main/install.sh | bash
|
|
52
|
+
```
|
|
47
53
|
|
|
54
|
+
Or with Bun:
|
|
48
55
|
```bash
|
|
49
|
-
# Install globally
|
|
50
56
|
bun add -g cc-dejavu
|
|
57
|
+
```
|
|
51
58
|
|
|
52
|
-
|
|
59
|
+
<details>
|
|
60
|
+
<summary>Other options</summary>
|
|
61
|
+
|
|
62
|
+
**Manual download**: Get binaries from [releases](https://github.com/Michaelliv/cc-dejavu/releases)
|
|
63
|
+
|
|
64
|
+
**From source**:
|
|
65
|
+
```bash
|
|
53
66
|
git clone https://github.com/Michaelliv/cc-dejavu
|
|
54
67
|
cd cc-dejavu
|
|
55
|
-
bun install
|
|
56
|
-
bun run build # Creates ./deja binary
|
|
68
|
+
bun install && bun run build
|
|
57
69
|
```
|
|
70
|
+
</details>
|
|
58
71
|
|
|
59
72
|
## Usage
|
|
60
73
|
|