@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.
Files changed (61) hide show
  1. package/.claude-plugin/marketplace.json +18 -0
  2. package/.claude-plugin/plugin.json +15 -0
  3. package/LICENSE +661 -0
  4. package/README.md +268 -0
  5. package/assets/logos/fonts/Inter-Italic-VariableFont_opsz_wght.ttf +0 -0
  6. package/assets/logos/fonts/Inter-VariableFont_opsz_wght.ttf +0 -0
  7. package/assets/logos/fonts/JetBrainsMono-Bold.woff2 +0 -0
  8. package/assets/logos/fonts/JetBrainsMono-Medium.woff2 +0 -0
  9. package/assets/logos/fonts/JetBrainsMono-Regular.woff2 +0 -0
  10. package/assets/logos/fonts/JetBrainsMono-SemiBold.woff2 +0 -0
  11. package/assets/logos/honeycomb-memory-cluster.svg +17 -0
  12. package/assets/readme.md +117 -0
  13. package/assets/styles.css +11 -0
  14. package/assets/tokens/base.css +76 -0
  15. package/assets/tokens/colors.css +111 -0
  16. package/assets/tokens/fonts.css +32 -0
  17. package/assets/tokens/spacing.css +48 -0
  18. package/assets/tokens/typography.css +38 -0
  19. package/bundle/cli.js +20049 -0
  20. package/daemon/dashboard-app.js +118 -0
  21. package/daemon/index.js +49533 -0
  22. package/daemon/package.json +1 -0
  23. package/embeddings/embed-daemon.js +218 -0
  24. package/harnesses/claude-code/.claude-plugin/plugin.json +14 -0
  25. package/harnesses/claude-code/bundle/capture.js +16459 -0
  26. package/harnesses/claude-code/bundle/index.js +16459 -0
  27. package/harnesses/claude-code/bundle/package.json +1 -0
  28. package/harnesses/claude-code/bundle/pre-tool-use.js +16459 -0
  29. package/harnesses/claude-code/bundle/session-end.js +16459 -0
  30. package/harnesses/claude-code/bundle/session-start.js +16459 -0
  31. package/harnesses/claude-code/hooks/hooks.json +86 -0
  32. package/harnesses/codex/bundle/capture.js +16451 -0
  33. package/harnesses/codex/bundle/index.js +16451 -0
  34. package/harnesses/codex/bundle/package.json +1 -0
  35. package/harnesses/codex/bundle/pre-tool-use.js +16451 -0
  36. package/harnesses/codex/bundle/session-start.js +16451 -0
  37. package/harnesses/codex/package.json +7 -0
  38. package/harnesses/cursor/bundle/capture.js +16459 -0
  39. package/harnesses/cursor/bundle/index.js +16459 -0
  40. package/harnesses/cursor/bundle/package.json +1 -0
  41. package/harnesses/cursor/bundle/pre-tool-use.js +16459 -0
  42. package/harnesses/cursor/bundle/session-end.js +16459 -0
  43. package/harnesses/cursor/bundle/session-start.js +16459 -0
  44. package/harnesses/hermes/bundle/index.js +30 -0
  45. package/harnesses/hermes/bundle/package.json +1 -0
  46. package/harnesses/openclaw/dist/index.js +55 -0
  47. package/harnesses/openclaw/dist/package.json +1 -0
  48. package/harnesses/openclaw/openclaw.plugin.json +47 -0
  49. package/harnesses/openclaw/package.json +22 -0
  50. package/harnesses/pi/bundle/index.js +30 -0
  51. package/harnesses/pi/bundle/package.json +1 -0
  52. package/mcp/bundle/package.json +1 -0
  53. package/mcp/bundle/server.js +24014 -0
  54. package/package.json +137 -0
  55. package/scripts/ensure-embed-deps.mjs +67 -0
  56. package/scripts/ensure-tree-sitter.mjs +89 -0
  57. package/sdk/index.js +312 -0
  58. package/sdk/openai.js +63 -0
  59. package/sdk/package.json +1 -0
  60. package/sdk/react.js +40 -0
  61. 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
+ }