zencefyl 0.1.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 +47 -0
- package/dist/index.js +1773 -0
- package/dist/index.js.map +1 -0
- package/dist/sql/001_initial_schema.sql +135 -0
- package/package.json +41 -0
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Lokkomo
|
|
2
|
+
|
|
3
|
+
Personal AI engineering companion. Knows what you know, corrects you when you're wrong, and grows with you over time.
|
|
4
|
+
|
|
5
|
+
**No API key required.** Runs on your existing Claude.ai subscription via Claude Code.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Prerequisites
|
|
10
|
+
|
|
11
|
+
- Node.js 18+
|
|
12
|
+
- [pnpm](https://pnpm.io) — `npm install -g pnpm`
|
|
13
|
+
- [Claude Code](https://claude.ai/code) — installed and logged in with your Claude.ai account
|
|
14
|
+
|
|
15
|
+
## Install
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
git clone https://github.com/bartugundogdu/lokkomo
|
|
19
|
+
cd lokkomo
|
|
20
|
+
pnpm install
|
|
21
|
+
pnpm build
|
|
22
|
+
pnpm link --global
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
If `pnpm link --global` fails with a missing bin directory error, run `pnpm setup` first, then `source ~/.bashrc`, then re-run `pnpm link --global`.
|
|
26
|
+
|
|
27
|
+
## Run
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
lokkomo
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Works from any directory. Type `exit` or press Ctrl+C to quit.
|
|
34
|
+
|
|
35
|
+
## Switch to direct API (optional)
|
|
36
|
+
|
|
37
|
+
If you'd rather use the Anthropic API directly instead of Claude Code:
|
|
38
|
+
|
|
39
|
+
```json
|
|
40
|
+
// ~/.lokkomo/config.json
|
|
41
|
+
{
|
|
42
|
+
"provider": "anthropic",
|
|
43
|
+
"apiKey": "sk-ant-..."
|
|
44
|
+
}
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Or set `ANTHROPIC_API_KEY` in your environment.
|