zencefyl 0.1.0 → 0.2.0
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 +5 -5
- package/dist/index.js +1184 -177
- package/dist/index.js.map +1 -1
- package/dist/sql/001_initial_schema.sql +3 -3
- package/dist/sql/002_memory_hash.sql +7 -0
- package/dist/sql/003_fts5_memories.sql +37 -0
- package/dist/sql/004_vector_memories.sql +7 -0
- package/package.json +15 -12
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# zencefyl
|
|
2
2
|
|
|
3
3
|
Personal AI engineering companion. Knows what you know, corrects you when you're wrong, and grows with you over time.
|
|
4
4
|
|
|
@@ -15,8 +15,8 @@ Personal AI engineering companion. Knows what you know, corrects you when you're
|
|
|
15
15
|
## Install
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
git clone https://github.com/bartugundogdu/
|
|
19
|
-
cd
|
|
18
|
+
git clone https://github.com/bartugundogdu/zencefyl
|
|
19
|
+
cd zencefyl
|
|
20
20
|
pnpm install
|
|
21
21
|
pnpm build
|
|
22
22
|
pnpm link --global
|
|
@@ -27,7 +27,7 @@ If `pnpm link --global` fails with a missing bin directory error, run `pnpm setu
|
|
|
27
27
|
## Run
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
|
|
30
|
+
zencefyl
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
Works from any directory. Type `exit` or press Ctrl+C to quit.
|
|
@@ -37,7 +37,7 @@ Works from any directory. Type `exit` or press Ctrl+C to quit.
|
|
|
37
37
|
If you'd rather use the Anthropic API directly instead of Claude Code:
|
|
38
38
|
|
|
39
39
|
```json
|
|
40
|
-
// ~/.
|
|
40
|
+
// ~/.zencefyl/config.json
|
|
41
41
|
{
|
|
42
42
|
"provider": "anthropic",
|
|
43
43
|
"apiKey": "sk-ant-..."
|