zencefyl 0.2.4 → 0.2.6
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/dist/chunk-CZ4NCT3D.js +226 -0
- package/dist/chunk-CZ4NCT3D.js.map +1 -0
- package/dist/chunk-JZA53FAX.js +283 -0
- package/dist/chunk-JZA53FAX.js.map +1 -0
- package/dist/credentials-C7NSDIAG.js +22 -0
- package/dist/credentials-C7NSDIAG.js.map +1 -0
- package/dist/headless-B5GW5RGP.js +29 -0
- package/dist/headless-B5GW5RGP.js.map +1 -0
- package/dist/index.js +7984 -776
- package/dist/index.js.map +1 -1
- package/dist/models-BADSTECA.js +26 -0
- package/dist/models-BADSTECA.js.map +1 -0
- package/dist/sql/005_session_summaries.sql +13 -0
- package/package.json +22 -8
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
DEFAULT_MODELS,
|
|
4
|
+
GEMINI_SUBSCRIPTION_MODELS,
|
|
5
|
+
LOCAL_TRANSFORMERS_MODELS,
|
|
6
|
+
MODEL_CONTEXT_WINDOW,
|
|
7
|
+
MODEL_PRICING,
|
|
8
|
+
MODEL_REGISTRY,
|
|
9
|
+
MOONSHOT_MODELS,
|
|
10
|
+
OLLAMA_MODELS_DEFAULT,
|
|
11
|
+
OPENAI_SUBSCRIPTION_MODELS,
|
|
12
|
+
PROVIDER_LABELS
|
|
13
|
+
} from "./chunk-CZ4NCT3D.js";
|
|
14
|
+
export {
|
|
15
|
+
DEFAULT_MODELS,
|
|
16
|
+
GEMINI_SUBSCRIPTION_MODELS,
|
|
17
|
+
LOCAL_TRANSFORMERS_MODELS,
|
|
18
|
+
MODEL_CONTEXT_WINDOW,
|
|
19
|
+
MODEL_PRICING,
|
|
20
|
+
MODEL_REGISTRY,
|
|
21
|
+
MOONSHOT_MODELS,
|
|
22
|
+
OLLAMA_MODELS_DEFAULT,
|
|
23
|
+
OPENAI_SUBSCRIPTION_MODELS,
|
|
24
|
+
PROVIDER_LABELS
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=models-BADSTECA.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
-- Migration 005: compact session summaries for startup continuity.
|
|
2
|
+
--
|
|
3
|
+
-- Stores one lightweight recap per session. This is intentionally separate from
|
|
4
|
+
-- raw transcripts so startup UI can load a short project memory signal without
|
|
5
|
+
-- reading or embedding the full conversation history.
|
|
6
|
+
|
|
7
|
+
CREATE TABLE IF NOT EXISTS session_summaries (
|
|
8
|
+
session_id TEXT PRIMARY KEY REFERENCES sessions(id) ON DELETE CASCADE,
|
|
9
|
+
summary TEXT NOT NULL,
|
|
10
|
+
updated_at TEXT NOT NULL DEFAULT (datetime('now'))
|
|
11
|
+
);
|
|
12
|
+
|
|
13
|
+
CREATE INDEX IF NOT EXISTS idx_session_summaries_updated_at ON session_summaries(updated_at);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zencefyl",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Personal AI engineering companion",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -12,13 +12,28 @@
|
|
|
12
12
|
"engines": {
|
|
13
13
|
"node": ">=18"
|
|
14
14
|
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"postinstall": "node -e \"process.stdout.write('\\n zencefyl — by @bartugundogdu\\n\\n')\"",
|
|
17
|
+
"dev": "tsx src/cli/index.tsx",
|
|
18
|
+
"build": "tsup",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"start": "node dist/index.js",
|
|
21
|
+
"prepublishOnly": "pnpm build"
|
|
22
|
+
},
|
|
15
23
|
"dependencies": {
|
|
16
24
|
"@anthropic-ai/sdk": "^0.36.3",
|
|
17
25
|
"@huggingface/transformers": "^4.0.1",
|
|
26
|
+
"@mariozechner/pi-ai": "^0.65.0",
|
|
18
27
|
"better-sqlite3": "^12.8.0",
|
|
28
|
+
"chalk": "^5.6.2",
|
|
29
|
+
"cli-highlight": "^2.1.11",
|
|
19
30
|
"ink": "^5.0.0",
|
|
31
|
+
"katex": "^0.16.44",
|
|
32
|
+
"marked": "^17.0.5",
|
|
33
|
+
"openai": "^6.33.0",
|
|
20
34
|
"react": "^18.3.0",
|
|
21
35
|
"sqlite-vec": "^0.1.9",
|
|
36
|
+
"strip-ansi": "^7.2.0",
|
|
22
37
|
"ts-fsrs": "^5.3.2",
|
|
23
38
|
"zod": "^3.23.8"
|
|
24
39
|
},
|
|
@@ -34,11 +49,10 @@
|
|
|
34
49
|
"type": "git",
|
|
35
50
|
"url": "https://github.com/bartugundogdu/zencefyl"
|
|
36
51
|
},
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"start": "node dist/index.js"
|
|
52
|
+
"pnpm": {
|
|
53
|
+
"onlyBuiltDependencies": [
|
|
54
|
+
"esbuild",
|
|
55
|
+
"better-sqlite3"
|
|
56
|
+
]
|
|
43
57
|
}
|
|
44
|
-
}
|
|
58
|
+
}
|