@legioncodeinc/honeycomb 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/.claude-plugin/marketplace.json +18 -0
- package/.claude-plugin/plugin.json +15 -0
- package/LICENSE +661 -0
- package/README.md +268 -0
- package/assets/logos/fonts/Inter-Italic-VariableFont_opsz_wght.ttf +0 -0
- package/assets/logos/fonts/Inter-VariableFont_opsz_wght.ttf +0 -0
- package/assets/logos/fonts/JetBrainsMono-Bold.woff2 +0 -0
- package/assets/logos/fonts/JetBrainsMono-Medium.woff2 +0 -0
- package/assets/logos/fonts/JetBrainsMono-Regular.woff2 +0 -0
- package/assets/logos/fonts/JetBrainsMono-SemiBold.woff2 +0 -0
- package/assets/logos/honeycomb-memory-cluster.svg +17 -0
- package/assets/readme.md +117 -0
- package/assets/styles.css +11 -0
- package/assets/tokens/base.css +76 -0
- package/assets/tokens/colors.css +111 -0
- package/assets/tokens/fonts.css +32 -0
- package/assets/tokens/spacing.css +48 -0
- package/assets/tokens/typography.css +38 -0
- package/bundle/cli.js +20049 -0
- package/daemon/dashboard-app.js +118 -0
- package/daemon/index.js +49533 -0
- package/daemon/package.json +1 -0
- package/embeddings/embed-daemon.js +218 -0
- package/harnesses/claude-code/.claude-plugin/plugin.json +14 -0
- package/harnesses/claude-code/bundle/capture.js +16459 -0
- package/harnesses/claude-code/bundle/index.js +16459 -0
- package/harnesses/claude-code/bundle/package.json +1 -0
- package/harnesses/claude-code/bundle/pre-tool-use.js +16459 -0
- package/harnesses/claude-code/bundle/session-end.js +16459 -0
- package/harnesses/claude-code/bundle/session-start.js +16459 -0
- package/harnesses/claude-code/hooks/hooks.json +86 -0
- package/harnesses/codex/bundle/capture.js +16451 -0
- package/harnesses/codex/bundle/index.js +16451 -0
- package/harnesses/codex/bundle/package.json +1 -0
- package/harnesses/codex/bundle/pre-tool-use.js +16451 -0
- package/harnesses/codex/bundle/session-start.js +16451 -0
- package/harnesses/codex/package.json +7 -0
- package/harnesses/cursor/bundle/capture.js +16459 -0
- package/harnesses/cursor/bundle/index.js +16459 -0
- package/harnesses/cursor/bundle/package.json +1 -0
- package/harnesses/cursor/bundle/pre-tool-use.js +16459 -0
- package/harnesses/cursor/bundle/session-end.js +16459 -0
- package/harnesses/cursor/bundle/session-start.js +16459 -0
- package/harnesses/hermes/bundle/index.js +30 -0
- package/harnesses/hermes/bundle/package.json +1 -0
- package/harnesses/openclaw/dist/index.js +55 -0
- package/harnesses/openclaw/dist/package.json +1 -0
- package/harnesses/openclaw/openclaw.plugin.json +47 -0
- package/harnesses/openclaw/package.json +22 -0
- package/harnesses/pi/bundle/index.js +30 -0
- package/harnesses/pi/bundle/package.json +1 -0
- package/mcp/bundle/package.json +1 -0
- package/mcp/bundle/server.js +24014 -0
- package/package.json +137 -0
- package/scripts/ensure-embed-deps.mjs +67 -0
- package/scripts/ensure-tree-sitter.mjs +89 -0
- package/sdk/index.js +312 -0
- package/sdk/openai.js +63 -0
- package/sdk/package.json +1 -0
- package/sdk/react.js +40 -0
- package/sdk/vercel.js +43 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"description": "Honeycomb memory — captures session activity and renders prior context via the local Honeycomb daemon (PRD-021c reference harness)",
|
|
3
|
+
"hooks": {
|
|
4
|
+
"SessionStart": [
|
|
5
|
+
{
|
|
6
|
+
"hooks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "command",
|
|
9
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/bundle/index.js\"",
|
|
10
|
+
"timeout": 10
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"UserPromptSubmit": [
|
|
16
|
+
{
|
|
17
|
+
"hooks": [
|
|
18
|
+
{
|
|
19
|
+
"type": "command",
|
|
20
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/bundle/index.js\"",
|
|
21
|
+
"timeout": 10,
|
|
22
|
+
"async": true
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"PreToolUse": [
|
|
28
|
+
{
|
|
29
|
+
"hooks": [
|
|
30
|
+
{
|
|
31
|
+
"type": "command",
|
|
32
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/bundle/index.js\"",
|
|
33
|
+
"timeout": 60
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"PostToolUse": [
|
|
39
|
+
{
|
|
40
|
+
"hooks": [
|
|
41
|
+
{
|
|
42
|
+
"type": "command",
|
|
43
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/bundle/index.js\"",
|
|
44
|
+
"timeout": 15,
|
|
45
|
+
"async": true
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"Stop": [
|
|
51
|
+
{
|
|
52
|
+
"hooks": [
|
|
53
|
+
{
|
|
54
|
+
"type": "command",
|
|
55
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/bundle/index.js\"",
|
|
56
|
+
"timeout": 30,
|
|
57
|
+
"async": true
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"SubagentStop": [
|
|
63
|
+
{
|
|
64
|
+
"hooks": [
|
|
65
|
+
{
|
|
66
|
+
"type": "command",
|
|
67
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/bundle/index.js\"",
|
|
68
|
+
"timeout": 30,
|
|
69
|
+
"async": true
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"SessionEnd": [
|
|
75
|
+
{
|
|
76
|
+
"hooks": [
|
|
77
|
+
{
|
|
78
|
+
"type": "command",
|
|
79
|
+
"command": "node \"${CLAUDE_PLUGIN_ROOT}/bundle/index.js\"",
|
|
80
|
+
"timeout": 60
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
}
|