-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "context-kernel",
"version": "1.11.0",
"description": "Task-induced context normalization for coding agents, with native Claude Code and Pi support.",
"license": "MIT",
"author": "pinperepette",
"repository": {
"type": "git",
"url": "https://github.com/pinperepette/context-kernel"
},
"keywords": [
"pi-package",
"context",
"token",
"compression",
"slicing",
"coding-agent"
],
"type": "module",
"files": [
"pi",
"claude-context-kernel/hooks/compress.py",
"claude-context-kernel/hooks/pretool_rewrite.py",
"claude-context-kernel/skills"
],
"pi": {
"extensions": [
"./pi/extensions/context-kernel.js"
],
"skills": [
"./claude-context-kernel/skills"
]
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"scripts": {
"test": "python3 -m unittest discover -s claude-context-kernel/tests && node --test pi/tests/*.test.js"
}
}